1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. FleetAppsManagement
  5. getRunbookVersions
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

oci.FleetAppsManagement.getRunbookVersions

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

    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:

    CompartmentId string
    The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
    Filters List<GetRunbookVersionsFilter>
    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.
    RunbookId 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.
    CompartmentId string
    The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
    Filters []GetRunbookVersionsFilter
    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.
    RunbookId 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.
    compartmentId String
    The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
    filters List<GetRunbookVersionsFilter>
    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.
    runbookId 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.
    compartmentId string
    The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
    filters GetRunbookVersionsFilter[]
    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.
    runbookId 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[GetRunbookVersionsFilter]
    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.
    compartmentId 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.
    runbookId 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:

    IsLatest bool
    RunbookVersionCollections List<GetRunbookVersionsRunbookVersionCollection>
    The list of runbook_version_collection.
    CompartmentId string
    Filters List<GetRunbookVersionsFilter>
    Id string
    The OCID of the resource.
    Name string
    The name of the task
    RunbookId string
    The OCID of the resource.
    State string
    The current state of the FleetResource.
    IsLatest bool
    RunbookVersionCollections []GetRunbookVersionsRunbookVersionCollection
    The list of runbook_version_collection.
    CompartmentId string
    Filters []GetRunbookVersionsFilter
    Id string
    The OCID of the resource.
    Name string
    The name of the task
    RunbookId string
    The OCID of the resource.
    State string
    The current state of the FleetResource.
    isLatest Boolean
    runbookVersionCollections List<GetRunbookVersionsRunbookVersionCollection>
    The list of runbook_version_collection.
    compartmentId String
    filters List<GetRunbookVersionsFilter>
    id String
    The OCID of the resource.
    name String
    The name of the task
    runbookId String
    The OCID of the resource.
    state String
    The current state of the FleetResource.
    isLatest boolean
    runbookVersionCollections GetRunbookVersionsRunbookVersionCollection[]
    The list of runbook_version_collection.
    compartmentId string
    filters GetRunbookVersionsFilter[]
    id string
    The OCID of the resource.
    name string
    The name of the task
    runbookId string
    The OCID of the resource.
    state string
    The current state of the FleetResource.
    is_latest bool
    runbook_version_collections Sequence[GetRunbookVersionsRunbookVersionCollection]
    The list of runbook_version_collection.
    compartment_id str
    filters Sequence[GetRunbookVersionsFilter]
    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.
    isLatest Boolean
    runbookVersionCollections List<Property Map>
    The list of runbook_version_collection.
    compartmentId String
    filters List<Property Map>
    id String
    The OCID of the resource.
    name String
    The name of the task
    runbookId String
    The OCID of the resource.
    state String
    The current state of the FleetResource.

    Supporting Types

    GetRunbookVersionsFilter

    Name string
    A filter to return only resources that match the entire name given.
    Values List<string>
    Regex bool
    Name string
    A filter to return only resources that match the entire name given.
    Values []string
    Regex bool
    name String
    A filter to return only resources that match the entire name given.
    values List<String>
    regex Boolean
    name string
    A filter to return only resources that match the entire name given.
    values string[]
    regex boolean
    name str
    A filter to return only resources that match the entire name given.
    values Sequence[str]
    regex bool
    name String
    A filter to return only resources that match the entire name given.
    values List<String>
    regex Boolean

    GetRunbookVersionsRunbookVersionCollection

    GetRunbookVersionsRunbookVersionCollectionItem

    CompartmentId string
    The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    ExecutionWorkflowDetails List<GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetail>
    Execution Workflow details.
    FreeformTags 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<GetRunbookVersionsRunbookVersionCollectionItemGroup>
    The groups of the runbook.
    Id string
    A filter to return runbook versions whose identifier matches the given identifier.
    IsLatest bool
    LifecycleDetails 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.
    RollbackWorkflowDetails List<GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetail>
    Rollback Workflow details.
    RunbookId 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.
    SystemTags 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<GetRunbookVersionsRunbookVersionCollectionItemTask>
    A set of tasks to execute in the runbook.
    TimeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time this resource was last updated. An RFC3339 formatted datetime string.
    CompartmentId string
    The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    ExecutionWorkflowDetails []GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetail
    Execution Workflow details.
    FreeformTags 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 []GetRunbookVersionsRunbookVersionCollectionItemGroup
    The groups of the runbook.
    Id string
    A filter to return runbook versions whose identifier matches the given identifier.
    IsLatest bool
    LifecycleDetails 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.
    RollbackWorkflowDetails []GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetail
    Rollback Workflow details.
    RunbookId 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.
    SystemTags 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 []GetRunbookVersionsRunbookVersionCollectionItemTask
    A set of tasks to execute in the runbook.
    TimeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    TimeUpdated string
    The time this resource was last updated. An RFC3339 formatted datetime string.
    compartmentId String
    The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    executionWorkflowDetails List<GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetail>
    Execution Workflow details.
    freeformTags 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<GetRunbookVersionsRunbookVersionCollectionItemGroup>
    The groups of the runbook.
    id String
    A filter to return runbook versions whose identifier matches the given identifier.
    isLatest Boolean
    lifecycleDetails 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.
    rollbackWorkflowDetails List<GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetail>
    Rollback Workflow details.
    runbookId 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.
    systemTags 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<GetRunbookVersionsRunbookVersionCollectionItemTask>
    A set of tasks to execute in the runbook.
    timeCreated String
    The time this resource was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time this resource was last updated. An RFC3339 formatted datetime string.
    compartmentId string
    The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    executionWorkflowDetails GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetail[]
    Execution Workflow details.
    freeformTags {[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 GetRunbookVersionsRunbookVersionCollectionItemGroup[]
    The groups of the runbook.
    id string
    A filter to return runbook versions whose identifier matches the given identifier.
    isLatest boolean
    lifecycleDetails 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.
    rollbackWorkflowDetails GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetail[]
    Rollback Workflow details.
    runbookId 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.
    systemTags {[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 GetRunbookVersionsRunbookVersionCollectionItemTask[]
    A set of tasks to execute in the runbook.
    timeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    timeUpdated 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.
    defined_tags 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_details Sequence[GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetail]
    Execution Workflow details.
    freeform_tags 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[GetRunbookVersionsRunbookVersionCollectionItemGroup]
    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_details Sequence[GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetail]
    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.
    system_tags 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[GetRunbookVersionsRunbookVersionCollectionItemTask]
    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.
    compartmentId String
    The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    executionWorkflowDetails List<Property Map>
    Execution Workflow details.
    freeformTags 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.
    isLatest Boolean
    lifecycleDetails 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.
    rollbackWorkflowDetails List<Property Map>
    Rollback Workflow details.
    runbookId 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.
    systemTags 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.
    timeCreated String
    The time this resource was created. An RFC3339 formatted datetime string.
    timeUpdated String
    The time this resource was last updated. An RFC3339 formatted datetime string.

    GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetail

    workflows List<Property Map>
    Rollback Workflow for the runbook.

    GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetailWorkflow

    GroupName string
    Name of the group.
    Steps List<GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetailWorkflowStep>
    Tasks within the Group. Provide the stepName for all applicable tasks.
    Type string
    Input argument Type.
    GroupName string
    Name of the group.
    Steps []GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetailWorkflowStep
    Tasks within the Group. Provide the stepName for all applicable tasks.
    Type string
    Input argument Type.
    groupName String
    Name of the group.
    steps List<GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetailWorkflowStep>
    Tasks within the Group. Provide the stepName for all applicable tasks.
    type String
    Input argument Type.
    groupName string
    Name of the group.
    steps GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetailWorkflowStep[]
    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[GetRunbookVersionsRunbookVersionCollectionItemExecutionWorkflowDetailWorkflowStep]
    Tasks within the Group. Provide the stepName for all applicable tasks.
    type str
    Input argument Type.
    groupName 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

    GroupName string
    Name of the group.
    StepName string
    The name of the task step the output variable belongs to.
    Steps List<string>
    Tasks within the Group. Provide the stepName for all applicable tasks.
    Type string
    Input argument Type.
    GroupName string
    Name of the group.
    StepName string
    The name of the task step the output variable belongs to.
    Steps []string
    Tasks within the Group. Provide the stepName for all applicable tasks.
    Type string
    Input argument Type.
    groupName String
    Name of the group.
    stepName String
    The name of the task step the output variable belongs to.
    steps List<String>
    Tasks within the Group. Provide the stepName for all applicable tasks.
    type String
    Input argument Type.
    groupName string
    Name of the group.
    stepName string
    The name of the task step the output variable belongs to.
    steps string[]
    Tasks within the Group. Provide the stepName for all applicable tasks.
    type string
    Input argument Type.
    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.
    groupName String
    Name of the group.
    stepName String
    The name of the task step the output variable belongs to.
    steps List<String>
    Tasks within the Group. Provide the stepName for all applicable tasks.
    type String
    Input argument Type.

    GetRunbookVersionsRunbookVersionCollectionItemGroup

    Name string
    A filter to return only resources that match the entire name given.
    Properties List<GetRunbookVersionsRunbookVersionCollectionItemGroupProperty>
    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 []GetRunbookVersionsRunbookVersionCollectionItemGroupProperty
    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<GetRunbookVersionsRunbookVersionCollectionItemGroupProperty>
    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 GetRunbookVersionsRunbookVersionCollectionItemGroupProperty[]
    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[GetRunbookVersionsRunbookVersionCollectionItemGroupProperty]
    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

    ActionOnFailure string
    The action to be taken in case of a failure.
    NotificationPreferences List<GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyNotificationPreference>
    Preferences to send notifications on the task activities.
    PauseDetails List<GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyPauseDetail>
    Pause Details
    PreCondition string
    Build control flow conditions that determine the relevance of the task execution.
    RunOns List<GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOn>
    The runon conditions
    ActionOnFailure string
    The action to be taken in case of a failure.
    NotificationPreferences []GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyNotificationPreference
    Preferences to send notifications on the task activities.
    PauseDetails []GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyPauseDetail
    Pause Details
    PreCondition string
    Build control flow conditions that determine the relevance of the task execution.
    RunOns []GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOn
    The runon conditions
    actionOnFailure String
    The action to be taken in case of a failure.
    notificationPreferences List<GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyNotificationPreference>
    Preferences to send notifications on the task activities.
    pauseDetails List<GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyPauseDetail>
    Pause Details
    preCondition String
    Build control flow conditions that determine the relevance of the task execution.
    runOns List<GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOn>
    The runon conditions
    actionOnFailure string
    The action to be taken in case of a failure.
    notificationPreferences GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyNotificationPreference[]
    Preferences to send notifications on the task activities.
    pauseDetails GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyPauseDetail[]
    Pause Details
    preCondition string
    Build control flow conditions that determine the relevance of the task execution.
    runOns GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOn[]
    The runon conditions
    action_on_failure str
    The action to be taken in case of a failure.
    notification_preferences Sequence[GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyNotificationPreference]
    Preferences to send notifications on the task activities.
    pause_details Sequence[GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyPauseDetail]
    Pause Details
    pre_condition str
    Build control flow conditions that determine the relevance of the task execution.
    run_ons Sequence[GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOn]
    The runon conditions
    actionOnFailure String
    The action to be taken in case of a failure.
    notificationPreferences List<Property Map>
    Preferences to send notifications on the task activities.
    pauseDetails List<Property Map>
    Pause Details
    preCondition String
    Build control flow conditions that determine the relevance of the task execution.
    runOns List<Property Map>
    The runon conditions

    GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyNotificationPreference

    ShouldNotifyOnPause bool
    Enables notification on pause.
    ShouldNotifyOnTaskFailure bool
    Enables or disables notification on Task Failures.
    ShouldNotifyOnTaskSuccess bool
    Enables or disables notification on Task Success.
    ShouldNotifyOnPause bool
    Enables notification on pause.
    ShouldNotifyOnTaskFailure bool
    Enables or disables notification on Task Failures.
    ShouldNotifyOnTaskSuccess bool
    Enables or disables notification on Task Success.
    shouldNotifyOnPause Boolean
    Enables notification on pause.
    shouldNotifyOnTaskFailure Boolean
    Enables or disables notification on Task Failures.
    shouldNotifyOnTaskSuccess Boolean
    Enables or disables notification on Task Success.
    shouldNotifyOnPause boolean
    Enables notification on pause.
    shouldNotifyOnTaskFailure boolean
    Enables or disables notification on Task Failures.
    shouldNotifyOnTaskSuccess boolean
    Enables or disables notification on Task Success.
    should_notify_on_pause bool
    Enables notification on pause.
    should_notify_on_task_failure bool
    Enables or disables notification on Task Failures.
    should_notify_on_task_success bool
    Enables or disables notification on Task Success.
    shouldNotifyOnPause Boolean
    Enables notification on pause.
    shouldNotifyOnTaskFailure Boolean
    Enables or disables notification on Task Failures.
    shouldNotifyOnTaskSuccess Boolean
    Enables or disables notification on Task Success.

    GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyPauseDetail

    DurationInMinutes int
    Time in minutes to apply Pause.
    Kind string
    Run on based On.
    DurationInMinutes int
    Time in minutes to apply Pause.
    Kind string
    Run on based On.
    durationInMinutes Integer
    Time in minutes to apply Pause.
    kind String
    Run on based On.
    durationInMinutes number
    Time in minutes to apply Pause.
    kind string
    Run on based On.
    duration_in_minutes int
    Time in minutes to apply Pause.
    kind str
    Run on based On.
    durationInMinutes Number
    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.
    PreviousTaskInstanceDetails List<GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOnPreviousTaskInstanceDetail>
    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.
    PreviousTaskInstanceDetails []GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOnPreviousTaskInstanceDetail
    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.
    previousTaskInstanceDetails List<GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOnPreviousTaskInstanceDetail>
    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.
    previousTaskInstanceDetails GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOnPreviousTaskInstanceDetail[]
    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_instance_details Sequence[GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOnPreviousTaskInstanceDetail]
    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.
    previousTaskInstanceDetails List<Property Map>
    Previous Task Instance Details

    GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOnPreviousTaskInstanceDetail

    OutputVariableDetails List<GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOnPreviousTaskInstanceDetailOutputVariableDetail>
    The details of the output variable that will be used for mapping.
    ResourceId string
    Resource Ocid.
    ResourceType string
    Resource Type.
    OutputVariableDetails []GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOnPreviousTaskInstanceDetailOutputVariableDetail
    The details of the output variable that will be used for mapping.
    ResourceId string
    Resource Ocid.
    ResourceType string
    Resource Type.
    outputVariableDetails List<GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOnPreviousTaskInstanceDetailOutputVariableDetail>
    The details of the output variable that will be used for mapping.
    resourceId String
    Resource Ocid.
    resourceType String
    Resource Type.
    outputVariableDetails GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOnPreviousTaskInstanceDetailOutputVariableDetail[]
    The details of the output variable that will be used for mapping.
    resourceId string
    Resource Ocid.
    resourceType string
    Resource Type.
    outputVariableDetails List<Property Map>
    The details of the output variable that will be used for mapping.
    resourceId String
    Resource Ocid.
    resourceType String
    Resource Type.

    GetRunbookVersionsRunbookVersionCollectionItemGroupPropertyRunOnPreviousTaskInstanceDetailOutputVariableDetail

    OutputVariableName string
    The name of the output variable whose value has to be mapped.
    StepName string
    The name of the task step the output variable belongs to.
    OutputVariableName string
    The name of the output variable whose value has to be mapped.
    StepName string
    The name of the task step the output variable belongs to.
    outputVariableName String
    The name of the output variable whose value has to be mapped.
    stepName String
    The name of the task step the output variable belongs to.
    outputVariableName string
    The name of the output variable whose value has to be mapped.
    stepName string
    The name of the task step the output variable belongs to.
    output_variable_name str
    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.
    outputVariableName String
    The name of the output variable whose value has to be mapped.
    stepName String
    The name of the task step the output variable belongs to.

    GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetail

    Scope string
    The scope of the task.
    Workflows List<GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetailWorkflow>
    Rollback Workflow for the runbook.
    Scope string
    The scope of the task.
    Workflows []GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetailWorkflow
    Rollback Workflow for the runbook.
    scope String
    The scope of the task.
    workflows List<GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetailWorkflow>
    Rollback Workflow for the runbook.
    scope string
    The scope of the task.
    workflows GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetailWorkflow[]
    Rollback Workflow for the runbook.
    scope String
    The scope of the task.
    workflows List<Property Map>
    Rollback Workflow for the runbook.

    GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetailWorkflow

    GroupName string
    Name of the group.
    Steps List<GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetailWorkflowStep>
    Tasks within the Group. Provide the stepName for all applicable tasks.
    Type string
    Input argument Type.
    GroupName string
    Name of the group.
    Steps []GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetailWorkflowStep
    Tasks within the Group. Provide the stepName for all applicable tasks.
    Type string
    Input argument Type.
    groupName String
    Name of the group.
    steps List<GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetailWorkflowStep>
    Tasks within the Group. Provide the stepName for all applicable tasks.
    type String
    Input argument Type.
    groupName string
    Name of the group.
    steps GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetailWorkflowStep[]
    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[GetRunbookVersionsRunbookVersionCollectionItemRollbackWorkflowDetailWorkflowStep]
    Tasks within the Group. Provide the stepName for all applicable tasks.
    type str
    Input argument Type.
    groupName 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

    GroupName string
    Name of the group.
    StepName string
    The name of the task step the output variable belongs to.
    Steps List<string>
    Tasks within the Group. Provide the stepName for all applicable tasks.
    Type string
    Input argument Type.
    GroupName string
    Name of the group.
    StepName string
    The name of the task step the output variable belongs to.
    Steps []string
    Tasks within the Group. Provide the stepName for all applicable tasks.
    Type string
    Input argument Type.
    groupName String
    Name of the group.
    stepName String
    The name of the task step the output variable belongs to.
    steps List<String>
    Tasks within the Group. Provide the stepName for all applicable tasks.
    type String
    Input argument Type.
    groupName string
    Name of the group.
    stepName string
    The name of the task step the output variable belongs to.
    steps string[]
    Tasks within the Group. Provide the stepName for all applicable tasks.
    type string
    Input argument Type.
    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.
    groupName String
    Name of the group.
    stepName String
    The name of the task step the output variable belongs to.
    steps List<String>
    Tasks within the Group. Provide the stepName for all applicable tasks.
    type String
    Input argument Type.

    GetRunbookVersionsRunbookVersionCollectionItemTask

    OutputVariableMappings List<GetRunbookVersionsRunbookVersionCollectionItemTaskOutputVariableMapping>
    Mapping output variables of previous tasks to the input variables of the current task.
    StepName string
    The name of the task step the output variable belongs to.
    StepProperties List<GetRunbookVersionsRunbookVersionCollectionItemTaskStepProperty>
    The properties of the component.
    TaskRecordDetails List<GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetail>
    The details of the task.
    OutputVariableMappings []GetRunbookVersionsRunbookVersionCollectionItemTaskOutputVariableMapping
    Mapping output variables of previous tasks to the input variables of the current task.
    StepName string
    The name of the task step the output variable belongs to.
    StepProperties []GetRunbookVersionsRunbookVersionCollectionItemTaskStepProperty
    The properties of the component.
    TaskRecordDetails []GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetail
    The details of the task.
    outputVariableMappings List<GetRunbookVersionsRunbookVersionCollectionItemTaskOutputVariableMapping>
    Mapping output variables of previous tasks to the input variables of the current task.
    stepName String
    The name of the task step the output variable belongs to.
    stepProperties List<GetRunbookVersionsRunbookVersionCollectionItemTaskStepProperty>
    The properties of the component.
    taskRecordDetails List<GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetail>
    The details of the task.
    outputVariableMappings GetRunbookVersionsRunbookVersionCollectionItemTaskOutputVariableMapping[]
    Mapping output variables of previous tasks to the input variables of the current task.
    stepName string
    The name of the task step the output variable belongs to.
    stepProperties GetRunbookVersionsRunbookVersionCollectionItemTaskStepProperty[]
    The properties of the component.
    taskRecordDetails GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetail[]
    The details of the task.
    output_variable_mappings Sequence[GetRunbookVersionsRunbookVersionCollectionItemTaskOutputVariableMapping]
    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[GetRunbookVersionsRunbookVersionCollectionItemTaskStepProperty]
    The properties of the component.
    task_record_details Sequence[GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetail]
    The details of the task.
    outputVariableMappings List<Property Map>
    Mapping output variables of previous tasks to the input variables of the current task.
    stepName String
    The name of the task step the output variable belongs to.
    stepProperties List<Property Map>
    The properties of the component.
    taskRecordDetails List<Property Map>
    The details of the task.

    GetRunbookVersionsRunbookVersionCollectionItemTaskOutputVariableMapping

    Name string
    A filter to return only resources that match the entire name given.
    OutputVariableDetails List<GetRunbookVersionsRunbookVersionCollectionItemTaskOutputVariableMappingOutputVariableDetail>
    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.
    OutputVariableDetails []GetRunbookVersionsRunbookVersionCollectionItemTaskOutputVariableMappingOutputVariableDetail
    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.
    outputVariableDetails List<GetRunbookVersionsRunbookVersionCollectionItemTaskOutputVariableMappingOutputVariableDetail>
    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.
    outputVariableDetails GetRunbookVersionsRunbookVersionCollectionItemTaskOutputVariableMappingOutputVariableDetail[]
    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_details Sequence[GetRunbookVersionsRunbookVersionCollectionItemTaskOutputVariableMappingOutputVariableDetail]
    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.
    outputVariableDetails List<Property Map>
    The details of the output variable that will be used for mapping.

    GetRunbookVersionsRunbookVersionCollectionItemTaskOutputVariableMappingOutputVariableDetail

    OutputVariableName string
    The name of the output variable whose value has to be mapped.
    StepName string
    The name of the task step the output variable belongs to.
    OutputVariableName string
    The name of the output variable whose value has to be mapped.
    StepName string
    The name of the task step the output variable belongs to.
    outputVariableName String
    The name of the output variable whose value has to be mapped.
    stepName String
    The name of the task step the output variable belongs to.
    outputVariableName string
    The name of the output variable whose value has to be mapped.
    stepName string
    The name of the task step the output variable belongs to.
    output_variable_name str
    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.
    outputVariableName String
    The name of the output variable whose value has to be mapped.
    stepName String
    The name of the task step the output variable belongs to.

    GetRunbookVersionsRunbookVersionCollectionItemTaskStepProperty

    ActionOnFailure string
    The action to be taken in case of a failure.
    NotificationPreferences List<GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyNotificationPreference>
    Preferences to send notifications on the task activities.
    PauseDetails List<GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyPauseDetail>
    Pause Details
    PreCondition string
    Build control flow conditions that determine the relevance of the task execution.
    RunOns List<GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOn>
    The runon conditions
    ActionOnFailure string
    The action to be taken in case of a failure.
    NotificationPreferences []GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyNotificationPreference
    Preferences to send notifications on the task activities.
    PauseDetails []GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyPauseDetail
    Pause Details
    PreCondition string
    Build control flow conditions that determine the relevance of the task execution.
    RunOns []GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOn
    The runon conditions
    actionOnFailure String
    The action to be taken in case of a failure.
    notificationPreferences List<GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyNotificationPreference>
    Preferences to send notifications on the task activities.
    pauseDetails List<GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyPauseDetail>
    Pause Details
    preCondition String
    Build control flow conditions that determine the relevance of the task execution.
    runOns List<GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOn>
    The runon conditions
    actionOnFailure string
    The action to be taken in case of a failure.
    notificationPreferences GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyNotificationPreference[]
    Preferences to send notifications on the task activities.
    pauseDetails GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyPauseDetail[]
    Pause Details
    preCondition string
    Build control flow conditions that determine the relevance of the task execution.
    runOns GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOn[]
    The runon conditions
    action_on_failure str
    The action to be taken in case of a failure.
    notification_preferences Sequence[GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyNotificationPreference]
    Preferences to send notifications on the task activities.
    pause_details Sequence[GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyPauseDetail]
    Pause Details
    pre_condition str
    Build control flow conditions that determine the relevance of the task execution.
    run_ons Sequence[GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOn]
    The runon conditions
    actionOnFailure String
    The action to be taken in case of a failure.
    notificationPreferences List<Property Map>
    Preferences to send notifications on the task activities.
    pauseDetails List<Property Map>
    Pause Details
    preCondition String
    Build control flow conditions that determine the relevance of the task execution.
    runOns List<Property Map>
    The runon conditions

    GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyNotificationPreference

    ShouldNotifyOnPause bool
    Enables notification on pause.
    ShouldNotifyOnTaskFailure bool
    Enables or disables notification on Task Failures.
    ShouldNotifyOnTaskSuccess bool
    Enables or disables notification on Task Success.
    ShouldNotifyOnPause bool
    Enables notification on pause.
    ShouldNotifyOnTaskFailure bool
    Enables or disables notification on Task Failures.
    ShouldNotifyOnTaskSuccess bool
    Enables or disables notification on Task Success.
    shouldNotifyOnPause Boolean
    Enables notification on pause.
    shouldNotifyOnTaskFailure Boolean
    Enables or disables notification on Task Failures.
    shouldNotifyOnTaskSuccess Boolean
    Enables or disables notification on Task Success.
    shouldNotifyOnPause boolean
    Enables notification on pause.
    shouldNotifyOnTaskFailure boolean
    Enables or disables notification on Task Failures.
    shouldNotifyOnTaskSuccess boolean
    Enables or disables notification on Task Success.
    should_notify_on_pause bool
    Enables notification on pause.
    should_notify_on_task_failure bool
    Enables or disables notification on Task Failures.
    should_notify_on_task_success bool
    Enables or disables notification on Task Success.
    shouldNotifyOnPause Boolean
    Enables notification on pause.
    shouldNotifyOnTaskFailure Boolean
    Enables or disables notification on Task Failures.
    shouldNotifyOnTaskSuccess Boolean
    Enables or disables notification on Task Success.

    GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyPauseDetail

    DurationInMinutes int
    Time in minutes to apply Pause.
    Kind string
    Run on based On.
    DurationInMinutes int
    Time in minutes to apply Pause.
    Kind string
    Run on based On.
    durationInMinutes Integer
    Time in minutes to apply Pause.
    kind String
    Run on based On.
    durationInMinutes number
    Time in minutes to apply Pause.
    kind string
    Run on based On.
    duration_in_minutes int
    Time in minutes to apply Pause.
    kind str
    Run on based On.
    durationInMinutes Number
    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.
    PreviousTaskInstanceDetails List<GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOnPreviousTaskInstanceDetail>
    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.
    PreviousTaskInstanceDetails []GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOnPreviousTaskInstanceDetail
    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.
    previousTaskInstanceDetails List<GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOnPreviousTaskInstanceDetail>
    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.
    previousTaskInstanceDetails GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOnPreviousTaskInstanceDetail[]
    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_instance_details Sequence[GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOnPreviousTaskInstanceDetail]
    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.
    previousTaskInstanceDetails List<Property Map>
    Previous Task Instance Details

    GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOnPreviousTaskInstanceDetail

    OutputVariableDetails List<GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOnPreviousTaskInstanceDetailOutputVariableDetail>
    The details of the output variable that will be used for mapping.
    ResourceId string
    Resource Ocid.
    ResourceType string
    Resource Type.
    OutputVariableDetails []GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOnPreviousTaskInstanceDetailOutputVariableDetail
    The details of the output variable that will be used for mapping.
    ResourceId string
    Resource Ocid.
    ResourceType string
    Resource Type.
    outputVariableDetails List<GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOnPreviousTaskInstanceDetailOutputVariableDetail>
    The details of the output variable that will be used for mapping.
    resourceId String
    Resource Ocid.
    resourceType String
    Resource Type.
    outputVariableDetails GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOnPreviousTaskInstanceDetailOutputVariableDetail[]
    The details of the output variable that will be used for mapping.
    resourceId string
    Resource Ocid.
    resourceType string
    Resource Type.
    outputVariableDetails List<Property Map>
    The details of the output variable that will be used for mapping.
    resourceId String
    Resource Ocid.
    resourceType String
    Resource Type.

    GetRunbookVersionsRunbookVersionCollectionItemTaskStepPropertyRunOnPreviousTaskInstanceDetailOutputVariableDetail

    OutputVariableName string
    The name of the output variable whose value has to be mapped.
    StepName string
    The name of the task step the output variable belongs to.
    OutputVariableName string
    The name of the output variable whose value has to be mapped.
    StepName string
    The name of the task step the output variable belongs to.
    outputVariableName String
    The name of the output variable whose value has to be mapped.
    stepName String
    The name of the task step the output variable belongs to.
    outputVariableName string
    The name of the output variable whose value has to be mapped.
    stepName string
    The name of the task step the output variable belongs to.
    output_variable_name str
    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.
    outputVariableName String
    The name of the output variable whose value has to be mapped.
    stepName String
    The name of the task step the output variable belongs to.

    GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetail

    Description string
    The description of the argument.
    ExecutionDetails List<GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetail>
    Execution details.
    IsApplySubjectTask bool
    Is this an Apply Subject Task? Ex. Patch Execution Task
    IsCopyToLibraryEnabled bool
    Make a copy of this task in Library
    IsDiscoveryOutputTask bool
    Is this a discovery output task?
    Name string
    A filter to return only resources that match the entire name given.
    OsType string
    The OS for the task.
    Platform string
    The platform of the runbook.
    Properties List<GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailProperty>
    The properties of the task.
    Scope string
    The scope of the task.
    TaskRecordId string
    The ID of taskRecord.
    Description string
    The description of the argument.
    ExecutionDetails []GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetail
    Execution details.
    IsApplySubjectTask bool
    Is this an Apply Subject Task? Ex. Patch Execution Task
    IsCopyToLibraryEnabled bool
    Make a copy of this task in Library
    IsDiscoveryOutputTask bool
    Is this a discovery output task?
    Name string
    A filter to return only resources that match the entire name given.
    OsType string
    The OS for the task.
    Platform string
    The platform of the runbook.
    Properties []GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailProperty
    The properties of the task.
    Scope string
    The scope of the task.
    TaskRecordId string
    The ID of taskRecord.
    description String
    The description of the argument.
    executionDetails List<GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetail>
    Execution details.
    isApplySubjectTask Boolean
    Is this an Apply Subject Task? Ex. Patch Execution Task
    isCopyToLibraryEnabled Boolean
    Make a copy of this task in Library
    isDiscoveryOutputTask Boolean
    Is this a discovery output task?
    name String
    A filter to return only resources that match the entire name given.
    osType String
    The OS for the task.
    platform String
    The platform of the runbook.
    properties List<GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailProperty>
    The properties of the task.
    scope String
    The scope of the task.
    taskRecordId String
    The ID of taskRecord.
    description string
    The description of the argument.
    executionDetails GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetail[]
    Execution details.
    isApplySubjectTask boolean
    Is this an Apply Subject Task? Ex. Patch Execution Task
    isCopyToLibraryEnabled boolean
    Make a copy of this task in Library
    isDiscoveryOutputTask boolean
    Is this a discovery output task?
    name string
    A filter to return only resources that match the entire name given.
    osType string
    The OS for the task.
    platform string
    The platform of the runbook.
    properties GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailProperty[]
    The properties of the task.
    scope string
    The scope of the task.
    taskRecordId string
    The ID of taskRecord.
    description str
    The description of the argument.
    execution_details Sequence[GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetail]
    Execution details.
    is_apply_subject_task bool
    Is this an Apply Subject Task? Ex. Patch Execution Task
    is_copy_to_library_enabled bool
    Make a copy of this task in Library
    is_discovery_output_task bool
    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[GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailProperty]
    The properties of the task.
    scope str
    The scope of the task.
    task_record_id str
    The ID of taskRecord.
    description String
    The description of the argument.
    executionDetails List<Property Map>
    Execution details.
    isApplySubjectTask Boolean
    Is this an Apply Subject Task? Ex. Patch Execution Task
    isCopyToLibraryEnabled Boolean
    Make a copy of this task in Library
    isDiscoveryOutputTask Boolean
    Is this a discovery output task?
    name String
    A filter to return only resources that match the entire name given.
    osType 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.
    taskRecordId String
    The ID of taskRecord.

    GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetail

    CatalogId string
    Command string
    Optional command to execute the content. You can provide any commands/arguments that can't be part of the script.
    ConfigFile string
    Catalog Id having config file.
    Contents List<GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailContent>
    Content Source details.
    Credentials List<GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailCredential>
    Credentials required for executing the task.
    Endpoint string
    Endpoint to be invoked.
    ExecutionType string
    The action type of the task
    IsExecutableContent bool
    Is the Content an executable file?
    IsLocked bool
    Is the script locked to prevent changes directly in Object Storage?
    IsReadOutputVariableEnabled bool
    Is read output variable enabled
    TargetCompartmentId string
    OCID of the compartment to which the resource belongs to.
    Variables List<GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailVariable>
    The variable of the task. At least one of the dynamicArguments or output needs to be provided.
    CatalogId string
    Command string
    Optional command to execute the content. You can provide any commands/arguments that can't be part of the script.
    ConfigFile string
    Catalog Id having config file.
    Contents []GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailContent
    Content Source details.
    Credentials []GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailCredential
    Credentials required for executing the task.
    Endpoint string
    Endpoint to be invoked.
    ExecutionType string
    The action type of the task
    IsExecutableContent bool
    Is the Content an executable file?
    IsLocked bool
    Is the script locked to prevent changes directly in Object Storage?
    IsReadOutputVariableEnabled bool
    Is read output variable enabled
    TargetCompartmentId string
    OCID of the compartment to which the resource belongs to.
    Variables []GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailVariable
    The variable of the task. At least one of the dynamicArguments or output needs to be provided.
    catalogId String
    command String
    Optional command to execute the content. You can provide any commands/arguments that can't be part of the script.
    configFile String
    Catalog Id having config file.
    contents List<GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailContent>
    Content Source details.
    credentials List<GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailCredential>
    Credentials required for executing the task.
    endpoint String
    Endpoint to be invoked.
    executionType String
    The action type of the task
    isExecutableContent Boolean
    Is the Content an executable file?
    isLocked Boolean
    Is the script locked to prevent changes directly in Object Storage?
    isReadOutputVariableEnabled Boolean
    Is read output variable enabled
    targetCompartmentId String
    OCID of the compartment to which the resource belongs to.
    variables List<GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailVariable>
    The variable of the task. At least one of the dynamicArguments or output needs to be provided.
    catalogId string
    command string
    Optional command to execute the content. You can provide any commands/arguments that can't be part of the script.
    configFile string
    Catalog Id having config file.
    contents GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailContent[]
    Content Source details.
    credentials GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailCredential[]
    Credentials required for executing the task.
    endpoint string
    Endpoint to be invoked.
    executionType string
    The action type of the task
    isExecutableContent boolean
    Is the Content an executable file?
    isLocked boolean
    Is the script locked to prevent changes directly in Object Storage?
    isReadOutputVariableEnabled boolean
    Is read output variable enabled
    targetCompartmentId string
    OCID of the compartment to which the resource belongs to.
    variables GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailVariable[]
    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[GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailContent]
    Content Source details.
    credentials Sequence[GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailCredential]
    Credentials required for executing the task.
    endpoint str
    Endpoint to be invoked.
    execution_type str
    The action type of the task
    is_executable_content bool
    Is the Content an executable file?
    is_locked bool
    Is the script locked to prevent changes directly in Object Storage?
    is_read_output_variable_enabled bool
    Is read output variable enabled
    target_compartment_id str
    OCID of the compartment to which the resource belongs to.
    variables Sequence[GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailVariable]
    The variable of the task. At least one of the dynamicArguments or output needs to be provided.
    catalogId String
    command String
    Optional command to execute the content. You can provide any commands/arguments that can't be part of the script.
    configFile 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.
    executionType String
    The action type of the task
    isExecutableContent Boolean
    Is the Content an executable file?
    isLocked Boolean
    Is the script locked to prevent changes directly in Object Storage?
    isReadOutputVariableEnabled Boolean
    Is read output variable enabled
    targetCompartmentId String
    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 string
    Bucket Name.
    CatalogId string
    Checksum string
    md5 checksum of the artifact.
    Namespace string
    Namespace.
    Object string
    Object Name.
    SourceType string
    Content Source type details.
    Bucket string
    Bucket Name.
    CatalogId string
    Checksum string
    md5 checksum of the artifact.
    Namespace string
    Namespace.
    Object string
    Object Name.
    SourceType string
    Content Source type details.
    bucket String
    Bucket Name.
    catalogId String
    checksum String
    md5 checksum of the artifact.
    namespace String
    Namespace.
    object String
    Object Name.
    sourceType String
    Content Source type details.
    bucket string
    Bucket Name.
    catalogId string
    checksum string
    md5 checksum of the artifact.
    namespace string
    Namespace.
    object string
    Object Name.
    sourceType string
    Content Source type details.
    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.
    bucket String
    Bucket Name.
    catalogId String
    checksum String
    md5 checksum of the artifact.
    namespace String
    Namespace.
    object String
    Object Name.
    sourceType String
    Content Source type details.

    GetRunbookVersionsRunbookVersionCollectionItemTaskTaskRecordDetailExecutionDetailCredential

    DisplayName 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.
    DisplayName 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.
    displayName 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.
    displayName 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.
    displayName 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

    inputVariables List<Property Map>
    The input variables for the task.
    outputVariables 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

    NumRetries int
    The number of retries allowed.
    TimeoutInSeconds int
    The timeout in seconds for the task.
    NumRetries int
    The number of retries allowed.
    TimeoutInSeconds int
    The timeout in seconds for the task.
    numRetries Integer
    The number of retries allowed.
    timeoutInSeconds Integer
    The timeout in seconds for the task.
    numRetries number
    The number of retries allowed.
    timeoutInSeconds number
    The timeout in seconds for the task.
    num_retries int
    The number of retries allowed.
    timeout_in_seconds int
    The timeout in seconds for the task.
    numRetries Number
    The number of retries allowed.
    timeoutInSeconds Number
    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.
    oci logo
    Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi