1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getCloudAutonomousVmClusters
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Database.getCloudAutonomousVmClusters

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This data source provides the list of Cloud Autonomous Vm Clusters in Oracle Cloud Infrastructure Database service.

    Lists Autonomous Exadata VM clusters in the Oracle cloud. For Exadata Cloud@Customer systems, see ListAutonomousVmClusters.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCloudAutonomousVmClusters = oci.Database.getCloudAutonomousVmClusters({
        compartmentId: _var.compartment_id,
        availabilityDomain: _var.cloud_autonomous_vm_cluster_availability_domain,
        cloudExadataInfrastructureId: oci_database_cloud_exadata_infrastructure.test_cloud_exadata_infrastructure.id,
        displayName: _var.cloud_autonomous_vm_cluster_display_name,
        state: _var.cloud_autonomous_vm_cluster_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_cloud_autonomous_vm_clusters = oci.Database.get_cloud_autonomous_vm_clusters(compartment_id=var["compartment_id"],
        availability_domain=var["cloud_autonomous_vm_cluster_availability_domain"],
        cloud_exadata_infrastructure_id=oci_database_cloud_exadata_infrastructure["test_cloud_exadata_infrastructure"]["id"],
        display_name=var["cloud_autonomous_vm_cluster_display_name"],
        state=var["cloud_autonomous_vm_cluster_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Database"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Database.GetCloudAutonomousVmClusters(ctx, &database.GetCloudAutonomousVmClustersArgs{
    			CompartmentId:                _var.Compartment_id,
    			AvailabilityDomain:           pulumi.StringRef(_var.Cloud_autonomous_vm_cluster_availability_domain),
    			CloudExadataInfrastructureId: pulumi.StringRef(oci_database_cloud_exadata_infrastructure.Test_cloud_exadata_infrastructure.Id),
    			DisplayName:                  pulumi.StringRef(_var.Cloud_autonomous_vm_cluster_display_name),
    			State:                        pulumi.StringRef(_var.Cloud_autonomous_vm_cluster_state),
    		}, 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 testCloudAutonomousVmClusters = Oci.Database.GetCloudAutonomousVmClusters.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            AvailabilityDomain = @var.Cloud_autonomous_vm_cluster_availability_domain,
            CloudExadataInfrastructureId = oci_database_cloud_exadata_infrastructure.Test_cloud_exadata_infrastructure.Id,
            DisplayName = @var.Cloud_autonomous_vm_cluster_display_name,
            State = @var.Cloud_autonomous_vm_cluster_state,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Database.DatabaseFunctions;
    import com.pulumi.oci.Database.inputs.GetCloudAutonomousVmClustersArgs;
    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 testCloudAutonomousVmClusters = DatabaseFunctions.getCloudAutonomousVmClusters(GetCloudAutonomousVmClustersArgs.builder()
                .compartmentId(var_.compartment_id())
                .availabilityDomain(var_.cloud_autonomous_vm_cluster_availability_domain())
                .cloudExadataInfrastructureId(oci_database_cloud_exadata_infrastructure.test_cloud_exadata_infrastructure().id())
                .displayName(var_.cloud_autonomous_vm_cluster_display_name())
                .state(var_.cloud_autonomous_vm_cluster_state())
                .build());
    
        }
    }
    
    variables:
      testCloudAutonomousVmClusters:
        fn::invoke:
          Function: oci:Database:getCloudAutonomousVmClusters
          Arguments:
            compartmentId: ${var.compartment_id}
            availabilityDomain: ${var.cloud_autonomous_vm_cluster_availability_domain}
            cloudExadataInfrastructureId: ${oci_database_cloud_exadata_infrastructure.test_cloud_exadata_infrastructure.id}
            displayName: ${var.cloud_autonomous_vm_cluster_display_name}
            state: ${var.cloud_autonomous_vm_cluster_state}
    

    Using getCloudAutonomousVmClusters

    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 getCloudAutonomousVmClusters(args: GetCloudAutonomousVmClustersArgs, opts?: InvokeOptions): Promise<GetCloudAutonomousVmClustersResult>
    function getCloudAutonomousVmClustersOutput(args: GetCloudAutonomousVmClustersOutputArgs, opts?: InvokeOptions): Output<GetCloudAutonomousVmClustersResult>
    def get_cloud_autonomous_vm_clusters(availability_domain: Optional[str] = None,
                                         cloud_exadata_infrastructure_id: Optional[str] = None,
                                         compartment_id: Optional[str] = None,
                                         display_name: Optional[str] = None,
                                         filters: Optional[Sequence[_database.GetCloudAutonomousVmClustersFilter]] = None,
                                         state: Optional[str] = None,
                                         opts: Optional[InvokeOptions] = None) -> GetCloudAutonomousVmClustersResult
    def get_cloud_autonomous_vm_clusters_output(availability_domain: Optional[pulumi.Input[str]] = None,
                                         cloud_exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
                                         compartment_id: Optional[pulumi.Input[str]] = None,
                                         display_name: Optional[pulumi.Input[str]] = None,
                                         filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetCloudAutonomousVmClustersFilterArgs]]]] = None,
                                         state: Optional[pulumi.Input[str]] = None,
                                         opts: Optional[InvokeOptions] = None) -> Output[GetCloudAutonomousVmClustersResult]
    func GetCloudAutonomousVmClusters(ctx *Context, args *GetCloudAutonomousVmClustersArgs, opts ...InvokeOption) (*GetCloudAutonomousVmClustersResult, error)
    func GetCloudAutonomousVmClustersOutput(ctx *Context, args *GetCloudAutonomousVmClustersOutputArgs, opts ...InvokeOption) GetCloudAutonomousVmClustersResultOutput

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

    public static class GetCloudAutonomousVmClusters 
    {
        public static Task<GetCloudAutonomousVmClustersResult> InvokeAsync(GetCloudAutonomousVmClustersArgs args, InvokeOptions? opts = null)
        public static Output<GetCloudAutonomousVmClustersResult> Invoke(GetCloudAutonomousVmClustersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCloudAutonomousVmClustersResult> getCloudAutonomousVmClusters(GetCloudAutonomousVmClustersArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Database/getCloudAutonomousVmClusters:getCloudAutonomousVmClusters
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The compartment OCID.
    AvailabilityDomain string
    A filter to return only resources that match the given availability domain exactly.
    CloudExadataInfrastructureId string
    If provided, filters the results for the specified cloud Exadata infrastructure.
    DisplayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    Filters List<GetCloudAutonomousVmClustersFilter>
    State string
    A filter to return only resources that match the given lifecycle state exactly.
    CompartmentId string
    The compartment OCID.
    AvailabilityDomain string
    A filter to return only resources that match the given availability domain exactly.
    CloudExadataInfrastructureId string
    If provided, filters the results for the specified cloud Exadata infrastructure.
    DisplayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    Filters []GetCloudAutonomousVmClustersFilter
    State string
    A filter to return only resources that match the given lifecycle state exactly.
    compartmentId String
    The compartment OCID.
    availabilityDomain String
    A filter to return only resources that match the given availability domain exactly.
    cloudExadataInfrastructureId String
    If provided, filters the results for the specified cloud Exadata infrastructure.
    displayName String
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    filters List<GetCloudAutonomousVmClustersFilter>
    state String
    A filter to return only resources that match the given lifecycle state exactly.
    compartmentId string
    The compartment OCID.
    availabilityDomain string
    A filter to return only resources that match the given availability domain exactly.
    cloudExadataInfrastructureId string
    If provided, filters the results for the specified cloud Exadata infrastructure.
    displayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    filters GetCloudAutonomousVmClustersFilter[]
    state string
    A filter to return only resources that match the given lifecycle state exactly.
    compartment_id str
    The compartment OCID.
    availability_domain str
    A filter to return only resources that match the given availability domain exactly.
    cloud_exadata_infrastructure_id str
    If provided, filters the results for the specified cloud Exadata infrastructure.
    display_name str
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    filters Sequence[database.GetCloudAutonomousVmClustersFilter]
    state str
    A filter to return only resources that match the given lifecycle state exactly.
    compartmentId String
    The compartment OCID.
    availabilityDomain String
    A filter to return only resources that match the given availability domain exactly.
    cloudExadataInfrastructureId String
    If provided, filters the results for the specified cloud Exadata infrastructure.
    displayName String
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    filters List<Property Map>
    state String
    A filter to return only resources that match the given lifecycle state exactly.

    getCloudAutonomousVmClusters Result

    The following output properties are available:

    CloudAutonomousVmClusters List<GetCloudAutonomousVmClustersCloudAutonomousVmCluster>
    The list of cloud_autonomous_vm_clusters.
    CompartmentId string
    The OCID of the compartment.
    Id string
    The provider-assigned unique ID for this managed resource.
    AvailabilityDomain string
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    CloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure.
    DisplayName string
    The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    Filters List<GetCloudAutonomousVmClustersFilter>
    State string
    The current state of the cloud Autonomous VM cluster.
    CloudAutonomousVmClusters []GetCloudAutonomousVmClustersCloudAutonomousVmCluster
    The list of cloud_autonomous_vm_clusters.
    CompartmentId string
    The OCID of the compartment.
    Id string
    The provider-assigned unique ID for this managed resource.
    AvailabilityDomain string
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    CloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure.
    DisplayName string
    The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    Filters []GetCloudAutonomousVmClustersFilter
    State string
    The current state of the cloud Autonomous VM cluster.
    cloudAutonomousVmClusters List<GetCloudAutonomousVmClustersCloudAutonomousVmCluster>
    The list of cloud_autonomous_vm_clusters.
    compartmentId String
    The OCID of the compartment.
    id String
    The provider-assigned unique ID for this managed resource.
    availabilityDomain String
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    cloudExadataInfrastructureId String
    The OCID of the cloud Exadata infrastructure.
    displayName String
    The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    filters List<GetCloudAutonomousVmClustersFilter>
    state String
    The current state of the cloud Autonomous VM cluster.
    cloudAutonomousVmClusters GetCloudAutonomousVmClustersCloudAutonomousVmCluster[]
    The list of cloud_autonomous_vm_clusters.
    compartmentId string
    The OCID of the compartment.
    id string
    The provider-assigned unique ID for this managed resource.
    availabilityDomain string
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    cloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure.
    displayName string
    The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    filters GetCloudAutonomousVmClustersFilter[]
    state string
    The current state of the cloud Autonomous VM cluster.
    cloud_autonomous_vm_clusters Sequence[database.GetCloudAutonomousVmClustersCloudAutonomousVmCluster]
    The list of cloud_autonomous_vm_clusters.
    compartment_id str
    The OCID of the compartment.
    id str
    The provider-assigned unique ID for this managed resource.
    availability_domain str
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    cloud_exadata_infrastructure_id str
    The OCID of the cloud Exadata infrastructure.
    display_name str
    The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    filters Sequence[database.GetCloudAutonomousVmClustersFilter]
    state str
    The current state of the cloud Autonomous VM cluster.
    cloudAutonomousVmClusters List<Property Map>
    The list of cloud_autonomous_vm_clusters.
    compartmentId String
    The OCID of the compartment.
    id String
    The provider-assigned unique ID for this managed resource.
    availabilityDomain String
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    cloudExadataInfrastructureId String
    The OCID of the cloud Exadata infrastructure.
    displayName String
    The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    filters List<Property Map>
    state String
    The current state of the cloud Autonomous VM cluster.

    Supporting Types

    GetCloudAutonomousVmClustersCloudAutonomousVmCluster

    AutonomousDataStoragePercentage double
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    AutonomousDataStorageSizeInTbs double
    The data disk group size allocated for Autonomous Databases, in TBs.
    AvailabilityDomain string
    A filter to return only resources that match the given availability domain exactly.
    AvailableAutonomousDataStorageSizeInTbs double
    The data disk group size available for Autonomous Databases, in TBs.
    AvailableContainerDatabases int
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    AvailableCpus double
    CPU cores available for allocation to Autonomous Databases.
    CloudExadataInfrastructureId string
    If provided, filters the results for the specified cloud Exadata infrastructure.
    ClusterTimeZone string
    The time zone of the Cloud Autonomous VM Cluster.
    CompartmentId string
    The compartment OCID.
    ComputeModel string
    The compute model of the Cloud Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata #Infrastructure for more details.
    CpuCoreCount int
    The number of CPU cores on the cloud Autonomous VM cluster.
    CpuCoreCountPerNode int
    The number of CPU cores enabled per VM cluster node.
    CpuPercentage double
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    DataStorageSizeInGb double
    The total data storage allocated, in gigabytes (GB).
    DataStorageSizeInTbs double
    The total data storage allocated, in terabytes (TB).
    DbNodeStorageSizeInGbs int
    The local node storage allocated in GBs.
    DbServers List<string>
    The list of OCIDs of the Db servers.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    Description string
    User defined description of the cloud Autonomous VM cluster.
    DisplayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    Domain string
    The domain name for the cloud Autonomous VM cluster.
    ExadataStorageInTbsLowestScaledValue double
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    FreeformTags Dictionary<string, object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Hostname string
    The hostname for the cloud Autonomous VM cluster.
    Id string
    The OCID of the Cloud Autonomous VM cluster.
    IsMtlsEnabledVmCluster bool
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    LastMaintenanceRunId string
    The OCID of the last maintenance run.
    LastUpdateHistoryEntryId string
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    LicenseModel string
    The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MaintenanceWindowDetails List<GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetail>
    MaintenanceWindows List<GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindow>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MaxAcdsLowestScaledValue int
    The lowest value to which maximum number of ACDs can be scaled down.
    MemoryPerOracleComputeUnitInGbs int
    The amount of memory (in GBs) enabled per OCPU or ECPU.
    MemorySizeInGbs int
    The memory allocated in GBs.
    NextMaintenanceRunId string
    The OCID of the next maintenance run.
    NodeCount int
    The number of database servers in the cloud VM cluster.
    NonProvisionableAutonomousContainerDatabases int
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    NsgIds List<string>
    The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    OcpuCount double
    The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
    OcpusLowestScaledValue int
    The lowest value to which ocpus can be scaled down.
    ProvisionableAutonomousContainerDatabases int
    The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    ProvisionedAutonomousContainerDatabases int
    The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
    ProvisionedCpus double
    The number of CPUs provisioned in an Autonomous VM Cluster.
    ReclaimableCpus double
    For Autonomous Databases on Dedicated Exadata Infrastructure:

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    ReservedCpus double
    The number of CPUs reserved in an Autonomous VM Cluster.
    ScanListenerPortNonTls int
    The SCAN Listener Non TLS port. Default is 1521.
    ScanListenerPortTls int
    The SCAN Listenenr TLS port. Default is 2484.
    Shape string
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    State string
    A filter to return only resources that match the given lifecycle state exactly.
    SubnetId string
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    TimeCreated string
    The date and time that the cloud Autonomous VM cluster was created.
    TimeUpdated string
    The last date and time that the cloud Autonomous VM cluster was updated.
    TotalAutonomousDataStorageInTbs double
    The total data disk group size for Autonomous Databases, in TBs.
    TotalContainerDatabases int
    The total number of Autonomous Container Databases that can be created with the allocated local storage.
    TotalCpus double
    The total number of CPUs in an Autonomous VM Cluster.
    AutonomousDataStoragePercentage float64
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    AutonomousDataStorageSizeInTbs float64
    The data disk group size allocated for Autonomous Databases, in TBs.
    AvailabilityDomain string
    A filter to return only resources that match the given availability domain exactly.
    AvailableAutonomousDataStorageSizeInTbs float64
    The data disk group size available for Autonomous Databases, in TBs.
    AvailableContainerDatabases int
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    AvailableCpus float64
    CPU cores available for allocation to Autonomous Databases.
    CloudExadataInfrastructureId string
    If provided, filters the results for the specified cloud Exadata infrastructure.
    ClusterTimeZone string
    The time zone of the Cloud Autonomous VM Cluster.
    CompartmentId string
    The compartment OCID.
    ComputeModel string
    The compute model of the Cloud Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata #Infrastructure for more details.
    CpuCoreCount int
    The number of CPU cores on the cloud Autonomous VM cluster.
    CpuCoreCountPerNode int
    The number of CPU cores enabled per VM cluster node.
    CpuPercentage float64
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    DataStorageSizeInGb float64
    The total data storage allocated, in gigabytes (GB).
    DataStorageSizeInTbs float64
    The total data storage allocated, in terabytes (TB).
    DbNodeStorageSizeInGbs int
    The local node storage allocated in GBs.
    DbServers []string
    The list of OCIDs of the Db servers.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    Description string
    User defined description of the cloud Autonomous VM cluster.
    DisplayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    Domain string
    The domain name for the cloud Autonomous VM cluster.
    ExadataStorageInTbsLowestScaledValue float64
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    FreeformTags map[string]interface{}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Hostname string
    The hostname for the cloud Autonomous VM cluster.
    Id string
    The OCID of the Cloud Autonomous VM cluster.
    IsMtlsEnabledVmCluster bool
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    LastMaintenanceRunId string
    The OCID of the last maintenance run.
    LastUpdateHistoryEntryId string
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    LicenseModel string
    The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MaintenanceWindowDetails []GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetail
    MaintenanceWindows []GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindow
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MaxAcdsLowestScaledValue int
    The lowest value to which maximum number of ACDs can be scaled down.
    MemoryPerOracleComputeUnitInGbs int
    The amount of memory (in GBs) enabled per OCPU or ECPU.
    MemorySizeInGbs int
    The memory allocated in GBs.
    NextMaintenanceRunId string
    The OCID of the next maintenance run.
    NodeCount int
    The number of database servers in the cloud VM cluster.
    NonProvisionableAutonomousContainerDatabases int
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    NsgIds []string
    The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    OcpuCount float64
    The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
    OcpusLowestScaledValue int
    The lowest value to which ocpus can be scaled down.
    ProvisionableAutonomousContainerDatabases int
    The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    ProvisionedAutonomousContainerDatabases int
    The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
    ProvisionedCpus float64
    The number of CPUs provisioned in an Autonomous VM Cluster.
    ReclaimableCpus float64
    For Autonomous Databases on Dedicated Exadata Infrastructure:

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    ReservedCpus float64
    The number of CPUs reserved in an Autonomous VM Cluster.
    ScanListenerPortNonTls int
    The SCAN Listener Non TLS port. Default is 1521.
    ScanListenerPortTls int
    The SCAN Listenenr TLS port. Default is 2484.
    Shape string
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    State string
    A filter to return only resources that match the given lifecycle state exactly.
    SubnetId string
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    TimeCreated string
    The date and time that the cloud Autonomous VM cluster was created.
    TimeUpdated string
    The last date and time that the cloud Autonomous VM cluster was updated.
    TotalAutonomousDataStorageInTbs float64
    The total data disk group size for Autonomous Databases, in TBs.
    TotalContainerDatabases int
    The total number of Autonomous Container Databases that can be created with the allocated local storage.
    TotalCpus float64
    The total number of CPUs in an Autonomous VM Cluster.
    autonomousDataStoragePercentage Double
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    autonomousDataStorageSizeInTbs Double
    The data disk group size allocated for Autonomous Databases, in TBs.
    availabilityDomain String
    A filter to return only resources that match the given availability domain exactly.
    availableAutonomousDataStorageSizeInTbs Double
    The data disk group size available for Autonomous Databases, in TBs.
    availableContainerDatabases Integer
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    availableCpus Double
    CPU cores available for allocation to Autonomous Databases.
    cloudExadataInfrastructureId String
    If provided, filters the results for the specified cloud Exadata infrastructure.
    clusterTimeZone String
    The time zone of the Cloud Autonomous VM Cluster.
    compartmentId String
    The compartment OCID.
    computeModel String
    The compute model of the Cloud Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata #Infrastructure for more details.
    cpuCoreCount Integer
    The number of CPU cores on the cloud Autonomous VM cluster.
    cpuCoreCountPerNode Integer
    The number of CPU cores enabled per VM cluster node.
    cpuPercentage Double
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    dataStorageSizeInGb Double
    The total data storage allocated, in gigabytes (GB).
    dataStorageSizeInTbs Double
    The total data storage allocated, in terabytes (TB).
    dbNodeStorageSizeInGbs Integer
    The local node storage allocated in GBs.
    dbServers List<String>
    The list of OCIDs of the Db servers.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description String
    User defined description of the cloud Autonomous VM cluster.
    displayName String
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    domain String
    The domain name for the cloud Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue Double
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    freeformTags Map<String,Object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hostname String
    The hostname for the cloud Autonomous VM cluster.
    id String
    The OCID of the Cloud Autonomous VM cluster.
    isMtlsEnabledVmCluster Boolean
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    lastMaintenanceRunId String
    The OCID of the last maintenance run.
    lastUpdateHistoryEntryId String
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    licenseModel String
    The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    maintenanceWindowDetails List<GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetail>
    maintenanceWindows List<GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindow>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxAcdsLowestScaledValue Integer
    The lowest value to which maximum number of ACDs can be scaled down.
    memoryPerOracleComputeUnitInGbs Integer
    The amount of memory (in GBs) enabled per OCPU or ECPU.
    memorySizeInGbs Integer
    The memory allocated in GBs.
    nextMaintenanceRunId String
    The OCID of the next maintenance run.
    nodeCount Integer
    The number of database servers in the cloud VM cluster.
    nonProvisionableAutonomousContainerDatabases Integer
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    nsgIds List<String>
    The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpuCount Double
    The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
    ocpusLowestScaledValue Integer
    The lowest value to which ocpus can be scaled down.
    provisionableAutonomousContainerDatabases Integer
    The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    provisionedAutonomousContainerDatabases Integer
    The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
    provisionedCpus Double
    The number of CPUs provisioned in an Autonomous VM Cluster.
    reclaimableCpus Double
    For Autonomous Databases on Dedicated Exadata Infrastructure:

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    reservedCpus Double
    The number of CPUs reserved in an Autonomous VM Cluster.
    scanListenerPortNonTls Integer
    The SCAN Listener Non TLS port. Default is 1521.
    scanListenerPortTls Integer
    The SCAN Listenenr TLS port. Default is 2484.
    shape String
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    state String
    A filter to return only resources that match the given lifecycle state exactly.
    subnetId String
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    timeCreated String
    The date and time that the cloud Autonomous VM cluster was created.
    timeUpdated String
    The last date and time that the cloud Autonomous VM cluster was updated.
    totalAutonomousDataStorageInTbs Double
    The total data disk group size for Autonomous Databases, in TBs.
    totalContainerDatabases Integer
    The total number of Autonomous Container Databases that can be created with the allocated local storage.
    totalCpus Double
    The total number of CPUs in an Autonomous VM Cluster.
    autonomousDataStoragePercentage number
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    autonomousDataStorageSizeInTbs number
    The data disk group size allocated for Autonomous Databases, in TBs.
    availabilityDomain string
    A filter to return only resources that match the given availability domain exactly.
    availableAutonomousDataStorageSizeInTbs number
    The data disk group size available for Autonomous Databases, in TBs.
    availableContainerDatabases number
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    availableCpus number
    CPU cores available for allocation to Autonomous Databases.
    cloudExadataInfrastructureId string
    If provided, filters the results for the specified cloud Exadata infrastructure.
    clusterTimeZone string
    The time zone of the Cloud Autonomous VM Cluster.
    compartmentId string
    The compartment OCID.
    computeModel string
    The compute model of the Cloud Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata #Infrastructure for more details.
    cpuCoreCount number
    The number of CPU cores on the cloud Autonomous VM cluster.
    cpuCoreCountPerNode number
    The number of CPU cores enabled per VM cluster node.
    cpuPercentage number
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    dataStorageSizeInGb number
    The total data storage allocated, in gigabytes (GB).
    dataStorageSizeInTbs number
    The total data storage allocated, in terabytes (TB).
    dbNodeStorageSizeInGbs number
    The local node storage allocated in GBs.
    dbServers string[]
    The list of OCIDs of the Db servers.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description string
    User defined description of the cloud Autonomous VM cluster.
    displayName string
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    domain string
    The domain name for the cloud Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue number
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    freeformTags {[key: string]: any}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hostname string
    The hostname for the cloud Autonomous VM cluster.
    id string
    The OCID of the Cloud Autonomous VM cluster.
    isMtlsEnabledVmCluster boolean
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    lastMaintenanceRunId string
    The OCID of the last maintenance run.
    lastUpdateHistoryEntryId string
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    licenseModel string
    The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    maintenanceWindowDetails GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetail[]
    maintenanceWindows GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindow[]
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxAcdsLowestScaledValue number
    The lowest value to which maximum number of ACDs can be scaled down.
    memoryPerOracleComputeUnitInGbs number
    The amount of memory (in GBs) enabled per OCPU or ECPU.
    memorySizeInGbs number
    The memory allocated in GBs.
    nextMaintenanceRunId string
    The OCID of the next maintenance run.
    nodeCount number
    The number of database servers in the cloud VM cluster.
    nonProvisionableAutonomousContainerDatabases number
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    nsgIds string[]
    The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpuCount number
    The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
    ocpusLowestScaledValue number
    The lowest value to which ocpus can be scaled down.
    provisionableAutonomousContainerDatabases number
    The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    provisionedAutonomousContainerDatabases number
    The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
    provisionedCpus number
    The number of CPUs provisioned in an Autonomous VM Cluster.
    reclaimableCpus number
    For Autonomous Databases on Dedicated Exadata Infrastructure:

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    reservedCpus number
    The number of CPUs reserved in an Autonomous VM Cluster.
    scanListenerPortNonTls number
    The SCAN Listener Non TLS port. Default is 1521.
    scanListenerPortTls number
    The SCAN Listenenr TLS port. Default is 2484.
    shape string
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    state string
    A filter to return only resources that match the given lifecycle state exactly.
    subnetId string
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    timeCreated string
    The date and time that the cloud Autonomous VM cluster was created.
    timeUpdated string
    The last date and time that the cloud Autonomous VM cluster was updated.
    totalAutonomousDataStorageInTbs number
    The total data disk group size for Autonomous Databases, in TBs.
    totalContainerDatabases number
    The total number of Autonomous Container Databases that can be created with the allocated local storage.
    totalCpus number
    The total number of CPUs in an Autonomous VM Cluster.
    autonomous_data_storage_percentage float
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    autonomous_data_storage_size_in_tbs float
    The data disk group size allocated for Autonomous Databases, in TBs.
    availability_domain str
    A filter to return only resources that match the given availability domain exactly.
    available_autonomous_data_storage_size_in_tbs float
    The data disk group size available for Autonomous Databases, in TBs.
    available_container_databases int
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    available_cpus float
    CPU cores available for allocation to Autonomous Databases.
    cloud_exadata_infrastructure_id str
    If provided, filters the results for the specified cloud Exadata infrastructure.
    cluster_time_zone str
    The time zone of the Cloud Autonomous VM Cluster.
    compartment_id str
    The compartment OCID.
    compute_model str
    The compute model of the Cloud Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata #Infrastructure for more details.
    cpu_core_count int
    The number of CPU cores on the cloud Autonomous VM cluster.
    cpu_core_count_per_node int
    The number of CPU cores enabled per VM cluster node.
    cpu_percentage float
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    data_storage_size_in_gb float
    The total data storage allocated, in gigabytes (GB).
    data_storage_size_in_tbs float
    The total data storage allocated, in terabytes (TB).
    db_node_storage_size_in_gbs int
    The local node storage allocated in GBs.
    db_servers Sequence[str]
    The list of OCIDs of the Db servers.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description str
    User defined description of the cloud Autonomous VM cluster.
    display_name str
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    domain str
    The domain name for the cloud Autonomous VM cluster.
    exadata_storage_in_tbs_lowest_scaled_value float
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    freeform_tags Mapping[str, Any]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hostname str
    The hostname for the cloud Autonomous VM cluster.
    id str
    The OCID of the Cloud Autonomous VM cluster.
    is_mtls_enabled_vm_cluster bool
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    last_maintenance_run_id str
    The OCID of the last maintenance run.
    last_update_history_entry_id str
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    license_model str
    The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
    lifecycle_details str
    Additional information about the current lifecycle state.
    maintenance_window_details Sequence[database.GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetail]
    maintenance_windows Sequence[database.GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindow]
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    max_acds_lowest_scaled_value int
    The lowest value to which maximum number of ACDs can be scaled down.
    memory_per_oracle_compute_unit_in_gbs int
    The amount of memory (in GBs) enabled per OCPU or ECPU.
    memory_size_in_gbs int
    The memory allocated in GBs.
    next_maintenance_run_id str
    The OCID of the next maintenance run.
    node_count int
    The number of database servers in the cloud VM cluster.
    non_provisionable_autonomous_container_databases int
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    nsg_ids Sequence[str]
    The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpu_count float
    The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
    ocpus_lowest_scaled_value int
    The lowest value to which ocpus can be scaled down.
    provisionable_autonomous_container_databases int
    The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    provisioned_autonomous_container_databases int
    The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
    provisioned_cpus float
    The number of CPUs provisioned in an Autonomous VM Cluster.
    reclaimable_cpus float
    For Autonomous Databases on Dedicated Exadata Infrastructure:

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    reserved_cpus float
    The number of CPUs reserved in an Autonomous VM Cluster.
    scan_listener_port_non_tls int
    The SCAN Listener Non TLS port. Default is 1521.
    scan_listener_port_tls int
    The SCAN Listenenr TLS port. Default is 2484.
    shape str
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    state str
    A filter to return only resources that match the given lifecycle state exactly.
    subnet_id str
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    time_created str
    The date and time that the cloud Autonomous VM cluster was created.
    time_updated str
    The last date and time that the cloud Autonomous VM cluster was updated.
    total_autonomous_data_storage_in_tbs float
    The total data disk group size for Autonomous Databases, in TBs.
    total_container_databases int
    The total number of Autonomous Container Databases that can be created with the allocated local storage.
    total_cpus float
    The total number of CPUs in an Autonomous VM Cluster.
    autonomousDataStoragePercentage Number
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    autonomousDataStorageSizeInTbs Number
    The data disk group size allocated for Autonomous Databases, in TBs.
    availabilityDomain String
    A filter to return only resources that match the given availability domain exactly.
    availableAutonomousDataStorageSizeInTbs Number
    The data disk group size available for Autonomous Databases, in TBs.
    availableContainerDatabases Number
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    availableCpus Number
    CPU cores available for allocation to Autonomous Databases.
    cloudExadataInfrastructureId String
    If provided, filters the results for the specified cloud Exadata infrastructure.
    clusterTimeZone String
    The time zone of the Cloud Autonomous VM Cluster.
    compartmentId String
    The compartment OCID.
    computeModel String
    The compute model of the Cloud Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy. See Compute Models in Autonomous Database on Dedicated Exadata #Infrastructure for more details.
    cpuCoreCount Number
    The number of CPU cores on the cloud Autonomous VM cluster.
    cpuCoreCountPerNode Number
    The number of CPU cores enabled per VM cluster node.
    cpuPercentage Number
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    dataStorageSizeInGb Number
    The total data storage allocated, in gigabytes (GB).
    dataStorageSizeInTbs Number
    The total data storage allocated, in terabytes (TB).
    dbNodeStorageSizeInGbs Number
    The local node storage allocated in GBs.
    dbServers List<String>
    The list of OCIDs of the Db servers.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description String
    User defined description of the cloud Autonomous VM cluster.
    displayName String
    A filter to return only resources that match the entire display name given. The match is not case sensitive.
    domain String
    The domain name for the cloud Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue Number
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    freeformTags Map<Any>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hostname String
    The hostname for the cloud Autonomous VM cluster.
    id String
    The OCID of the Cloud Autonomous VM cluster.
    isMtlsEnabledVmCluster Boolean
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    lastMaintenanceRunId String
    The OCID of the last maintenance run.
    lastUpdateHistoryEntryId String
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    licenseModel String
    The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    maintenanceWindowDetails List<Property Map>
    maintenanceWindows List<Property Map>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxAcdsLowestScaledValue Number
    The lowest value to which maximum number of ACDs can be scaled down.
    memoryPerOracleComputeUnitInGbs Number
    The amount of memory (in GBs) enabled per OCPU or ECPU.
    memorySizeInGbs Number
    The memory allocated in GBs.
    nextMaintenanceRunId String
    The OCID of the next maintenance run.
    nodeCount Number
    The number of database servers in the cloud VM cluster.
    nonProvisionableAutonomousContainerDatabases Number
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    nsgIds List<String>
    The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpuCount Number
    The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
    ocpusLowestScaledValue Number
    The lowest value to which ocpus can be scaled down.
    provisionableAutonomousContainerDatabases Number
    The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    provisionedAutonomousContainerDatabases Number
    The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
    provisionedCpus Number
    The number of CPUs provisioned in an Autonomous VM Cluster.
    reclaimableCpus Number
    For Autonomous Databases on Dedicated Exadata Infrastructure:

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    reservedCpus Number
    The number of CPUs reserved in an Autonomous VM Cluster.
    scanListenerPortNonTls Number
    The SCAN Listener Non TLS port. Default is 1521.
    scanListenerPortTls Number
    The SCAN Listenenr TLS port. Default is 2484.
    shape String
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    state String
    A filter to return only resources that match the given lifecycle state exactly.
    subnetId String
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    timeCreated String
    The date and time that the cloud Autonomous VM cluster was created.
    timeUpdated String
    The last date and time that the cloud Autonomous VM cluster was updated.
    totalAutonomousDataStorageInTbs Number
    The total data disk group size for Autonomous Databases, in TBs.
    totalContainerDatabases Number
    The total number of Autonomous Container Databases that can be created with the allocated local storage.
    totalCpus Number
    The total number of CPUs in an Autonomous VM Cluster.

    GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindow

    CustomActionTimeoutInMins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    DaysOfWeeks List<GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDaysOfWeek>
    Days during the week when maintenance should be performed.
    HoursOfDays List<int>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    IsCustomActionTimeoutEnabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    If true, enables the monthly patching option.
    LeadTimeInWeeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    Months List<GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowMonth>
    Months during the year when maintenance should be performed.
    PatchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    Preference string
    The maintenance window scheduling preference.
    SkipRus List<bool>
    WeeksOfMonths List<int>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    CustomActionTimeoutInMins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    DaysOfWeeks []GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDaysOfWeek
    Days during the week when maintenance should be performed.
    HoursOfDays []int
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    IsCustomActionTimeoutEnabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    If true, enables the monthly patching option.
    LeadTimeInWeeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    Months []GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowMonth
    Months during the year when maintenance should be performed.
    PatchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    Preference string
    The maintenance window scheduling preference.
    SkipRus []bool
    WeeksOfMonths []int
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins Integer
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks List<GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDaysOfWeek>
    Days during the week when maintenance should be performed.
    hoursOfDays List<Integer>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled Boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks Integer
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months List<GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowMonth>
    Months during the year when maintenance should be performed.
    patchingMode String
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference String
    The maintenance window scheduling preference.
    skipRus List<Boolean>
    weeksOfMonths List<Integer>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins number
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDaysOfWeek[]
    Days during the week when maintenance should be performed.
    hoursOfDays number[]
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks number
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowMonth[]
    Months during the year when maintenance should be performed.
    patchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference string
    The maintenance window scheduling preference.
    skipRus boolean[]
    weeksOfMonths number[]
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    custom_action_timeout_in_mins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    days_of_weeks Sequence[database.GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDaysOfWeek]
    Days during the week when maintenance should be performed.
    hours_of_days Sequence[int]
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    is_custom_action_timeout_enabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    is_monthly_patching_enabled bool
    If true, enables the monthly patching option.
    lead_time_in_weeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months Sequence[database.GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowMonth]
    Months during the year when maintenance should be performed.
    patching_mode str
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference str
    The maintenance window scheduling preference.
    skip_rus Sequence[bool]
    weeks_of_months Sequence[int]
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins Number
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks List<Property Map>
    Days during the week when maintenance should be performed.
    hoursOfDays List<Number>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled Boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks Number
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months List<Property Map>
    Months during the year when maintenance should be performed.
    patchingMode String
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference String
    The maintenance window scheduling preference.
    skipRus List<Boolean>
    weeksOfMonths List<Number>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

    GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDaysOfWeek

    Name string
    Name of the month of the year.
    Name string
    Name of the month of the year.
    name String
    Name of the month of the year.
    name string
    Name of the month of the year.
    name str
    Name of the month of the year.
    name String
    Name of the month of the year.

    GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetail

    CustomActionTimeoutInMins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    DaysOfWeeks List<GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek>
    Days during the week when maintenance should be performed.
    HoursOfDays List<int>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    IsCustomActionTimeoutEnabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    If true, enables the monthly patching option.
    LeadTimeInWeeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    Months List<GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetailMonth>
    Months during the year when maintenance should be performed.
    PatchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    Preference string
    The maintenance window scheduling preference.
    SkipRus List<bool>
    WeeksOfMonths List<int>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    CustomActionTimeoutInMins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    DaysOfWeeks []GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek
    Days during the week when maintenance should be performed.
    HoursOfDays []int
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    IsCustomActionTimeoutEnabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    If true, enables the monthly patching option.
    LeadTimeInWeeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    Months []GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetailMonth
    Months during the year when maintenance should be performed.
    PatchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    Preference string
    The maintenance window scheduling preference.
    SkipRus []bool
    WeeksOfMonths []int
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins Integer
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks List<GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek>
    Days during the week when maintenance should be performed.
    hoursOfDays List<Integer>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled Boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks Integer
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months List<GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetailMonth>
    Months during the year when maintenance should be performed.
    patchingMode String
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference String
    The maintenance window scheduling preference.
    skipRus List<Boolean>
    weeksOfMonths List<Integer>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins number
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek[]
    Days during the week when maintenance should be performed.
    hoursOfDays number[]
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks number
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetailMonth[]
    Months during the year when maintenance should be performed.
    patchingMode string
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference string
    The maintenance window scheduling preference.
    skipRus boolean[]
    weeksOfMonths number[]
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    custom_action_timeout_in_mins int
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    days_of_weeks Sequence[database.GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek]
    Days during the week when maintenance should be performed.
    hours_of_days Sequence[int]
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    is_custom_action_timeout_enabled bool
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    is_monthly_patching_enabled bool
    If true, enables the monthly patching option.
    lead_time_in_weeks int
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months Sequence[database.GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetailMonth]
    Months during the year when maintenance should be performed.
    patching_mode str
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference str
    The maintenance window scheduling preference.
    skip_rus Sequence[bool]
    weeks_of_months Sequence[int]
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins Number
    Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks List<Property Map>
    Days during the week when maintenance should be performed.
    hoursOfDays List<Number>
    The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled Boolean
    If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    If true, enables the monthly patching option.
    leadTimeInWeeks Number
    Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months List<Property Map>
    Months during the year when maintenance should be performed.
    patchingMode String
    Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.
    preference String
    The maintenance window scheduling preference.
    skipRus List<Boolean>
    weeksOfMonths List<Number>
    Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

    GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetailDaysOfWeek

    Name string
    Name of the month of the year.
    Name string
    Name of the month of the year.
    name String
    Name of the month of the year.
    name string
    Name of the month of the year.
    name str
    Name of the month of the year.
    name String
    Name of the month of the year.

    GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowDetailMonth

    Name string
    Name of the month of the year.
    Name string
    Name of the month of the year.
    name String
    Name of the month of the year.
    name string
    Name of the month of the year.
    name str
    Name of the month of the year.
    name String
    Name of the month of the year.

    GetCloudAutonomousVmClustersCloudAutonomousVmClusterMaintenanceWindowMonth

    Name string
    Name of the month of the year.
    Name string
    Name of the month of the year.
    name String
    Name of the month of the year.
    name string
    Name of the month of the year.
    name str
    Name of the month of the year.
    name String
    Name of the month of the year.

    GetCloudAutonomousVmClustersFilter

    Name string
    Name of the month of the year.
    Values List<string>
    Regex bool
    Name string
    Name of the month of the year.
    Values []string
    Regex bool
    name String
    Name of the month of the year.
    values List<String>
    regex Boolean
    name string
    Name of the month of the year.
    values string[]
    regex boolean
    name str
    Name of the month of the year.
    values Sequence[str]
    regex bool
    name String
    Name of the month of the year.
    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 v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi