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

oci.FleetAppsManagement.getSchedulerExecutions

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 Scheduler Executions in Oracle Cloud Infrastructure Fleet Apps Management service.

    Returns a list of all Fleets that are scheduled.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSchedulerExecutions = oci.FleetAppsManagement.getSchedulerExecutions({
        compartmentId: compartmentId,
        displayName: schedulerExecutionDisplayName,
        resourceId: testResource.id,
        runbookId: testRunbook.id,
        runbookVersionName: testRunbookVersion.name,
        schedulerDefintionId: testSchedulerDefintion.id,
        schedulerJobId: testJob.id,
        substate: schedulerExecutionSubstate,
        timeScheduledGreaterThanOrEqualTo: schedulerExecutionTimeScheduledGreaterThanOrEqualTo,
        timeScheduledLessThan: schedulerExecutionTimeScheduledLessThan,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_scheduler_executions = oci.FleetAppsManagement.get_scheduler_executions(compartment_id=compartment_id,
        display_name=scheduler_execution_display_name,
        resource_id=test_resource["id"],
        runbook_id=test_runbook["id"],
        runbook_version_name=test_runbook_version["name"],
        scheduler_defintion_id=test_scheduler_defintion["id"],
        scheduler_job_id=test_job["id"],
        substate=scheduler_execution_substate,
        time_scheduled_greater_than_or_equal_to=scheduler_execution_time_scheduled_greater_than_or_equal_to,
        time_scheduled_less_than=scheduler_execution_time_scheduled_less_than)
    
    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.GetSchedulerExecutions(ctx, &fleetappsmanagement.GetSchedulerExecutionsArgs{
    			CompartmentId:                     pulumi.StringRef(compartmentId),
    			DisplayName:                       pulumi.StringRef(schedulerExecutionDisplayName),
    			ResourceId:                        pulumi.StringRef(testResource.Id),
    			RunbookId:                         pulumi.StringRef(testRunbook.Id),
    			RunbookVersionName:                pulumi.StringRef(testRunbookVersion.Name),
    			SchedulerDefintionId:              pulumi.StringRef(testSchedulerDefintion.Id),
    			SchedulerJobId:                    pulumi.StringRef(testJob.Id),
    			Substate:                          pulumi.StringRef(schedulerExecutionSubstate),
    			TimeScheduledGreaterThanOrEqualTo: pulumi.StringRef(schedulerExecutionTimeScheduledGreaterThanOrEqualTo),
    			TimeScheduledLessThan:             pulumi.StringRef(schedulerExecutionTimeScheduledLessThan),
    		}, 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 testSchedulerExecutions = Oci.FleetAppsManagement.GetSchedulerExecutions.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = schedulerExecutionDisplayName,
            ResourceId = testResource.Id,
            RunbookId = testRunbook.Id,
            RunbookVersionName = testRunbookVersion.Name,
            SchedulerDefintionId = testSchedulerDefintion.Id,
            SchedulerJobId = testJob.Id,
            Substate = schedulerExecutionSubstate,
            TimeScheduledGreaterThanOrEqualTo = schedulerExecutionTimeScheduledGreaterThanOrEqualTo,
            TimeScheduledLessThan = schedulerExecutionTimeScheduledLessThan,
        });
    
    });
    
    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.GetSchedulerExecutionsArgs;
    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 testSchedulerExecutions = FleetAppsManagementFunctions.getSchedulerExecutions(GetSchedulerExecutionsArgs.builder()
                .compartmentId(compartmentId)
                .displayName(schedulerExecutionDisplayName)
                .resourceId(testResource.id())
                .runbookId(testRunbook.id())
                .runbookVersionName(testRunbookVersion.name())
                .schedulerDefintionId(testSchedulerDefintion.id())
                .schedulerJobId(testJob.id())
                .substate(schedulerExecutionSubstate)
                .timeScheduledGreaterThanOrEqualTo(schedulerExecutionTimeScheduledGreaterThanOrEqualTo)
                .timeScheduledLessThan(schedulerExecutionTimeScheduledLessThan)
                .build());
    
        }
    }
    
    variables:
      testSchedulerExecutions:
        fn::invoke:
          function: oci:FleetAppsManagement:getSchedulerExecutions
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${schedulerExecutionDisplayName}
            resourceId: ${testResource.id}
            runbookId: ${testRunbook.id}
            runbookVersionName: ${testRunbookVersion.name}
            schedulerDefintionId: ${testSchedulerDefintion.id}
            schedulerJobId: ${testJob.id}
            substate: ${schedulerExecutionSubstate}
            timeScheduledGreaterThanOrEqualTo: ${schedulerExecutionTimeScheduledGreaterThanOrEqualTo}
            timeScheduledLessThan: ${schedulerExecutionTimeScheduledLessThan}
    

    Using getSchedulerExecutions

    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 getSchedulerExecutions(args: GetSchedulerExecutionsArgs, opts?: InvokeOptions): Promise<GetSchedulerExecutionsResult>
    function getSchedulerExecutionsOutput(args: GetSchedulerExecutionsOutputArgs, opts?: InvokeOptions): Output<GetSchedulerExecutionsResult>
    def get_scheduler_executions(compartment_id: Optional[str] = None,
                                 display_name: Optional[str] = None,
                                 filters: Optional[Sequence[GetSchedulerExecutionsFilter]] = None,
                                 resource_id: Optional[str] = None,
                                 runbook_id: Optional[str] = None,
                                 runbook_version_name: Optional[str] = None,
                                 scheduler_defintion_id: Optional[str] = None,
                                 scheduler_job_id: Optional[str] = None,
                                 substate: Optional[str] = None,
                                 time_scheduled_greater_than_or_equal_to: Optional[str] = None,
                                 time_scheduled_less_than: Optional[str] = None,
                                 opts: Optional[InvokeOptions] = None) -> GetSchedulerExecutionsResult
    def get_scheduler_executions_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                 display_name: Optional[pulumi.Input[str]] = None,
                                 filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetSchedulerExecutionsFilterArgs]]]] = None,
                                 resource_id: Optional[pulumi.Input[str]] = None,
                                 runbook_id: Optional[pulumi.Input[str]] = None,
                                 runbook_version_name: Optional[pulumi.Input[str]] = None,
                                 scheduler_defintion_id: Optional[pulumi.Input[str]] = None,
                                 scheduler_job_id: Optional[pulumi.Input[str]] = None,
                                 substate: Optional[pulumi.Input[str]] = None,
                                 time_scheduled_greater_than_or_equal_to: Optional[pulumi.Input[str]] = None,
                                 time_scheduled_less_than: Optional[pulumi.Input[str]] = None,
                                 opts: Optional[InvokeOptions] = None) -> Output[GetSchedulerExecutionsResult]
    func GetSchedulerExecutions(ctx *Context, args *GetSchedulerExecutionsArgs, opts ...InvokeOption) (*GetSchedulerExecutionsResult, error)
    func GetSchedulerExecutionsOutput(ctx *Context, args *GetSchedulerExecutionsOutputArgs, opts ...InvokeOption) GetSchedulerExecutionsResultOutput

    > Note: This function is named GetSchedulerExecutions in the Go SDK.

    public static class GetSchedulerExecutions 
    {
        public static Task<GetSchedulerExecutionsResult> InvokeAsync(GetSchedulerExecutionsArgs args, InvokeOptions? opts = null)
        public static Output<GetSchedulerExecutionsResult> Invoke(GetSchedulerExecutionsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSchedulerExecutionsResult> getSchedulerExecutions(GetSchedulerExecutionsArgs args, InvokeOptions options)
    public static Output<GetSchedulerExecutionsResult> getSchedulerExecutions(GetSchedulerExecutionsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:FleetAppsManagement/getSchedulerExecutions:getSchedulerExecutions
      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.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetSchedulerExecutionsFilter>
    ResourceId string
    ResourceId filter (Example FleetId)
    RunbookId string
    A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
    RunbookVersionName string
    RunbookVersion Name filter
    SchedulerDefintionId string
    SchedulerDefinition identifier
    SchedulerJobId string
    SchedulerJob identifier filter
    Substate string
    A filter to return only resources their subState matches the given subState.
    TimeScheduledGreaterThanOrEqualTo string
    Scheduled Time
    TimeScheduledLessThan string
    Scheduled Time
    CompartmentId string
    The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetSchedulerExecutionsFilter
    ResourceId string
    ResourceId filter (Example FleetId)
    RunbookId string
    A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
    RunbookVersionName string
    RunbookVersion Name filter
    SchedulerDefintionId string
    SchedulerDefinition identifier
    SchedulerJobId string
    SchedulerJob identifier filter
    Substate string
    A filter to return only resources their subState matches the given subState.
    TimeScheduledGreaterThanOrEqualTo string
    Scheduled Time
    TimeScheduledLessThan string
    Scheduled Time
    compartmentId String
    The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetSchedulerExecutionsFilter>
    resourceId String
    ResourceId filter (Example FleetId)
    runbookId String
    A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
    runbookVersionName String
    RunbookVersion Name filter
    schedulerDefintionId String
    SchedulerDefinition identifier
    schedulerJobId String
    SchedulerJob identifier filter
    substate String
    A filter to return only resources their subState matches the given subState.
    timeScheduledGreaterThanOrEqualTo String
    Scheduled Time
    timeScheduledLessThan String
    Scheduled Time
    compartmentId string
    The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetSchedulerExecutionsFilter[]
    resourceId string
    ResourceId filter (Example FleetId)
    runbookId string
    A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
    runbookVersionName string
    RunbookVersion Name filter
    schedulerDefintionId string
    SchedulerDefinition identifier
    schedulerJobId string
    SchedulerJob identifier filter
    substate string
    A filter to return only resources their subState matches the given subState.
    timeScheduledGreaterThanOrEqualTo string
    Scheduled Time
    timeScheduledLessThan string
    Scheduled Time
    compartment_id str
    The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
    display_name str
    A filter to return only resources that match the entire display name given.
    filters Sequence[GetSchedulerExecutionsFilter]
    resource_id str
    ResourceId filter (Example FleetId)
    runbook_id str
    A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
    runbook_version_name str
    RunbookVersion Name filter
    scheduler_defintion_id str
    SchedulerDefinition identifier
    scheduler_job_id str
    SchedulerJob identifier filter
    substate str
    A filter to return only resources their subState matches the given subState.
    time_scheduled_greater_than_or_equal_to str
    Scheduled Time
    time_scheduled_less_than str
    Scheduled Time
    compartmentId String
    The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<Property Map>
    resourceId String
    ResourceId filter (Example FleetId)
    runbookId String
    A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
    runbookVersionName String
    RunbookVersion Name filter
    schedulerDefintionId String
    SchedulerDefinition identifier
    schedulerJobId String
    SchedulerJob identifier filter
    substate String
    A filter to return only resources their subState matches the given subState.
    timeScheduledGreaterThanOrEqualTo String
    Scheduled Time
    timeScheduledLessThan String
    Scheduled Time

    getSchedulerExecutions Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    SchedulerExecutionCollections List<GetSchedulerExecutionsSchedulerExecutionCollection>
    The list of scheduler_execution_collection.
    CompartmentId string
    Compartment OCID
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    Filters List<GetSchedulerExecutionsFilter>
    ResourceId string
    ResourceId associated with the Schedule.
    RunbookId string
    RunbookId associated with the Schedule.
    RunbookVersionName string
    Name of the Runbook version associated with the Schedule.
    SchedulerDefintionId string
    SchedulerJobId string
    jobId associated with the Schedule.
    Substate string
    TimeScheduledGreaterThanOrEqualTo string
    TimeScheduledLessThan string
    Id string
    The provider-assigned unique ID for this managed resource.
    SchedulerExecutionCollections []GetSchedulerExecutionsSchedulerExecutionCollection
    The list of scheduler_execution_collection.
    CompartmentId string
    Compartment OCID
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    Filters []GetSchedulerExecutionsFilter
    ResourceId string
    ResourceId associated with the Schedule.
    RunbookId string
    RunbookId associated with the Schedule.
    RunbookVersionName string
    Name of the Runbook version associated with the Schedule.
    SchedulerDefintionId string
    SchedulerJobId string
    jobId associated with the Schedule.
    Substate string
    TimeScheduledGreaterThanOrEqualTo string
    TimeScheduledLessThan string
    id String
    The provider-assigned unique ID for this managed resource.
    schedulerExecutionCollections List<GetSchedulerExecutionsSchedulerExecutionCollection>
    The list of scheduler_execution_collection.
    compartmentId String
    Compartment OCID
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    filters List<GetSchedulerExecutionsFilter>
    resourceId String
    ResourceId associated with the Schedule.
    runbookId String
    RunbookId associated with the Schedule.
    runbookVersionName String
    Name of the Runbook version associated with the Schedule.
    schedulerDefintionId String
    schedulerJobId String
    jobId associated with the Schedule.
    substate String
    timeScheduledGreaterThanOrEqualTo String
    timeScheduledLessThan String
    id string
    The provider-assigned unique ID for this managed resource.
    schedulerExecutionCollections GetSchedulerExecutionsSchedulerExecutionCollection[]
    The list of scheduler_execution_collection.
    compartmentId string
    Compartment OCID
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    filters GetSchedulerExecutionsFilter[]
    resourceId string
    ResourceId associated with the Schedule.
    runbookId string
    RunbookId associated with the Schedule.
    runbookVersionName string
    Name of the Runbook version associated with the Schedule.
    schedulerDefintionId string
    schedulerJobId string
    jobId associated with the Schedule.
    substate string
    timeScheduledGreaterThanOrEqualTo string
    timeScheduledLessThan string
    id str
    The provider-assigned unique ID for this managed resource.
    scheduler_execution_collections Sequence[GetSchedulerExecutionsSchedulerExecutionCollection]
    The list of scheduler_execution_collection.
    compartment_id str
    Compartment OCID
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    filters Sequence[GetSchedulerExecutionsFilter]
    resource_id str
    ResourceId associated with the Schedule.
    runbook_id str
    RunbookId associated with the Schedule.
    runbook_version_name str
    Name of the Runbook version associated with the Schedule.
    scheduler_defintion_id str
    scheduler_job_id str
    jobId associated with the Schedule.
    substate str
    time_scheduled_greater_than_or_equal_to str
    time_scheduled_less_than str
    id String
    The provider-assigned unique ID for this managed resource.
    schedulerExecutionCollections List<Property Map>
    The list of scheduler_execution_collection.
    compartmentId String
    Compartment OCID
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: My new resource
    filters List<Property Map>
    resourceId String
    ResourceId associated with the Schedule.
    runbookId String
    RunbookId associated with the Schedule.
    runbookVersionName String
    Name of the Runbook version associated with the Schedule.
    schedulerDefintionId String
    schedulerJobId String
    jobId associated with the Schedule.
    substate String
    timeScheduledGreaterThanOrEqualTo String
    timeScheduledLessThan String

    Supporting Types

    GetSchedulerExecutionsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetSchedulerExecutionsSchedulerExecutionCollection

    items List<Property Map>
    List of schedulerExecutions.

    GetSchedulerExecutionsSchedulerExecutionCollectionItem

    ActivityId string
    Action Group associated with the Schedule.
    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"}
    DisplayName string
    A filter to return only resources that match the entire display name given.
    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"}
    Id string
    The OCID of the resource.
    LatestRunbookVersionName string
    Latest Runbook version available.
    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.
    ResourceDisplayName string
    Resource DsiplayName associated with the Schedule.
    ResourceId string
    ResourceId filter (Example FleetId)
    RunbookDisplayName string
    DsiplayName of Runbook associated with the Schedule.
    RunbookId string
    A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
    RunbookVersionName string
    RunbookVersion Name filter
    SchedulerDefinitions List<GetSchedulerExecutionsSchedulerExecutionCollectionItemSchedulerDefinition>
    SchedulerDefinition associated with the job.
    SchedulerJobId string
    SchedulerJob identifier filter
    State string
    The current state of the Scheduler Execution.
    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"}
    TimeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    TimeEnded string
    Actual end date and time for the Execution.
    TimeScheduled string
    The scheduled date and time for the Job.
    TimeStarted string
    Actual start date and time for the Execution.
    TimeUpdated string
    The time this resource was last updated. An RFC3339 formatted datetime string.
    ActivityId string
    Action Group associated with the Schedule.
    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"}
    DisplayName string
    A filter to return only resources that match the entire display name given.
    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"}
    Id string
    The OCID of the resource.
    LatestRunbookVersionName string
    Latest Runbook version available.
    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.
    ResourceDisplayName string
    Resource DsiplayName associated with the Schedule.
    ResourceId string
    ResourceId filter (Example FleetId)
    RunbookDisplayName string
    DsiplayName of Runbook associated with the Schedule.
    RunbookId string
    A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
    RunbookVersionName string
    RunbookVersion Name filter
    SchedulerDefinitions []GetSchedulerExecutionsSchedulerExecutionCollectionItemSchedulerDefinition
    SchedulerDefinition associated with the job.
    SchedulerJobId string
    SchedulerJob identifier filter
    State string
    The current state of the Scheduler Execution.
    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"}
    TimeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    TimeEnded string
    Actual end date and time for the Execution.
    TimeScheduled string
    The scheduled date and time for the Job.
    TimeStarted string
    Actual start date and time for the Execution.
    TimeUpdated string
    The time this resource was last updated. An RFC3339 formatted datetime string.
    activityId String
    Action Group associated with the Schedule.
    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"}
    displayName String
    A filter to return only resources that match the entire display name given.
    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"}
    id String
    The OCID of the resource.
    latestRunbookVersionName String
    Latest Runbook version available.
    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.
    resourceDisplayName String
    Resource DsiplayName associated with the Schedule.
    resourceId String
    ResourceId filter (Example FleetId)
    runbookDisplayName String
    DsiplayName of Runbook associated with the Schedule.
    runbookId String
    A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
    runbookVersionName String
    RunbookVersion Name filter
    schedulerDefinitions List<GetSchedulerExecutionsSchedulerExecutionCollectionItemSchedulerDefinition>
    SchedulerDefinition associated with the job.
    schedulerJobId String
    SchedulerJob identifier filter
    state String
    The current state of the Scheduler Execution.
    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"}
    timeCreated String
    The time this resource was created. An RFC3339 formatted datetime string.
    timeEnded String
    Actual end date and time for the Execution.
    timeScheduled String
    The scheduled date and time for the Job.
    timeStarted String
    Actual start date and time for the Execution.
    timeUpdated String
    The time this resource was last updated. An RFC3339 formatted datetime string.
    activityId string
    Action Group associated with the Schedule.
    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"}
    displayName string
    A filter to return only resources that match the entire display name given.
    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"}
    id string
    The OCID of the resource.
    latestRunbookVersionName string
    Latest Runbook version available.
    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.
    resourceDisplayName string
    Resource DsiplayName associated with the Schedule.
    resourceId string
    ResourceId filter (Example FleetId)
    runbookDisplayName string
    DsiplayName of Runbook associated with the Schedule.
    runbookId string
    A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
    runbookVersionName string
    RunbookVersion Name filter
    schedulerDefinitions GetSchedulerExecutionsSchedulerExecutionCollectionItemSchedulerDefinition[]
    SchedulerDefinition associated with the job.
    schedulerJobId string
    SchedulerJob identifier filter
    state string
    The current state of the Scheduler Execution.
    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"}
    timeCreated string
    The time this resource was created. An RFC3339 formatted datetime string.
    timeEnded string
    Actual end date and time for the Execution.
    timeScheduled string
    The scheduled date and time for the Job.
    timeStarted string
    Actual start date and time for the Execution.
    timeUpdated string
    The time this resource was last updated. An RFC3339 formatted datetime string.
    activity_id str
    Action Group associated with the Schedule.
    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"}
    display_name str
    A filter to return only resources that match the entire display name given.
    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"}
    id str
    The OCID of the resource.
    latest_runbook_version_name str
    Latest Runbook version available.
    lifecycle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    resource_display_name str
    Resource DsiplayName associated with the Schedule.
    resource_id str
    ResourceId filter (Example FleetId)
    runbook_display_name str
    DsiplayName of Runbook associated with the Schedule.
    runbook_id str
    A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
    runbook_version_name str
    RunbookVersion Name filter
    scheduler_definitions Sequence[GetSchedulerExecutionsSchedulerExecutionCollectionItemSchedulerDefinition]
    SchedulerDefinition associated with the job.
    scheduler_job_id str
    SchedulerJob identifier filter
    state str
    The current state of the Scheduler Execution.
    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"}
    time_created str
    The time this resource was created. An RFC3339 formatted datetime string.
    time_ended str
    Actual end date and time for the Execution.
    time_scheduled str
    The scheduled date and time for the Job.
    time_started str
    Actual start date and time for the Execution.
    time_updated str
    The time this resource was last updated. An RFC3339 formatted datetime string.
    activityId String
    Action Group associated with the Schedule.
    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"}
    displayName String
    A filter to return only resources that match the entire display name given.
    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"}
    id String
    The OCID of the resource.
    latestRunbookVersionName String
    Latest Runbook version available.
    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.
    resourceDisplayName String
    Resource DsiplayName associated with the Schedule.
    resourceId String
    ResourceId filter (Example FleetId)
    runbookDisplayName String
    DsiplayName of Runbook associated with the Schedule.
    runbookId String
    A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
    runbookVersionName String
    RunbookVersion Name filter
    schedulerDefinitions List<Property Map>
    SchedulerDefinition associated with the job.
    schedulerJobId String
    SchedulerJob identifier filter
    state String
    The current state of the Scheduler Execution.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The time this resource was created. An RFC3339 formatted datetime string.
    timeEnded String
    Actual end date and time for the Execution.
    timeScheduled String
    The scheduled date and time for the Job.
    timeStarted String
    Actual start date and time for the Execution.
    timeUpdated String
    The time this resource was last updated. An RFC3339 formatted datetime string.

    GetSchedulerExecutionsSchedulerExecutionCollectionItemSchedulerDefinition

    DisplayName string
    A filter to return only resources that match the entire display name given.
    Id string
    The OCID of the resource.
    IsRecurring bool
    Is this a recurring schedule?
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Id string
    The OCID of the resource.
    IsRecurring bool
    Is this a recurring schedule?
    displayName String
    A filter to return only resources that match the entire display name given.
    id String
    The OCID of the resource.
    isRecurring Boolean
    Is this a recurring schedule?
    displayName string
    A filter to return only resources that match the entire display name given.
    id string
    The OCID of the resource.
    isRecurring boolean
    Is this a recurring schedule?
    display_name str
    A filter to return only resources that match the entire display name given.
    id str
    The OCID of the resource.
    is_recurring bool
    Is this a recurring schedule?
    displayName String
    A filter to return only resources that match the entire display name given.
    id String
    The OCID of the resource.
    isRecurring Boolean
    Is this a recurring schedule?

    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