Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
oci.FleetAppsManagement.getTaskRecords
Start a Neo task
Explain and create an oci.FleetAppsManagement.getTaskRecords resource
This data source provides the list of Task Records in Oracle Cloud Infrastructure Fleet Apps Management service.
Returns a list of all the task records in the specified compartment.
The query parameter compartmentId is required unless the query parameter id is specified.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testTaskRecords = oci.FleetAppsManagement.getTaskRecords({
compartmentId: compartmentId,
displayName: taskRecordDisplayName,
id: taskRecordId,
operation: taskRecordOperation,
platform: taskRecordPlatform,
state: taskRecordState,
type: taskRecordType,
});
import pulumi
import pulumi_oci as oci
test_task_records = oci.FleetAppsManagement.get_task_records(compartment_id=compartment_id,
display_name=task_record_display_name,
id=task_record_id,
operation=task_record_operation,
platform=task_record_platform,
state=task_record_state,
type=task_record_type)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/fleetappsmanagement"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := fleetappsmanagement.GetTaskRecords(ctx, &fleetappsmanagement.GetTaskRecordsArgs{
CompartmentId: pulumi.StringRef(compartmentId),
DisplayName: pulumi.StringRef(taskRecordDisplayName),
Id: pulumi.StringRef(taskRecordId),
Operation: pulumi.StringRef(taskRecordOperation),
Platform: pulumi.StringRef(taskRecordPlatform),
State: pulumi.StringRef(taskRecordState),
Type: pulumi.StringRef(taskRecordType),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testTaskRecords = Oci.FleetAppsManagement.GetTaskRecords.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = taskRecordDisplayName,
Id = taskRecordId,
Operation = taskRecordOperation,
Platform = taskRecordPlatform,
State = taskRecordState,
Type = taskRecordType,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.FleetAppsManagement.FleetAppsManagementFunctions;
import com.pulumi.oci.FleetAppsManagement.inputs.GetTaskRecordsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testTaskRecords = FleetAppsManagementFunctions.getTaskRecords(GetTaskRecordsArgs.builder()
.compartmentId(compartmentId)
.displayName(taskRecordDisplayName)
.id(taskRecordId)
.operation(taskRecordOperation)
.platform(taskRecordPlatform)
.state(taskRecordState)
.type(taskRecordType)
.build());
}
}
variables:
testTaskRecords:
fn::invoke:
function: oci:FleetAppsManagement:getTaskRecords
arguments:
compartmentId: ${compartmentId}
displayName: ${taskRecordDisplayName}
id: ${taskRecordId}
operation: ${taskRecordOperation}
platform: ${taskRecordPlatform}
state: ${taskRecordState}
type: ${taskRecordType}
Using getTaskRecords
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getTaskRecords(args: GetTaskRecordsArgs, opts?: InvokeOptions): Promise<GetTaskRecordsResult>
function getTaskRecordsOutput(args: GetTaskRecordsOutputArgs, opts?: InvokeOptions): Output<GetTaskRecordsResult>def get_task_records(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetTaskRecordsFilter]] = None,
id: Optional[str] = None,
operation: Optional[str] = None,
platform: Optional[str] = None,
state: Optional[str] = None,
type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetTaskRecordsResult
def get_task_records_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetTaskRecordsFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
operation: Optional[pulumi.Input[str]] = None,
platform: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
type: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetTaskRecordsResult]func GetTaskRecords(ctx *Context, args *GetTaskRecordsArgs, opts ...InvokeOption) (*GetTaskRecordsResult, error)
func GetTaskRecordsOutput(ctx *Context, args *GetTaskRecordsOutputArgs, opts ...InvokeOption) GetTaskRecordsResultOutput> Note: This function is named GetTaskRecords in the Go SDK.
public static class GetTaskRecords
{
public static Task<GetTaskRecordsResult> InvokeAsync(GetTaskRecordsArgs args, InvokeOptions? opts = null)
public static Output<GetTaskRecordsResult> Invoke(GetTaskRecordsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetTaskRecordsResult> getTaskRecords(GetTaskRecordsArgs args, InvokeOptions options)
public static Output<GetTaskRecordsResult> getTaskRecords(GetTaskRecordsArgs args, InvokeOptions options)
fn::invoke:
function: oci:FleetAppsManagement/getTaskRecords:getTaskRecords
arguments:
# arguments dictionaryThe following arguments are supported:
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Task Records Filter> - Id string
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- Operation string
- A filter to return task records whose operation matches the given lifecycle operation.
- Platform string
- The platform for the task record.
- State string
- The current state of the task record.
- Type string
- The type of the Task.
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Task Records Filter - Id string
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- Operation string
- A filter to return task records whose operation matches the given lifecycle operation.
- Platform string
- The platform for the task record.
- State string
- The current state of the task record.
- Type string
- The type of the Task.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Task Records Filter> - id String
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- operation String
- A filter to return task records whose operation matches the given lifecycle operation.
- platform String
- The platform for the task record.
- state String
- The current state of the task record.
- type String
- The type of the Task.
- compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Task Records Filter[] - id string
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- operation string
- A filter to return task records whose operation matches the given lifecycle operation.
- platform string
- The platform for the task record.
- state string
- The current state of the task record.
- type string
- The type of the Task.
- compartment_
id str - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display_
name str - A filter to return only resources that match the entire display name given.
- filters
Sequence[Get
Task Records Filter] - id str
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- operation str
- A filter to return task records whose operation matches the given lifecycle operation.
- platform str
- The platform for the task record.
- state str
- The current state of the task record.
- type str
- The type of the Task.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- id String
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- operation String
- A filter to return task records whose operation matches the given lifecycle operation.
- platform String
- The platform for the task record.
- state String
- The current state of the task record.
- type String
- The type of the Task.
getTaskRecords Result
The following output properties are available:
- Task
Record List<GetCollections Task Records Task Record Collection> - The list of task_record_collection.
- Compartment
Id string - Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource - Filters
List<Get
Task Records Filter> - Id string
- The OCID of the resource.
- Operation string
- The lifecycle operation performed by the runbook.
- Platform string
- The platform of the runbook.
- State string
- The current state of the task record.
- Type string
- Task type.
- Task
Record []GetCollections Task Records Task Record Collection - The list of task_record_collection.
- Compartment
Id string - Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource - Filters
[]Get
Task Records Filter - Id string
- The OCID of the resource.
- Operation string
- The lifecycle operation performed by the runbook.
- Platform string
- The platform of the runbook.
- State string
- The current state of the task record.
- Type string
- Task type.
- task
Record List<GetCollections Task Records Task Record Collection> - The list of task_record_collection.
- compartment
Id String - display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource - filters
List<Get
Task Records Filter> - id String
- The OCID of the resource.
- operation String
- The lifecycle operation performed by the runbook.
- platform String
- The platform of the runbook.
- state String
- The current state of the task record.
- type String
- Task type.
- task
Record GetCollections Task Records Task Record Collection[] - The list of task_record_collection.
- compartment
Id string - display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource - filters
Get
Task Records Filter[] - id string
- The OCID of the resource.
- operation string
- The lifecycle operation performed by the runbook.
- platform string
- The platform of the runbook.
- state string
- The current state of the task record.
- type string
- Task type.
- task_
record_ Sequence[Getcollections Task Records Task Record Collection] - The list of task_record_collection.
- compartment_
id str - display_
name str - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource - filters
Sequence[Get
Task Records Filter] - id str
- The OCID of the resource.
- operation str
- The lifecycle operation performed by the runbook.
- platform str
- The platform of the runbook.
- state str
- The current state of the task record.
- type str
- Task type.
- task
Record List<Property Map>Collections - The list of task_record_collection.
- compartment
Id String - display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource - filters List<Property Map>
- id String
- The OCID of the resource.
- operation String
- The lifecycle operation performed by the runbook.
- platform String
- The platform of the runbook.
- state String
- The current state of the task record.
- type String
- Task type.
Supporting Types
GetTaskRecordsFilter
GetTaskRecordsTaskRecordCollection
GetTaskRecordsTaskRecordCollectionItem
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Description string
- The description of the argument.
- Details
List<Get
Task Records Task Record Collection Item Detail> - The details of the task.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - Id string
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Resource
Region string - Associated region
- State string
- The current state of the task record.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- Type string
- The type of the Task.
- Version string
- The version of the task record.
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Description string
- The description of the argument.
- Details
[]Get
Task Records Task Record Collection Item Detail - The details of the task.
- Display
Name string - A filter to return only resources that match the entire display name given.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - Id string
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Resource
Region string - Associated region
- State string
- The current state of the task record.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- Time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- Type string
- The type of the Task.
- Version string
- The version of the task record.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description String
- The description of the argument.
- details
List<Get
Task Records Task Record Collection Item Detail> - The details of the task.
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id String
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- resource
Region String - Associated region
- state String
- The current state of the task record.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated String - The time this resource was last updated. An RFC3339 formatted datetime string.
- type String
- The type of the Task.
- version String
- The version of the task record.
- compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description string
- The description of the argument.
- details
Get
Task Records Task Record Collection Item Detail[] - The details of the task.
- display
Name string - A filter to return only resources that match the entire display name given.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id string
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- resource
Region string - Associated region
- state string
- The current state of the task record.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- type string
- The type of the Task.
- version string
- The version of the task record.
- compartment_
id str - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description str
- The description of the argument.
- details
Sequence[Get
Task Records Task Record Collection Item Detail] - The details of the task.
- display_
name str - A filter to return only resources that match the entire display name given.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id str
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- resource_
region str - Associated region
- state str
- The current state of the task record.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time_
created str - The time this resource was created. An RFC3339 formatted datetime string.
- time_
updated str - The time this resource was last updated. An RFC3339 formatted datetime string.
- type str
- The type of the Task.
- version str
- The version of the task record.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - description String
- The description of the argument.
- details List<Property Map>
- The details of the task.
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id String
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- resource
Region String - Associated region
- state String
- The current state of the task record.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The time this resource was created. An RFC3339 formatted datetime string.
- time
Updated String - The time this resource was last updated. An RFC3339 formatted datetime string.
- type String
- The type of the Task.
- version String
- The version of the task record.
GetTaskRecordsTaskRecordCollectionItemDetail
- Execution
Details List<GetTask Records Task Record Collection Item Detail Execution Detail> - Execution details.
- Is
Apply boolSubject Task - Is this an Apply Subject Task? Set this to true for a Patch Execution Task which applies patches(subjects) on a target.
- Is
Discovery boolOutput Task - Is this a discovery output task?
- Operation string
- A filter to return task records whose operation matches the given lifecycle operation.
- Os
Type string - The OS for the task
- Platform string
- The platform for the task record.
- Properties
List<Get
Task Records Task Record Collection Item Detail Property> - The properties of the task.
- Scope string
- The scope of the task
- Execution
Details []GetTask Records Task Record Collection Item Detail Execution Detail - Execution details.
- Is
Apply boolSubject Task - Is this an Apply Subject Task? Set this to true for a Patch Execution Task which applies patches(subjects) on a target.
- Is
Discovery boolOutput Task - Is this a discovery output task?
- Operation string
- A filter to return task records whose operation matches the given lifecycle operation.
- Os
Type string - The OS for the task
- Platform string
- The platform for the task record.
- Properties
[]Get
Task Records Task Record Collection Item Detail Property - The properties of the task.
- Scope string
- The scope of the task
- execution
Details List<GetTask Records Task Record Collection Item Detail Execution Detail> - Execution details.
- is
Apply BooleanSubject Task - Is this an Apply Subject Task? Set this to true for a Patch Execution Task which applies patches(subjects) on a target.
- is
Discovery BooleanOutput Task - Is this a discovery output task?
- operation String
- A filter to return task records whose operation matches the given lifecycle operation.
- os
Type String - The OS for the task
- platform String
- The platform for the task record.
- properties
List<Get
Task Records Task Record Collection Item Detail Property> - The properties of the task.
- scope String
- The scope of the task
- execution
Details GetTask Records Task Record Collection Item Detail Execution Detail[] - Execution details.
- is
Apply booleanSubject Task - Is this an Apply Subject Task? Set this to true for a Patch Execution Task which applies patches(subjects) on a target.
- is
Discovery booleanOutput Task - Is this a discovery output task?
- operation string
- A filter to return task records whose operation matches the given lifecycle operation.
- os
Type string - The OS for the task
- platform string
- The platform for the task record.
- properties
Get
Task Records Task Record Collection Item Detail Property[] - The properties of the task.
- scope string
- The scope of the task
- execution_
details Sequence[GetTask Records Task Record Collection Item Detail Execution Detail] - Execution details.
- is_
apply_ boolsubject_ task - Is this an Apply Subject Task? Set this to true for a Patch Execution Task which applies patches(subjects) on a target.
- is_
discovery_ booloutput_ task - Is this a discovery output task?
- operation str
- A filter to return task records whose operation matches the given lifecycle operation.
- os_
type str - The OS for the task
- platform str
- The platform for the task record.
- properties
Sequence[Get
Task Records Task Record Collection Item Detail Property] - The properties of the task.
- scope str
- The scope of the task
- execution
Details List<Property Map> - Execution details.
- is
Apply BooleanSubject Task - Is this an Apply Subject Task? Set this to true for a Patch Execution Task which applies patches(subjects) on a target.
- is
Discovery BooleanOutput Task - Is this a discovery output task?
- operation String
- A filter to return task records whose operation matches the given lifecycle operation.
- os
Type String - The OS for the task
- platform String
- The platform for the task record.
- properties List<Property Map>
- The properties of the task.
- scope String
- The scope of the task
GetTaskRecordsTaskRecordCollectionItemDetailExecutionDetail
- Catalog
Id string - Command string
- Optional command to execute the content. You can provide any commands/arguments that can't be part of the script.
- Config
File string - Catalog Id having config file.
- Contents
List<Get
Task Records Task Record Collection Item Detail Execution Detail Content> - Content Source details.
- Credentials
List<Get
Task Records Task Record Collection Item Detail Execution Detail Credential> - Credentials required for executing the task.
- Endpoint string
- Endpoint to be invoked.
- Execution
Type string - The action type of the task
- Is
Executable boolContent - Is the Content an executable file?
- Is
Locked bool - Is the script locked to prevent changes directly in Object Storage?
- Is
Read boolOutput Variable Enabled - Is read output variable enabled
- Target
Compartment stringId - OCID of the compartment to which the resource belongs to.
- Variables
List<Get
Task Records Task Record Collection Item Detail Execution Detail Variable> - The variable of the task. At least one of the dynamicArguments or output needs to be provided.
- Catalog
Id string - Command string
- Optional command to execute the content. You can provide any commands/arguments that can't be part of the script.
- Config
File string - Catalog Id having config file.
- Contents
[]Get
Task Records Task Record Collection Item Detail Execution Detail Content - Content Source details.
- Credentials
[]Get
Task Records Task Record Collection Item Detail Execution Detail Credential - Credentials required for executing the task.
- Endpoint string
- Endpoint to be invoked.
- Execution
Type string - The action type of the task
- Is
Executable boolContent - Is the Content an executable file?
- Is
Locked bool - Is the script locked to prevent changes directly in Object Storage?
- Is
Read boolOutput Variable Enabled - Is read output variable enabled
- Target
Compartment stringId - OCID of the compartment to which the resource belongs to.
- Variables
[]Get
Task Records Task Record Collection Item Detail Execution Detail Variable - The variable of the task. At least one of the dynamicArguments or output needs to be provided.
- catalog
Id String - command String
- Optional command to execute the content. You can provide any commands/arguments that can't be part of the script.
- config
File String - Catalog Id having config file.
- contents
List<Get
Task Records Task Record Collection Item Detail Execution Detail Content> - Content Source details.
- credentials
List<Get
Task Records Task Record Collection Item Detail Execution Detail Credential> - Credentials required for executing the task.
- endpoint String
- Endpoint to be invoked.
- execution
Type String - The action type of the task
- is
Executable BooleanContent - Is the Content an executable file?
- is
Locked Boolean - Is the script locked to prevent changes directly in Object Storage?
- is
Read BooleanOutput Variable Enabled - Is read output variable enabled
- target
Compartment StringId - OCID of the compartment to which the resource belongs to.
- variables
List<Get
Task Records Task Record Collection Item Detail Execution Detail Variable> - The variable of the task. At least one of the dynamicArguments or output needs to be provided.
- catalog
Id string - command string
- Optional command to execute the content. You can provide any commands/arguments that can't be part of the script.
- config
File string - Catalog Id having config file.
- contents
Get
Task Records Task Record Collection Item Detail Execution Detail Content[] - Content Source details.
- credentials
Get
Task Records Task Record Collection Item Detail Execution Detail Credential[] - Credentials required for executing the task.
- endpoint string
- Endpoint to be invoked.
- execution
Type string - The action type of the task
- is
Executable booleanContent - Is the Content an executable file?
- is
Locked boolean - Is the script locked to prevent changes directly in Object Storage?
- is
Read booleanOutput Variable Enabled - Is read output variable enabled
- target
Compartment stringId - OCID of the compartment to which the resource belongs to.
- variables
Get
Task Records Task Record Collection Item Detail Execution Detail Variable[] - The variable of the task. At least one of the dynamicArguments or output needs to be provided.
- catalog_
id str - command str
- Optional command to execute the content. You can provide any commands/arguments that can't be part of the script.
- config_
file str - Catalog Id having config file.
- contents
Sequence[Get
Task Records Task Record Collection Item Detail Execution Detail Content] - Content Source details.
- credentials
Sequence[Get
Task Records Task Record Collection Item Detail Execution Detail Credential] - Credentials required for executing the task.
- endpoint str
- Endpoint to be invoked.
- execution_
type str - The action type of the task
- is_
executable_ boolcontent - Is the Content an executable file?
- is_
locked bool - Is the script locked to prevent changes directly in Object Storage?
- is_
read_ booloutput_ variable_ enabled - Is read output variable enabled
- target_
compartment_ strid - OCID of the compartment to which the resource belongs to.
- variables
Sequence[Get
Task Records Task Record Collection Item Detail Execution Detail Variable] - The variable of the task. At least one of the dynamicArguments or output needs to be provided.
- catalog
Id String - command String
- Optional command to execute the content. You can provide any commands/arguments that can't be part of the script.
- config
File String - Catalog Id having config file.
- contents List<Property Map>
- Content Source details.
- credentials List<Property Map>
- Credentials required for executing the task.
- endpoint String
- Endpoint to be invoked.
- execution
Type String - The action type of the task
- is
Executable BooleanContent - Is the Content an executable file?
- is
Locked Boolean - Is the script locked to prevent changes directly in Object Storage?
- is
Read BooleanOutput Variable Enabled - Is read output variable enabled
- target
Compartment StringId - OCID of the compartment to which the resource belongs to.
- variables List<Property Map>
- The variable of the task. At least one of the dynamicArguments or output needs to be provided.
GetTaskRecordsTaskRecordCollectionItemDetailExecutionDetailContent
- bucket str
- Bucket Name.
- catalog_
id str - checksum str
- md5 checksum of the artifact.
- namespace str
- Namespace.
- object str
- Object Name.
- source_
type str - Content Source type details.
GetTaskRecordsTaskRecordCollectionItemDetailExecutionDetailCredential
- Display
Name string - A filter to return only resources that match the entire display name given.
- Id string
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Id string
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- display
Name String - A filter to return only resources that match the entire display name given.
- id String
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- display
Name string - A filter to return only resources that match the entire display name given.
- id string
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- display_
name str - A filter to return only resources that match the entire display name given.
- id str
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
- display
Name String - A filter to return only resources that match the entire display name given.
- id String
- Unique identifier or OCID for listing a single task record by id. Either compartmentId or id must be provided.
GetTaskRecordsTaskRecordCollectionItemDetailExecutionDetailVariable
- Input
Variables List<GetTask Records Task Record Collection Item Detail Execution Detail Variable Input Variable> - The input variables for the task.
- Output
Variables List<string> - The list of output variables.
- Input
Variables []GetTask Records Task Record Collection Item Detail Execution Detail Variable Input Variable - The input variables for the task.
- Output
Variables []string - The list of output variables.
- input
Variables List<GetTask Records Task Record Collection Item Detail Execution Detail Variable Input Variable> - The input variables for the task.
- output
Variables List<String> - The list of output variables.
- input
Variables GetTask Records Task Record Collection Item Detail Execution Detail Variable Input Variable[] - The input variables for the task.
- output
Variables string[] - The list of output variables.
- input_
variables Sequence[GetTask Records Task Record Collection Item Detail Execution Detail Variable Input Variable] - The input variables for the task.
- output_
variables Sequence[str] - The list of output variables.
- input
Variables List<Property Map> - The input variables for the task.
- output
Variables List<String> - The list of output variables.
GetTaskRecordsTaskRecordCollectionItemDetailExecutionDetailVariableInputVariable
- Description string
- The description of the argument.
- Name string
- The name of the argument.
- Type string
- The type of the Task.
- Description string
- The description of the argument.
- Name string
- The name of the argument.
- Type string
- The type of the Task.
- description String
- The description of the argument.
- name String
- The name of the argument.
- type String
- The type of the Task.
- description string
- The description of the argument.
- name string
- The name of the argument.
- type string
- The type of the Task.
- description str
- The description of the argument.
- name str
- The name of the argument.
- type str
- The type of the Task.
- description String
- The description of the argument.
- name String
- The name of the argument.
- type String
- The type of the Task.
GetTaskRecordsTaskRecordCollectionItemDetailProperty
- Num
Retries int - The number of retries allowed.
- Timeout
In intSeconds - The timeout in seconds for the task.
- Num
Retries int - The number of retries allowed.
- Timeout
In intSeconds - The timeout in seconds for the task.
- num
Retries Integer - The number of retries allowed.
- timeout
In IntegerSeconds - The timeout in seconds for the task.
- num
Retries number - The number of retries allowed.
- timeout
In numberSeconds - The timeout in seconds for the task.
- num_
retries int - The number of retries allowed.
- timeout_
in_ intseconds - The timeout in seconds for the task.
- num
Retries Number - The number of retries allowed.
- timeout
In NumberSeconds - The timeout in seconds for the task.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
