Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
oci.FleetAppsManagement.getSchedulerExecutions
Start a Neo task
Explain and create an oci.FleetAppsManagement.getSchedulerExecutions resource
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 dictionaryThe following arguments are supported:
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Scheduler Executions Filter> - Resource
Id string - ResourceId filter (Example FleetId)
- Runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- Runbook
Version stringName - RunbookVersion Name filter
- Scheduler
Defintion stringId - SchedulerDefinition identifier
- Scheduler
Job stringId - SchedulerJob identifier filter
- Substate string
- A filter to return only resources their subState matches the given subState.
- Time
Scheduled stringGreater Than Or Equal To - Scheduled Time
- Time
Scheduled stringLess Than - Scheduled Time
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Scheduler Executions Filter - Resource
Id string - ResourceId filter (Example FleetId)
- Runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- Runbook
Version stringName - RunbookVersion Name filter
- Scheduler
Defintion stringId - SchedulerDefinition identifier
- Scheduler
Job stringId - SchedulerJob identifier filter
- Substate string
- A filter to return only resources their subState matches the given subState.
- Time
Scheduled stringGreater Than Or Equal To - Scheduled Time
- Time
Scheduled stringLess Than - Scheduled Time
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Scheduler Executions Filter> - resource
Id String - ResourceId filter (Example FleetId)
- runbook
Id String - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version StringName - RunbookVersion Name filter
- scheduler
Defintion StringId - SchedulerDefinition identifier
- scheduler
Job StringId - SchedulerJob identifier filter
- substate String
- A filter to return only resources their subState matches the given subState.
- time
Scheduled StringGreater Than Or Equal To - Scheduled Time
- time
Scheduled StringLess Than - Scheduled Time
- compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Scheduler Executions Filter[] - resource
Id string - ResourceId filter (Example FleetId)
- runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version stringName - RunbookVersion Name filter
- scheduler
Defintion stringId - SchedulerDefinition identifier
- scheduler
Job stringId - SchedulerJob identifier filter
- substate string
- A filter to return only resources their subState matches the given subState.
- time
Scheduled stringGreater Than Or Equal To - Scheduled Time
- time
Scheduled stringLess Than - 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[Get
Scheduler Executions Filter] - 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_ strname - RunbookVersion Name filter
- scheduler_
defintion_ strid - SchedulerDefinition identifier
- scheduler_
job_ strid - SchedulerJob identifier filter
- substate str
- A filter to return only resources their subState matches the given subState.
- time_
scheduled_ strgreater_ than_ or_ equal_ to - Scheduled Time
- time_
scheduled_ strless_ than - Scheduled Time
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- resource
Id String - ResourceId filter (Example FleetId)
- runbook
Id String - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version StringName - RunbookVersion Name filter
- scheduler
Defintion StringId - SchedulerDefinition identifier
- scheduler
Job StringId - SchedulerJob identifier filter
- substate String
- A filter to return only resources their subState matches the given subState.
- time
Scheduled StringGreater Than Or Equal To - Scheduled Time
- time
Scheduled StringLess Than - Scheduled Time
getSchedulerExecutions Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Scheduler
Execution List<GetCollections Scheduler Executions Scheduler Execution Collection> - The list of scheduler_execution_collection.
- Compartment
Id string - Compartment OCID
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource - Filters
List<Get
Scheduler Executions Filter> - Resource
Id string - ResourceId associated with the Schedule.
- Runbook
Id string - RunbookId associated with the Schedule.
- Runbook
Version stringName - Name of the Runbook version associated with the Schedule.
- Scheduler
Defintion stringId - Scheduler
Job stringId - jobId associated with the Schedule.
- Substate string
- Time
Scheduled stringGreater Than Or Equal To - Time
Scheduled stringLess Than
- Id string
- The provider-assigned unique ID for this managed resource.
- Scheduler
Execution []GetCollections Scheduler Executions Scheduler Execution Collection - The list of scheduler_execution_collection.
- Compartment
Id string - Compartment OCID
- Display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource - Filters
[]Get
Scheduler Executions Filter - Resource
Id string - ResourceId associated with the Schedule.
- Runbook
Id string - RunbookId associated with the Schedule.
- Runbook
Version stringName - Name of the Runbook version associated with the Schedule.
- Scheduler
Defintion stringId - Scheduler
Job stringId - jobId associated with the Schedule.
- Substate string
- Time
Scheduled stringGreater Than Or Equal To - Time
Scheduled stringLess Than
- id String
- The provider-assigned unique ID for this managed resource.
- scheduler
Execution List<GetCollections Scheduler Executions Scheduler Execution Collection> - The list of scheduler_execution_collection.
- compartment
Id String - Compartment OCID
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource - filters
List<Get
Scheduler Executions Filter> - resource
Id String - ResourceId associated with the Schedule.
- runbook
Id String - RunbookId associated with the Schedule.
- runbook
Version StringName - Name of the Runbook version associated with the Schedule.
- scheduler
Defintion StringId - scheduler
Job StringId - jobId associated with the Schedule.
- substate String
- time
Scheduled StringGreater Than Or Equal To - time
Scheduled StringLess Than
- id string
- The provider-assigned unique ID for this managed resource.
- scheduler
Execution GetCollections Scheduler Executions Scheduler Execution Collection[] - The list of scheduler_execution_collection.
- compartment
Id string - Compartment OCID
- display
Name string - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource - filters
Get
Scheduler Executions Filter[] - resource
Id string - ResourceId associated with the Schedule.
- runbook
Id string - RunbookId associated with the Schedule.
- runbook
Version stringName - Name of the Runbook version associated with the Schedule.
- scheduler
Defintion stringId - scheduler
Job stringId - jobId associated with the Schedule.
- substate string
- time
Scheduled stringGreater Than Or Equal To - time
Scheduled stringLess Than
- id str
- The provider-assigned unique ID for this managed resource.
- scheduler_
execution_ Sequence[Getcollections Scheduler Executions Scheduler Execution Collection] - 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[Get
Scheduler Executions Filter] - resource_
id str - ResourceId associated with the Schedule.
- runbook_
id str - RunbookId associated with the Schedule.
- runbook_
version_ strname - Name of the Runbook version associated with the Schedule.
- scheduler_
defintion_ strid - scheduler_
job_ strid - jobId associated with the Schedule.
- substate str
- time_
scheduled_ strgreater_ than_ or_ equal_ to - time_
scheduled_ strless_ than
- id String
- The provider-assigned unique ID for this managed resource.
- scheduler
Execution List<Property Map>Collections - The list of scheduler_execution_collection.
- compartment
Id String - Compartment OCID
- display
Name String - A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example:
My new resource - filters List<Property Map>
- resource
Id String - ResourceId associated with the Schedule.
- runbook
Id String - RunbookId associated with the Schedule.
- runbook
Version StringName - Name of the Runbook version associated with the Schedule.
- scheduler
Defintion StringId - scheduler
Job StringId - jobId associated with the Schedule.
- substate String
- time
Scheduled StringGreater Than Or Equal To - time
Scheduled StringLess Than
Supporting Types
GetSchedulerExecutionsFilter
GetSchedulerExecutionsSchedulerExecutionCollection
- Items
List<Get
Scheduler Executions Scheduler Execution Collection Item> - List of schedulerExecutions.
- Items
[]Get
Scheduler Executions Scheduler Execution Collection Item - List of schedulerExecutions.
- items
List<Get
Scheduler Executions Scheduler Execution Collection Item> - List of schedulerExecutions.
- items
Get
Scheduler Executions Scheduler Execution Collection Item[] - List of schedulerExecutions.
- items
Sequence[Get
Scheduler Executions Scheduler Execution Collection Item] - List of schedulerExecutions.
- items List<Property Map>
- List of schedulerExecutions.
GetSchedulerExecutionsSchedulerExecutionCollectionItem
- Activity
Id string - Action Group associated with the Schedule.
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Display
Name string - A filter to return only resources that match the entire display name given.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - Id string
- The OCID of the resource.
- Latest
Runbook stringVersion Name - Latest Runbook version available.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Resource
Display stringName - Resource DsiplayName associated with the Schedule.
- Resource
Id string - ResourceId filter (Example FleetId)
- Runbook
Display stringName - DsiplayName of Runbook associated with the Schedule.
- Runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- Runbook
Version stringName - RunbookVersion Name filter
- Scheduler
Definitions List<GetScheduler Executions Scheduler Execution Collection Item Scheduler Definition> - SchedulerDefinition associated with the job.
- Scheduler
Job stringId - SchedulerJob identifier filter
- State string
- The current state of the Scheduler Execution.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- Time
Ended string - Actual end date and time for the Execution.
- Time
Scheduled string - The scheduled date and time for the Job.
- Time
Started string - Actual start date and time for the Execution.
- Time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- Activity
Id string - Action Group associated with the Schedule.
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - Display
Name string - A filter to return only resources that match the entire display name given.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - Id string
- The OCID of the resource.
- Latest
Runbook stringVersion Name - Latest Runbook version available.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Resource
Display stringName - Resource DsiplayName associated with the Schedule.
- Resource
Id string - ResourceId filter (Example FleetId)
- Runbook
Display stringName - DsiplayName of Runbook associated with the Schedule.
- Runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- Runbook
Version stringName - RunbookVersion Name filter
- Scheduler
Definitions []GetScheduler Executions Scheduler Execution Collection Item Scheduler Definition - SchedulerDefinition associated with the job.
- Scheduler
Job stringId - SchedulerJob identifier filter
- State string
- The current state of the Scheduler Execution.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - Time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- Time
Ended string - Actual end date and time for the Execution.
- Time
Scheduled string - The scheduled date and time for the Job.
- Time
Started string - Actual start date and time for the Execution.
- Time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- activity
Id String - Action Group associated with the Schedule.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - display
Name String - A filter to return only resources that match the entire display name given.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id String
- The OCID of the resource.
- latest
Runbook StringVersion Name - Latest Runbook version available.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- resource
Display StringName - Resource DsiplayName associated with the Schedule.
- resource
Id String - ResourceId filter (Example FleetId)
- runbook
Display StringName - DsiplayName of Runbook associated with the Schedule.
- runbook
Id String - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version StringName - RunbookVersion Name filter
- scheduler
Definitions List<GetScheduler Executions Scheduler Execution Collection Item Scheduler Definition> - SchedulerDefinition associated with the job.
- scheduler
Job StringId - SchedulerJob identifier filter
- state String
- The current state of the Scheduler Execution.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The time this resource was created. An RFC3339 formatted datetime string.
- time
Ended String - Actual end date and time for the Execution.
- time
Scheduled String - The scheduled date and time for the Job.
- time
Started String - Actual start date and time for the Execution.
- time
Updated String - The time this resource was last updated. An RFC3339 formatted datetime string.
- activity
Id string - Action Group associated with the Schedule.
- compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - display
Name string - A filter to return only resources that match the entire display name given.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id string
- The OCID of the resource.
- latest
Runbook stringVersion Name - Latest Runbook version available.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- resource
Display stringName - Resource DsiplayName associated with the Schedule.
- resource
Id string - ResourceId filter (Example FleetId)
- runbook
Display stringName - DsiplayName of Runbook associated with the Schedule.
- runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version stringName - RunbookVersion Name filter
- scheduler
Definitions GetScheduler Executions Scheduler Execution Collection Item Scheduler Definition[] - SchedulerDefinition associated with the job.
- scheduler
Job stringId - SchedulerJob identifier filter
- state string
- The current state of the Scheduler Execution.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- time
Ended string - Actual end date and time for the Execution.
- time
Scheduled string - The scheduled date and time for the Job.
- time
Started string - Actual start date and time for the Execution.
- time
Updated 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.
- 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.
- 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_ strversion_ name - 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_ strname - Resource DsiplayName associated with the Schedule.
- resource_
id str - ResourceId filter (Example FleetId)
- runbook_
display_ strname - 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_ strname - RunbookVersion Name filter
- scheduler_
definitions Sequence[GetScheduler Executions Scheduler Execution Collection Item Scheduler Definition] - SchedulerDefinition associated with the job.
- scheduler_
job_ strid - SchedulerJob identifier filter
- state str
- The current state of the Scheduler Execution.
- 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.
- activity
Id String - Action Group associated with the Schedule.
- compartment
Id String - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"} - display
Name String - A filter to return only resources that match the entire display name given.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"} - id String
- The OCID of the resource.
- latest
Runbook StringVersion Name - Latest Runbook version available.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- resource
Display StringName - Resource DsiplayName associated with the Schedule.
- resource
Id String - ResourceId filter (Example FleetId)
- runbook
Display StringName - DsiplayName of Runbook associated with the Schedule.
- runbook
Id String - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version StringName - RunbookVersion Name filter
- scheduler
Definitions List<Property Map> - SchedulerDefinition associated with the job.
- scheduler
Job StringId - SchedulerJob identifier filter
- state String
- The current state of the Scheduler Execution.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"} - time
Created String - The time this resource was created. An RFC3339 formatted datetime string.
- time
Ended String - Actual end date and time for the Execution.
- time
Scheduled String - The scheduled date and time for the Job.
- time
Started String - Actual start date and time for the Execution.
- time
Updated String - The time this resource was last updated. An RFC3339 formatted datetime string.
GetSchedulerExecutionsSchedulerExecutionCollectionItemSchedulerDefinition
- Display
Name string - A filter to return only resources that match the entire display name given.
- Id string
- The OCID of the resource.
- Is
Recurring bool - Is this a recurring schedule?
- Display
Name string - A filter to return only resources that match the entire display name given.
- Id string
- The OCID of the resource.
- Is
Recurring bool - Is this a recurring schedule?
- display
Name String - A filter to return only resources that match the entire display name given.
- id String
- The OCID of the resource.
- is
Recurring Boolean - Is this a recurring schedule?
- display
Name string - A filter to return only resources that match the entire display name given.
- id string
- The OCID of the resource.
- is
Recurring 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?
- display
Name String - A filter to return only resources that match the entire display name given.
- id String
- The OCID of the resource.
- is
Recurring 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
ociTerraform Provider.
