1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ResourceScheduler
  5. getSchedules
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

oci.ResourceScheduler.getSchedules

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

    This data source provides the list of Schedules in Oracle Cloud Infrastructure Resource Scheduler service.

    This API gets a list of schedules

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSchedules = oci.ResourceScheduler.getSchedules({
        compartmentId: compartmentId,
        displayName: scheduleDisplayName,
        scheduleId: testSchedule.id,
        state: scheduleState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_schedules = oci.ResourceScheduler.get_schedules(compartment_id=compartment_id,
        display_name=schedule_display_name,
        schedule_id=test_schedule["id"],
        state=schedule_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/ResourceScheduler"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ResourceScheduler.GetSchedules(ctx, &resourcescheduler.GetSchedulesArgs{
    			CompartmentId: pulumi.StringRef(compartmentId),
    			DisplayName:   pulumi.StringRef(scheduleDisplayName),
    			ScheduleId:    pulumi.StringRef(testSchedule.Id),
    			State:         pulumi.StringRef(scheduleState),
    		}, 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 testSchedules = Oci.ResourceScheduler.GetSchedules.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = scheduleDisplayName,
            ScheduleId = testSchedule.Id,
            State = scheduleState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.ResourceScheduler.ResourceSchedulerFunctions;
    import com.pulumi.oci.ResourceScheduler.inputs.GetSchedulesArgs;
    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 testSchedules = ResourceSchedulerFunctions.getSchedules(GetSchedulesArgs.builder()
                .compartmentId(compartmentId)
                .displayName(scheduleDisplayName)
                .scheduleId(testSchedule.id())
                .state(scheduleState)
                .build());
    
        }
    }
    
    variables:
      testSchedules:
        fn::invoke:
          Function: oci:ResourceScheduler:getSchedules
          Arguments:
            compartmentId: ${compartmentId}
            displayName: ${scheduleDisplayName}
            scheduleId: ${testSchedule.id}
            state: ${scheduleState}
    

    Using getSchedules

    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 getSchedules(args: GetSchedulesArgs, opts?: InvokeOptions): Promise<GetSchedulesResult>
    function getSchedulesOutput(args: GetSchedulesOutputArgs, opts?: InvokeOptions): Output<GetSchedulesResult>
    def get_schedules(compartment_id: Optional[str] = None,
                      display_name: Optional[str] = None,
                      filters: Optional[Sequence[_resourcescheduler.GetSchedulesFilter]] = None,
                      schedule_id: Optional[str] = None,
                      state: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetSchedulesResult
    def get_schedules_output(compartment_id: Optional[pulumi.Input[str]] = None,
                      display_name: Optional[pulumi.Input[str]] = None,
                      filters: Optional[pulumi.Input[Sequence[pulumi.Input[_resourcescheduler.GetSchedulesFilterArgs]]]] = None,
                      schedule_id: Optional[pulumi.Input[str]] = None,
                      state: Optional[pulumi.Input[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetSchedulesResult]
    func GetSchedules(ctx *Context, args *GetSchedulesArgs, opts ...InvokeOption) (*GetSchedulesResult, error)
    func GetSchedulesOutput(ctx *Context, args *GetSchedulesOutputArgs, opts ...InvokeOption) GetSchedulesResultOutput

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

    public static class GetSchedules 
    {
        public static Task<GetSchedulesResult> InvokeAsync(GetSchedulesArgs args, InvokeOptions? opts = null)
        public static Output<GetSchedulesResult> Invoke(GetSchedulesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSchedulesResult> getSchedules(GetSchedulesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:ResourceScheduler/getSchedules:getSchedules
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    This is the OCID of the compartment in which to list resources.
    DisplayName string
    This is a filter to return only resources that match the given display name exactly.
    Filters List<GetSchedulesFilter>
    ScheduleId string
    This is the OCID of the schedule.
    State string
    This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    CompartmentId string
    This is the OCID of the compartment in which to list resources.
    DisplayName string
    This is a filter to return only resources that match the given display name exactly.
    Filters []GetSchedulesFilter
    ScheduleId string
    This is the OCID of the schedule.
    State string
    This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    This is the OCID of the compartment in which to list resources.
    displayName String
    This is a filter to return only resources that match the given display name exactly.
    filters List<GetSchedulesFilter>
    scheduleId String
    This is the OCID of the schedule.
    state String
    This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId string
    This is the OCID of the compartment in which to list resources.
    displayName string
    This is a filter to return only resources that match the given display name exactly.
    filters GetSchedulesFilter[]
    scheduleId string
    This is the OCID of the schedule.
    state string
    This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartment_id str
    This is the OCID of the compartment in which to list resources.
    display_name str
    This is a filter to return only resources that match the given display name exactly.
    filters Sequence[resourcescheduler.GetSchedulesFilter]
    schedule_id str
    This is the OCID of the schedule.
    state str
    This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    This is the OCID of the compartment in which to list resources.
    displayName String
    This is a filter to return only resources that match the given display name exactly.
    filters List<Property Map>
    scheduleId String
    This is the OCID of the schedule.
    state String
    This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.

    getSchedules Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    ScheduleCollections List<GetSchedulesScheduleCollection>
    The list of schedule_collection.
    CompartmentId string
    The OCID of the compartment in which the schedule is created
    DisplayName string
    This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
    Filters List<GetSchedulesFilter>
    ScheduleId string
    State string
    This is the current state of a schedule.
    Id string
    The provider-assigned unique ID for this managed resource.
    ScheduleCollections []GetSchedulesScheduleCollection
    The list of schedule_collection.
    CompartmentId string
    The OCID of the compartment in which the schedule is created
    DisplayName string
    This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
    Filters []GetSchedulesFilter
    ScheduleId string
    State string
    This is the current state of a schedule.
    id String
    The provider-assigned unique ID for this managed resource.
    scheduleCollections List<GetSchedulesScheduleCollection>
    The list of schedule_collection.
    compartmentId String
    The OCID of the compartment in which the schedule is created
    displayName String
    This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
    filters List<GetSchedulesFilter>
    scheduleId String
    state String
    This is the current state of a schedule.
    id string
    The provider-assigned unique ID for this managed resource.
    scheduleCollections GetSchedulesScheduleCollection[]
    The list of schedule_collection.
    compartmentId string
    The OCID of the compartment in which the schedule is created
    displayName string
    This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
    filters GetSchedulesFilter[]
    scheduleId string
    state string
    This is the current state of a schedule.
    id str
    The provider-assigned unique ID for this managed resource.
    schedule_collections Sequence[resourcescheduler.GetSchedulesScheduleCollection]
    The list of schedule_collection.
    compartment_id str
    The OCID of the compartment in which the schedule is created
    display_name str
    This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
    filters Sequence[resourcescheduler.GetSchedulesFilter]
    schedule_id str
    state str
    This is the current state of a schedule.
    id String
    The provider-assigned unique ID for this managed resource.
    scheduleCollections List<Property Map>
    The list of schedule_collection.
    compartmentId String
    The OCID of the compartment in which the schedule is created
    displayName String
    This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
    filters List<Property Map>
    scheduleId String
    state String
    This is the current state of a schedule.

    Supporting Types

    GetSchedulesFilter

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

    GetSchedulesScheduleCollection

    GetSchedulesScheduleCollectionItem

    Action string
    This is the action that will be executed by the schedule.
    CompartmentId string
    This is the OCID of the compartment in which to list resources.
    DefinedTags Dictionary<string, string>
    These are defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    This is the description of the schedule.
    DisplayName string
    This is a filter to return only resources that match the given display name exactly.
    FreeformTags Dictionary<string, string>
    These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    This is the resource OCID.
    RecurrenceDetails string
    This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
    RecurrenceType string
    Type of recurrence of a schedule
    ResourceFilters List<GetSchedulesScheduleCollectionItemResourceFilter>
    This is a list of resources filters. The schedule will be applied to resources matching all of them.
    Resources List<GetSchedulesScheduleCollectionItemResource>
    This is the list of resources to which the scheduled operation is applied.
    State string
    This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    SystemTags Dictionary<string, string>
    These are system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    This is the date and time the schedule was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeEnds string
    This is the date and time the schedule ends, in the format defined by RFC 3339 Example: 2016-08-25T21:10:29.600Z
    TimeLastRun string
    This is the date and time the schedule runs last time, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeNextRun string
    This is the date and time the schedule run the next time, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeStarts string
    This is the date and time the schedule starts, in the format defined by RFC 3339 Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    This is the date and time the schedule was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    Action string
    This is the action that will be executed by the schedule.
    CompartmentId string
    This is the OCID of the compartment in which to list resources.
    DefinedTags map[string]string
    These are defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    Description string
    This is the description of the schedule.
    DisplayName string
    This is a filter to return only resources that match the given display name exactly.
    FreeformTags map[string]string
    These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    This is the resource OCID.
    RecurrenceDetails string
    This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
    RecurrenceType string
    Type of recurrence of a schedule
    ResourceFilters []GetSchedulesScheduleCollectionItemResourceFilter
    This is a list of resources filters. The schedule will be applied to resources matching all of them.
    Resources []GetSchedulesScheduleCollectionItemResource
    This is the list of resources to which the scheduled operation is applied.
    State string
    This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    SystemTags map[string]string
    These are system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    This is the date and time the schedule was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeEnds string
    This is the date and time the schedule ends, in the format defined by RFC 3339 Example: 2016-08-25T21:10:29.600Z
    TimeLastRun string
    This is the date and time the schedule runs last time, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeNextRun string
    This is the date and time the schedule run the next time, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeStarts string
    This is the date and time the schedule starts, in the format defined by RFC 3339 Example: 2016-08-25T21:10:29.600Z
    TimeUpdated string
    This is the date and time the schedule was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    action String
    This is the action that will be executed by the schedule.
    compartmentId String
    This is the OCID of the compartment in which to list resources.
    definedTags Map<String,String>
    These are defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    This is the description of the schedule.
    displayName String
    This is a filter to return only resources that match the given display name exactly.
    freeformTags Map<String,String>
    These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    This is the resource OCID.
    recurrenceDetails String
    This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
    recurrenceType String
    Type of recurrence of a schedule
    resourceFilters List<GetSchedulesScheduleCollectionItemResourceFilter>
    This is a list of resources filters. The schedule will be applied to resources matching all of them.
    resources List<GetSchedulesScheduleCollectionItemResource>
    This is the list of resources to which the scheduled operation is applied.
    state String
    This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    systemTags Map<String,String>
    These are system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    This is the date and time the schedule was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeEnds String
    This is the date and time the schedule ends, in the format defined by RFC 3339 Example: 2016-08-25T21:10:29.600Z
    timeLastRun String
    This is the date and time the schedule runs last time, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeNextRun String
    This is the date and time the schedule run the next time, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeStarts String
    This is the date and time the schedule starts, in the format defined by RFC 3339 Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    This is the date and time the schedule was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    action string
    This is the action that will be executed by the schedule.
    compartmentId string
    This is the OCID of the compartment in which to list resources.
    definedTags {[key: string]: string}
    These are defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description string
    This is the description of the schedule.
    displayName string
    This is a filter to return only resources that match the given display name exactly.
    freeformTags {[key: string]: string}
    These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    This is the resource OCID.
    recurrenceDetails string
    This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
    recurrenceType string
    Type of recurrence of a schedule
    resourceFilters GetSchedulesScheduleCollectionItemResourceFilter[]
    This is a list of resources filters. The schedule will be applied to resources matching all of them.
    resources GetSchedulesScheduleCollectionItemResource[]
    This is the list of resources to which the scheduled operation is applied.
    state string
    This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    systemTags {[key: string]: string}
    These are system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    This is the date and time the schedule was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeEnds string
    This is the date and time the schedule ends, in the format defined by RFC 3339 Example: 2016-08-25T21:10:29.600Z
    timeLastRun string
    This is the date and time the schedule runs last time, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeNextRun string
    This is the date and time the schedule run the next time, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeStarts string
    This is the date and time the schedule starts, in the format defined by RFC 3339 Example: 2016-08-25T21:10:29.600Z
    timeUpdated string
    This is the date and time the schedule was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    action str
    This is the action that will be executed by the schedule.
    compartment_id str
    This is the OCID of the compartment in which to list resources.
    defined_tags Mapping[str, str]
    These are defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description str
    This is the description of the schedule.
    display_name str
    This is a filter to return only resources that match the given display name exactly.
    freeform_tags Mapping[str, str]
    These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    This is the resource OCID.
    recurrence_details str
    This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
    recurrence_type str
    Type of recurrence of a schedule
    resource_filters Sequence[resourcescheduler.GetSchedulesScheduleCollectionItemResourceFilter]
    This is a list of resources filters. The schedule will be applied to resources matching all of them.
    resources Sequence[resourcescheduler.GetSchedulesScheduleCollectionItemResource]
    This is the list of resources to which the scheduled operation is applied.
    state str
    This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    system_tags Mapping[str, str]
    These are system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    This is the date and time the schedule was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_ends str
    This is the date and time the schedule ends, in the format defined by RFC 3339 Example: 2016-08-25T21:10:29.600Z
    time_last_run str
    This is the date and time the schedule runs last time, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_next_run str
    This is the date and time the schedule run the next time, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    time_starts str
    This is the date and time the schedule starts, in the format defined by RFC 3339 Example: 2016-08-25T21:10:29.600Z
    time_updated str
    This is the date and time the schedule was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    action String
    This is the action that will be executed by the schedule.
    compartmentId String
    This is the OCID of the compartment in which to list resources.
    definedTags Map<String>
    These are defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    description String
    This is the description of the schedule.
    displayName String
    This is a filter to return only resources that match the given display name exactly.
    freeformTags Map<String>
    These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    This is the resource OCID.
    recurrenceDetails String
    This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
    recurrenceType String
    Type of recurrence of a schedule
    resourceFilters List<Property Map>
    This is a list of resources filters. The schedule will be applied to resources matching all of them.
    resources List<Property Map>
    This is the list of resources to which the scheduled operation is applied.
    state String
    This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
    systemTags Map<String>
    These are system tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    This is the date and time the schedule was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeEnds String
    This is the date and time the schedule ends, in the format defined by RFC 3339 Example: 2016-08-25T21:10:29.600Z
    timeLastRun String
    This is the date and time the schedule runs last time, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeNextRun String
    This is the date and time the schedule run the next time, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeStarts String
    This is the date and time the schedule starts, in the format defined by RFC 3339 Example: 2016-08-25T21:10:29.600Z
    timeUpdated String
    This is the date and time the schedule was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z

    GetSchedulesScheduleCollectionItemResource

    Id string
    This is the resource OCID.
    Metadata Dictionary<string, string>
    This is additional information that helps to identity the resource for the schedule.
    Id string
    This is the resource OCID.
    Metadata map[string]string
    This is additional information that helps to identity the resource for the schedule.
    id String
    This is the resource OCID.
    metadata Map<String,String>
    This is additional information that helps to identity the resource for the schedule.
    id string
    This is the resource OCID.
    metadata {[key: string]: string}
    This is additional information that helps to identity the resource for the schedule.
    id str
    This is the resource OCID.
    metadata Mapping[str, str]
    This is additional information that helps to identity the resource for the schedule.
    id String
    This is the resource OCID.
    metadata Map<String>
    This is additional information that helps to identity the resource for the schedule.

    GetSchedulesScheduleCollectionItemResourceFilter

    Attribute string
    This is the resource attribute on which the threshold is defined.
    Condition string
    This is the condition for the filter in comparison to its creation time.
    ShouldIncludeChildCompartments bool
    This sets whether to include child compartments.
    Values List<GetSchedulesScheduleCollectionItemResourceFilterValue>
    This is the value of the defined tag.
    Attribute string
    This is the resource attribute on which the threshold is defined.
    Condition string
    This is the condition for the filter in comparison to its creation time.
    ShouldIncludeChildCompartments bool
    This sets whether to include child compartments.
    Values []GetSchedulesScheduleCollectionItemResourceFilterValue
    This is the value of the defined tag.
    attribute String
    This is the resource attribute on which the threshold is defined.
    condition String
    This is the condition for the filter in comparison to its creation time.
    shouldIncludeChildCompartments Boolean
    This sets whether to include child compartments.
    values List<GetSchedulesScheduleCollectionItemResourceFilterValue>
    This is the value of the defined tag.
    attribute string
    This is the resource attribute on which the threshold is defined.
    condition string
    This is the condition for the filter in comparison to its creation time.
    shouldIncludeChildCompartments boolean
    This sets whether to include child compartments.
    values GetSchedulesScheduleCollectionItemResourceFilterValue[]
    This is the value of the defined tag.
    attribute str
    This is the resource attribute on which the threshold is defined.
    condition str
    This is the condition for the filter in comparison to its creation time.
    should_include_child_compartments bool
    This sets whether to include child compartments.
    values Sequence[resourcescheduler.GetSchedulesScheduleCollectionItemResourceFilterValue]
    This is the value of the defined tag.
    attribute String
    This is the resource attribute on which the threshold is defined.
    condition String
    This is the condition for the filter in comparison to its creation time.
    shouldIncludeChildCompartments Boolean
    This sets whether to include child compartments.
    values List<Property Map>
    This is the value of the defined tag.

    GetSchedulesScheduleCollectionItemResourceFilterValue

    Namespace string
    This is the namespace of the defined tag.
    TagKey string
    This is the key of the defined tag.
    Value string
    This is the value of the defined tag.
    Namespace string
    This is the namespace of the defined tag.
    TagKey string
    This is the key of the defined tag.
    Value string
    This is the value of the defined tag.
    namespace String
    This is the namespace of the defined tag.
    tagKey String
    This is the key of the defined tag.
    value String
    This is the value of the defined tag.
    namespace string
    This is the namespace of the defined tag.
    tagKey string
    This is the key of the defined tag.
    value string
    This is the value of the defined tag.
    namespace str
    This is the namespace of the defined tag.
    tag_key str
    This is the key of the defined tag.
    value str
    This is the value of the defined tag.
    namespace String
    This is the namespace of the defined tag.
    tagKey String
    This is the key of the defined tag.
    value String
    This is the value of the defined tag.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi