1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. ComputeCloud
  5. getAtCustomerCccUpgradeSchedules
Oracle Cloud Infrastructure v2.4.0 published on Thursday, Jul 25, 2024 by Pulumi

oci.ComputeCloud.getAtCustomerCccUpgradeSchedules

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.4.0 published on Thursday, Jul 25, 2024 by Pulumi

    This data source provides the list of Ccc Upgrade Schedules in Oracle Cloud Infrastructure Compute Cloud At Customer service.

    Returns a list of Compute Cloud@Customer upgrade schedules.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCccUpgradeSchedules = oci.ComputeCloud.getAtCustomerCccUpgradeSchedules({
        accessLevel: cccUpgradeScheduleAccessLevel,
        cccUpgradeScheduleId: testCccUpgradeSchedule.id,
        compartmentId: compartmentId,
        compartmentIdInSubtree: cccUpgradeScheduleCompartmentIdInSubtree,
        displayName: cccUpgradeScheduleDisplayName,
        displayNameContains: cccUpgradeScheduleDisplayNameContains,
        state: cccUpgradeScheduleState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_ccc_upgrade_schedules = oci.ComputeCloud.get_at_customer_ccc_upgrade_schedules(access_level=ccc_upgrade_schedule_access_level,
        ccc_upgrade_schedule_id=test_ccc_upgrade_schedule["id"],
        compartment_id=compartment_id,
        compartment_id_in_subtree=ccc_upgrade_schedule_compartment_id_in_subtree,
        display_name=ccc_upgrade_schedule_display_name,
        display_name_contains=ccc_upgrade_schedule_display_name_contains,
        state=ccc_upgrade_schedule_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/ComputeCloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ComputeCloud.GetAtCustomerCccUpgradeSchedules(ctx, &computecloud.GetAtCustomerCccUpgradeSchedulesArgs{
    			AccessLevel:            pulumi.StringRef(cccUpgradeScheduleAccessLevel),
    			CccUpgradeScheduleId:   pulumi.StringRef(testCccUpgradeSchedule.Id),
    			CompartmentId:          pulumi.StringRef(compartmentId),
    			CompartmentIdInSubtree: pulumi.BoolRef(cccUpgradeScheduleCompartmentIdInSubtree),
    			DisplayName:            pulumi.StringRef(cccUpgradeScheduleDisplayName),
    			DisplayNameContains:    pulumi.StringRef(cccUpgradeScheduleDisplayNameContains),
    			State:                  pulumi.StringRef(cccUpgradeScheduleState),
    		}, 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 testCccUpgradeSchedules = Oci.ComputeCloud.GetAtCustomerCccUpgradeSchedules.Invoke(new()
        {
            AccessLevel = cccUpgradeScheduleAccessLevel,
            CccUpgradeScheduleId = testCccUpgradeSchedule.Id,
            CompartmentId = compartmentId,
            CompartmentIdInSubtree = cccUpgradeScheduleCompartmentIdInSubtree,
            DisplayName = cccUpgradeScheduleDisplayName,
            DisplayNameContains = cccUpgradeScheduleDisplayNameContains,
            State = cccUpgradeScheduleState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.ComputeCloud.ComputeCloudFunctions;
    import com.pulumi.oci.ComputeCloud.inputs.GetAtCustomerCccUpgradeSchedulesArgs;
    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 testCccUpgradeSchedules = ComputeCloudFunctions.getAtCustomerCccUpgradeSchedules(GetAtCustomerCccUpgradeSchedulesArgs.builder()
                .accessLevel(cccUpgradeScheduleAccessLevel)
                .cccUpgradeScheduleId(testCccUpgradeSchedule.id())
                .compartmentId(compartmentId)
                .compartmentIdInSubtree(cccUpgradeScheduleCompartmentIdInSubtree)
                .displayName(cccUpgradeScheduleDisplayName)
                .displayNameContains(cccUpgradeScheduleDisplayNameContains)
                .state(cccUpgradeScheduleState)
                .build());
    
        }
    }
    
    variables:
      testCccUpgradeSchedules:
        fn::invoke:
          Function: oci:ComputeCloud:getAtCustomerCccUpgradeSchedules
          Arguments:
            accessLevel: ${cccUpgradeScheduleAccessLevel}
            cccUpgradeScheduleId: ${testCccUpgradeSchedule.id}
            compartmentId: ${compartmentId}
            compartmentIdInSubtree: ${cccUpgradeScheduleCompartmentIdInSubtree}
            displayName: ${cccUpgradeScheduleDisplayName}
            displayNameContains: ${cccUpgradeScheduleDisplayNameContains}
            state: ${cccUpgradeScheduleState}
    

    Using getAtCustomerCccUpgradeSchedules

    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 getAtCustomerCccUpgradeSchedules(args: GetAtCustomerCccUpgradeSchedulesArgs, opts?: InvokeOptions): Promise<GetAtCustomerCccUpgradeSchedulesResult>
    function getAtCustomerCccUpgradeSchedulesOutput(args: GetAtCustomerCccUpgradeSchedulesOutputArgs, opts?: InvokeOptions): Output<GetAtCustomerCccUpgradeSchedulesResult>
    def get_at_customer_ccc_upgrade_schedules(access_level: Optional[str] = None,
                                              ccc_upgrade_schedule_id: Optional[str] = None,
                                              compartment_id: Optional[str] = None,
                                              compartment_id_in_subtree: Optional[bool] = None,
                                              display_name: Optional[str] = None,
                                              display_name_contains: Optional[str] = None,
                                              filters: Optional[Sequence[_computecloud.GetAtCustomerCccUpgradeSchedulesFilter]] = None,
                                              state: Optional[str] = None,
                                              opts: Optional[InvokeOptions] = None) -> GetAtCustomerCccUpgradeSchedulesResult
    def get_at_customer_ccc_upgrade_schedules_output(access_level: Optional[pulumi.Input[str]] = None,
                                              ccc_upgrade_schedule_id: Optional[pulumi.Input[str]] = None,
                                              compartment_id: Optional[pulumi.Input[str]] = None,
                                              compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                                              display_name: Optional[pulumi.Input[str]] = None,
                                              display_name_contains: Optional[pulumi.Input[str]] = None,
                                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[_computecloud.GetAtCustomerCccUpgradeSchedulesFilterArgs]]]] = None,
                                              state: Optional[pulumi.Input[str]] = None,
                                              opts: Optional[InvokeOptions] = None) -> Output[GetAtCustomerCccUpgradeSchedulesResult]
    func GetAtCustomerCccUpgradeSchedules(ctx *Context, args *GetAtCustomerCccUpgradeSchedulesArgs, opts ...InvokeOption) (*GetAtCustomerCccUpgradeSchedulesResult, error)
    func GetAtCustomerCccUpgradeSchedulesOutput(ctx *Context, args *GetAtCustomerCccUpgradeSchedulesOutputArgs, opts ...InvokeOption) GetAtCustomerCccUpgradeSchedulesResultOutput

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

    public static class GetAtCustomerCccUpgradeSchedules 
    {
        public static Task<GetAtCustomerCccUpgradeSchedulesResult> InvokeAsync(GetAtCustomerCccUpgradeSchedulesArgs args, InvokeOptions? opts = null)
        public static Output<GetAtCustomerCccUpgradeSchedulesResult> Invoke(GetAtCustomerCccUpgradeSchedulesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetAtCustomerCccUpgradeSchedulesResult> getAtCustomerCccUpgradeSchedules(GetAtCustomerCccUpgradeSchedulesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:ComputeCloud/getAtCustomerCccUpgradeSchedules:getAtCustomerCccUpgradeSchedules
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AccessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    CccUpgradeScheduleId string
    Compute Cloud@Customer upgrade schedule OCID.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    CompartmentIdInSubtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and sub-compartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    DisplayNameContains string
    A filter to return only resources whose display name contains the substring.
    Filters List<GetAtCustomerCccUpgradeSchedulesFilter>
    State string
    A filter to return resources only when their lifecycleState matches the given lifecycleState.
    AccessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    CccUpgradeScheduleId string
    Compute Cloud@Customer upgrade schedule OCID.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    CompartmentIdInSubtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and sub-compartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    DisplayNameContains string
    A filter to return only resources whose display name contains the substring.
    Filters []GetAtCustomerCccUpgradeSchedulesFilter
    State string
    A filter to return resources only when their lifecycleState matches the given lifecycleState.
    accessLevel String
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    cccUpgradeScheduleId String
    Compute Cloud@Customer upgrade schedule OCID.
    compartmentId String
    The OCID of the compartment in which to list resources.
    compartmentIdInSubtree Boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and sub-compartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    displayName String
    A filter to return only resources that match the entire display name given.
    displayNameContains String
    A filter to return only resources whose display name contains the substring.
    filters List<GetAtCustomerCccUpgradeSchedulesFilter>
    state String
    A filter to return resources only when their lifecycleState matches the given lifecycleState.
    accessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    cccUpgradeScheduleId string
    Compute Cloud@Customer upgrade schedule OCID.
    compartmentId string
    The OCID of the compartment in which to list resources.
    compartmentIdInSubtree boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and sub-compartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    displayName string
    A filter to return only resources that match the entire display name given.
    displayNameContains string
    A filter to return only resources whose display name contains the substring.
    filters GetAtCustomerCccUpgradeSchedulesFilter[]
    state string
    A filter to return resources only when their lifecycleState matches the given lifecycleState.
    access_level str
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    ccc_upgrade_schedule_id str
    Compute Cloud@Customer upgrade schedule OCID.
    compartment_id str
    The OCID of the compartment in which to list resources.
    compartment_id_in_subtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and sub-compartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    display_name str
    A filter to return only resources that match the entire display name given.
    display_name_contains str
    A filter to return only resources whose display name contains the substring.
    filters Sequence[computecloud.GetAtCustomerCccUpgradeSchedulesFilter]
    state str
    A filter to return resources only when their lifecycleState matches the given lifecycleState.
    accessLevel String
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    cccUpgradeScheduleId String
    Compute Cloud@Customer upgrade schedule OCID.
    compartmentId String
    The OCID of the compartment in which to list resources.
    compartmentIdInSubtree Boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and sub-compartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    displayName String
    A filter to return only resources that match the entire display name given.
    displayNameContains String
    A filter to return only resources whose display name contains the substring.
    filters List<Property Map>
    state String
    A filter to return resources only when their lifecycleState matches the given lifecycleState.

    getAtCustomerCccUpgradeSchedules Result

    The following output properties are available:

    CccUpgradeScheduleCollections List<GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollection>
    The list of ccc_upgrade_schedule_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AccessLevel string
    CccUpgradeScheduleId string
    CompartmentId string
    Compartment OCID for the Compute Cloud@Customer upgrade schedule.
    CompartmentIdInSubtree bool
    DisplayName string
    Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
    DisplayNameContains string
    Filters List<GetAtCustomerCccUpgradeSchedulesFilter>
    State string
    Lifecycle state of the resource.
    CccUpgradeScheduleCollections []GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollection
    The list of ccc_upgrade_schedule_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AccessLevel string
    CccUpgradeScheduleId string
    CompartmentId string
    Compartment OCID for the Compute Cloud@Customer upgrade schedule.
    CompartmentIdInSubtree bool
    DisplayName string
    Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
    DisplayNameContains string
    Filters []GetAtCustomerCccUpgradeSchedulesFilter
    State string
    Lifecycle state of the resource.
    cccUpgradeScheduleCollections List<GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollection>
    The list of ccc_upgrade_schedule_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    accessLevel String
    cccUpgradeScheduleId String
    compartmentId String
    Compartment OCID for the Compute Cloud@Customer upgrade schedule.
    compartmentIdInSubtree Boolean
    displayName String
    Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
    displayNameContains String
    filters List<GetAtCustomerCccUpgradeSchedulesFilter>
    state String
    Lifecycle state of the resource.
    cccUpgradeScheduleCollections GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollection[]
    The list of ccc_upgrade_schedule_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    accessLevel string
    cccUpgradeScheduleId string
    compartmentId string
    Compartment OCID for the Compute Cloud@Customer upgrade schedule.
    compartmentIdInSubtree boolean
    displayName string
    Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
    displayNameContains string
    filters GetAtCustomerCccUpgradeSchedulesFilter[]
    state string
    Lifecycle state of the resource.
    ccc_upgrade_schedule_collections Sequence[computecloud.GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollection]
    The list of ccc_upgrade_schedule_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    access_level str
    ccc_upgrade_schedule_id str
    compartment_id str
    Compartment OCID for the Compute Cloud@Customer upgrade schedule.
    compartment_id_in_subtree bool
    display_name str
    Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
    display_name_contains str
    filters Sequence[computecloud.GetAtCustomerCccUpgradeSchedulesFilter]
    state str
    Lifecycle state of the resource.
    cccUpgradeScheduleCollections List<Property Map>
    The list of ccc_upgrade_schedule_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    accessLevel String
    cccUpgradeScheduleId String
    compartmentId String
    Compartment OCID for the Compute Cloud@Customer upgrade schedule.
    compartmentIdInSubtree Boolean
    displayName String
    Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
    displayNameContains String
    filters List<Property Map>
    state String
    Lifecycle state of the resource.

    Supporting Types

    GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollection

    GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollectionItem

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    A description of the Compute Cloud@Customer upgrade schedule time block.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Events List<GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollectionItemEvent>
    List of preferred times for Compute Cloud@Customer infrastructures associated with this schedule to be upgraded.
    FreeformTags Dictionary<string, object>
    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
    Upgrade schedule OCID. This cannot be changed once created.
    InfrastructureIds List<string>
    List of Compute Cloud@Customer infrastructure OCIDs that are using this upgrade schedule.
    LifecycleDetails string
    A message describing the current state in more detail. For example, the message can be used to provide actionable information for a resource in a Failed state.
    State string
    A filter to return resources only when their lifecycleState matches the given lifecycleState.
    SystemTags Dictionary<string, object>
    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 the upgrade schedule was created, using an RFC3339 formatted datetime string.
    TimeUpdated string
    The time the upgrade schedule was updated, using an RFC3339 formatted datetime string.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    A description of the Compute Cloud@Customer upgrade schedule time block.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Events []GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollectionItemEvent
    List of preferred times for Compute Cloud@Customer infrastructures associated with this schedule to be upgraded.
    FreeformTags map[string]interface{}
    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
    Upgrade schedule OCID. This cannot be changed once created.
    InfrastructureIds []string
    List of Compute Cloud@Customer infrastructure OCIDs that are using this upgrade schedule.
    LifecycleDetails string
    A message describing the current state in more detail. For example, the message can be used to provide actionable information for a resource in a Failed state.
    State string
    A filter to return resources only when their lifecycleState matches the given lifecycleState.
    SystemTags map[string]interface{}
    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 the upgrade schedule was created, using an RFC3339 formatted datetime string.
    TimeUpdated string
    The time the upgrade schedule was updated, using an RFC3339 formatted datetime string.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    A description of the Compute Cloud@Customer upgrade schedule time block.
    displayName String
    A filter to return only resources that match the entire display name given.
    events List<GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollectionItemEvent>
    List of preferred times for Compute Cloud@Customer infrastructures associated with this schedule to be upgraded.
    freeformTags Map<String,Object>
    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
    Upgrade schedule OCID. This cannot be changed once created.
    infrastructureIds List<String>
    List of Compute Cloud@Customer infrastructure OCIDs that are using this upgrade schedule.
    lifecycleDetails String
    A message describing the current state in more detail. For example, the message can be used to provide actionable information for a resource in a Failed state.
    state String
    A filter to return resources only when their lifecycleState matches the given lifecycleState.
    systemTags Map<String,Object>
    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 the upgrade schedule was created, using an RFC3339 formatted datetime string.
    timeUpdated String
    The time the upgrade schedule was updated, using an RFC3339 formatted datetime string.
    compartmentId string
    The OCID of the compartment in which to list resources.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    A description of the Compute Cloud@Customer upgrade schedule time block.
    displayName string
    A filter to return only resources that match the entire display name given.
    events GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollectionItemEvent[]
    List of preferred times for Compute Cloud@Customer infrastructures associated with this schedule to be upgraded.
    freeformTags {[key: string]: any}
    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
    Upgrade schedule OCID. This cannot be changed once created.
    infrastructureIds string[]
    List of Compute Cloud@Customer infrastructure OCIDs that are using this upgrade schedule.
    lifecycleDetails string
    A message describing the current state in more detail. For example, the message can be used to provide actionable information for a resource in a Failed state.
    state string
    A filter to return resources only when their lifecycleState matches the given lifecycleState.
    systemTags {[key: string]: any}
    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 the upgrade schedule was created, using an RFC3339 formatted datetime string.
    timeUpdated string
    The time the upgrade schedule was updated, using an RFC3339 formatted datetime string.
    compartment_id str
    The OCID of the compartment in which to list resources.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    A description of the Compute Cloud@Customer upgrade schedule time block.
    display_name str
    A filter to return only resources that match the entire display name given.
    events Sequence[computecloud.GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollectionItemEvent]
    List of preferred times for Compute Cloud@Customer infrastructures associated with this schedule to be upgraded.
    freeform_tags Mapping[str, Any]
    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
    Upgrade schedule OCID. This cannot be changed once created.
    infrastructure_ids Sequence[str]
    List of Compute Cloud@Customer infrastructure OCIDs that are using this upgrade schedule.
    lifecycle_details str
    A message describing the current state in more detail. For example, the message can be used to provide actionable information for a resource in a Failed state.
    state str
    A filter to return resources only when their lifecycleState matches the given lifecycleState.
    system_tags Mapping[str, Any]
    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 the upgrade schedule was created, using an RFC3339 formatted datetime string.
    time_updated str
    The time the upgrade schedule was updated, using an RFC3339 formatted datetime string.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    A description of the Compute Cloud@Customer upgrade schedule time block.
    displayName String
    A filter to return only resources that match the entire display name given.
    events List<Property Map>
    List of preferred times for Compute Cloud@Customer infrastructures associated with this schedule to be upgraded.
    freeformTags Map<Any>
    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
    Upgrade schedule OCID. This cannot be changed once created.
    infrastructureIds List<String>
    List of Compute Cloud@Customer infrastructure OCIDs that are using this upgrade schedule.
    lifecycleDetails String
    A message describing the current state in more detail. For example, the message can be used to provide actionable information for a resource in a Failed state.
    state String
    A filter to return resources only when their lifecycleState matches the given lifecycleState.
    systemTags Map<Any>
    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 the upgrade schedule was created, using an RFC3339 formatted datetime string.
    timeUpdated String
    The time the upgrade schedule was updated, using an RFC3339 formatted datetime string.

    GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollectionItemEvent

    Description string
    A description of the Compute Cloud@Customer upgrade schedule time block.
    Name string
    Generated name associated with the event.
    ScheduleEventDuration string
    The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
    ScheduleEventRecurrences string
    Frequency of recurrence of schedule block. When this field is not included, the event is assumed to be a one time occurrence. The frequency field is strictly parsed and must conform to RFC-5545 formatting for recurrences.
    TimeStart string
    The date and time when the Compute Cloud@Customer upgrade schedule event starts, inclusive. An RFC3339 formatted UTC datetime string. For an event with recurrences, this is the date that a recurrence can start being applied.
    Description string
    A description of the Compute Cloud@Customer upgrade schedule time block.
    Name string
    Generated name associated with the event.
    ScheduleEventDuration string
    The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
    ScheduleEventRecurrences string
    Frequency of recurrence of schedule block. When this field is not included, the event is assumed to be a one time occurrence. The frequency field is strictly parsed and must conform to RFC-5545 formatting for recurrences.
    TimeStart string
    The date and time when the Compute Cloud@Customer upgrade schedule event starts, inclusive. An RFC3339 formatted UTC datetime string. For an event with recurrences, this is the date that a recurrence can start being applied.
    description String
    A description of the Compute Cloud@Customer upgrade schedule time block.
    name String
    Generated name associated with the event.
    scheduleEventDuration String
    The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
    scheduleEventRecurrences String
    Frequency of recurrence of schedule block. When this field is not included, the event is assumed to be a one time occurrence. The frequency field is strictly parsed and must conform to RFC-5545 formatting for recurrences.
    timeStart String
    The date and time when the Compute Cloud@Customer upgrade schedule event starts, inclusive. An RFC3339 formatted UTC datetime string. For an event with recurrences, this is the date that a recurrence can start being applied.
    description string
    A description of the Compute Cloud@Customer upgrade schedule time block.
    name string
    Generated name associated with the event.
    scheduleEventDuration string
    The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
    scheduleEventRecurrences string
    Frequency of recurrence of schedule block. When this field is not included, the event is assumed to be a one time occurrence. The frequency field is strictly parsed and must conform to RFC-5545 formatting for recurrences.
    timeStart string
    The date and time when the Compute Cloud@Customer upgrade schedule event starts, inclusive. An RFC3339 formatted UTC datetime string. For an event with recurrences, this is the date that a recurrence can start being applied.
    description str
    A description of the Compute Cloud@Customer upgrade schedule time block.
    name str
    Generated name associated with the event.
    schedule_event_duration str
    The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
    schedule_event_recurrences str
    Frequency of recurrence of schedule block. When this field is not included, the event is assumed to be a one time occurrence. The frequency field is strictly parsed and must conform to RFC-5545 formatting for recurrences.
    time_start str
    The date and time when the Compute Cloud@Customer upgrade schedule event starts, inclusive. An RFC3339 formatted UTC datetime string. For an event with recurrences, this is the date that a recurrence can start being applied.
    description String
    A description of the Compute Cloud@Customer upgrade schedule time block.
    name String
    Generated name associated with the event.
    scheduleEventDuration String
    The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
    scheduleEventRecurrences String
    Frequency of recurrence of schedule block. When this field is not included, the event is assumed to be a one time occurrence. The frequency field is strictly parsed and must conform to RFC-5545 formatting for recurrences.
    timeStart String
    The date and time when the Compute Cloud@Customer upgrade schedule event starts, inclusive. An RFC3339 formatted UTC datetime string. For an event with recurrences, this is the date that a recurrence can start being applied.

    GetAtCustomerCccUpgradeSchedulesFilter

    Name string
    Generated name associated with the event.
    Values List<string>
    Regex bool
    Name string
    Generated name associated with the event.
    Values []string
    Regex bool
    name String
    Generated name associated with the event.
    values List<String>
    regex Boolean
    name string
    Generated name associated with the event.
    values string[]
    regex boolean
    name str
    Generated name associated with the event.
    values Sequence[str]
    regex bool
    name String
    Generated name associated with the event.
    values List<String>
    regex Boolean

    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.4.0 published on Thursday, Jul 25, 2024 by Pulumi