Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 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.
List all lifecycle management schedules in Fleet Application Management.
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,
    state: schedulerDefinitionState,
});
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"],
    state=scheduler_definition_state)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/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),
			State:               pulumi.StringRef(schedulerDefinitionState),
		}, 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,
        State = schedulerDefinitionState,
    });
});
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())
            .state(schedulerDefinitionState)
            .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}
        state: ${schedulerDefinitionState}
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[_fleetappsmanagement.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,
                              state: 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[_fleetappsmanagement.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,
                              state: 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 dictionaryThe following arguments are supported:
- CompartmentId string
- The ID of the compartment in which to list resources.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
List<GetScheduler Definitions Filter> 
- FleetId string
- unique Fleet identifier
- Id string
- A filter to return only schedule definitions whose identifier matches the given identifier.
- MaintenanceWindow 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
- RunbookId string
- A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- State string
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- CompartmentId string
- The ID of the compartment in which to list resources.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
[]GetScheduler Definitions Filter 
- FleetId string
- unique Fleet identifier
- Id string
- A filter to return only schedule definitions whose identifier matches the given identifier.
- MaintenanceWindow 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
- RunbookId string
- A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- State string
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- compartmentId String
- The ID of the compartment in which to list resources.
- displayName String
- A filter to return only resources that match the entire display name given.
- filters
List<GetScheduler Definitions Filter> 
- fleetId String
- unique Fleet identifier
- id String
- A filter to return only schedule definitions whose identifier matches the given identifier.
- maintenanceWindow 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
- runbookId String
- A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- state String
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- compartmentId string
- The ID of the compartment in which to list resources.
- displayName string
- A filter to return only resources that match the entire display name given.
- filters
GetScheduler Definitions Filter[] 
- fleetId string
- unique Fleet identifier
- id string
- A filter to return only schedule definitions whose identifier matches the given identifier.
- maintenanceWindow 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
- runbookId string
- A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- state string
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- compartment_id str
- The ID of the compartment in which to list resources.
- display_name str
- A filter to return only resources that match the entire display name given.
- filters
Sequence[fleetappsmanagement.Get Scheduler Definitions Filter] 
- fleet_id str
- unique Fleet identifier
- id str
- A filter to return only schedule definitions whose identifier matches the given identifier.
- 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.
- state str
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
- compartmentId String
- The ID of the compartment in which to list resources.
- displayName String
- A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- fleetId String
- unique Fleet identifier
- id String
- A filter to return only schedule definitions whose identifier matches the given identifier.
- maintenanceWindow 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
- runbookId String
- A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- state String
- A filter to return only scheduleDefinitions whose lifecycleState matches the given lifecycleState.
getSchedulerDefinitions Result
The following output properties are available:
- SchedulerDefinition List<GetCollections Scheduler Definitions Scheduler Definition Collection> 
- The list of scheduler_definition_collection.
- CompartmentId string
- Tenancy 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<GetScheduler Definitions Filter> 
- FleetId string
- Id string
- The ID of the Runbook
- MaintenanceWindow stringId 
- Provide MaintenanceWindowId if Schedule Type is Maintenance Window
- Product string
- Product associated. Only applicable if type is PRODUCT.
- RunbookId string
- ID of the runbook
- State string
- The current state of the SchedulerDefinition.
- SchedulerDefinition []GetCollections Scheduler Definitions Scheduler Definition Collection 
- The list of scheduler_definition_collection.
- CompartmentId string
- Tenancy 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
[]GetScheduler Definitions Filter 
- FleetId string
- Id string
- The ID of the Runbook
- MaintenanceWindow stringId 
- Provide MaintenanceWindowId if Schedule Type is Maintenance Window
- Product string
- Product associated. Only applicable if type is PRODUCT.
- RunbookId string
- ID of the runbook
- State string
- The current state of the SchedulerDefinition.
- schedulerDefinition List<GetCollections Scheduler Definitions Scheduler Definition Collection> 
- The list of scheduler_definition_collection.
- compartmentId String
- Tenancy 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<GetScheduler Definitions Filter> 
- fleetId String
- id String
- The ID of the Runbook
- maintenanceWindow StringId 
- Provide MaintenanceWindowId if Schedule Type is Maintenance Window
- product String
- Product associated. Only applicable if type is PRODUCT.
- runbookId String
- ID of the runbook
- state String
- The current state of the SchedulerDefinition.
- schedulerDefinition GetCollections Scheduler Definitions Scheduler Definition Collection[] 
- The list of scheduler_definition_collection.
- compartmentId string
- Tenancy 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
GetScheduler Definitions Filter[] 
- fleetId string
- id string
- The ID of the Runbook
- maintenanceWindow stringId 
- Provide MaintenanceWindowId if Schedule Type is Maintenance Window
- product string
- Product associated. Only applicable if type is PRODUCT.
- runbookId string
- ID of the runbook
- state string
- The current state of the SchedulerDefinition.
- scheduler_definition_ Sequence[fleetappsmanagement.collections Get Scheduler Definitions Scheduler Definition Collection] 
- The list of scheduler_definition_collection.
- compartment_id str
- Tenancy 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[fleetappsmanagement.Get Scheduler Definitions Filter] 
- fleet_id str
- id str
- The ID of the Runbook
- maintenance_window_ strid 
- Provide MaintenanceWindowId if Schedule Type is Maintenance Window
- product str
- Product associated. Only applicable if type is PRODUCT.
- runbook_id str
- ID of the runbook
- state str
- The current state of the SchedulerDefinition.
- schedulerDefinition List<Property Map>Collections 
- The list of scheduler_definition_collection.
- compartmentId String
- Tenancy 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>
- fleetId String
- id String
- The ID of the Runbook
- maintenanceWindow StringId 
- Provide MaintenanceWindowId if Schedule Type is Maintenance Window
- product String
- Product associated. Only applicable if type is PRODUCT.
- runbookId String
- ID of the runbook
- state String
- The current state of the SchedulerDefinition.
Supporting Types
GetSchedulerDefinitionsFilter   
GetSchedulerDefinitionsSchedulerDefinitionCollection     
GetSchedulerDefinitionsSchedulerDefinitionCollectionItem      
- ActionGroup List<string>Types 
- All ActionGroup Types that are part of the schedule.
- ActionGroups List<GetScheduler Definitions Scheduler Definition Collection Item Action Group> 
- Action Groups associated with the Schedule.
- ActivityInitiation intCut Off 
- Activity Initiation Cut Off.
- ApplicationTypes List<string>
- All application types that are part of the schedule for ENVIRONMENT ActionGroup Type.
- CompartmentId string
- The ID of the compartment in which to list resources.
- CountOf intAffected Action Groups 
- Count of Action Groups affected by the Schedule.
- CountOf intAffected Resources 
- Count of Resources affected by the Schedule.
- CountOf 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.
- DisplayName 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
- A filter to return only schedule definitions whose identifier matches the given identifier.
- 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.
- LifecycleOperations 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.
- ResourceRegion string
- Associated region
- RunBooks List<GetScheduler Definitions Scheduler Definition Collection Item Run Book> 
- Runbooks.
- Schedules
List<GetScheduler 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"}
- TimeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- TimeOf stringNext Run 
- The scheduled date for the next run of the Job.
- TimeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- ActionGroup []stringTypes 
- All ActionGroup Types that are part of the schedule.
- ActionGroups []GetScheduler Definitions Scheduler Definition Collection Item Action Group 
- Action Groups associated with the Schedule.
- ActivityInitiation intCut Off 
- Activity Initiation Cut Off.
- ApplicationTypes []string
- All application types that are part of the schedule for ENVIRONMENT ActionGroup Type.
- CompartmentId string
- The ID of the compartment in which to list resources.
- CountOf intAffected Action Groups 
- Count of Action Groups affected by the Schedule.
- CountOf intAffected Resources 
- Count of Resources affected by the Schedule.
- CountOf 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.
- DisplayName 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
- A filter to return only schedule definitions whose identifier matches the given identifier.
- 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.
- LifecycleOperations []string
- All LifeCycle Operations that are part of the schedule.
- Products []string
- All products that are part of the schedule for PRODUCT ActionGroup Type.
- ResourceRegion string
- Associated region
- RunBooks []GetScheduler Definitions Scheduler Definition Collection Item Run Book 
- Runbooks.
- Schedules
[]GetScheduler 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"}
- TimeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- TimeOf stringNext Run 
- The scheduled date for the next run of the Job.
- TimeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- actionGroup List<String>Types 
- All ActionGroup Types that are part of the schedule.
- actionGroups List<GetScheduler Definitions Scheduler Definition Collection Item Action Group> 
- Action Groups associated with the Schedule.
- activityInitiation IntegerCut Off 
- Activity Initiation Cut Off.
- applicationTypes List<String>
- All application types that are part of the schedule for ENVIRONMENT ActionGroup Type.
- compartmentId String
- The ID of the compartment in which to list resources.
- countOf IntegerAffected Action Groups 
- Count of Action Groups affected by the Schedule.
- countOf IntegerAffected Resources 
- Count of Resources affected by the Schedule.
- countOf 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.
- displayName 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
- A filter to return only schedule definitions whose identifier matches the given identifier.
- 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.
- lifecycleOperations 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.
- resourceRegion String
- Associated region
- runBooks List<GetScheduler Definitions Scheduler Definition Collection Item Run Book> 
- Runbooks.
- schedules
List<GetScheduler 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"}
- timeCreated String
- The time this resource was created. An RFC3339 formatted datetime string.
- timeOf StringNext Run 
- The scheduled date for the next run of the Job.
- timeUpdated String
- The time this resource was last updated. An RFC3339 formatted datetime string.
- actionGroup string[]Types 
- All ActionGroup Types that are part of the schedule.
- actionGroups GetScheduler Definitions Scheduler Definition Collection Item Action Group[] 
- Action Groups associated with the Schedule.
- activityInitiation numberCut Off 
- Activity Initiation Cut Off.
- applicationTypes string[]
- All application types that are part of the schedule for ENVIRONMENT ActionGroup Type.
- compartmentId string
- The ID of the compartment in which to list resources.
- countOf numberAffected Action Groups 
- Count of Action Groups affected by the Schedule.
- countOf numberAffected Resources 
- Count of Resources affected by the Schedule.
- countOf 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.
- displayName 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
- A filter to return only schedule definitions whose identifier matches the given identifier.
- 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.
- lifecycleOperations string[]
- All LifeCycle Operations that are part of the schedule.
- products string[]
- All products that are part of the schedule for PRODUCT ActionGroup Type.
- resourceRegion string
- Associated region
- runBooks GetScheduler Definitions Scheduler Definition Collection Item Run Book[] 
- Runbooks.
- schedules
GetScheduler 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"}
- timeCreated string
- The time this resource was created. An RFC3339 formatted datetime string.
- timeOf stringNext Run 
- The scheduled date for the next run of the Job.
- timeUpdated string
- The time this resource was last updated. An RFC3339 formatted datetime string.
- action_group_ Sequence[str]types 
- All ActionGroup Types that are part of the schedule.
- action_groups Sequence[fleetappsmanagement.Get Scheduler Definitions Scheduler Definition Collection Item Action Group] 
- Action Groups associated with the Schedule.
- activity_initiation_ intcut_ off 
- Activity Initiation Cut Off.
- application_types Sequence[str]
- All application types that are part of the schedule for ENVIRONMENT ActionGroup Type.
- compartment_id str
- The ID of the compartment in which to list resources.
- 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
- A filter to return only schedule definitions whose identifier matches the given identifier.
- 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[fleetappsmanagement.Get Scheduler Definitions Scheduler Definition Collection Item Run Book] 
- Runbooks.
- schedules
Sequence[fleetappsmanagement.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.
- actionGroup List<String>Types 
- All ActionGroup Types that are part of the schedule.
- actionGroups List<Property Map>
- Action Groups associated with the Schedule.
- activityInitiation NumberCut Off 
- Activity Initiation Cut Off.
- applicationTypes List<String>
- All application types that are part of the schedule for ENVIRONMENT ActionGroup Type.
- compartmentId String
- The ID of the compartment in which to list resources.
- countOf NumberAffected Action Groups 
- Count of Action Groups affected by the Schedule.
- countOf NumberAffected Resources 
- Count of Resources affected by the Schedule.
- countOf 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.
- displayName 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
- A filter to return only schedule definitions whose identifier matches the given identifier.
- 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.
- lifecycleOperations 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.
- resourceRegion String
- Associated region
- runBooks 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"}
- timeCreated String
- The time this resource was created. An RFC3339 formatted datetime string.
- timeOf StringNext Run 
- The scheduled date for the next run of the Job.
- timeUpdated String
- The time this resource was last updated. An RFC3339 formatted datetime string.
GetSchedulerDefinitionsSchedulerDefinitionCollectionItemActionGroup        
- ApplicationType string
- Application Type associated. Only applicable if type is ENVIRONMENT.
- LifecycleOperation string
- LifeCycle Operation
- Product string
- A filter to return only dchedule definitions whose assocaited product matches the given product
- ResourceId string
- Provide the ID of the resource. Example fleet ID.
- RunbookId string
- A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- Subjects List<string>
- Provide subjects that need to be considered for the schedule.
- TargetId string
- Provide the target if schedule is created against the target
- Type string
- Schedule Type
- ApplicationType string
- Application Type associated. Only applicable if type is ENVIRONMENT.
- LifecycleOperation string
- LifeCycle Operation
- Product string
- A filter to return only dchedule definitions whose assocaited product matches the given product
- ResourceId string
- Provide the ID of the resource. Example fleet ID.
- RunbookId string
- A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- Subjects []string
- Provide subjects that need to be considered for the schedule.
- TargetId string
- Provide the target if schedule is created against the target
- Type string
- Schedule Type
- applicationType String
- Application Type associated. Only applicable if type is ENVIRONMENT.
- lifecycleOperation String
- LifeCycle Operation
- product String
- A filter to return only dchedule definitions whose assocaited product matches the given product
- resourceId String
- Provide the ID of the resource. Example fleet ID.
- runbookId String
- A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- subjects List<String>
- Provide subjects that need to be considered for the schedule.
- targetId String
- Provide the target if schedule is created against the target
- type String
- Schedule Type
- applicationType string
- Application Type associated. Only applicable if type is ENVIRONMENT.
- lifecycleOperation string
- LifeCycle Operation
- product string
- A filter to return only dchedule definitions whose assocaited product matches the given product
- resourceId string
- Provide the ID of the resource. Example fleet ID.
- runbookId string
- A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- subjects string[]
- Provide subjects that need to be considered for the schedule.
- targetId string
- Provide the target if schedule is created against the target
- type string
- Schedule Type
- application_type str
- Application Type associated. Only applicable if type is ENVIRONMENT.
- lifecycle_operation str
- LifeCycle Operation
- product str
- A filter to return only dchedule definitions whose assocaited product matches the given product
- resource_id str
- Provide the ID of the resource. Example fleet ID.
- runbook_id str
- A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- subjects Sequence[str]
- Provide subjects that need to be considered for the schedule.
- target_id str
- Provide the target if schedule is created against the target
- type str
- Schedule Type
- applicationType String
- Application Type associated. Only applicable if type is ENVIRONMENT.
- lifecycleOperation String
- LifeCycle Operation
- product String
- A filter to return only dchedule definitions whose assocaited product matches the given product
- resourceId String
- Provide the ID of the resource. Example fleet ID.
- runbookId String
- A filter to return only schedule definitions whose associated runbookId matches the given runbookId.
- subjects List<String>
- Provide subjects that need to be considered for the schedule.
- targetId String
- Provide the target if schedule is created against the target
- type String
- Schedule Type
GetSchedulerDefinitionsSchedulerDefinitionCollectionItemRunBook        
- Id string
- A filter to return only schedule definitions whose identifier matches the given identifier.
- InputParameters List<GetScheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter> 
- Input Parameters for the Task
- Id string
- A filter to return only schedule definitions whose identifier matches the given identifier.
- InputParameters []GetScheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter 
- Input Parameters for the Task
- id String
- A filter to return only schedule definitions whose identifier matches the given identifier.
- inputParameters List<GetScheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter> 
- Input Parameters for the Task
- id string
- A filter to return only schedule definitions whose identifier matches the given identifier.
- inputParameters GetScheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter[] 
- Input Parameters for the Task
- id str
- A filter to return only schedule definitions whose identifier matches the given identifier.
- input_parameters Sequence[fleetappsmanagement.Get Scheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter] 
- Input Parameters for the Task
- id String
- A filter to return only schedule definitions whose identifier matches the given identifier.
- inputParameters List<Property Map>
- Input Parameters for the Task
GetSchedulerDefinitionsSchedulerDefinitionCollectionItemRunBookInputParameter          
- Arguments
List<GetScheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter Argument> 
- Arguments for the Task
- StepName string
- stepName for which the input parameters are provided
- Arguments
[]GetScheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter Argument 
- Arguments for the Task
- StepName string
- stepName for which the input parameters are provided
- arguments
List<GetScheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter Argument> 
- Arguments for the Task
- stepName String
- stepName for which the input parameters are provided
- arguments
GetScheduler Definitions Scheduler Definition Collection Item Run Book Input Parameter Argument[] 
- Arguments for the Task
- stepName string
- stepName for which the input parameters are provided
- arguments
Sequence[fleetappsmanagement.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
- stepName String
- stepName for which the input parameters are provided
GetSchedulerDefinitionsSchedulerDefinitionCollectionItemRunBookInputParameterArgument           
GetSchedulerDefinitionsSchedulerDefinitionCollectionItemSchedule       
- Duration string
- Duration if schedule type is Custom
- ExecutionStartdate string
- Start Date for the schedule. An RFC3339 formatted datetime string
- MaintenanceWindow stringId 
- A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- Recurrences string
- Recurrence rule specification if Schedule Type is Custom and Recurring
- Type string
- Schedule Type
- Duration string
- Duration if schedule type is Custom
- ExecutionStartdate string
- Start Date for the schedule. An RFC3339 formatted datetime string
- MaintenanceWindow stringId 
- A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- Recurrences string
- Recurrence rule specification if Schedule Type is Custom and Recurring
- Type string
- Schedule Type
- duration String
- Duration if schedule type is Custom
- executionStartdate String
- Start Date for the schedule. An RFC3339 formatted datetime string
- maintenanceWindow StringId 
- A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- recurrences String
- Recurrence rule specification if Schedule Type is Custom and Recurring
- type String
- Schedule Type
- duration string
- Duration if schedule type is Custom
- executionStartdate string
- Start Date for the schedule. An RFC3339 formatted datetime string
- maintenanceWindow stringId 
- A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- recurrences string
- Recurrence rule specification if Schedule Type is Custom and Recurring
- type string
- Schedule Type
- duration str
- Duration if schedule type is Custom
- 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 Schedule Type is Custom and Recurring
- type str
- Schedule Type
- duration String
- Duration if schedule type is Custom
- executionStartdate String
- Start Date for the schedule. An RFC3339 formatted datetime string
- maintenanceWindow StringId 
- A filter to return only schedule definitions whose associated maintenanceWindowId matches the given maintenanceWindowId.
- recurrences String
- Recurrence rule specification if Schedule Type is Custom and Recurring
- type String
- Schedule Type
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.