Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi
oci.FleetAppsManagement.getSchedulerDefinitions
Explore with Pulumi AI
This data source provides the list of Scheduler Definitions in Oracle Cloud Infrastructure Fleet Apps Management service.
Returns a list of all the Schedule Definitions in the specified compartment.
The query parameter compartmentId
is required unless the query parameter id
is specified.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSchedulerDefinitions = oci.FleetAppsManagement.getSchedulerDefinitions({
compartmentId: compartmentId,
displayName: schedulerDefinitionDisplayName,
fleetId: testFleet.id,
id: schedulerDefinitionId,
maintenanceWindowId: testMaintenanceWindow.id,
product: schedulerDefinitionProduct,
runbookId: testRunbook.id,
runbookVersionName: testRunbookVersion.name,
state: schedulerDefinitionState,
timeScheduledGreaterThanOrEqualTo: schedulerDefinitionTimeScheduledGreaterThanOrEqualTo,
timeScheduledLessThan: schedulerDefinitionTimeScheduledLessThan,
});
import pulumi
import pulumi_oci as oci
test_scheduler_definitions = oci.FleetAppsManagement.get_scheduler_definitions(compartment_id=compartment_id,
display_name=scheduler_definition_display_name,
fleet_id=test_fleet["id"],
id=scheduler_definition_id,
maintenance_window_id=test_maintenance_window["id"],
product=scheduler_definition_product,
runbook_id=test_runbook["id"],
runbook_version_name=test_runbook_version["name"],
state=scheduler_definition_state,
time_scheduled_greater_than_or_equal_to=scheduler_definition_time_scheduled_greater_than_or_equal_to,
time_scheduled_less_than=scheduler_definition_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.GetSchedulerDefinitions(ctx, &fleetappsmanagement.GetSchedulerDefinitionsArgs{
CompartmentId: pulumi.StringRef(compartmentId),
DisplayName: pulumi.StringRef(schedulerDefinitionDisplayName),
FleetId: pulumi.StringRef(testFleet.Id),
Id: pulumi.StringRef(schedulerDefinitionId),
MaintenanceWindowId: pulumi.StringRef(testMaintenanceWindow.Id),
Product: pulumi.StringRef(schedulerDefinitionProduct),
RunbookId: pulumi.StringRef(testRunbook.Id),
RunbookVersionName: pulumi.StringRef(testRunbookVersion.Name),
State: pulumi.StringRef(schedulerDefinitionState),
TimeScheduledGreaterThanOrEqualTo: pulumi.StringRef(schedulerDefinitionTimeScheduledGreaterThanOrEqualTo),
TimeScheduledLessThan: pulumi.StringRef(schedulerDefinitionTimeScheduledLessThan),
}, 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 testSchedulerDefinitions = Oci.FleetAppsManagement.GetSchedulerDefinitions.Invoke(new()
{
CompartmentId = compartmentId,
DisplayName = schedulerDefinitionDisplayName,
FleetId = testFleet.Id,
Id = schedulerDefinitionId,
MaintenanceWindowId = testMaintenanceWindow.Id,
Product = schedulerDefinitionProduct,
RunbookId = testRunbook.Id,
RunbookVersionName = testRunbookVersion.Name,
State = schedulerDefinitionState,
TimeScheduledGreaterThanOrEqualTo = schedulerDefinitionTimeScheduledGreaterThanOrEqualTo,
TimeScheduledLessThan = schedulerDefinitionTimeScheduledLessThan,
});
});
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.GetSchedulerDefinitionsArgs;
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 testSchedulerDefinitions = FleetAppsManagementFunctions.getSchedulerDefinitions(GetSchedulerDefinitionsArgs.builder()
.compartmentId(compartmentId)
.displayName(schedulerDefinitionDisplayName)
.fleetId(testFleet.id())
.id(schedulerDefinitionId)
.maintenanceWindowId(testMaintenanceWindow.id())
.product(schedulerDefinitionProduct)
.runbookId(testRunbook.id())
.runbookVersionName(testRunbookVersion.name())
.state(schedulerDefinitionState)
.timeScheduledGreaterThanOrEqualTo(schedulerDefinitionTimeScheduledGreaterThanOrEqualTo)
.timeScheduledLessThan(schedulerDefinitionTimeScheduledLessThan)
.build());
}
}
variables:
testSchedulerDefinitions:
fn::invoke:
function: oci:FleetAppsManagement:getSchedulerDefinitions
arguments:
compartmentId: ${compartmentId}
displayName: ${schedulerDefinitionDisplayName}
fleetId: ${testFleet.id}
id: ${schedulerDefinitionId}
maintenanceWindowId: ${testMaintenanceWindow.id}
product: ${schedulerDefinitionProduct}
runbookId: ${testRunbook.id}
runbookVersionName: ${testRunbookVersion.name}
state: ${schedulerDefinitionState}
timeScheduledGreaterThanOrEqualTo: ${schedulerDefinitionTimeScheduledGreaterThanOrEqualTo}
timeScheduledLessThan: ${schedulerDefinitionTimeScheduledLessThan}
Using getSchedulerDefinitions
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 getSchedulerDefinitions(args: GetSchedulerDefinitionsArgs, opts?: InvokeOptions): Promise<GetSchedulerDefinitionsResult>
function getSchedulerDefinitionsOutput(args: GetSchedulerDefinitionsOutputArgs, opts?: InvokeOptions): Output<GetSchedulerDefinitionsResult>
def get_scheduler_definitions(compartment_id: Optional[str] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[GetSchedulerDefinitionsFilter]] = None,
fleet_id: Optional[str] = None,
id: Optional[str] = None,
maintenance_window_id: Optional[str] = None,
product: Optional[str] = None,
runbook_id: Optional[str] = None,
runbook_version_name: Optional[str] = None,
state: Optional[str] = None,
time_scheduled_greater_than_or_equal_to: Optional[str] = None,
time_scheduled_less_than: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSchedulerDefinitionsResult
def get_scheduler_definitions_output(compartment_id: Optional[pulumi.Input[str]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetSchedulerDefinitionsFilterArgs]]]] = None,
fleet_id: Optional[pulumi.Input[str]] = None,
id: Optional[pulumi.Input[str]] = None,
maintenance_window_id: Optional[pulumi.Input[str]] = None,
product: Optional[pulumi.Input[str]] = None,
runbook_id: Optional[pulumi.Input[str]] = None,
runbook_version_name: Optional[pulumi.Input[str]] = None,
state: 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[GetSchedulerDefinitionsResult]
func GetSchedulerDefinitions(ctx *Context, args *GetSchedulerDefinitionsArgs, opts ...InvokeOption) (*GetSchedulerDefinitionsResult, error)
func GetSchedulerDefinitionsOutput(ctx *Context, args *GetSchedulerDefinitionsOutputArgs, opts ...InvokeOption) GetSchedulerDefinitionsResultOutput
> Note: This function is named GetSchedulerDefinitions
in the Go SDK.
public static class GetSchedulerDefinitions
{
public static Task<GetSchedulerDefinitionsResult> InvokeAsync(GetSchedulerDefinitionsArgs args, InvokeOptions? opts = null)
public static Output<GetSchedulerDefinitionsResult> Invoke(GetSchedulerDefinitionsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSchedulerDefinitionsResult> getSchedulerDefinitions(GetSchedulerDefinitionsArgs args, InvokeOptions options)
public static Output<GetSchedulerDefinitionsResult> getSchedulerDefinitions(GetSchedulerDefinitionsArgs args, InvokeOptions options)
fn::invoke:
function: oci:FleetAppsManagement/getSchedulerDefinitions:getSchedulerDefinitions
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id string - The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Scheduler Definitions Filter> - Fleet
Id string - unique Fleet identifier
- Id string
- Unique identifier or OCID for listing a single Schedule Definition by id. Either compartmentId or id must be provided.
- Maintenance
Window stringId - A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- Product string
- A filter to return only dchedule definitions whose assocaited product matches the given product
- Runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- Runbook
Version stringName - RunbookVersion Name filter
- State string
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- 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 Definitions Filter - Fleet
Id string - unique Fleet identifier
- Id string
- Unique identifier or OCID for listing a single Schedule Definition by id. Either compartmentId or id must be provided.
- Maintenance
Window stringId - A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- Product string
- A filter to return only dchedule definitions whose assocaited product matches the given product
- Runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- Runbook
Version stringName - RunbookVersion Name filter
- State string
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- 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 Definitions Filter> - fleet
Id String - unique Fleet identifier
- id String
- Unique identifier or OCID for listing a single Schedule Definition by id. Either compartmentId or id must be provided.
- maintenance
Window StringId - A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- product String
- A filter to return only dchedule definitions whose assocaited product matches the given product
- runbook
Id String - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version StringName - RunbookVersion Name filter
- state String
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- 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 Definitions Filter[] - fleet
Id string - unique Fleet identifier
- id string
- Unique identifier or OCID for listing a single Schedule Definition by id. Either compartmentId or id must be provided.
- maintenance
Window stringId - A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- product string
- A filter to return only dchedule definitions whose assocaited product matches the given product
- runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version stringName - RunbookVersion Name filter
- state string
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- 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 Definitions Filter] - fleet_
id str - unique Fleet identifier
- id str
- Unique identifier or OCID for listing a single Schedule Definition by id. Either compartmentId or id must be provided.
- maintenance_
window_ strid - A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- product str
- A filter to return only dchedule definitions whose assocaited product matches the given product
- runbook_
id str - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook_
version_ strname - RunbookVersion Name filter
- state str
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- 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>
- fleet
Id String - unique Fleet identifier
- id String
- Unique identifier or OCID for listing a single Schedule Definition by id. Either compartmentId or id must be provided.
- maintenance
Window StringId - A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- product String
- A filter to return only dchedule definitions whose assocaited product matches the given product
- runbook
Id String - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version StringName - RunbookVersion Name filter
- state String
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- time
Scheduled StringGreater Than Or Equal To - Scheduled Time
- time
Scheduled StringLess Than - Scheduled Time
getSchedulerDefinitions Result
The following output properties are available:
- Scheduler
Definition List<GetCollections Scheduler Definitions Scheduler Definition Collection> - The list of scheduler_definition_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 Definitions Filter> - Fleet
Id string - ID of the fleet
- Id string
- The OCID of the resource.
- Maintenance
Window stringId - Provide MaintenanceWindowId
- Product string
- Runbook
Id string - The ID of the Runbook
- Runbook
Version stringName - The runbook version name
- State string
- The current state of the SchedulerDefinition.
- Time
Scheduled stringGreater Than Or Equal To - Time
Scheduled stringLess Than
- Scheduler
Definition []GetCollections Scheduler Definitions Scheduler Definition Collection - The list of scheduler_definition_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 Definitions Filter - Fleet
Id string - ID of the fleet
- Id string
- The OCID of the resource.
- Maintenance
Window stringId - Provide MaintenanceWindowId
- Product string
- Runbook
Id string - The ID of the Runbook
- Runbook
Version stringName - The runbook version name
- State string
- The current state of the SchedulerDefinition.
- Time
Scheduled stringGreater Than Or Equal To - Time
Scheduled stringLess Than
- scheduler
Definition List<GetCollections Scheduler Definitions Scheduler Definition Collection> - The list of scheduler_definition_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 Definitions Filter> - fleet
Id String - ID of the fleet
- id String
- The OCID of the resource.
- maintenance
Window StringId - Provide MaintenanceWindowId
- product String
- runbook
Id String - The ID of the Runbook
- runbook
Version StringName - The runbook version name
- state String
- The current state of the SchedulerDefinition.
- time
Scheduled StringGreater Than Or Equal To - time
Scheduled StringLess Than
- scheduler
Definition GetCollections Scheduler Definitions Scheduler Definition Collection[] - The list of scheduler_definition_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 Definitions Filter[] - fleet
Id string - ID of the fleet
- id string
- The OCID of the resource.
- maintenance
Window stringId - Provide MaintenanceWindowId
- product string
- runbook
Id string - The ID of the Runbook
- runbook
Version stringName - The runbook version name
- state string
- The current state of the SchedulerDefinition.
- time
Scheduled stringGreater Than Or Equal To - time
Scheduled stringLess Than
- scheduler_
definition_ Sequence[Getcollections Scheduler Definitions Scheduler Definition Collection] - The list of scheduler_definition_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 Definitions Filter] - fleet_
id str - ID of the fleet
- id str
- The OCID of the resource.
- maintenance_
window_ strid - Provide MaintenanceWindowId
- product str
- runbook_
id str - The ID of the Runbook
- runbook_
version_ strname - The runbook version name
- state str
- The current state of the SchedulerDefinition.
- time_
scheduled_ strgreater_ than_ or_ equal_ to - time_
scheduled_ strless_ than
- scheduler
Definition List<Property Map>Collections - The list of scheduler_definition_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>
- fleet
Id String - ID of the fleet
- id String
- The OCID of the resource.
- maintenance
Window StringId - Provide MaintenanceWindowId
- product String
- runbook
Id String - The ID of the Runbook
- runbook
Version StringName - The runbook version name
- state String
- The current state of the SchedulerDefinition.
- time
Scheduled StringGreater Than Or Equal To - time
Scheduled StringLess Than
Supporting Types
GetSchedulerDefinitionsFilter
GetSchedulerDefinitionsSchedulerDefinitionCollection
GetSchedulerDefinitionsSchedulerDefinitionCollectionItem
- Action
Groups List<GetScheduler Definitions Scheduler Definition Collection Item Action Group> - Action Groups 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.
- Count
Of intAffected Action Groups - Count of Action Groups affected by the Schedule.
- Count
Of intAffected Resources - Count of Resources affected by the Schedule.
- Count
Of intAffected Targets - Count of Targets affected by the Schedule.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- Unique identifier or OCID for listing a single Schedule Definition by id. Either compartmentId or id must be provided.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Lifecycle
Operations List<string> - All LifeCycle Operations that are part of the schedule.
- Products List<string>
- All products that are part of the schedule for PRODUCT ActionGroup Type.
- Resource
Region string - Associated region
- Run
Books List<GetScheduler Definitions Scheduler Definition Collection Item Run Book> - Runbooks.
- Schedules
List<Get
Scheduler Definitions Scheduler Definition Collection Item Schedule> - Schedule Information.
- State string
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- Time
Of stringNext Run - The scheduled date for the next run of the Job.
- Time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- Action
Groups []GetScheduler Definitions Scheduler Definition Collection Item Action Group - Action Groups 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.
- Count
Of intAffected Action Groups - Count of Action Groups affected by the Schedule.
- Count
Of intAffected Resources - Count of Resources affected by the Schedule.
- Count
Of intAffected Targets - Count of Targets affected by the Schedule.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- Display
Name string - A filter to return only resources that match the entire display name given.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- Unique identifier or OCID for listing a single Schedule Definition by id. Either compartmentId or id must be provided.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Lifecycle
Operations []string - All LifeCycle Operations that are part of the schedule.
- Products []string
- All products that are part of the schedule for PRODUCT ActionGroup Type.
- Resource
Region string - Associated region
- Run
Books []GetScheduler Definitions Scheduler Definition Collection Item Run Book - Runbooks.
- Schedules
[]Get
Scheduler Definitions Scheduler Definition Collection Item Schedule - Schedule Information.
- State string
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- Time
Of stringNext Run - The scheduled date for the next run of the Job.
- Time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- action
Groups List<GetScheduler Definitions Scheduler Definition Collection Item Action Group> - Action Groups 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.
- count
Of IntegerAffected Action Groups - Count of Action Groups affected by the Schedule.
- count
Of IntegerAffected Resources - Count of Resources affected by the Schedule.
- count
Of IntegerAffected Targets - Count of Targets affected by the Schedule.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- Unique identifier or OCID for listing a single Schedule Definition by id. Either compartmentId or id must be provided.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- lifecycle
Operations List<String> - All LifeCycle Operations that are part of the schedule.
- products List<String>
- All products that are part of the schedule for PRODUCT ActionGroup Type.
- resource
Region String - Associated region
- run
Books List<GetScheduler Definitions Scheduler Definition Collection Item Run Book> - Runbooks.
- schedules
List<Get
Scheduler Definitions Scheduler Definition Collection Item Schedule> - Schedule Information.
- state String
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time this resource was created. An RFC3339 formatted datetime string.
- time
Of StringNext Run - The scheduled date for the next run of the Job.
- time
Updated String - The time this resource was last updated. An RFC3339 formatted datetime string.
- action
Groups GetScheduler Definitions Scheduler Definition Collection Item Action Group[] - Action Groups 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.
- count
Of numberAffected Action Groups - Count of Action Groups affected by the Schedule.
- count
Of numberAffected Resources - Count of Resources affected by the Schedule.
- count
Of numberAffected Targets - Count of Targets affected by the Schedule.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- display
Name string - A filter to return only resources that match the entire display name given.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id string
- Unique identifier or OCID for listing a single Schedule Definition by id. Either compartmentId or id must be provided.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- lifecycle
Operations string[] - All LifeCycle Operations that are part of the schedule.
- products string[]
- All products that are part of the schedule for PRODUCT ActionGroup Type.
- resource
Region string - Associated region
- run
Books GetScheduler Definitions Scheduler Definition Collection Item Run Book[] - Runbooks.
- schedules
Get
Scheduler Definitions Scheduler Definition Collection Item Schedule[] - Schedule Information.
- state string
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The time this resource was created. An RFC3339 formatted datetime string.
- time
Of stringNext Run - The scheduled date for the next run of the Job.
- time
Updated string - The time this resource was last updated. An RFC3339 formatted datetime string.
- action_
groups Sequence[GetScheduler Definitions Scheduler Definition Collection Item Action Group] - Action Groups 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.
- count_
of_ intaffected_ action_ groups - Count of Action Groups affected by the Schedule.
- count_
of_ intaffected_ resources - Count of Resources affected by the Schedule.
- count_
of_ intaffected_ targets - Count of Targets affected by the Schedule.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- display_
name str - A filter to return only resources that match the entire display name given.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id str
- Unique identifier or OCID for listing a single Schedule Definition by id. Either compartmentId or id must be provided.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- lifecycle_
operations Sequence[str] - All LifeCycle Operations that are part of the schedule.
- products Sequence[str]
- All products that are part of the schedule for PRODUCT ActionGroup Type.
- resource_
region str - Associated region
- run_
books Sequence[GetScheduler Definitions Scheduler Definition Collection Item Run Book] - Runbooks.
- schedules
Sequence[Get
Scheduler Definitions Scheduler Definition Collection Item Schedule] - Schedule Information.
- state str
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The time this resource was created. An RFC3339 formatted datetime string.
- time_
of_ strnext_ run - The scheduled date for the next run of the Job.
- time_
updated str - The time this resource was last updated. An RFC3339 formatted datetime string.
- action
Groups List<Property Map> - Action Groups 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.
- count
Of NumberAffected Action Groups - Count of Action Groups affected by the Schedule.
- count
Of NumberAffected Resources - Count of Resources affected by the Schedule.
- count
Of NumberAffected Targets - Count of Targets affected by the Schedule.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- Unique identifier or OCID for listing a single Schedule Definition by id. Either compartmentId or id must be provided.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- lifecycle
Operations List<String> - All LifeCycle Operations that are part of the schedule.
- products List<String>
- All products that are part of the schedule for PRODUCT ActionGroup Type.
- resource
Region String - Associated region
- run
Books List<Property Map> - Runbooks.
- schedules List<Property Map>
- Schedule Information.
- state String
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The time this resource was created. An RFC3339 formatted datetime string.
- time
Of StringNext Run - The scheduled date for the next run of the Job.
- time
Updated String - The time this resource was last updated. An RFC3339 formatted datetime string.
GetSchedulerDefinitionsSchedulerDefinitionCollectionItemActionGroup
- Display
Name string - A filter to return only resources that match the entire display name given.
- Fleet
Id string - unique Fleet identifier
- Kind string
- Task argument kind
- Runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- Runbook
Version stringName - RunbookVersion Name filter
- Sequence int
- Sequence of the Action Group. Action groups will be executed in a seuential order. All Action Groups having the same sequence will be executed parallely. If no value is provided a default value of 1 will be given.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Fleet
Id string - unique Fleet identifier
- Kind string
- Task argument kind
- Runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- Runbook
Version stringName - RunbookVersion Name filter
- Sequence int
- Sequence of the Action Group. Action groups will be executed in a seuential order. All Action Groups having the same sequence will be executed parallely. If no value is provided a default value of 1 will be given.
- display
Name String - A filter to return only resources that match the entire display name given.
- fleet
Id String - unique Fleet identifier
- kind String
- Task argument kind
- runbook
Id String - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version StringName - RunbookVersion Name filter
- sequence Integer
- Sequence of the Action Group. Action groups will be executed in a seuential order. All Action Groups having the same sequence will be executed parallely. If no value is provided a default value of 1 will be given.
- display
Name string - A filter to return only resources that match the entire display name given.
- fleet
Id string - unique Fleet identifier
- kind string
- Task argument kind
- runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version stringName - RunbookVersion Name filter
- sequence number
- Sequence of the Action Group. Action groups will be executed in a seuential order. All Action Groups having the same sequence will be executed parallely. If no value is provided a default value of 1 will be given.
- display_
name str - A filter to return only resources that match the entire display name given.
- fleet_
id str - unique Fleet identifier
- kind str
- Task argument kind
- runbook_
id str - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook_
version_ strname - RunbookVersion Name filter
- sequence int
- Sequence of the Action Group. Action groups will be executed in a seuential order. All Action Groups having the same sequence will be executed parallely. If no value is provided a default value of 1 will be given.
- display
Name String - A filter to return only resources that match the entire display name given.
- fleet
Id String - unique Fleet identifier
- kind String
- Task argument kind
- runbook
Id String - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version StringName - RunbookVersion Name filter
- sequence Number
- Sequence of the Action Group. Action groups will be executed in a seuential order. All Action Groups having the same sequence will be executed parallely. If no value is provided a default value of 1 will be given.
GetSchedulerDefinitionsSchedulerDefinitionCollectionItemRunBook
- Input
Parameters List<GetScheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter> - Input Parameters for the Task
- Runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- Runbook
Version stringName - RunbookVersion Name filter
- Input
Parameters []GetScheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter - Input Parameters for the Task
- Runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- Runbook
Version stringName - RunbookVersion Name filter
- input
Parameters List<GetScheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter> - Input Parameters for the Task
- runbook
Id String - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version StringName - RunbookVersion Name filter
- input
Parameters GetScheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter[] - Input Parameters for the Task
- runbook
Id string - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version stringName - RunbookVersion Name filter
- input_
parameters Sequence[GetScheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter] - Input Parameters for the Task
- runbook_
id str - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook_
version_ strname - RunbookVersion Name filter
- input
Parameters List<Property Map> - Input Parameters for the Task
- runbook
Id String - A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- runbook
Version StringName - RunbookVersion Name filter
GetSchedulerDefinitionsSchedulerDefinitionCollectionItemRunBookInputParameter
- Arguments
List<Get
Scheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter Argument> - Arguments for the Task
- Step
Name string - stepName for which the input parameters are provided
- Arguments
[]Get
Scheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter Argument - Arguments for the Task
- Step
Name string - stepName for which the input parameters are provided
- arguments
List<Get
Scheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter Argument> - Arguments for the Task
- step
Name String - stepName for which the input parameters are provided
- arguments
Get
Scheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter Argument[] - Arguments for the Task
- step
Name string - stepName for which the input parameters are provided
- arguments
Sequence[Get
Scheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter Argument] - Arguments for the Task
- step_
name str - stepName for which the input parameters are provided
- arguments List<Property Map>
- Arguments for the Task
- step
Name String - stepName for which the input parameters are provided
GetSchedulerDefinitionsSchedulerDefinitionCollectionItemRunBookInputParameterArgument
- Contents
List<Get
Scheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter Argument Content> - Content Source details.
- Kind string
- Task argument kind
- Name string
- Name of the input variable
- Value string
- The task input
- Contents
[]Get
Scheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter Argument Content - Content Source details.
- Kind string
- Task argument kind
- Name string
- Name of the input variable
- Value string
- The task input
- contents
List<Get
Scheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter Argument Content> - Content Source details.
- kind String
- Task argument kind
- name String
- Name of the input variable
- value String
- The task input
- contents
Get
Scheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter Argument Content[] - Content Source details.
- kind string
- Task argument kind
- name string
- Name of the input variable
- value string
- The task input
- contents
Sequence[Get
Scheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter Argument Content] - Content Source details.
- kind str
- Task argument kind
- name str
- Name of the input variable
- value str
- The task input
- contents List<Property Map>
- Content Source details.
- kind String
- Task argument kind
- name String
- Name of the input variable
- value String
- The task input
GetSchedulerDefinitionsSchedulerDefinitionCollectionItemRunBookInputParameterArgumentContent
- Bucket string
- Bucket Name.
- Checksum string
- md5 checksum of the artifact.
- Namespace string
- Namespace.
- Object string
- Object Name.
- Source
Type string - Content Source type details.
- Bucket string
- Bucket Name.
- Checksum string
- md5 checksum of the artifact.
- Namespace string
- Namespace.
- Object string
- Object Name.
- Source
Type string - Content Source type details.
- bucket String
- Bucket Name.
- checksum String
- md5 checksum of the artifact.
- namespace String
- Namespace.
- object String
- Object Name.
- source
Type String - Content Source type details.
- bucket string
- Bucket Name.
- checksum string
- md5 checksum of the artifact.
- namespace string
- Namespace.
- object string
- Object Name.
- source
Type string - Content Source type details.
- bucket str
- Bucket Name.
- 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.
- checksum String
- md5 checksum of the artifact.
- namespace String
- Namespace.
- object String
- Object Name.
- source
Type String - Content Source type details.
GetSchedulerDefinitionsSchedulerDefinitionCollectionItemSchedule
- Duration string
- Duration of the schedule.
- Execution
Startdate string - Start Date for the schedule. An RFC3339 formatted datetime string
- Maintenance
Window stringId - A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- Recurrences string
- Recurrence rule specification if recurring
- Type string
- Schedule Type
- Duration string
- Duration of the schedule.
- Execution
Startdate string - Start Date for the schedule. An RFC3339 formatted datetime string
- Maintenance
Window stringId - A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- Recurrences string
- Recurrence rule specification if recurring
- Type string
- Schedule Type
- duration String
- Duration of the schedule.
- execution
Startdate String - Start Date for the schedule. An RFC3339 formatted datetime string
- maintenance
Window StringId - A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- recurrences String
- Recurrence rule specification if recurring
- type String
- Schedule Type
- duration string
- Duration of the schedule.
- execution
Startdate string - Start Date for the schedule. An RFC3339 formatted datetime string
- maintenance
Window stringId - A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- recurrences string
- Recurrence rule specification if recurring
- type string
- Schedule Type
- duration str
- Duration of the schedule.
- execution_
startdate str - Start Date for the schedule. An RFC3339 formatted datetime string
- maintenance_
window_ strid - A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- recurrences str
- Recurrence rule specification if recurring
- type str
- Schedule Type
- duration String
- Duration of the schedule.
- execution
Startdate String - Start Date for the schedule. An RFC3339 formatted datetime string
- maintenance
Window StringId - A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- recurrences String
- Recurrence rule specification if recurring
- type String
- Schedule Type
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.