Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 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[_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:
- Access
Level 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.
- Ccc
Upgrade stringSchedule Id - Compute Cloud@Customer upgrade schedule OCID.
- Compartment
Id string - 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 string - A filter to return only resources that match the entire display name given.
- Display
Name stringContains - A filter to return only resources whose display name contains the substring.
- Filters
List<Get
At Customer Ccc Upgrade Schedules Filter> - State string
- A filter to return resources only when their lifecycleState matches the given lifecycleState.
- Access
Level 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.
- Ccc
Upgrade stringSchedule Id - Compute Cloud@Customer upgrade schedule OCID.
- Compartment
Id string - 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 string - A filter to return only resources that match the entire display name given.
- Display
Name stringContains - A filter to return only resources whose display name contains the substring.
- Filters
[]Get
At Customer Ccc Upgrade Schedules Filter - State string
- A filter to return resources only when their lifecycleState matches the given lifecycleState.
- access
Level 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.
- ccc
Upgrade StringSchedule Id - Compute Cloud@Customer upgrade schedule OCID.
- compartment
Id String - The OCID of the compartment in which to list resources.
- compartment
Id 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.
- display
Name String - A filter to return only resources that match the entire display name given.
- display
Name StringContains - A filter to return only resources whose display name contains the substring.
- filters
List<Get
At Customer Ccc Upgrade Schedules Filter> - state String
- A filter to return resources only when their lifecycleState matches the given lifecycleState.
- access
Level 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.
- ccc
Upgrade stringSchedule Id - Compute Cloud@Customer upgrade schedule OCID.
- compartment
Id string - The OCID of the compartment in which to list resources.
- compartment
Id 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.
- display
Name string - A filter to return only resources that match the entire display name given.
- display
Name stringContains - A filter to return only resources whose display name contains the substring.
- filters
Get
At 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[computecloud.
Get At Customer Ccc Upgrade Schedules Filter] - state str
- A filter to return resources only when their lifecycleState matches the given lifecycleState.
- access
Level 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.
- ccc
Upgrade StringSchedule Id - Compute Cloud@Customer upgrade schedule OCID.
- compartment
Id String - The OCID of the compartment in which to list resources.
- compartment
Id 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.
- display
Name String - A filter to return only resources that match the entire display name given.
- display
Name 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:
- Ccc
Upgrade 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.
- Access
Level string - Ccc
Upgrade stringSchedule Id - Compartment
Id string - Compartment OCID for the Compute Cloud@Customer upgrade schedule.
- Compartment
Id boolIn Subtree - Display
Name string - Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
- Display
Name stringContains - Filters
List<Get
At Customer Ccc Upgrade Schedules Filter> - State string
- Lifecycle state of the resource.
- Ccc
Upgrade []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.
- Access
Level string - Ccc
Upgrade stringSchedule Id - Compartment
Id string - Compartment OCID for the Compute Cloud@Customer upgrade schedule.
- Compartment
Id boolIn Subtree - Display
Name string - Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
- Display
Name stringContains - Filters
[]Get
At Customer Ccc Upgrade Schedules Filter - State string
- Lifecycle state of the resource.
- ccc
Upgrade 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.
- access
Level String - ccc
Upgrade StringSchedule Id - compartment
Id String - Compartment OCID for the Compute Cloud@Customer upgrade schedule.
- compartment
Id BooleanIn Subtree - display
Name String - Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
- display
Name StringContains - filters
List<Get
At Customer Ccc Upgrade Schedules Filter> - state String
- Lifecycle state of the resource.
- ccc
Upgrade 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.
- access
Level string - ccc
Upgrade stringSchedule Id - compartment
Id string - Compartment OCID for the Compute Cloud@Customer upgrade schedule.
- compartment
Id booleanIn Subtree - display
Name string - Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
- display
Name stringContains - filters
Get
At Customer Ccc Upgrade Schedules Filter[] - state string
- Lifecycle state of the resource.
- ccc_
upgrade_ Sequence[computecloud.schedule_ collections Get 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[computecloud.
Get At Customer Ccc Upgrade Schedules Filter] - state str
- Lifecycle state of the resource.
- ccc
Upgrade List<Property Map>Schedule Collections - The list of ccc_upgrade_schedule_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - ccc
Upgrade StringSchedule Id - compartment
Id String - Compartment OCID for the Compute Cloud@Customer upgrade schedule.
- compartment
Id BooleanIn Subtree - display
Name String - Compute Cloud@Customer upgrade schedule display name. Avoid entering confidential information.
- display
Name StringContains - filters List<Property Map>
- state String
- Lifecycle state of the resource.
Supporting Types
GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollection
GetAtCustomerCccUpgradeSchedulesCccUpgradeScheduleCollectionItem
- Compartment
Id 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.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Events
List<Get
At 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.
- Infrastructure
Ids List<string> - List of Compute Cloud@Customer infrastructure OCIDs that are using this upgrade schedule.
- Lifecycle
Details 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"}
- Time
Created string - The time the upgrade schedule was created, using an RFC3339 formatted datetime string.
- Time
Updated string - The time the upgrade schedule was updated, using an RFC3339 formatted datetime string.
- Compartment
Id 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.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Events
[]Get
At 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.
- Infrastructure
Ids []string - List of Compute Cloud@Customer infrastructure OCIDs that are using this upgrade schedule.
- Lifecycle
Details 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"}
- Time
Created string - The time the upgrade schedule was created, using an RFC3339 formatted datetime string.
- Time
Updated string - The time the upgrade schedule was updated, using an RFC3339 formatted datetime string.
- compartment
Id 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.
- display
Name String - A filter to return only resources that match the entire display name given.
- events
List<Get
At 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.
- infrastructure
Ids List<String> - List of Compute Cloud@Customer infrastructure OCIDs that are using this upgrade schedule.
- lifecycle
Details 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"}
- time
Created String - The time the upgrade schedule was created, using an RFC3339 formatted datetime string.
- time
Updated String - The time the upgrade schedule was updated, using an RFC3339 formatted datetime string.
- compartment
Id 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.
- display
Name string - A filter to return only resources that match the entire display name given.
- events
Get
At 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.
- infrastructure
Ids string[] - List of Compute Cloud@Customer infrastructure OCIDs that are using this upgrade schedule.
- lifecycle
Details 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"}
- time
Created string - The time the upgrade schedule was created, using an RFC3339 formatted datetime string.
- time
Updated 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[computecloud.
Get At 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.
- compartment
Id 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.
- display
Name 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.
- infrastructure
Ids List<String> - List of Compute Cloud@Customer infrastructure OCIDs that are using this upgrade schedule.
- lifecycle
Details 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"}
- time
Created String - The time the upgrade schedule was created, using an RFC3339 formatted datetime string.
- time
Updated 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.
- Schedule
Event stringDuration - The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
- Schedule
Event 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.
- Time
Start 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.
- Schedule
Event stringDuration - The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
- Schedule
Event 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.
- Time
Start 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.
- schedule
Event StringDuration - The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
- schedule
Event 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.
- time
Start 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.
- schedule
Event stringDuration - The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
- schedule
Event 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.
- time
Start 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.
- schedule
Event StringDuration - The duration of this block of time. The duration must be specified and be of the ISO-8601 format for durations.
- schedule
Event 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.
- time
Start 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
oci
Terraform Provider.