1. Registry
  2. Packages
  3. AWS
  4. API Docs
  5. odb
  6. getCloudAutonomousVmCluster
Viewing docs for AWS v7.46.0
published on Thursday, Sep 10, 2026 by Pulumi
aws logo aws logo
Viewing docs for AWS v7.46.0
published on Thursday, Sep 10, 2026 by Pulumi

    Data source for managing cloud autonomous vm cluster resource in AWS for Oracle Database@AWS.

    You can find out more about Oracle Database@AWS from User Guide.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = aws.odb.getCloudAutonomousVmCluster({
        id: "example",
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.odb.get_cloud_autonomous_vm_cluster(id="example")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v7/go/aws/odb"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := odb.LookupCloudAutonomousVmCluster(ctx, &odb.LookupCloudAutonomousVmClusterArgs{
    			Id: "example",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Aws.Odb.GetCloudAutonomousVmCluster.Invoke(new()
        {
            Id = "example",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.odb.OdbFunctions;
    import com.pulumi.aws.odb.inputs.GetCloudAutonomousVmClusterArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    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 example = OdbFunctions.getCloudAutonomousVmCluster(GetCloudAutonomousVmClusterArgs.builder()
                .id("example")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: aws:odb:getCloudAutonomousVmCluster
          arguments:
            id: example
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    data "aws_odb_getcloudautonomousvmcluster" "example" {
      id = "example"
    }
    

    Using getCloudAutonomousVmCluster

    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 getCloudAutonomousVmCluster(args: GetCloudAutonomousVmClusterArgs, opts?: InvokeOptions): Promise<GetCloudAutonomousVmClusterResult>
    function getCloudAutonomousVmClusterOutput(args: GetCloudAutonomousVmClusterOutputArgs, opts?: InvokeOutputOptions): Output<GetCloudAutonomousVmClusterResult>
    def get_cloud_autonomous_vm_cluster(id: Optional[str] = None,
                                        region: Optional[str] = None,
                                        opts: Optional[InvokeOptions] = None) -> GetCloudAutonomousVmClusterResult
    def get_cloud_autonomous_vm_cluster_output(id: pulumi.Input[Optional[str]] = None,
                                        region: pulumi.Input[Optional[str]] = None,
                                        opts: Optional[InvokeOutputOptions] = None) -> Output[GetCloudAutonomousVmClusterResult]
    func LookupCloudAutonomousVmCluster(ctx *Context, args *LookupCloudAutonomousVmClusterArgs, opts ...InvokeOption) (*LookupCloudAutonomousVmClusterResult, error)
    func LookupCloudAutonomousVmClusterOutput(ctx *Context, args *LookupCloudAutonomousVmClusterOutputArgs, opts ...InvokeOption) LookupCloudAutonomousVmClusterResultOutput

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

    public static class GetCloudAutonomousVmCluster 
    {
        public static Task<GetCloudAutonomousVmClusterResult> InvokeAsync(GetCloudAutonomousVmClusterArgs args, InvokeOptions? opts = null)
        public static Output<GetCloudAutonomousVmClusterResult> Invoke(GetCloudAutonomousVmClusterInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetCloudAutonomousVmClusterResult> Invoke(GetCloudAutonomousVmClusterInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetCloudAutonomousVmClusterResult> getCloudAutonomousVmCluster(GetCloudAutonomousVmClusterArgs args, InvokeOptions options)
    public static Output<GetCloudAutonomousVmClusterResult> getCloudAutonomousVmCluster(GetCloudAutonomousVmClusterArgs args, InvokeOptions options)
    public static Output<GetCloudAutonomousVmClusterResult> getCloudAutonomousVmCluster(GetCloudAutonomousVmClusterArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: aws:odb/getCloudAutonomousVmCluster:getCloudAutonomousVmCluster
      arguments:
        # arguments dictionary
    data "aws_odb_get_cloud_autonomous_vm_cluster" "name" {
        # arguments
    }

    The following arguments are supported:

    Id string
    Unique identifier of the cloud autonomous vm cluster.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    Id string
    Unique identifier of the cloud autonomous vm cluster.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    id string
    Unique identifier of the cloud autonomous vm cluster.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    id String
    Unique identifier of the cloud autonomous vm cluster.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    id string
    Unique identifier of the cloud autonomous vm cluster.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    id str
    Unique identifier of the cloud autonomous vm cluster.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    id String
    Unique identifier of the cloud autonomous vm cluster.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.

    getCloudAutonomousVmCluster Result

    The following output properties are available:

    Arn string
    ARN for the Exadata infrastructure.
    AutonomousDataStoragePercentage double
    Percentage of data storage currently in use for Autonomous Databases in the Autonomous VM cluster.
    AutonomousDataStorageSizeInTbs double
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB.
    AvailableAutonomousDataStorageSizeInTbs double
    Available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    AvailableContainerDatabases int
    Number of Autonomous CDBs that you can create with the currently available storage.
    AvailableCpus double
    Number of CPU cores available for allocation to Autonomous Databases.
    CloudExadataInfrastructureArn string
    Cloud exadata infrastructure ARN associated with this cloud autonomous VM cluster.
    CloudExadataInfrastructureId string
    Cloud exadata infrastructure id associated with this cloud autonomous VM cluster.
    ComputeModel string
    Compute model of the Autonomous VM cluster: ECPU or OCPU.
    CpuCoreCount int
    Total number of CPU cores in the Autonomous VM cluster.
    CpuCoreCountPerNode int
    Number of CPU cores enabled per node in the Autonomous VM cluster.
    CpuPercentage double
    Percentage of total CPU cores currently in use in the Autonomous VM cluster.
    CreatedAt string
    Date and time when the Autonomous VM cluster was created.
    DataStorageSizeInGbs double
    Total data storage allocated to the Autonomous VM cluster, in GB.
    DataStorageSizeInTbs double
    Total data storage allocated to the Autonomous VM cluster, in TB.
    DbServers List<string>
    List of database servers associated with the Autonomous VM cluster.
    Description string
    User-provided description of the Autonomous VM cluster.
    DisplayName string
    Display name of the Autonomous VM cluster.
    Domain string
    Domain name of the Autonomous VM cluster.
    ExadataStorageInTbsLowestScaledValue double
    Minimum value to which you can scale down the Exadata storage, in TB.
    Hostname string
    Hostname of the Autonomous VM cluster.
    Id string
    IsMtlsEnabledVmCluster bool
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster.
    LicenseModel string
    Oracle license model that applies to the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE.
    MaintenanceWindows List<GetCloudAutonomousVmClusterMaintenanceWindow>
    Maintenance window for the Autonomous VM cluster.
    MaxAcdsLowestScaledValue int
    Minimum value to which you can scale down the maximum number of Autonomous CDBs.
    MemoryPerOracleComputeUnitInGbs int
    Amount of memory allocated per Oracle Compute Unit, in GB.
    MemorySizeInGbs int
    Total amount of memory allocated to the Autonomous VM cluster, in gigabytes (GB).
    NodeCount int
    Number of database server nodes in the Autonomous VM cluster.
    NonProvisionableAutonomousContainerDatabases int
    Number of Autonomous CDBs that can't be provisioned because of resource constraints.
    OciResourceAnchorName string
    Name of the OCI resource anchor associated with this Autonomous VM cluster.
    OciUrl string
    URL for accessing the OCI console page for this Autonomous VM cluster.
    Ocid string
    Oracle Cloud Identifier (OCID) of the Autonomous VM cluster.
    OdbNetworkArn string
    ARN of the ODB network associated with this Autonomous VM cluster.
    OdbNetworkId string
    Unique identifier of the ODB network associated with this Autonomous VM cluster.
    OdbNodeStorageSizeInGbs int
    Local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    PercentProgress double
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    ProvisionableAutonomousContainerDatabases int
    Number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    ProvisionedAutonomousContainerDatabases int
    Number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    ProvisionedCpus double
    Number of CPU cores currently provisioned in the Autonomous VM cluster.
    ReclaimableCpus double
    Number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    Region string
    ReservedCpus double
    Number of CPU cores reserved for system operations and redundancy.
    ScanListenerPortNonTls int
    SCAN listener port for non-TLS (TCP) protocol. The default is 1521.
    ScanListenerPortTls int
    SCAN listener port for TLS (TCP) protocol. The default is 2484.
    Shape string
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    Status string
    Status of the Autonomous VM cluster.
    StatusReason string
    Additional information about the current status of the Autonomous VM cluster.
    Tags Dictionary<string, string>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TimeDatabaseSslCertificateExpires string
    Expiration date and time of the database SSL certificate.
    TimeOrdsCertificateExpires string
    Expiration date and time of the Oracle REST Data Services (ORDS) certificate.
    TimeZone string
    Time zone of the Autonomous VM cluster.
    TotalContainerDatabases int
    Total number of Autonomous Container Databases that can be created with the allocated local storage.
    Arn string
    ARN for the Exadata infrastructure.
    AutonomousDataStoragePercentage float64
    Percentage of data storage currently in use for Autonomous Databases in the Autonomous VM cluster.
    AutonomousDataStorageSizeInTbs float64
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB.
    AvailableAutonomousDataStorageSizeInTbs float64
    Available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    AvailableContainerDatabases int
    Number of Autonomous CDBs that you can create with the currently available storage.
    AvailableCpus float64
    Number of CPU cores available for allocation to Autonomous Databases.
    CloudExadataInfrastructureArn string
    Cloud exadata infrastructure ARN associated with this cloud autonomous VM cluster.
    CloudExadataInfrastructureId string
    Cloud exadata infrastructure id associated with this cloud autonomous VM cluster.
    ComputeModel string
    Compute model of the Autonomous VM cluster: ECPU or OCPU.
    CpuCoreCount int
    Total number of CPU cores in the Autonomous VM cluster.
    CpuCoreCountPerNode int
    Number of CPU cores enabled per node in the Autonomous VM cluster.
    CpuPercentage float64
    Percentage of total CPU cores currently in use in the Autonomous VM cluster.
    CreatedAt string
    Date and time when the Autonomous VM cluster was created.
    DataStorageSizeInGbs float64
    Total data storage allocated to the Autonomous VM cluster, in GB.
    DataStorageSizeInTbs float64
    Total data storage allocated to the Autonomous VM cluster, in TB.
    DbServers []string
    List of database servers associated with the Autonomous VM cluster.
    Description string
    User-provided description of the Autonomous VM cluster.
    DisplayName string
    Display name of the Autonomous VM cluster.
    Domain string
    Domain name of the Autonomous VM cluster.
    ExadataStorageInTbsLowestScaledValue float64
    Minimum value to which you can scale down the Exadata storage, in TB.
    Hostname string
    Hostname of the Autonomous VM cluster.
    Id string
    IsMtlsEnabledVmCluster bool
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster.
    LicenseModel string
    Oracle license model that applies to the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE.
    MaintenanceWindows []GetCloudAutonomousVmClusterMaintenanceWindow
    Maintenance window for the Autonomous VM cluster.
    MaxAcdsLowestScaledValue int
    Minimum value to which you can scale down the maximum number of Autonomous CDBs.
    MemoryPerOracleComputeUnitInGbs int
    Amount of memory allocated per Oracle Compute Unit, in GB.
    MemorySizeInGbs int
    Total amount of memory allocated to the Autonomous VM cluster, in gigabytes (GB).
    NodeCount int
    Number of database server nodes in the Autonomous VM cluster.
    NonProvisionableAutonomousContainerDatabases int
    Number of Autonomous CDBs that can't be provisioned because of resource constraints.
    OciResourceAnchorName string
    Name of the OCI resource anchor associated with this Autonomous VM cluster.
    OciUrl string
    URL for accessing the OCI console page for this Autonomous VM cluster.
    Ocid string
    Oracle Cloud Identifier (OCID) of the Autonomous VM cluster.
    OdbNetworkArn string
    ARN of the ODB network associated with this Autonomous VM cluster.
    OdbNetworkId string
    Unique identifier of the ODB network associated with this Autonomous VM cluster.
    OdbNodeStorageSizeInGbs int
    Local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    PercentProgress float64
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    ProvisionableAutonomousContainerDatabases int
    Number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    ProvisionedAutonomousContainerDatabases int
    Number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    ProvisionedCpus float64
    Number of CPU cores currently provisioned in the Autonomous VM cluster.
    ReclaimableCpus float64
    Number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    Region string
    ReservedCpus float64
    Number of CPU cores reserved for system operations and redundancy.
    ScanListenerPortNonTls int
    SCAN listener port for non-TLS (TCP) protocol. The default is 1521.
    ScanListenerPortTls int
    SCAN listener port for TLS (TCP) protocol. The default is 2484.
    Shape string
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    Status string
    Status of the Autonomous VM cluster.
    StatusReason string
    Additional information about the current status of the Autonomous VM cluster.
    Tags map[string]string
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TimeDatabaseSslCertificateExpires string
    Expiration date and time of the database SSL certificate.
    TimeOrdsCertificateExpires string
    Expiration date and time of the Oracle REST Data Services (ORDS) certificate.
    TimeZone string
    Time zone of the Autonomous VM cluster.
    TotalContainerDatabases int
    Total number of Autonomous Container Databases that can be created with the allocated local storage.
    arn string
    ARN for the Exadata infrastructure.
    autonomous_data_storage_percentage number
    Percentage of data storage currently in use for Autonomous Databases in the Autonomous VM cluster.
    autonomous_data_storage_size_in_tbs number
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB.
    available_autonomous_data_storage_size_in_tbs number
    Available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    available_container_databases number
    Number of Autonomous CDBs that you can create with the currently available storage.
    available_cpus number
    Number of CPU cores available for allocation to Autonomous Databases.
    cloud_exadata_infrastructure_arn string
    Cloud exadata infrastructure ARN associated with this cloud autonomous VM cluster.
    cloud_exadata_infrastructure_id string
    Cloud exadata infrastructure id associated with this cloud autonomous VM cluster.
    compute_model string
    Compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpu_core_count number
    Total number of CPU cores in the Autonomous VM cluster.
    cpu_core_count_per_node number
    Number of CPU cores enabled per node in the Autonomous VM cluster.
    cpu_percentage number
    Percentage of total CPU cores currently in use in the Autonomous VM cluster.
    created_at string
    Date and time when the Autonomous VM cluster was created.
    data_storage_size_in_gbs number
    Total data storage allocated to the Autonomous VM cluster, in GB.
    data_storage_size_in_tbs number
    Total data storage allocated to the Autonomous VM cluster, in TB.
    db_servers list(string)
    List of database servers associated with the Autonomous VM cluster.
    description string
    User-provided description of the Autonomous VM cluster.
    display_name string
    Display name of the Autonomous VM cluster.
    domain string
    Domain name of the Autonomous VM cluster.
    exadata_storage_in_tbs_lowest_scaled_value number
    Minimum value to which you can scale down the Exadata storage, in TB.
    hostname string
    Hostname of the Autonomous VM cluster.
    id string
    is_mtls_enabled_vm_cluster bool
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster.
    license_model string
    Oracle license model that applies to the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE.
    maintenance_windows list(object)
    Maintenance window for the Autonomous VM cluster.
    max_acds_lowest_scaled_value number
    Minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memory_per_oracle_compute_unit_in_gbs number
    Amount of memory allocated per Oracle Compute Unit, in GB.
    memory_size_in_gbs number
    Total amount of memory allocated to the Autonomous VM cluster, in gigabytes (GB).
    node_count number
    Number of database server nodes in the Autonomous VM cluster.
    non_provisionable_autonomous_container_databases number
    Number of Autonomous CDBs that can't be provisioned because of resource constraints.
    oci_resource_anchor_name string
    Name of the OCI resource anchor associated with this Autonomous VM cluster.
    oci_url string
    URL for accessing the OCI console page for this Autonomous VM cluster.
    ocid string
    Oracle Cloud Identifier (OCID) of the Autonomous VM cluster.
    odb_network_arn string
    ARN of the ODB network associated with this Autonomous VM cluster.
    odb_network_id string
    Unique identifier of the ODB network associated with this Autonomous VM cluster.
    odb_node_storage_size_in_gbs number
    Local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    percent_progress number
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    provisionable_autonomous_container_databases number
    Number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    provisioned_autonomous_container_databases number
    Number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    provisioned_cpus number
    Number of CPU cores currently provisioned in the Autonomous VM cluster.
    reclaimable_cpus number
    Number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    region string
    reserved_cpus number
    Number of CPU cores reserved for system operations and redundancy.
    scan_listener_port_non_tls number
    SCAN listener port for non-TLS (TCP) protocol. The default is 1521.
    scan_listener_port_tls number
    SCAN listener port for TLS (TCP) protocol. The default is 2484.
    shape string
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status string
    Status of the Autonomous VM cluster.
    status_reason string
    Additional information about the current status of the Autonomous VM cluster.
    tags map(string)
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    time_database_ssl_certificate_expires string
    Expiration date and time of the database SSL certificate.
    time_ords_certificate_expires string
    Expiration date and time of the Oracle REST Data Services (ORDS) certificate.
    time_zone string
    Time zone of the Autonomous VM cluster.
    total_container_databases number
    Total number of Autonomous Container Databases that can be created with the allocated local storage.
    arn String
    ARN for the Exadata infrastructure.
    autonomousDataStoragePercentage Double
    Percentage of data storage currently in use for Autonomous Databases in the Autonomous VM cluster.
    autonomousDataStorageSizeInTbs Double
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB.
    availableAutonomousDataStorageSizeInTbs Double
    Available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    availableContainerDatabases Integer
    Number of Autonomous CDBs that you can create with the currently available storage.
    availableCpus Double
    Number of CPU cores available for allocation to Autonomous Databases.
    cloudExadataInfrastructureArn String
    Cloud exadata infrastructure ARN associated with this cloud autonomous VM cluster.
    cloudExadataInfrastructureId String
    Cloud exadata infrastructure id associated with this cloud autonomous VM cluster.
    computeModel String
    Compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpuCoreCount Integer
    Total number of CPU cores in the Autonomous VM cluster.
    cpuCoreCountPerNode Integer
    Number of CPU cores enabled per node in the Autonomous VM cluster.
    cpuPercentage Double
    Percentage of total CPU cores currently in use in the Autonomous VM cluster.
    createdAt String
    Date and time when the Autonomous VM cluster was created.
    dataStorageSizeInGbs Double
    Total data storage allocated to the Autonomous VM cluster, in GB.
    dataStorageSizeInTbs Double
    Total data storage allocated to the Autonomous VM cluster, in TB.
    dbServers List<String>
    List of database servers associated with the Autonomous VM cluster.
    description String
    User-provided description of the Autonomous VM cluster.
    displayName String
    Display name of the Autonomous VM cluster.
    domain String
    Domain name of the Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue Double
    Minimum value to which you can scale down the Exadata storage, in TB.
    hostname String
    Hostname of the Autonomous VM cluster.
    id String
    isMtlsEnabledVmCluster Boolean
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster.
    licenseModel String
    Oracle license model that applies to the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE.
    maintenanceWindows List<GetCloudAutonomousVmClusterMaintenanceWindow>
    Maintenance window for the Autonomous VM cluster.
    maxAcdsLowestScaledValue Integer
    Minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memoryPerOracleComputeUnitInGbs Integer
    Amount of memory allocated per Oracle Compute Unit, in GB.
    memorySizeInGbs Integer
    Total amount of memory allocated to the Autonomous VM cluster, in gigabytes (GB).
    nodeCount Integer
    Number of database server nodes in the Autonomous VM cluster.
    nonProvisionableAutonomousContainerDatabases Integer
    Number of Autonomous CDBs that can't be provisioned because of resource constraints.
    ociResourceAnchorName String
    Name of the OCI resource anchor associated with this Autonomous VM cluster.
    ociUrl String
    URL for accessing the OCI console page for this Autonomous VM cluster.
    ocid String
    Oracle Cloud Identifier (OCID) of the Autonomous VM cluster.
    odbNetworkArn String
    ARN of the ODB network associated with this Autonomous VM cluster.
    odbNetworkId String
    Unique identifier of the ODB network associated with this Autonomous VM cluster.
    odbNodeStorageSizeInGbs Integer
    Local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    percentProgress Double
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    provisionableAutonomousContainerDatabases Integer
    Number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    provisionedAutonomousContainerDatabases Integer
    Number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    provisionedCpus Double
    Number of CPU cores currently provisioned in the Autonomous VM cluster.
    reclaimableCpus Double
    Number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    region String
    reservedCpus Double
    Number of CPU cores reserved for system operations and redundancy.
    scanListenerPortNonTls Integer
    SCAN listener port for non-TLS (TCP) protocol. The default is 1521.
    scanListenerPortTls Integer
    SCAN listener port for TLS (TCP) protocol. The default is 2484.
    shape String
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status String
    Status of the Autonomous VM cluster.
    statusReason String
    Additional information about the current status of the Autonomous VM cluster.
    tags Map<String,String>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeDatabaseSslCertificateExpires String
    Expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires String
    Expiration date and time of the Oracle REST Data Services (ORDS) certificate.
    timeZone String
    Time zone of the Autonomous VM cluster.
    totalContainerDatabases Integer
    Total number of Autonomous Container Databases that can be created with the allocated local storage.
    arn string
    ARN for the Exadata infrastructure.
    autonomousDataStoragePercentage number
    Percentage of data storage currently in use for Autonomous Databases in the Autonomous VM cluster.
    autonomousDataStorageSizeInTbs number
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB.
    availableAutonomousDataStorageSizeInTbs number
    Available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    availableContainerDatabases number
    Number of Autonomous CDBs that you can create with the currently available storage.
    availableCpus number
    Number of CPU cores available for allocation to Autonomous Databases.
    cloudExadataInfrastructureArn string
    Cloud exadata infrastructure ARN associated with this cloud autonomous VM cluster.
    cloudExadataInfrastructureId string
    Cloud exadata infrastructure id associated with this cloud autonomous VM cluster.
    computeModel string
    Compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpuCoreCount number
    Total number of CPU cores in the Autonomous VM cluster.
    cpuCoreCountPerNode number
    Number of CPU cores enabled per node in the Autonomous VM cluster.
    cpuPercentage number
    Percentage of total CPU cores currently in use in the Autonomous VM cluster.
    createdAt string
    Date and time when the Autonomous VM cluster was created.
    dataStorageSizeInGbs number
    Total data storage allocated to the Autonomous VM cluster, in GB.
    dataStorageSizeInTbs number
    Total data storage allocated to the Autonomous VM cluster, in TB.
    dbServers string[]
    List of database servers associated with the Autonomous VM cluster.
    description string
    User-provided description of the Autonomous VM cluster.
    displayName string
    Display name of the Autonomous VM cluster.
    domain string
    Domain name of the Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue number
    Minimum value to which you can scale down the Exadata storage, in TB.
    hostname string
    Hostname of the Autonomous VM cluster.
    id string
    isMtlsEnabledVmCluster boolean
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster.
    licenseModel string
    Oracle license model that applies to the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE.
    maintenanceWindows GetCloudAutonomousVmClusterMaintenanceWindow[]
    Maintenance window for the Autonomous VM cluster.
    maxAcdsLowestScaledValue number
    Minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memoryPerOracleComputeUnitInGbs number
    Amount of memory allocated per Oracle Compute Unit, in GB.
    memorySizeInGbs number
    Total amount of memory allocated to the Autonomous VM cluster, in gigabytes (GB).
    nodeCount number
    Number of database server nodes in the Autonomous VM cluster.
    nonProvisionableAutonomousContainerDatabases number
    Number of Autonomous CDBs that can't be provisioned because of resource constraints.
    ociResourceAnchorName string
    Name of the OCI resource anchor associated with this Autonomous VM cluster.
    ociUrl string
    URL for accessing the OCI console page for this Autonomous VM cluster.
    ocid string
    Oracle Cloud Identifier (OCID) of the Autonomous VM cluster.
    odbNetworkArn string
    ARN of the ODB network associated with this Autonomous VM cluster.
    odbNetworkId string
    Unique identifier of the ODB network associated with this Autonomous VM cluster.
    odbNodeStorageSizeInGbs number
    Local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    percentProgress number
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    provisionableAutonomousContainerDatabases number
    Number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    provisionedAutonomousContainerDatabases number
    Number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    provisionedCpus number
    Number of CPU cores currently provisioned in the Autonomous VM cluster.
    reclaimableCpus number
    Number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    region string
    reservedCpus number
    Number of CPU cores reserved for system operations and redundancy.
    scanListenerPortNonTls number
    SCAN listener port for non-TLS (TCP) protocol. The default is 1521.
    scanListenerPortTls number
    SCAN listener port for TLS (TCP) protocol. The default is 2484.
    shape string
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status string
    Status of the Autonomous VM cluster.
    statusReason string
    Additional information about the current status of the Autonomous VM cluster.
    tags {[key: string]: string}
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeDatabaseSslCertificateExpires string
    Expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires string
    Expiration date and time of the Oracle REST Data Services (ORDS) certificate.
    timeZone string
    Time zone of the Autonomous VM cluster.
    totalContainerDatabases number
    Total number of Autonomous Container Databases that can be created with the allocated local storage.
    arn str
    ARN for the Exadata infrastructure.
    autonomous_data_storage_percentage float
    Percentage of data storage currently in use for Autonomous Databases in the Autonomous VM cluster.
    autonomous_data_storage_size_in_tbs float
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB.
    available_autonomous_data_storage_size_in_tbs float
    Available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    available_container_databases int
    Number of Autonomous CDBs that you can create with the currently available storage.
    available_cpus float
    Number of CPU cores available for allocation to Autonomous Databases.
    cloud_exadata_infrastructure_arn str
    Cloud exadata infrastructure ARN associated with this cloud autonomous VM cluster.
    cloud_exadata_infrastructure_id str
    Cloud exadata infrastructure id associated with this cloud autonomous VM cluster.
    compute_model str
    Compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpu_core_count int
    Total number of CPU cores in the Autonomous VM cluster.
    cpu_core_count_per_node int
    Number of CPU cores enabled per node in the Autonomous VM cluster.
    cpu_percentage float
    Percentage of total CPU cores currently in use in the Autonomous VM cluster.
    created_at str
    Date and time when the Autonomous VM cluster was created.
    data_storage_size_in_gbs float
    Total data storage allocated to the Autonomous VM cluster, in GB.
    data_storage_size_in_tbs float
    Total data storage allocated to the Autonomous VM cluster, in TB.
    db_servers Sequence[str]
    List of database servers associated with the Autonomous VM cluster.
    description str
    User-provided description of the Autonomous VM cluster.
    display_name str
    Display name of the Autonomous VM cluster.
    domain str
    Domain name of the Autonomous VM cluster.
    exadata_storage_in_tbs_lowest_scaled_value float
    Minimum value to which you can scale down the Exadata storage, in TB.
    hostname str
    Hostname of the Autonomous VM cluster.
    id str
    is_mtls_enabled_vm_cluster bool
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster.
    license_model str
    Oracle license model that applies to the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE.
    maintenance_windows Sequence[GetCloudAutonomousVmClusterMaintenanceWindow]
    Maintenance window for the Autonomous VM cluster.
    max_acds_lowest_scaled_value int
    Minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memory_per_oracle_compute_unit_in_gbs int
    Amount of memory allocated per Oracle Compute Unit, in GB.
    memory_size_in_gbs int
    Total amount of memory allocated to the Autonomous VM cluster, in gigabytes (GB).
    node_count int
    Number of database server nodes in the Autonomous VM cluster.
    non_provisionable_autonomous_container_databases int
    Number of Autonomous CDBs that can't be provisioned because of resource constraints.
    oci_resource_anchor_name str
    Name of the OCI resource anchor associated with this Autonomous VM cluster.
    oci_url str
    URL for accessing the OCI console page for this Autonomous VM cluster.
    ocid str
    Oracle Cloud Identifier (OCID) of the Autonomous VM cluster.
    odb_network_arn str
    ARN of the ODB network associated with this Autonomous VM cluster.
    odb_network_id str
    Unique identifier of the ODB network associated with this Autonomous VM cluster.
    odb_node_storage_size_in_gbs int
    Local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    percent_progress float
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    provisionable_autonomous_container_databases int
    Number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    provisioned_autonomous_container_databases int
    Number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    provisioned_cpus float
    Number of CPU cores currently provisioned in the Autonomous VM cluster.
    reclaimable_cpus float
    Number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    region str
    reserved_cpus float
    Number of CPU cores reserved for system operations and redundancy.
    scan_listener_port_non_tls int
    SCAN listener port for non-TLS (TCP) protocol. The default is 1521.
    scan_listener_port_tls int
    SCAN listener port for TLS (TCP) protocol. The default is 2484.
    shape str
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status str
    Status of the Autonomous VM cluster.
    status_reason str
    Additional information about the current status of the Autonomous VM cluster.
    tags Mapping[str, str]
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    time_database_ssl_certificate_expires str
    Expiration date and time of the database SSL certificate.
    time_ords_certificate_expires str
    Expiration date and time of the Oracle REST Data Services (ORDS) certificate.
    time_zone str
    Time zone of the Autonomous VM cluster.
    total_container_databases int
    Total number of Autonomous Container Databases that can be created with the allocated local storage.
    arn String
    ARN for the Exadata infrastructure.
    autonomousDataStoragePercentage Number
    Percentage of data storage currently in use for Autonomous Databases in the Autonomous VM cluster.
    autonomousDataStorageSizeInTbs Number
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB.
    availableAutonomousDataStorageSizeInTbs Number
    Available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    availableContainerDatabases Number
    Number of Autonomous CDBs that you can create with the currently available storage.
    availableCpus Number
    Number of CPU cores available for allocation to Autonomous Databases.
    cloudExadataInfrastructureArn String
    Cloud exadata infrastructure ARN associated with this cloud autonomous VM cluster.
    cloudExadataInfrastructureId String
    Cloud exadata infrastructure id associated with this cloud autonomous VM cluster.
    computeModel String
    Compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpuCoreCount Number
    Total number of CPU cores in the Autonomous VM cluster.
    cpuCoreCountPerNode Number
    Number of CPU cores enabled per node in the Autonomous VM cluster.
    cpuPercentage Number
    Percentage of total CPU cores currently in use in the Autonomous VM cluster.
    createdAt String
    Date and time when the Autonomous VM cluster was created.
    dataStorageSizeInGbs Number
    Total data storage allocated to the Autonomous VM cluster, in GB.
    dataStorageSizeInTbs Number
    Total data storage allocated to the Autonomous VM cluster, in TB.
    dbServers List<String>
    List of database servers associated with the Autonomous VM cluster.
    description String
    User-provided description of the Autonomous VM cluster.
    displayName String
    Display name of the Autonomous VM cluster.
    domain String
    Domain name of the Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue Number
    Minimum value to which you can scale down the Exadata storage, in TB.
    hostname String
    Hostname of the Autonomous VM cluster.
    id String
    isMtlsEnabledVmCluster Boolean
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster.
    licenseModel String
    Oracle license model that applies to the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE.
    maintenanceWindows List<Property Map>
    Maintenance window for the Autonomous VM cluster.
    maxAcdsLowestScaledValue Number
    Minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memoryPerOracleComputeUnitInGbs Number
    Amount of memory allocated per Oracle Compute Unit, in GB.
    memorySizeInGbs Number
    Total amount of memory allocated to the Autonomous VM cluster, in gigabytes (GB).
    nodeCount Number
    Number of database server nodes in the Autonomous VM cluster.
    nonProvisionableAutonomousContainerDatabases Number
    Number of Autonomous CDBs that can't be provisioned because of resource constraints.
    ociResourceAnchorName String
    Name of the OCI resource anchor associated with this Autonomous VM cluster.
    ociUrl String
    URL for accessing the OCI console page for this Autonomous VM cluster.
    ocid String
    Oracle Cloud Identifier (OCID) of the Autonomous VM cluster.
    odbNetworkArn String
    ARN of the ODB network associated with this Autonomous VM cluster.
    odbNetworkId String
    Unique identifier of the ODB network associated with this Autonomous VM cluster.
    odbNodeStorageSizeInGbs Number
    Local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    percentProgress Number
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    provisionableAutonomousContainerDatabases Number
    Number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    provisionedAutonomousContainerDatabases Number
    Number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    provisionedCpus Number
    Number of CPU cores currently provisioned in the Autonomous VM cluster.
    reclaimableCpus Number
    Number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    region String
    reservedCpus Number
    Number of CPU cores reserved for system operations and redundancy.
    scanListenerPortNonTls Number
    SCAN listener port for non-TLS (TCP) protocol. The default is 1521.
    scanListenerPortTls Number
    SCAN listener port for TLS (TCP) protocol. The default is 2484.
    shape String
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status String
    Status of the Autonomous VM cluster.
    statusReason String
    Additional information about the current status of the Autonomous VM cluster.
    tags Map<String>
    Map of tags to assign to the exadata infrastructure. If configured with a provider defaultTags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeDatabaseSslCertificateExpires String
    Expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires String
    Expiration date and time of the Oracle REST Data Services (ORDS) certificate.
    timeZone String
    Time zone of the Autonomous VM cluster.
    totalContainerDatabases Number
    Total number of Autonomous Container Databases that can be created with the allocated local storage.

    Supporting Types

    GetCloudAutonomousVmClusterMaintenanceWindow

    GetCloudAutonomousVmClusterMaintenanceWindowDaysOfWeek

    Name string
    Name string
    name string
    name String
    name string
    name str
    name String

    GetCloudAutonomousVmClusterMaintenanceWindowMonth

    Name string
    Name string
    name string
    name String
    name string
    name str
    name String

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo aws logo
    Viewing docs for AWS v7.46.0
    published on Thursday, Sep 10, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial