Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.ComputeCloud.getAtCustomerCccUpgradeSchedules
Explore with Pulumi AI
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[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[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)
public static Output<GetAtCustomerCccUpgradeSchedulesResult> getAtCustomerCccUpgradeSchedules(GetAtCustomerCccUpgradeSchedulesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:ComputeCloud/getAtCustomerCccUpgradeSchedules:getAtCustomerCccUpgradeSchedules
  arguments:
    # arguments dictionaryThe 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.
- CccUpgrade stringSchedule Id 
- Compute Cloud@Customer upgrade schedule OCID.
- CompartmentId string
- The OCID of the compartment in which to list resources.
- CompartmentId boolIn Subtree 
- 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.
- DisplayName stringContains 
- A filter to return only resources whose display name contains the substring.
- Filters
List<GetAt Customer Ccc Upgrade Schedules Filter> 
- 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.
- CccUpgrade stringSchedule Id 
- Compute Cloud@Customer upgrade schedule OCID.
- CompartmentId string
- The OCID of the compartment in which to list resources.
- CompartmentId boolIn Subtree 
- 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.
- DisplayName stringContains 
- A filter to return only resources whose display name contains the substring.
- Filters
[]GetAt Customer Ccc Upgrade Schedules Filter 
- 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.
- cccUpgrade StringSchedule Id 
- Compute Cloud@Customer upgrade schedule OCID.
- compartmentId String
- The OCID of the compartment in which to list resources.
- compartmentId BooleanIn Subtree 
- 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.
- displayName StringContains 
- A filter to return only resources whose display name contains the substring.
- filters
List<GetAt Customer Ccc Upgrade Schedules Filter> 
- 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.
- cccUpgrade stringSchedule Id 
- Compute Cloud@Customer upgrade schedule OCID.
- compartmentId string
- The OCID of the compartment in which to list resources.
- compartmentId booleanIn Subtree 
- 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.
- displayName stringContains 
- A filter to return only resources whose display name contains the substring.
- filters
GetAt Customer Ccc Upgrade Schedules Filter[] 
- 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_ strschedule_ id 
- Compute Cloud@Customer upgrade schedule OCID.
- compartment_id str
- The OCID of the compartment in which to list resources.
- compartment_id_ boolin_ subtree 
- 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_ strcontains 
- A filter to return only resources whose display name contains the substring.
- filters
Sequence[GetAt Customer Ccc Upgrade Schedules Filter] 
- 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.
- cccUpgrade StringSchedule Id 
- Compute Cloud@Customer upgrade schedule OCID.
- compartmentId String
- The OCID of the compartment in which to list resources.
- compartmentId BooleanIn Subtree 
- 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.
- displayName StringContains 
- 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:
- CccUpgrade List<GetSchedule Collections At Customer Ccc Upgrade Schedules Ccc Upgrade Schedule Collection> 
- The list of ccc_upgrade_schedule_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- AccessLevel string
- CccUpgrade stringSchedule Id 
- CompartmentId string
- Compartment OCID for the Compute Cloud@Customer upgrade schedule.
- CompartmentId boolIn Subtree 
- DisplayName string
- Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
- DisplayName stringContains 
- Filters
List<GetAt Customer Ccc Upgrade Schedules Filter> 
- State string
- Lifecycle state of the resource.
- CccUpgrade []GetSchedule Collections At Customer Ccc Upgrade Schedules Ccc Upgrade Schedule Collection 
- The list of ccc_upgrade_schedule_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- AccessLevel string
- CccUpgrade stringSchedule Id 
- CompartmentId string
- Compartment OCID for the Compute Cloud@Customer upgrade schedule.
- CompartmentId boolIn Subtree 
- DisplayName string
- Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
- DisplayName stringContains 
- Filters
[]GetAt Customer Ccc Upgrade Schedules Filter 
- State string
- Lifecycle state of the resource.
- cccUpgrade List<GetSchedule Collections At Customer Ccc Upgrade Schedules Ccc Upgrade Schedule Collection> 
- The list of ccc_upgrade_schedule_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- accessLevel String
- cccUpgrade StringSchedule Id 
- compartmentId String
- Compartment OCID for the Compute Cloud@Customer upgrade schedule.
- compartmentId BooleanIn Subtree 
- displayName String
- Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
- displayName StringContains 
- filters
List<GetAt Customer Ccc Upgrade Schedules Filter> 
- state String
- Lifecycle state of the resource.
- cccUpgrade GetSchedule Collections At Customer Ccc Upgrade Schedules Ccc Upgrade Schedule Collection[] 
- The list of ccc_upgrade_schedule_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- accessLevel string
- cccUpgrade stringSchedule Id 
- compartmentId string
- Compartment OCID for the Compute Cloud@Customer upgrade schedule.
- compartmentId booleanIn Subtree 
- displayName string
- Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
- displayName stringContains 
- filters
GetAt Customer Ccc Upgrade Schedules Filter[] 
- state string
- Lifecycle state of the resource.
- ccc_upgrade_ Sequence[Getschedule_ collections At Customer Ccc Upgrade Schedules Ccc Upgrade Schedule Collection] 
- The list of ccc_upgrade_schedule_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- access_level str
- ccc_upgrade_ strschedule_ id 
- compartment_id str
- Compartment OCID for the Compute Cloud@Customer upgrade schedule.
- compartment_id_ boolin_ subtree 
- display_name str
- Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
- display_name_ strcontains 
- filters
Sequence[GetAt Customer Ccc Upgrade Schedules Filter] 
- state str
- Lifecycle state of the resource.
- cccUpgrade List<Property Map>Schedule Collections 
- The list of ccc_upgrade_schedule_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- accessLevel String
- cccUpgrade StringSchedule Id 
- compartmentId String
- Compartment OCID for the Compute Cloud@Customer upgrade schedule.
- compartmentId BooleanIn Subtree 
- displayName String
- Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
- displayName StringContains 
- 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.
- 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 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<GetAt Customer Ccc Upgrade Schedules Ccc Upgrade Schedule Collection Item Event> 
- List of preferred times for Compute Cloud@Customer infrastructures associated with this schedule to be upgraded.
- 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
- 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.
- 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 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.
- 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 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
[]GetAt Customer Ccc Upgrade Schedules Ccc Upgrade Schedule Collection Item Event 
- List of preferred times for Compute Cloud@Customer infrastructures associated with this schedule to be upgraded.
- 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
- 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.
- 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 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.
- 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 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<GetAt Customer Ccc Upgrade Schedules Ccc Upgrade Schedule Collection Item Event> 
- List of preferred times for Compute Cloud@Customer infrastructures associated with this schedule to be upgraded.
- 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
- 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.
- 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 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.
- {[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 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
GetAt Customer Ccc Upgrade Schedules Ccc Upgrade Schedule Collection Item Event[] 
- List of preferred times for Compute Cloud@Customer infrastructures associated with this schedule to be upgraded.
- {[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
- 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.
- {[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 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.
- 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 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[GetAt Customer Ccc Upgrade Schedules Ccc Upgrade Schedule Collection Item Event] 
- List of preferred times for Compute Cloud@Customer infrastructures associated with this schedule to be upgraded.
- 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
- 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.
- 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 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.
- 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 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.
- 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
- 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.
- 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 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.
- ScheduleEvent stringDuration 
- The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
- ScheduleEvent stringRecurrences 
- 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.
- ScheduleEvent stringDuration 
- The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
- ScheduleEvent stringRecurrences 
- 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.
- scheduleEvent StringDuration 
- The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
- scheduleEvent StringRecurrences 
- 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.
- scheduleEvent stringDuration 
- The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
- scheduleEvent stringRecurrences 
- 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_ strduration 
- The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
- schedule_event_ strrecurrences 
- 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.
- scheduleEvent StringDuration 
- The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
- scheduleEvent StringRecurrences 
- 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      
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.