Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi
oci.FleetAppsManagement.getRunbookVersions
Explore with Pulumi AI
This data source provides the list of Runbook Versions in Oracle Cloud Infrastructure Fleet Apps Management service.
List versions for a runbook in Fleet Application Management.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testRunbookVersions = oci.FleetAppsManagement.getRunbookVersions({
compartmentId: compartmentId,
id: runbookVersionId,
name: runbookVersionName,
runbookId: testRunbook.id,
state: runbookVersionState,
});
import pulumi
import pulumi_oci as oci
test_runbook_versions = oci.FleetAppsManagement.get_runbook_versions(compartment_id=compartment_id,
id=runbook_version_id,
name=runbook_version_name,
runbook_id=test_runbook["id"],
state=runbook_version_state)
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.GetRunbookVersions(ctx, &fleetappsmanagement.GetRunbookVersionsArgs{
CompartmentId: pulumi.StringRef(compartmentId),
Id: pulumi.StringRef(runbookVersionId),
Name: pulumi.StringRef(runbookVersionName),
RunbookId: pulumi.StringRef(testRunbook.Id),
State: pulumi.StringRef(runbookVersionState),
}, 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 testRunbookVersions = Oci.FleetAppsManagement.GetRunbookVersions.Invoke(new()
{
CompartmentId = compartmentId,
Id = runbookVersionId,
Name = runbookVersionName,
RunbookId = testRunbook.Id,
State = runbookVersionState,
});
});
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.GetRunbookVersionsArgs;
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 testRunbookVersions = FleetAppsManagementFunctions.getRunbookVersions(GetRunbookVersionsArgs.builder()
.compartmentId(compartmentId)
.id(runbookVersionId)
.name(runbookVersionName)
.runbookId(testRunbook.id())
.state(runbookVersionState)
.build());
}
}
variables:
testRunbookVersions:
fn::invoke:
function: oci:FleetAppsManagement:getRunbookVersions
arguments:
compartmentId: ${compartmentId}
id: ${runbookVersionId}
name: ${runbookVersionName}
runbookId: ${testRunbook.id}
state: ${runbookVersionState}
Using getRunbookVersions
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 getRunbookVersions(args: GetRunbookVersionsArgs, opts?: InvokeOptions): Promise<GetRunbookVersionsResult>
function getRunbookVersionsOutput(args: GetRunbookVersionsOutputArgs, opts?: InvokeOptions): Output<GetRunbookVersionsResult>
def get_runbook_versions(compartment_id: Optional[str] = None,
filters: Optional[Sequence[GetRunbookVersionsFilter]] = None,
id: Optional[str] = None,
name: Optional[str] = None,
runbook_id: Optional[str] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetRunbookVersionsResult
def get_runbook_versions_output(compartment_id: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetRunbookVersionsFilterArgs]]]] = None,
id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
runbook_id: Optional[pulumi.Input[str]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetRunbookVersionsResult]
func GetRunbookVersions(ctx *Context, args *GetRunbookVersionsArgs, opts ...InvokeOption) (*GetRunbookVersionsResult, error)
func GetRunbookVersionsOutput(ctx *Context, args *GetRunbookVersionsOutputArgs, opts ...InvokeOption) GetRunbookVersionsResultOutput
> Note: This function is named GetRunbookVersions
in the Go SDK.
public static class GetRunbookVersions
{
public static Task<GetRunbookVersionsResult> InvokeAsync(GetRunbookVersionsArgs args, InvokeOptions? opts = null)
public static Output<GetRunbookVersionsResult> Invoke(GetRunbookVersionsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetRunbookVersionsResult> getRunbookVersions(GetRunbookVersionsArgs args, InvokeOptions options)
public static Output<GetRunbookVersionsResult> getRunbookVersions(GetRunbookVersionsArgs args, InvokeOptions options)
fn::invoke:
function: oci:FleetAppsManagement/getRunbookVersions:getRunbookVersions
arguments:
# arguments dictionary
The 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.
- Filters
List<Get
Runbook Versions Filter> - Id string
- A filter to return runbook versions whose identifier matches the given identifier.
- Name string
- A filter to return only resources that match the entire name given.
- Runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- State string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Filters
[]Get
Runbook Versions Filter - Id string
- A filter to return runbook versions whose identifier matches the given identifier.
- Name string
- A filter to return only resources that match the entire name given.
- Runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- State string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- filters
List<Get
Runbook Versions Filter> - id String
- A filter to return runbook versions whose identifier matches the given identifier.
- name String
- A filter to return only resources that match the entire name given.
- runbook
Id String - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- state String
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- filters
Get
Runbook Versions Filter[] - id string
- A filter to return runbook versions whose identifier matches the given identifier.
- name string
- A filter to return only resources that match the entire name given.
- runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- state string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- compartment_
id str - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- filters
Sequence[Get
Runbook Versions Filter] - id str
- A filter to return runbook versions whose identifier matches the given identifier.
- name str
- A filter to return only resources that match the entire name given.
- runbook_
id str - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- state str
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- filters List<Property Map>
- id String
- A filter to return runbook versions whose identifier matches the given identifier.
- name String
- A filter to return only resources that match the entire name given.
- runbook
Id String - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- state String
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
getRunbookVersions Result
The following output properties are available:
- Is
Latest bool - Runbook
Version List<GetCollections Runbook Versions Runbook Version Collection> - The list of runbook_version_collection.
- Compartment
Id string - Filters
List<Get
Runbook Versions Filter> - Id string
- The OCID of the resource.
- Name string
- The name of the task
- Runbook
Id string - The OCID of the resource.
- State string
- The current state of the FleetResource.
- Is
Latest bool - Runbook
Version []GetCollections Runbook Versions Runbook Version Collection - The list of runbook_version_collection.
- Compartment
Id string - Filters
[]Get
Runbook Versions Filter - Id string
- The OCID of the resource.
- Name string
- The name of the task
- Runbook
Id string - The OCID of the resource.
- State string
- The current state of the FleetResource.
- is
Latest Boolean - runbook
Version List<GetCollections Runbook Versions Runbook Version Collection> - The list of runbook_version_collection.
- compartment
Id String - filters
List<Get
Runbook Versions Filter> - id String
- The OCID of the resource.
- name String
- The name of the task
- runbook
Id String - The OCID of the resource.
- state String
- The current state of the FleetResource.
- is
Latest boolean - runbook
Version GetCollections Runbook Versions Runbook Version Collection[] - The list of runbook_version_collection.
- compartment
Id string - filters
Get
Runbook Versions Filter[] - id string
- The OCID of the resource.
- name string
- The name of the task
- runbook
Id string - The OCID of the resource.
- state string
- The current state of the FleetResource.
- is_
latest bool - runbook_
version_ Sequence[Getcollections Runbook Versions Runbook Version Collection] - The list of runbook_version_collection.
- compartment_
id str - filters
Sequence[Get
Runbook Versions Filter] - id str
- The OCID of the resource.
- name str
- The name of the task
- runbook_
id str - The OCID of the resource.
- state str
- The current state of the FleetResource.
- is
Latest Boolean - runbook
Version List<Property Map>Collections - The list of runbook_version_collection.
- compartment
Id String - filters List<Property Map>
- id String
- The OCID of the resource.
- name String
- The name of the task
- runbook
Id String - The OCID of the resource.
- state String
- The current state of the FleetResource.
Supporting Types
GetRunbookVersionsFilter
GetRunbookVersionsRunbookVersionCollection
GetRunbookVersionsRunbookVersionCollectionItem
- 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"}
- Execution
Workflow List<GetDetails Runbook Versions Runbook Version Collection Item Execution Workflow Detail> - Execution Workflow details.
- 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"}
- Groups
List<Get
Runbook Versions Runbook Version Collection Item Group> - The groups of the runbook.
- Id string
- A filter to return runbook versions whose identifier matches the given identifier.
- Is
Latest bool - 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.
- Name string
- A filter to return only resources that match the entire name given.
- Rollback
Workflow List<GetDetails Runbook Versions Runbook Version Collection Item Rollback Workflow Detail> - Rollback Workflow details.
- Runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- State string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Tasks
List<Get
Runbook Versions Runbook Version Collection Item Task> - A set of tasks to execute in the runbook.
- 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.
- 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"}
- Execution
Workflow []GetDetails Runbook Versions Runbook Version Collection Item Execution Workflow Detail - Execution Workflow details.
- 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"}
- Groups
[]Get
Runbook Versions Runbook Version Collection Item Group - The groups of the runbook.
- Id string
- A filter to return runbook versions whose identifier matches the given identifier.
- Is
Latest bool - 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.
- Name string
- A filter to return only resources that match the entire name given.
- Rollback
Workflow []GetDetails Runbook Versions Runbook Version Collection Item Rollback Workflow Detail - Rollback Workflow details.
- Runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- State string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Tasks
[]Get
Runbook Versions Runbook Version Collection Item Task - A set of tasks to execute in the runbook.
- 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.
- 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"}
- execution
Workflow List<GetDetails Runbook Versions Runbook Version Collection Item Execution Workflow Detail> - Execution Workflow details.
- 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"}
- groups
List<Get
Runbook Versions Runbook Version Collection Item Group> - The groups of the runbook.
- id String
- A filter to return runbook versions whose identifier matches the given identifier.
- is
Latest Boolean - 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.
- name String
- A filter to return only resources that match the entire name given.
- rollback
Workflow List<GetDetails Runbook Versions Runbook Version Collection Item Rollback Workflow Detail> - Rollback Workflow details.
- runbook
Id String - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- state String
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- tasks
List<Get
Runbook Versions Runbook Version Collection Item Task> - A set of tasks to execute in the runbook.
- 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.
- 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"}
- execution
Workflow GetDetails Runbook Versions Runbook Version Collection Item Execution Workflow Detail[] - Execution Workflow details.
- {[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"}
- groups
Get
Runbook Versions Runbook Version Collection Item Group[] - The groups of the runbook.
- id string
- A filter to return runbook versions whose identifier matches the given identifier.
- is
Latest boolean - 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.
- name string
- A filter to return only resources that match the entire name given.
- rollback
Workflow GetDetails Runbook Versions Runbook Version Collection Item Rollback Workflow Detail[] - Rollback Workflow details.
- runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- state string
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- tasks
Get
Runbook Versions Runbook Version Collection Item Task[] - A set of tasks to execute in the runbook.
- 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.
- 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"}
- execution_
workflow_ Sequence[Getdetails Runbook Versions Runbook Version Collection Item Execution Workflow Detail] - Execution Workflow details.
- 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"}
- groups
Sequence[Get
Runbook Versions Runbook Version Collection Item Group] - The groups of the runbook.
- id str
- A filter to return runbook versions whose identifier matches the given identifier.
- is_
latest bool - 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.
- name str
- A filter to return only resources that match the entire name given.
- rollback_
workflow_ Sequence[Getdetails Runbook Versions Runbook Version Collection Item Rollback Workflow Detail] - Rollback Workflow details.
- runbook_
id str - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- state str
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- tasks
Sequence[Get
Runbook Versions Runbook Version Collection Item Task] - A set of tasks to execute in the runbook.
- 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.
- 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"}
- execution
Workflow List<Property Map>Details - Execution Workflow details.
- 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"}
- groups List<Property Map>
- The groups of the runbook.
- id String
- A filter to return runbook versions whose identifier matches the given identifier.
- is
Latest Boolean - 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.
- name String
- A filter to return only resources that match the entire name given.
- rollback
Workflow List<Property Map>Details - Rollback Workflow details.
- runbook
Id String - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- state String
- A filter to return only resources whose lifecycleState matches the given lifecycleState.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- tasks List<Property Map>
- A set of tasks to execute in the runbook.
- 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.
GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetail
- Workflows
List<Get
Runbook Versions Runbook Version Collection Item Execution Workflow Detail Workflow> - Rollback Workflow for the runbook.
- Workflows
[]Get
Runbook Versions Runbook Version Collection Item Execution Workflow Detail Workflow - Rollback Workflow for the runbook.
- workflows
List<Get
Runbook Versions Runbook Version Collection Item Execution Workflow Detail Workflow> - Rollback Workflow for the runbook.
- workflows
Get
Runbook Versions Runbook Version Collection Item Execution Workflow Detail Workflow[] - Rollback Workflow for the runbook.
- workflows
Sequence[Get
Runbook Versions Runbook Version Collection Item Execution Workflow Detail Workflow] - Rollback Workflow for the runbook.
- workflows List<Property Map>
- Rollback Workflow for the runbook.
GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetailWorkflow
- Group
Name string - Name of the group.
- Steps
List<Get
Runbook Versions Runbook Version Collection Item Execution Workflow Detail Workflow Step> - Tasks within the Group. Provide the stepName for all applicable tasks.
- Type string
- Input argument Type.
- Group
Name string - Name of the group.
- Steps
[]Get
Runbook Versions Runbook Version Collection Item Execution Workflow Detail Workflow Step - Tasks within the Group. Provide the stepName for all applicable tasks.
- Type string
- Input argument Type.
- group
Name String - Name of the group.
- steps
List<Get
Runbook Versions Runbook Version Collection Item Execution Workflow Detail Workflow Step> - Tasks within the Group. Provide the stepName for all applicable tasks.
- type String
- Input argument Type.
- group
Name string - Name of the group.
- steps
Get
Runbook Versions Runbook Version Collection Item Execution Workflow Detail Workflow Step[] - Tasks within the Group. Provide the stepName for all applicable tasks.
- type string
- Input argument Type.
- group_
name str - Name of the group.
- steps
Sequence[Get
Runbook Versions Runbook Version Collection Item Execution Workflow Detail Workflow Step] - Tasks within the Group. Provide the stepName for all applicable tasks.
- type str
- Input argument Type.
- group
Name String - Name of the group.
- steps List<Property Map>
- Tasks within the Group. Provide the stepName for all applicable tasks.
- type String
- Input argument Type.
GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetailWorkflowStep
- group_
name str - Name of the group.
- step_
name str - The name of the task step the output variable belongs to.
- steps Sequence[str]
- Tasks within the Group. Provide the stepName for all applicable tasks.
- type str
- Input argument Type.
GetRunbookVersionsRunbookVersionCollectionItemGroup
- Name string
- A filter to return only resources that match the entire name given.
- Properties
List<Get
Runbook Versions Runbook Version Collection Item Group Property> - The properties of the task.
- Type string
- Input argument Type.
- Name string
- A filter to return only resources that match the entire name given.
- Properties
[]Get
Runbook Versions Runbook Version Collection Item Group Property - The properties of the task.
- Type string
- Input argument Type.
- name String
- A filter to return only resources that match the entire name given.
- properties
List<Get
Runbook Versions Runbook Version Collection Item Group Property> - The properties of the task.
- type String
- Input argument Type.
- name string
- A filter to return only resources that match the entire name given.
- properties
Get
Runbook Versions Runbook Version Collection Item Group Property[] - The properties of the task.
- type string
- Input argument Type.
- name str
- A filter to return only resources that match the entire name given.
- properties
Sequence[Get
Runbook Versions Runbook Version Collection Item Group Property] - The properties of the task.
- type str
- Input argument Type.
- name String
- A filter to return only resources that match the entire name given.
- properties List<Property Map>
- The properties of the task.
- type String
- Input argument Type.
GetRunbookVersionsRunbookVersionCollectionItemGroupProperty
- Action
On stringFailure - The action to be taken in case of a failure.
- Notification
Preferences List<GetRunbook Versions Runbook Version Collection Item Group Property Notification Preference> - Preferences to send notifications on the task activities.
- Pause
Details List<GetRunbook Versions Runbook Version Collection Item Group Property Pause Detail> - Pause Details
- Pre
Condition string - Build control flow conditions that determine the relevance of the task execution.
- Run
Ons List<GetRunbook Versions Runbook Version Collection Item Group Property Run On> - The runon conditions
- Action
On stringFailure - The action to be taken in case of a failure.
- Notification
Preferences []GetRunbook Versions Runbook Version Collection Item Group Property Notification Preference - Preferences to send notifications on the task activities.
- Pause
Details []GetRunbook Versions Runbook Version Collection Item Group Property Pause Detail - Pause Details
- Pre
Condition string - Build control flow conditions that determine the relevance of the task execution.
- Run
Ons []GetRunbook Versions Runbook Version Collection Item Group Property Run On - The runon conditions
- action
On StringFailure - The action to be taken in case of a failure.
- notification
Preferences List<GetRunbook Versions Runbook Version Collection Item Group Property Notification Preference> - Preferences to send notifications on the task activities.
- pause
Details List<GetRunbook Versions Runbook Version Collection Item Group Property Pause Detail> - Pause Details
- pre
Condition String - Build control flow conditions that determine the relevance of the task execution.
- run
Ons List<GetRunbook Versions Runbook Version Collection Item Group Property Run On> - The runon conditions
- action
On stringFailure - The action to be taken in case of a failure.
- notification
Preferences GetRunbook Versions Runbook Version Collection Item Group Property Notification Preference[] - Preferences to send notifications on the task activities.
- pause
Details GetRunbook Versions Runbook Version Collection Item Group Property Pause Detail[] - Pause Details
- pre
Condition string - Build control flow conditions that determine the relevance of the task execution.
- run
Ons GetRunbook Versions Runbook Version Collection Item Group Property Run On[] - The runon conditions
- action_
on_ strfailure - The action to be taken in case of a failure.
- notification_
preferences Sequence[GetRunbook Versions Runbook Version Collection Item Group Property Notification Preference] - Preferences to send notifications on the task activities.
- pause_
details Sequence[GetRunbook Versions Runbook Version Collection Item Group Property Pause Detail] - Pause Details
- pre_
condition str - Build control flow conditions that determine the relevance of the task execution.
- run_
ons Sequence[GetRunbook Versions Runbook Version Collection Item Group Property Run On] - The runon conditions
- action
On StringFailure - The action to be taken in case of a failure.
- notification
Preferences List<Property Map> - Preferences to send notifications on the task activities.
- pause
Details List<Property Map> - Pause Details
- pre
Condition String - Build control flow conditions that determine the relevance of the task execution.
- run
Ons List<Property Map> - The runon conditions
GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyNotificationPreference
- Should
Notify boolOn Pause - Enables notification on pause.
- Should
Notify boolOn Task Failure - Enables or disables notification on Task Failures.
- Should
Notify boolOn Task Success - Enables or disables notification on Task Success.
- Should
Notify boolOn Pause - Enables notification on pause.
- Should
Notify boolOn Task Failure - Enables or disables notification on Task Failures.
- Should
Notify boolOn Task Success - Enables or disables notification on Task Success.
- should
Notify BooleanOn Pause - Enables notification on pause.
- should
Notify BooleanOn Task Failure - Enables or disables notification on Task Failures.
- should
Notify BooleanOn Task Success - Enables or disables notification on Task Success.
- should
Notify booleanOn Pause - Enables notification on pause.
- should
Notify booleanOn Task Failure - Enables or disables notification on Task Failures.
- should
Notify booleanOn Task Success - Enables or disables notification on Task Success.
- should_
notify_ boolon_ pause - Enables notification on pause.
- should_
notify_ boolon_ task_ failure - Enables or disables notification on Task Failures.
- should_
notify_ boolon_ task_ success - Enables or disables notification on Task Success.
- should
Notify BooleanOn Pause - Enables notification on pause.
- should
Notify BooleanOn Task Failure - Enables or disables notification on Task Failures.
- should
Notify BooleanOn Task Success - Enables or disables notification on Task Success.
GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyPauseDetail
- Duration
In intMinutes - Time in minutes to apply Pause.
- Kind string
- Run on based On.
- Duration
In intMinutes - Time in minutes to apply Pause.
- Kind string
- Run on based On.
- duration
In IntegerMinutes - Time in minutes to apply Pause.
- kind String
- Run on based On.
- duration
In numberMinutes - Time in minutes to apply Pause.
- kind string
- Run on based On.
- duration_
in_ intminutes - Time in minutes to apply Pause.
- kind str
- Run on based On.
- duration
In NumberMinutes - Time in minutes to apply Pause.
- kind String
- Run on based On.
GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOn
- Condition string
- Build control flow conditions that determine the relevance of the task execution.
- Host string
- OCID of the self hosted instance.
- Kind string
- Run on based On.
- Previous
Task List<GetInstance Details Runbook Versions Runbook Version Collection Item Group Property Run On Previous Task Instance Detail> - Previous Task Instance Details
- Condition string
- Build control flow conditions that determine the relevance of the task execution.
- Host string
- OCID of the self hosted instance.
- Kind string
- Run on based On.
- Previous
Task []GetInstance Details Runbook Versions Runbook Version Collection Item Group Property Run On Previous Task Instance Detail - Previous Task Instance Details
- condition String
- Build control flow conditions that determine the relevance of the task execution.
- host String
- OCID of the self hosted instance.
- kind String
- Run on based On.
- previous
Task List<GetInstance Details Runbook Versions Runbook Version Collection Item Group Property Run On Previous Task Instance Detail> - Previous Task Instance Details
- condition string
- Build control flow conditions that determine the relevance of the task execution.
- host string
- OCID of the self hosted instance.
- kind string
- Run on based On.
- previous
Task GetInstance Details Runbook Versions Runbook Version Collection Item Group Property Run On Previous Task Instance Detail[] - Previous Task Instance Details
- condition str
- Build control flow conditions that determine the relevance of the task execution.
- host str
- OCID of the self hosted instance.
- kind str
- Run on based On.
- previous_
task_ Sequence[Getinstance_ details Runbook Versions Runbook Version Collection Item Group Property Run On Previous Task Instance Detail] - Previous Task Instance Details
- condition String
- Build control flow conditions that determine the relevance of the task execution.
- host String
- OCID of the self hosted instance.
- kind String
- Run on based On.
- previous
Task List<Property Map>Instance Details - Previous Task Instance Details
GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOnPreviousTaskInstanceDetail
- Output
Variable List<GetDetails Runbook Versions Runbook Version Collection Item Group Property Run On Previous Task Instance Detail Output Variable Detail> - The details of the output variable that will be used for mapping.
- Resource
Id string - Resource Ocid.
- Resource
Type string - Resource Type.
- Output
Variable []GetDetails Runbook Versions Runbook Version Collection Item Group Property Run On Previous Task Instance Detail Output Variable Detail - The details of the output variable that will be used for mapping.
- Resource
Id string - Resource Ocid.
- Resource
Type string - Resource Type.
- output
Variable List<GetDetails Runbook Versions Runbook Version Collection Item Group Property Run On Previous Task Instance Detail Output Variable Detail> - The details of the output variable that will be used for mapping.
- resource
Id String - Resource Ocid.
- resource
Type String - Resource Type.
- output
Variable GetDetails Runbook Versions Runbook Version Collection Item Group Property Run On Previous Task Instance Detail Output Variable Detail[] - The details of the output variable that will be used for mapping.
- resource
Id string - Resource Ocid.
- resource
Type string - Resource Type.
- output_
variable_ Sequence[Getdetails Runbook Versions Runbook Version Collection Item Group Property Run On Previous Task Instance Detail Output Variable Detail] - The details of the output variable that will be used for mapping.
- resource_
id str - Resource Ocid.
- resource_
type str - Resource Type.
- output
Variable List<Property Map>Details - The details of the output variable that will be used for mapping.
- resource
Id String - Resource Ocid.
- resource
Type String - Resource Type.
GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOnPreviousTaskInstanceDetailOutputVariableDetail
- Output
Variable stringName - The name of the output variable whose value has to be mapped.
- Step
Name string - The name of the task step the output variable belongs to.
- Output
Variable stringName - The name of the output variable whose value has to be mapped.
- Step
Name string - The name of the task step the output variable belongs to.
- output
Variable StringName - The name of the output variable whose value has to be mapped.
- step
Name String - The name of the task step the output variable belongs to.
- output
Variable stringName - The name of the output variable whose value has to be mapped.
- step
Name string - The name of the task step the output variable belongs to.
- output_
variable_ strname - The name of the output variable whose value has to be mapped.
- step_
name str - The name of the task step the output variable belongs to.
- output
Variable StringName - The name of the output variable whose value has to be mapped.
- step
Name String - The name of the task step the output variable belongs to.
GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetail
- Scope string
- The scope of the task.
- Workflows
List<Get
Runbook Versions Runbook Version Collection Item Rollback Workflow Detail Workflow> - Rollback Workflow for the runbook.
- Scope string
- The scope of the task.
- Workflows
[]Get
Runbook Versions Runbook Version Collection Item Rollback Workflow Detail Workflow - Rollback Workflow for the runbook.
- scope String
- The scope of the task.
- workflows
List<Get
Runbook Versions Runbook Version Collection Item Rollback Workflow Detail Workflow> - Rollback Workflow for the runbook.
- scope string
- The scope of the task.
- workflows
Get
Runbook Versions Runbook Version Collection Item Rollback Workflow Detail Workflow[] - Rollback Workflow for the runbook.
- scope str
- The scope of the task.
- workflows
Sequence[Get
Runbook Versions Runbook Version Collection Item Rollback Workflow Detail Workflow] - Rollback Workflow for the runbook.
- scope String
- The scope of the task.
- workflows List<Property Map>
- Rollback Workflow for the runbook.
GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetailWorkflow
- Group
Name string - Name of the group.
- Steps
List<Get
Runbook Versions Runbook Version Collection Item Rollback Workflow Detail Workflow Step> - Tasks within the Group. Provide the stepName for all applicable tasks.
- Type string
- Input argument Type.
- Group
Name string - Name of the group.
- Steps
[]Get
Runbook Versions Runbook Version Collection Item Rollback Workflow Detail Workflow Step - Tasks within the Group. Provide the stepName for all applicable tasks.
- Type string
- Input argument Type.
- group
Name String - Name of the group.
- steps
List<Get
Runbook Versions Runbook Version Collection Item Rollback Workflow Detail Workflow Step> - Tasks within the Group. Provide the stepName for all applicable tasks.
- type String
- Input argument Type.
- group
Name string - Name of the group.
- steps
Get
Runbook Versions Runbook Version Collection Item Rollback Workflow Detail Workflow Step[] - Tasks within the Group. Provide the stepName for all applicable tasks.
- type string
- Input argument Type.
- group_
name str - Name of the group.
- steps
Sequence[Get
Runbook Versions Runbook Version Collection Item Rollback Workflow Detail Workflow Step] - Tasks within the Group. Provide the stepName for all applicable tasks.
- type str
- Input argument Type.
- group
Name String - Name of the group.
- steps List<Property Map>
- Tasks within the Group. Provide the stepName for all applicable tasks.
- type String
- Input argument Type.
GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetailWorkflowStep
- group_
name str - Name of the group.
- step_
name str - The name of the task step the output variable belongs to.
- steps Sequence[str]
- Tasks within the Group. Provide the stepName for all applicable tasks.
- type str
- Input argument Type.
GetRunbookVersionsRunbookVersionCollectionItemTask
- Output
Variable List<GetMappings Runbook Versions Runbook Version Collection Item Task Output Variable Mapping> - Mapping output variables of previous tasks to the input variables of the current task.
- Step
Name string - The name of the task step the output variable belongs to.
- Step
Properties List<GetRunbook Versions Runbook Version Collection Item Task Step Property> - The properties of the component.
- Task
Record List<GetDetails Runbook Versions Runbook Version Collection Item Task Task Record Detail> - The details of the task.
- Output
Variable []GetMappings Runbook Versions Runbook Version Collection Item Task Output Variable Mapping - Mapping output variables of previous tasks to the input variables of the current task.
- Step
Name string - The name of the task step the output variable belongs to.
- Step
Properties []GetRunbook Versions Runbook Version Collection Item Task Step Property - The properties of the component.
- Task
Record []GetDetails Runbook Versions Runbook Version Collection Item Task Task Record Detail - The details of the task.
- output
Variable List<GetMappings Runbook Versions Runbook Version Collection Item Task Output Variable Mapping> - Mapping output variables of previous tasks to the input variables of the current task.
- step
Name String - The name of the task step the output variable belongs to.
- step
Properties List<GetRunbook Versions Runbook Version Collection Item Task Step Property> - The properties of the component.
- task
Record List<GetDetails Runbook Versions Runbook Version Collection Item Task Task Record Detail> - The details of the task.
- output
Variable GetMappings Runbook Versions Runbook Version Collection Item Task Output Variable Mapping[] - Mapping output variables of previous tasks to the input variables of the current task.
- step
Name string - The name of the task step the output variable belongs to.
- step
Properties GetRunbook Versions Runbook Version Collection Item Task Step Property[] - The properties of the component.
- task
Record GetDetails Runbook Versions Runbook Version Collection Item Task Task Record Detail[] - The details of the task.
- output_
variable_ Sequence[Getmappings Runbook Versions Runbook Version Collection Item Task Output Variable Mapping] - Mapping output variables of previous tasks to the input variables of the current task.
- step_
name str - The name of the task step the output variable belongs to.
- step_
properties Sequence[GetRunbook Versions Runbook Version Collection Item Task Step Property] - The properties of the component.
- task_
record_ Sequence[Getdetails Runbook Versions Runbook Version Collection Item Task Task Record Detail] - The details of the task.
- output
Variable List<Property Map>Mappings - Mapping output variables of previous tasks to the input variables of the current task.
- step
Name String - The name of the task step the output variable belongs to.
- step
Properties List<Property Map> - The properties of the component.
- task
Record List<Property Map>Details - The details of the task.
GetRunbookVersionsRunbookVersionCollectionItemTaskOutputVariableMapping
- Name string
- A filter to return only resources that match the entire name given.
- Output
Variable List<GetDetails Runbook Versions Runbook Version Collection Item Task Output Variable Mapping Output Variable Detail> - The details of the output variable that will be used for mapping.
- Name string
- A filter to return only resources that match the entire name given.
- Output
Variable []GetDetails Runbook Versions Runbook Version Collection Item Task Output Variable Mapping Output Variable Detail - The details of the output variable that will be used for mapping.
- name String
- A filter to return only resources that match the entire name given.
- output
Variable List<GetDetails Runbook Versions Runbook Version Collection Item Task Output Variable Mapping Output Variable Detail> - The details of the output variable that will be used for mapping.
- name string
- A filter to return only resources that match the entire name given.
- output
Variable GetDetails Runbook Versions Runbook Version Collection Item Task Output Variable Mapping Output Variable Detail[] - The details of the output variable that will be used for mapping.
- name str
- A filter to return only resources that match the entire name given.
- output_
variable_ Sequence[Getdetails Runbook Versions Runbook Version Collection Item Task Output Variable Mapping Output Variable Detail] - The details of the output variable that will be used for mapping.
- name String
- A filter to return only resources that match the entire name given.
- output
Variable List<Property Map>Details - The details of the output variable that will be used for mapping.
GetRunbookVersionsRunbookVersionCollectionItemTaskOutputVariableMappingOutputVariableDetail
- Output
Variable stringName - The name of the output variable whose value has to be mapped.
- Step
Name string - The name of the task step the output variable belongs to.
- Output
Variable stringName - The name of the output variable whose value has to be mapped.
- Step
Name string - The name of the task step the output variable belongs to.
- output
Variable StringName - The name of the output variable whose value has to be mapped.
- step
Name String - The name of the task step the output variable belongs to.
- output
Variable stringName - The name of the output variable whose value has to be mapped.
- step
Name string - The name of the task step the output variable belongs to.
- output_
variable_ strname - The name of the output variable whose value has to be mapped.
- step_
name str - The name of the task step the output variable belongs to.
- output
Variable StringName - The name of the output variable whose value has to be mapped.
- step
Name String - The name of the task step the output variable belongs to.
GetRunbookVersionsRunbookVersionCollectionItemTaskStepProperty
- Action
On stringFailure - The action to be taken in case of a failure.
- Notification
Preferences List<GetRunbook Versions Runbook Version Collection Item Task Step Property Notification Preference> - Preferences to send notifications on the task activities.
- Pause
Details List<GetRunbook Versions Runbook Version Collection Item Task Step Property Pause Detail> - Pause Details
- Pre
Condition string - Build control flow conditions that determine the relevance of the task execution.
- Run
Ons List<GetRunbook Versions Runbook Version Collection Item Task Step Property Run On> - The runon conditions
- Action
On stringFailure - The action to be taken in case of a failure.
- Notification
Preferences []GetRunbook Versions Runbook Version Collection Item Task Step Property Notification Preference - Preferences to send notifications on the task activities.
- Pause
Details []GetRunbook Versions Runbook Version Collection Item Task Step Property Pause Detail - Pause Details
- Pre
Condition string - Build control flow conditions that determine the relevance of the task execution.
- Run
Ons []GetRunbook Versions Runbook Version Collection Item Task Step Property Run On - The runon conditions
- action
On StringFailure - The action to be taken in case of a failure.
- notification
Preferences List<GetRunbook Versions Runbook Version Collection Item Task Step Property Notification Preference> - Preferences to send notifications on the task activities.
- pause
Details List<GetRunbook Versions Runbook Version Collection Item Task Step Property Pause Detail> - Pause Details
- pre
Condition String - Build control flow conditions that determine the relevance of the task execution.
- run
Ons List<GetRunbook Versions Runbook Version Collection Item Task Step Property Run On> - The runon conditions
- action
On stringFailure - The action to be taken in case of a failure.
- notification
Preferences GetRunbook Versions Runbook Version Collection Item Task Step Property Notification Preference[] - Preferences to send notifications on the task activities.
- pause
Details GetRunbook Versions Runbook Version Collection Item Task Step Property Pause Detail[] - Pause Details
- pre
Condition string - Build control flow conditions that determine the relevance of the task execution.
- run
Ons GetRunbook Versions Runbook Version Collection Item Task Step Property Run On[] - The runon conditions
- action_
on_ strfailure - The action to be taken in case of a failure.
- notification_
preferences Sequence[GetRunbook Versions Runbook Version Collection Item Task Step Property Notification Preference] - Preferences to send notifications on the task activities.
- pause_
details Sequence[GetRunbook Versions Runbook Version Collection Item Task Step Property Pause Detail] - Pause Details
- pre_
condition str - Build control flow conditions that determine the relevance of the task execution.
- run_
ons Sequence[GetRunbook Versions Runbook Version Collection Item Task Step Property Run On] - The runon conditions
- action
On StringFailure - The action to be taken in case of a failure.
- notification
Preferences List<Property Map> - Preferences to send notifications on the task activities.
- pause
Details List<Property Map> - Pause Details
- pre
Condition String - Build control flow conditions that determine the relevance of the task execution.
- run
Ons List<Property Map> - The runon conditions
GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyNotificationPreference
- Should
Notify boolOn Pause - Enables notification on pause.
- Should
Notify boolOn Task Failure - Enables or disables notification on Task Failures.
- Should
Notify boolOn Task Success - Enables or disables notification on Task Success.
- Should
Notify boolOn Pause - Enables notification on pause.
- Should
Notify boolOn Task Failure - Enables or disables notification on Task Failures.
- Should
Notify boolOn Task Success - Enables or disables notification on Task Success.
- should
Notify BooleanOn Pause - Enables notification on pause.
- should
Notify BooleanOn Task Failure - Enables or disables notification on Task Failures.
- should
Notify BooleanOn Task Success - Enables or disables notification on Task Success.
- should
Notify booleanOn Pause - Enables notification on pause.
- should
Notify booleanOn Task Failure - Enables or disables notification on Task Failures.
- should
Notify booleanOn Task Success - Enables or disables notification on Task Success.
- should_
notify_ boolon_ pause - Enables notification on pause.
- should_
notify_ boolon_ task_ failure - Enables or disables notification on Task Failures.
- should_
notify_ boolon_ task_ success - Enables or disables notification on Task Success.
- should
Notify BooleanOn Pause - Enables notification on pause.
- should
Notify BooleanOn Task Failure - Enables or disables notification on Task Failures.
- should
Notify BooleanOn Task Success - Enables or disables notification on Task Success.
GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyPauseDetail
- Duration
In intMinutes - Time in minutes to apply Pause.
- Kind string
- Run on based On.
- Duration
In intMinutes - Time in minutes to apply Pause.
- Kind string
- Run on based On.
- duration
In IntegerMinutes - Time in minutes to apply Pause.
- kind String
- Run on based On.
- duration
In numberMinutes - Time in minutes to apply Pause.
- kind string
- Run on based On.
- duration_
in_ intminutes - Time in minutes to apply Pause.
- kind str
- Run on based On.
- duration
In NumberMinutes - Time in minutes to apply Pause.
- kind String
- Run on based On.
GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOn
- Condition string
- Build control flow conditions that determine the relevance of the task execution.
- Host string
- OCID of the self hosted instance.
- Kind string
- Run on based On.
- Previous
Task List<GetInstance Details Runbook Versions Runbook Version Collection Item Task Step Property Run On Previous Task Instance Detail> - Previous Task Instance Details
- Condition string
- Build control flow conditions that determine the relevance of the task execution.
- Host string
- OCID of the self hosted instance.
- Kind string
- Run on based On.
- Previous
Task []GetInstance Details Runbook Versions Runbook Version Collection Item Task Step Property Run On Previous Task Instance Detail - Previous Task Instance Details
- condition String
- Build control flow conditions that determine the relevance of the task execution.
- host String
- OCID of the self hosted instance.
- kind String
- Run on based On.
- previous
Task List<GetInstance Details Runbook Versions Runbook Version Collection Item Task Step Property Run On Previous Task Instance Detail> - Previous Task Instance Details
- condition string
- Build control flow conditions that determine the relevance of the task execution.
- host string
- OCID of the self hosted instance.
- kind string
- Run on based On.
- previous
Task GetInstance Details Runbook Versions Runbook Version Collection Item Task Step Property Run On Previous Task Instance Detail[] - Previous Task Instance Details
- condition str
- Build control flow conditions that determine the relevance of the task execution.
- host str
- OCID of the self hosted instance.
- kind str
- Run on based On.
- previous_
task_ Sequence[Getinstance_ details Runbook Versions Runbook Version Collection Item Task Step Property Run On Previous Task Instance Detail] - Previous Task Instance Details
- condition String
- Build control flow conditions that determine the relevance of the task execution.
- host String
- OCID of the self hosted instance.
- kind String
- Run on based On.
- previous
Task List<Property Map>Instance Details - Previous Task Instance Details
GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOnPreviousTaskInstanceDetail
- Output
Variable List<GetDetails Runbook Versions Runbook Version Collection Item Task Step Property Run On Previous Task Instance Detail Output Variable Detail> - The details of the output variable that will be used for mapping.
- Resource
Id string - Resource Ocid.
- Resource
Type string - Resource Type.
- Output
Variable []GetDetails Runbook Versions Runbook Version Collection Item Task Step Property Run On Previous Task Instance Detail Output Variable Detail - The details of the output variable that will be used for mapping.
- Resource
Id string - Resource Ocid.
- Resource
Type string - Resource Type.
- output
Variable List<GetDetails Runbook Versions Runbook Version Collection Item Task Step Property Run On Previous Task Instance Detail Output Variable Detail> - The details of the output variable that will be used for mapping.
- resource
Id String - Resource Ocid.
- resource
Type String - Resource Type.
- output
Variable GetDetails Runbook Versions Runbook Version Collection Item Task Step Property Run On Previous Task Instance Detail Output Variable Detail[] - The details of the output variable that will be used for mapping.
- resource
Id string - Resource Ocid.
- resource
Type string - Resource Type.
- output_
variable_ Sequence[Getdetails Runbook Versions Runbook Version Collection Item Task Step Property Run On Previous Task Instance Detail Output Variable Detail] - The details of the output variable that will be used for mapping.
- resource_
id str - Resource Ocid.
- resource_
type str - Resource Type.
- output
Variable List<Property Map>Details - The details of the output variable that will be used for mapping.
- resource
Id String - Resource Ocid.
- resource
Type String - Resource Type.
GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOnPreviousTaskInstanceDetailOutputVariableDetail
- Output
Variable stringName - The name of the output variable whose value has to be mapped.
- Step
Name string - The name of the task step the output variable belongs to.
- Output
Variable stringName - The name of the output variable whose value has to be mapped.
- Step
Name string - The name of the task step the output variable belongs to.
- output
Variable StringName - The name of the output variable whose value has to be mapped.
- step
Name String - The name of the task step the output variable belongs to.
- output
Variable stringName - The name of the output variable whose value has to be mapped.
- step
Name string - The name of the task step the output variable belongs to.
- output_
variable_ strname - The name of the output variable whose value has to be mapped.
- step_
name str - The name of the task step the output variable belongs to.
- output
Variable StringName - The name of the output variable whose value has to be mapped.
- step
Name String - The name of the task step the output variable belongs to.
GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetail
- Description string
- The description of the argument.
- Execution
Details List<GetRunbook Versions Runbook Version Collection Item Task Task Record Detail Execution Detail> - Execution details.
- Is
Apply boolSubject Task - Is this an Apply Subject Task? Ex. Patch Execution Task
- Is
Copy boolTo Library Enabled - Make a copy of this task in Library
- Is
Discovery boolOutput Task - Is this a discovery output task?
- Name string
- A filter to return only resources that match the entire name given.
- Os
Type string - The OS for the task.
- Platform string
- The platform of the runbook.
- Properties
List<Get
Runbook Versions Runbook Version Collection Item Task Task Record Detail Property> - The properties of the task.
- Scope string
- The scope of the task.
- Task
Record stringId - The ID of taskRecord.
- Description string
- The description of the argument.
- Execution
Details []GetRunbook Versions Runbook Version Collection Item Task Task Record Detail Execution Detail - Execution details.
- Is
Apply boolSubject Task - Is this an Apply Subject Task? Ex. Patch Execution Task
- Is
Copy boolTo Library Enabled - Make a copy of this task in Library
- Is
Discovery boolOutput Task - Is this a discovery output task?
- Name string
- A filter to return only resources that match the entire name given.
- Os
Type string - The OS for the task.
- Platform string
- The platform of the runbook.
- Properties
[]Get
Runbook Versions Runbook Version Collection Item Task Task Record Detail Property - The properties of the task.
- Scope string
- The scope of the task.
- Task
Record stringId - The ID of taskRecord.
- description String
- The description of the argument.
- execution
Details List<GetRunbook Versions Runbook Version Collection Item Task Task Record Detail Execution Detail> - Execution details.
- is
Apply BooleanSubject Task - Is this an Apply Subject Task? Ex. Patch Execution Task
- is
Copy BooleanTo Library Enabled - Make a copy of this task in Library
- is
Discovery BooleanOutput Task - Is this a discovery output task?
- name String
- A filter to return only resources that match the entire name given.
- os
Type String - The OS for the task.
- platform String
- The platform of the runbook.
- properties
List<Get
Runbook Versions Runbook Version Collection Item Task Task Record Detail Property> - The properties of the task.
- scope String
- The scope of the task.
- task
Record StringId - The ID of taskRecord.
- description string
- The description of the argument.
- execution
Details GetRunbook Versions Runbook Version Collection Item Task Task Record Detail Execution Detail[] - Execution details.
- is
Apply booleanSubject Task - Is this an Apply Subject Task? Ex. Patch Execution Task
- is
Copy booleanTo Library Enabled - Make a copy of this task in Library
- is
Discovery booleanOutput Task - Is this a discovery output task?
- name string
- A filter to return only resources that match the entire name given.
- os
Type string - The OS for the task.
- platform string
- The platform of the runbook.
- properties
Get
Runbook Versions Runbook Version Collection Item Task Task Record Detail Property[] - The properties of the task.
- scope string
- The scope of the task.
- task
Record stringId - The ID of taskRecord.
- description str
- The description of the argument.
- execution_
details Sequence[GetRunbook Versions Runbook Version Collection Item Task Task Record Detail Execution Detail] - Execution details.
- is_
apply_ boolsubject_ task - Is this an Apply Subject Task? Ex. Patch Execution Task
- is_
copy_ boolto_ library_ enabled - Make a copy of this task in Library
- is_
discovery_ booloutput_ task - Is this a discovery output task?
- name str
- A filter to return only resources that match the entire name given.
- os_
type str - The OS for the task.
- platform str
- The platform of the runbook.
- properties
Sequence[Get
Runbook Versions Runbook Version Collection Item Task Task Record Detail Property] - The properties of the task.
- scope str
- The scope of the task.
- task_
record_ strid - The ID of taskRecord.
- description String
- The description of the argument.
- execution
Details List<Property Map> - Execution details.
- is
Apply BooleanSubject Task - Is this an Apply Subject Task? Ex. Patch Execution Task
- is
Copy BooleanTo Library Enabled - Make a copy of this task in Library
- is
Discovery BooleanOutput Task - Is this a discovery output task?
- name String
- A filter to return only resources that match the entire name given.
- os
Type String - The OS for the task.
- platform String
- The platform of the runbook.
- properties List<Property Map>
- The properties of the task.
- scope String
- The scope of the task.
- task
Record StringId - The ID of taskRecord.
GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetail
- 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
Runbook Versions Runbook Version Collection Item Task Task Record Detail Execution Detail Content> - Content Source details.
- Credentials
List<Get
Runbook Versions Runbook Version Collection Item Task Task Record 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
Runbook Versions Runbook Version Collection Item Task Task Record 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
Runbook Versions Runbook Version Collection Item Task Task Record Detail Execution Detail Content - Content Source details.
- Credentials
[]Get
Runbook Versions Runbook Version Collection Item Task Task Record 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
Runbook Versions Runbook Version Collection Item Task Task Record 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
Runbook Versions Runbook Version Collection Item Task Task Record Detail Execution Detail Content> - Content Source details.
- credentials
List<Get
Runbook Versions Runbook Version Collection Item Task Task Record 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
Runbook Versions Runbook Version Collection Item Task Task Record 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
Runbook Versions Runbook Version Collection Item Task Task Record Detail Execution Detail Content[] - Content Source details.
- credentials
Get
Runbook Versions Runbook Version Collection Item Task Task Record 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
Runbook Versions Runbook Version Collection Item Task Task Record 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
Runbook Versions Runbook Version Collection Item Task Task Record Detail Execution Detail Content] - Content Source details.
- credentials
Sequence[Get
Runbook Versions Runbook Version Collection Item Task Task Record 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
Runbook Versions Runbook Version Collection Item Task Task Record 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.
GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailContent
- 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.
GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailCredential
- 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
- Id string
- A filter to return runbook versions whose identifier matches the given identifier.
- 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
- Id string
- A filter to return runbook versions whose identifier matches the given identifier.
- 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
- id String
- A filter to return runbook versions whose identifier matches the given identifier.
- 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
- id string
- A filter to return runbook versions whose identifier matches the given identifier.
- 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
- id str
- A filter to return runbook versions whose identifier matches the given identifier.
- 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
- id String
- A filter to return runbook versions whose identifier matches the given identifier.
GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailVariable
- Input
Variables List<GetRunbook Versions Runbook Version Collection Item Task Task Record Detail Execution Detail Variable Input Variable> - The input variables for the task.
- Output
Variables List<string> - The list of output variables.
- Input
Variables []GetRunbook Versions Runbook Version Collection Item Task Task Record Detail Execution Detail Variable Input Variable - The input variables for the task.
- Output
Variables []string - The list of output variables.
- input
Variables List<GetRunbook Versions Runbook Version Collection Item Task Task Record Detail Execution Detail Variable Input Variable> - The input variables for the task.
- output
Variables List<String> - The list of output variables.
- input
Variables GetRunbook Versions Runbook Version Collection Item Task Task Record Detail Execution Detail Variable Input Variable[] - The input variables for the task.
- output
Variables string[] - The list of output variables.
- input_
variables Sequence[GetRunbook Versions Runbook Version Collection Item Task Task Record 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.
GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailVariableInputVariable
- Description string
- The description of the argument.
- Name string
- A filter to return only resources that match the entire name given.
- Type string
- Input argument Type.
- Description string
- The description of the argument.
- Name string
- A filter to return only resources that match the entire name given.
- Type string
- Input argument Type.
- description String
- The description of the argument.
- name String
- A filter to return only resources that match the entire name given.
- type String
- Input argument Type.
- description string
- The description of the argument.
- name string
- A filter to return only resources that match the entire name given.
- type string
- Input argument Type.
- description str
- The description of the argument.
- name str
- A filter to return only resources that match the entire name given.
- type str
- Input argument Type.
- description String
- The description of the argument.
- name String
- A filter to return only resources that match the entire name given.
- type String
- Input argument Type.
GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailProperty
- 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
oci
Terraform Provider.