1. Registry
  2. Packages
  3. AWS
  4. API Docs
  5. odb
  6. CloudAutonomousVmCluster
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

    Resource managing cloud autonomous vm cluster 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 avmcWithMinimumParameters = new aws.odb.CloudAutonomousVmCluster("avmc_with_minimum_parameters", {
        maintenanceWindow: {
            preference: "NO_PREFERENCE",
        },
        cloudExadataInfrastructureId: "<aws_odb_cloud_exadata_infrastructure_id>",
        odbNetworkId: "<aws_odb_network_id>",
        displayName: "my_autonomous_vm_cluster",
        autonomousDataStorageSizeInTbs: 5,
        memoryPerOracleComputeUnitInGbs: 2,
        totalContainerDatabases: 1,
        cpuCoreCountPerNode: 40,
        licenseModel: "LICENSE_INCLUDED",
        dbServers: ["<my_db_server_id>"],
        scanListenerPortTls: 8561,
        scanListenerPortNonTls: 1024,
    });
    const avmcWithAllParams = new aws.odb.CloudAutonomousVmCluster("avmc_with_all_params", {
        maintenanceWindow: {
            daysOfWeeks: [
                {
                    name: "MONDAY",
                },
                {
                    name: "TUESDAY",
                },
            ],
            hoursOfDays: [
                4,
                16,
            ],
            leadTimeInWeeks: 3,
            months: [
                {
                    name: "FEBRUARY",
                },
                {
                    name: "MAY",
                },
                {
                    name: "AUGUST",
                },
                {
                    name: "NOVEMBER",
                },
            ],
            preference: "CUSTOM_PREFERENCE",
            weeksOfMonths: [
                2,
                4,
            ],
        },
        description: "my first avmc",
        timeZone: "UTC",
        cloudExadataInfrastructureId: "<aws_odb_cloud_exadata_infrastructure_id>",
        odbNetworkId: "<aws_odb_network_id>",
        displayName: "my_autonomous_vm_cluster",
        autonomousDataStorageSizeInTbs: 5,
        memoryPerOracleComputeUnitInGbs: 2,
        totalContainerDatabases: 1,
        cpuCoreCountPerNode: 40,
        licenseModel: "LICENSE_INCLUDED",
        dbServers: [
            "<my_db_server_1>",
            "<my_db_server_2>",
        ],
        scanListenerPortTls: 8561,
        scanListenerPortNonTls: 1024,
        tags: {
            env: "dev",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    avmc_with_minimum_parameters = aws.odb.CloudAutonomousVmCluster("avmc_with_minimum_parameters",
        maintenance_window={
            "preference": "NO_PREFERENCE",
        },
        cloud_exadata_infrastructure_id="<aws_odb_cloud_exadata_infrastructure_id>",
        odb_network_id="<aws_odb_network_id>",
        display_name="my_autonomous_vm_cluster",
        autonomous_data_storage_size_in_tbs=float(5),
        memory_per_oracle_compute_unit_in_gbs=2,
        total_container_databases=1,
        cpu_core_count_per_node=40,
        license_model="LICENSE_INCLUDED",
        db_servers=["<my_db_server_id>"],
        scan_listener_port_tls=8561,
        scan_listener_port_non_tls=1024)
    avmc_with_all_params = aws.odb.CloudAutonomousVmCluster("avmc_with_all_params",
        maintenance_window={
            "days_of_weeks": [
                {
                    "name": "MONDAY",
                },
                {
                    "name": "TUESDAY",
                },
            ],
            "hours_of_days": [
                4,
                16,
            ],
            "lead_time_in_weeks": 3,
            "months": [
                {
                    "name": "FEBRUARY",
                },
                {
                    "name": "MAY",
                },
                {
                    "name": "AUGUST",
                },
                {
                    "name": "NOVEMBER",
                },
            ],
            "preference": "CUSTOM_PREFERENCE",
            "weeks_of_months": [
                2,
                4,
            ],
        },
        description="my first avmc",
        time_zone="UTC",
        cloud_exadata_infrastructure_id="<aws_odb_cloud_exadata_infrastructure_id>",
        odb_network_id="<aws_odb_network_id>",
        display_name="my_autonomous_vm_cluster",
        autonomous_data_storage_size_in_tbs=float(5),
        memory_per_oracle_compute_unit_in_gbs=2,
        total_container_databases=1,
        cpu_core_count_per_node=40,
        license_model="LICENSE_INCLUDED",
        db_servers=[
            "<my_db_server_1>",
            "<my_db_server_2>",
        ],
        scan_listener_port_tls=8561,
        scan_listener_port_non_tls=1024,
        tags={
            "env": "dev",
        })
    
    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.NewCloudAutonomousVmCluster(ctx, "avmc_with_minimum_parameters", &odb.CloudAutonomousVmClusterArgs{
    			MaintenanceWindow: &odb.CloudAutonomousVmClusterMaintenanceWindowArgs{
    				Preference: pulumi.String("NO_PREFERENCE"),
    			},
    			CloudExadataInfrastructureId:    pulumi.String("<aws_odb_cloud_exadata_infrastructure_id>"),
    			OdbNetworkId:                    pulumi.String("<aws_odb_network_id>"),
    			DisplayName:                     pulumi.String("my_autonomous_vm_cluster"),
    			AutonomousDataStorageSizeInTbs:  pulumi.Float64(5),
    			MemoryPerOracleComputeUnitInGbs: pulumi.Int(2),
    			TotalContainerDatabases:         pulumi.Int(1),
    			CpuCoreCountPerNode:             pulumi.Int(40),
    			LicenseModel:                    pulumi.String("LICENSE_INCLUDED"),
    			DbServers: pulumi.StringArray{
    				pulumi.String("<my_db_server_id>"),
    			},
    			ScanListenerPortTls:    pulumi.Int(8561),
    			ScanListenerPortNonTls: pulumi.Int(1024),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = odb.NewCloudAutonomousVmCluster(ctx, "avmc_with_all_params", &odb.CloudAutonomousVmClusterArgs{
    			MaintenanceWindow: &odb.CloudAutonomousVmClusterMaintenanceWindowArgs{
    				DaysOfWeeks: odb.CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArray{
    					&odb.CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs{
    						Name: pulumi.String("MONDAY"),
    					},
    					&odb.CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs{
    						Name: pulumi.String("TUESDAY"),
    					},
    				},
    				HoursOfDays: pulumi.IntArray{
    					pulumi.Int(4),
    					pulumi.Int(16),
    				},
    				LeadTimeInWeeks: pulumi.Int(3),
    				Months: odb.CloudAutonomousVmClusterMaintenanceWindowMonthArray{
    					&odb.CloudAutonomousVmClusterMaintenanceWindowMonthArgs{
    						Name: pulumi.String("FEBRUARY"),
    					},
    					&odb.CloudAutonomousVmClusterMaintenanceWindowMonthArgs{
    						Name: pulumi.String("MAY"),
    					},
    					&odb.CloudAutonomousVmClusterMaintenanceWindowMonthArgs{
    						Name: pulumi.String("AUGUST"),
    					},
    					&odb.CloudAutonomousVmClusterMaintenanceWindowMonthArgs{
    						Name: pulumi.String("NOVEMBER"),
    					},
    				},
    				Preference: pulumi.String("CUSTOM_PREFERENCE"),
    				WeeksOfMonths: pulumi.IntArray{
    					pulumi.Int(2),
    					pulumi.Int(4),
    				},
    			},
    			Description:                     pulumi.String("my first avmc"),
    			TimeZone:                        pulumi.String("UTC"),
    			CloudExadataInfrastructureId:    pulumi.String("<aws_odb_cloud_exadata_infrastructure_id>"),
    			OdbNetworkId:                    pulumi.String("<aws_odb_network_id>"),
    			DisplayName:                     pulumi.String("my_autonomous_vm_cluster"),
    			AutonomousDataStorageSizeInTbs:  pulumi.Float64(5),
    			MemoryPerOracleComputeUnitInGbs: pulumi.Int(2),
    			TotalContainerDatabases:         pulumi.Int(1),
    			CpuCoreCountPerNode:             pulumi.Int(40),
    			LicenseModel:                    pulumi.String("LICENSE_INCLUDED"),
    			DbServers: pulumi.StringArray{
    				pulumi.String("<my_db_server_1>"),
    				pulumi.String("<my_db_server_2>"),
    			},
    			ScanListenerPortTls:    pulumi.Int(8561),
    			ScanListenerPortNonTls: pulumi.Int(1024),
    			Tags: pulumi.StringMap{
    				"env": pulumi.String("dev"),
    			},
    		})
    		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 avmcWithMinimumParameters = new Aws.Odb.CloudAutonomousVmCluster("avmc_with_minimum_parameters", new()
        {
            MaintenanceWindow = new Aws.Odb.Inputs.CloudAutonomousVmClusterMaintenanceWindowArgs
            {
                Preference = "NO_PREFERENCE",
            },
            CloudExadataInfrastructureId = "<aws_odb_cloud_exadata_infrastructure_id>",
            OdbNetworkId = "<aws_odb_network_id>",
            DisplayName = "my_autonomous_vm_cluster",
            AutonomousDataStorageSizeInTbs = 5,
            MemoryPerOracleComputeUnitInGbs = 2,
            TotalContainerDatabases = 1,
            CpuCoreCountPerNode = 40,
            LicenseModel = "LICENSE_INCLUDED",
            DbServers = new[]
            {
                "<my_db_server_id>",
            },
            ScanListenerPortTls = 8561,
            ScanListenerPortNonTls = 1024,
        });
    
        var avmcWithAllParams = new Aws.Odb.CloudAutonomousVmCluster("avmc_with_all_params", new()
        {
            MaintenanceWindow = new Aws.Odb.Inputs.CloudAutonomousVmClusterMaintenanceWindowArgs
            {
                DaysOfWeeks = new[]
                {
                    new Aws.Odb.Inputs.CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs
                    {
                        Name = "MONDAY",
                    },
                    new Aws.Odb.Inputs.CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs
                    {
                        Name = "TUESDAY",
                    },
                },
                HoursOfDays = new[]
                {
                    4,
                    16,
                },
                LeadTimeInWeeks = 3,
                Months = new[]
                {
                    new Aws.Odb.Inputs.CloudAutonomousVmClusterMaintenanceWindowMonthArgs
                    {
                        Name = "FEBRUARY",
                    },
                    new Aws.Odb.Inputs.CloudAutonomousVmClusterMaintenanceWindowMonthArgs
                    {
                        Name = "MAY",
                    },
                    new Aws.Odb.Inputs.CloudAutonomousVmClusterMaintenanceWindowMonthArgs
                    {
                        Name = "AUGUST",
                    },
                    new Aws.Odb.Inputs.CloudAutonomousVmClusterMaintenanceWindowMonthArgs
                    {
                        Name = "NOVEMBER",
                    },
                },
                Preference = "CUSTOM_PREFERENCE",
                WeeksOfMonths = new[]
                {
                    2,
                    4,
                },
            },
            Description = "my first avmc",
            TimeZone = "UTC",
            CloudExadataInfrastructureId = "<aws_odb_cloud_exadata_infrastructure_id>",
            OdbNetworkId = "<aws_odb_network_id>",
            DisplayName = "my_autonomous_vm_cluster",
            AutonomousDataStorageSizeInTbs = 5,
            MemoryPerOracleComputeUnitInGbs = 2,
            TotalContainerDatabases = 1,
            CpuCoreCountPerNode = 40,
            LicenseModel = "LICENSE_INCLUDED",
            DbServers = new[]
            {
                "<my_db_server_1>",
                "<my_db_server_2>",
            },
            ScanListenerPortTls = 8561,
            ScanListenerPortNonTls = 1024,
            Tags = 
            {
                { "env", "dev" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.odb.CloudAutonomousVmCluster;
    import com.pulumi.aws.odb.CloudAutonomousVmClusterArgs;
    import com.pulumi.aws.odb.inputs.CloudAutonomousVmClusterMaintenanceWindowArgs;
    import com.pulumi.aws.odb.inputs.CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs;
    import com.pulumi.aws.odb.inputs.CloudAutonomousVmClusterMaintenanceWindowMonthArgs;
    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) {
            var avmcWithMinimumParameters = new CloudAutonomousVmCluster("avmcWithMinimumParameters", CloudAutonomousVmClusterArgs.builder()
                .maintenanceWindow(CloudAutonomousVmClusterMaintenanceWindowArgs.builder()
                    .preference("NO_PREFERENCE")
                    .build())
                .cloudExadataInfrastructureId("<aws_odb_cloud_exadata_infrastructure_id>")
                .odbNetworkId("<aws_odb_network_id>")
                .displayName("my_autonomous_vm_cluster")
                .autonomousDataStorageSizeInTbs(5.0)
                .memoryPerOracleComputeUnitInGbs(2)
                .totalContainerDatabases(1)
                .cpuCoreCountPerNode(40)
                .licenseModel("LICENSE_INCLUDED")
                .dbServers("<my_db_server_id>")
                .scanListenerPortTls(8561)
                .scanListenerPortNonTls(1024)
                .build());
    
            var avmcWithAllParams = new CloudAutonomousVmCluster("avmcWithAllParams", CloudAutonomousVmClusterArgs.builder()
                .maintenanceWindow(CloudAutonomousVmClusterMaintenanceWindowArgs.builder()
                    .daysOfWeeks(                
                        CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs.builder()
                            .name("MONDAY")
                            .build(),
                        CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs.builder()
                            .name("TUESDAY")
                            .build())
                    .hoursOfDays(                
                        4,
                        16)
                    .leadTimeInWeeks(3)
                    .months(                
                        CloudAutonomousVmClusterMaintenanceWindowMonthArgs.builder()
                            .name("FEBRUARY")
                            .build(),
                        CloudAutonomousVmClusterMaintenanceWindowMonthArgs.builder()
                            .name("MAY")
                            .build(),
                        CloudAutonomousVmClusterMaintenanceWindowMonthArgs.builder()
                            .name("AUGUST")
                            .build(),
                        CloudAutonomousVmClusterMaintenanceWindowMonthArgs.builder()
                            .name("NOVEMBER")
                            .build())
                    .preference("CUSTOM_PREFERENCE")
                    .weeksOfMonths(                
                        2,
                        4)
                    .build())
                .description("my first avmc")
                .timeZone("UTC")
                .cloudExadataInfrastructureId("<aws_odb_cloud_exadata_infrastructure_id>")
                .odbNetworkId("<aws_odb_network_id>")
                .displayName("my_autonomous_vm_cluster")
                .autonomousDataStorageSizeInTbs(5.0)
                .memoryPerOracleComputeUnitInGbs(2)
                .totalContainerDatabases(1)
                .cpuCoreCountPerNode(40)
                .licenseModel("LICENSE_INCLUDED")
                .dbServers(            
                    "<my_db_server_1>",
                    "<my_db_server_2>")
                .scanListenerPortTls(8561)
                .scanListenerPortNonTls(1024)
                .tags(Map.of("env", "dev"))
                .build());
    
        }
    }
    
    resources:
      avmcWithMinimumParameters:
        type: aws:odb:CloudAutonomousVmCluster
        name: avmc_with_minimum_parameters
        properties:
          maintenanceWindow:
            preference: NO_PREFERENCE
          cloudExadataInfrastructureId: <aws_odb_cloud_exadata_infrastructure_id>
          odbNetworkId: <aws_odb_network_id>
          displayName: my_autonomous_vm_cluster
          autonomousDataStorageSizeInTbs: 5
          memoryPerOracleComputeUnitInGbs: 2
          totalContainerDatabases: 1
          cpuCoreCountPerNode: 40
          licenseModel: LICENSE_INCLUDED
          dbServers:
            - <my_db_server_id>
          scanListenerPortTls: 8561
          scanListenerPortNonTls: 1024
      avmcWithAllParams:
        type: aws:odb:CloudAutonomousVmCluster
        name: avmc_with_all_params
        properties:
          maintenanceWindow:
            daysOfWeeks:
              - name: MONDAY
              - name: TUESDAY
            hoursOfDays:
              - 4
              - 16
            leadTimeInWeeks: 3
            months:
              - name: FEBRUARY
              - name: MAY
              - name: AUGUST
              - name: NOVEMBER
            preference: CUSTOM_PREFERENCE
            weeksOfMonths:
              - 2
              - 4
          description: my first avmc
          timeZone: UTC
          cloudExadataInfrastructureId: <aws_odb_cloud_exadata_infrastructure_id>
          odbNetworkId: <aws_odb_network_id>
          displayName: my_autonomous_vm_cluster
          autonomousDataStorageSizeInTbs: 5
          memoryPerOracleComputeUnitInGbs: 2
          totalContainerDatabases: 1
          cpuCoreCountPerNode: 40
          licenseModel: LICENSE_INCLUDED
          dbServers:
            - <my_db_server_1>
            - <my_db_server_2>
          scanListenerPortTls: 8561
          scanListenerPortNonTls: 1024
          tags:
            env: dev
    
    pulumi {
      required_providers {
        aws = {
          source = "pulumi/aws"
        }
      }
    }
    
    resource "aws_odb_cloudautonomousvmcluster" "avmc_with_minimum_parameters" {
      maintenance_window = {
        preference = "NO_PREFERENCE"
      }
      cloud_exadata_infrastructure_id       = "<aws_odb_cloud_exadata_infrastructure_id>"
      odb_network_id                        = "<aws_odb_network_id>"
      display_name                          = "my_autonomous_vm_cluster"
      autonomous_data_storage_size_in_tbs   = 5
      memory_per_oracle_compute_unit_in_gbs = 2
      total_container_databases             = 1
      cpu_core_count_per_node               = 40
      license_model                         = "LICENSE_INCLUDED"
      db_servers                            = ["<my_db_server_id>"]
      scan_listener_port_tls                = 8561
      scan_listener_port_non_tls            = 1024
    }
    resource "aws_odb_cloudautonomousvmcluster" "avmc_with_all_params" {
      maintenance_window = {
        days_of_weeks = [{
          "name" = "MONDAY"
          }, {
          "name" = "TUESDAY"
        }]
        hours_of_days      = [4, 16]
        lead_time_in_weeks = 3
        months = [{
          "name" = "FEBRUARY"
          }, {
          "name" = "MAY"
          }, {
          "name" = "AUGUST"
          }, {
          "name" = "NOVEMBER"
        }]
        preference      = "CUSTOM_PREFERENCE"
        weeks_of_months = [2, 4]
      }
      description                           = "my first avmc"
      time_zone                             = "UTC"
      cloud_exadata_infrastructure_id       = "<aws_odb_cloud_exadata_infrastructure_id>"
      odb_network_id                        = "<aws_odb_network_id>"
      display_name                          = "my_autonomous_vm_cluster"
      autonomous_data_storage_size_in_tbs   = 5
      memory_per_oracle_compute_unit_in_gbs = 2
      total_container_databases             = 1
      cpu_core_count_per_node               = 40
      license_model                         = "LICENSE_INCLUDED"
      db_servers                            = ["<my_db_server_1>", "<my_db_server_2>"]
      scan_listener_port_tls                = 8561
      scan_listener_port_non_tls            = 1024
      tags = {
        "env" = "dev"
      }
    }
    

    Create CloudAutonomousVmCluster Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CloudAutonomousVmCluster(name: string, args: CloudAutonomousVmClusterArgs, opts?: CustomResourceOptions);
    @overload
    def CloudAutonomousVmCluster(resource_name: str,
                                 args: CloudAutonomousVmClusterArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudAutonomousVmCluster(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 scan_listener_port_tls: Optional[int] = None,
                                 memory_per_oracle_compute_unit_in_gbs: Optional[int] = None,
                                 total_container_databases: Optional[int] = None,
                                 cpu_core_count_per_node: Optional[int] = None,
                                 db_servers: Optional[Sequence[str]] = None,
                                 autonomous_data_storage_size_in_tbs: Optional[float] = None,
                                 display_name: Optional[str] = None,
                                 scan_listener_port_non_tls: Optional[int] = None,
                                 maintenance_window: Optional[CloudAutonomousVmClusterMaintenanceWindowArgs] = None,
                                 cloud_exadata_infrastructure_arn: Optional[str] = None,
                                 odb_network_id: Optional[str] = None,
                                 odb_network_arn: Optional[str] = None,
                                 license_model: Optional[str] = None,
                                 region: Optional[str] = None,
                                 is_mtls_enabled_vm_cluster: Optional[bool] = None,
                                 description: Optional[str] = None,
                                 tags: Optional[Mapping[str, str]] = None,
                                 time_zone: Optional[str] = None,
                                 timeouts: Optional[CloudAutonomousVmClusterTimeoutsArgs] = None,
                                 cloud_exadata_infrastructure_id: Optional[str] = None)
    func NewCloudAutonomousVmCluster(ctx *Context, name string, args CloudAutonomousVmClusterArgs, opts ...ResourceOption) (*CloudAutonomousVmCluster, error)
    public CloudAutonomousVmCluster(string name, CloudAutonomousVmClusterArgs args, CustomResourceOptions? opts = null)
    public CloudAutonomousVmCluster(String name, CloudAutonomousVmClusterArgs args)
    public CloudAutonomousVmCluster(String name, CloudAutonomousVmClusterArgs args, CustomResourceOptions options)
    
    type: aws:odb:CloudAutonomousVmCluster
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "aws_odb_cloud_autonomous_vm_cluster" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args CloudAutonomousVmClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args CloudAutonomousVmClusterArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args CloudAutonomousVmClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudAutonomousVmClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudAutonomousVmClusterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var cloudAutonomousVmClusterResource = new Aws.Odb.CloudAutonomousVmCluster("cloudAutonomousVmClusterResource", new()
    {
        ScanListenerPortTls = 0,
        MemoryPerOracleComputeUnitInGbs = 0,
        TotalContainerDatabases = 0,
        CpuCoreCountPerNode = 0,
        DbServers = new[]
        {
            "string",
        },
        AutonomousDataStorageSizeInTbs = 0.0,
        DisplayName = "string",
        ScanListenerPortNonTls = 0,
        MaintenanceWindow = new Aws.Odb.Inputs.CloudAutonomousVmClusterMaintenanceWindowArgs
        {
            Preference = "string",
            DaysOfWeeks = new[]
            {
                new Aws.Odb.Inputs.CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs
                {
                    Name = "string",
                },
            },
            HoursOfDays = new[]
            {
                0,
            },
            LeadTimeInWeeks = 0,
            Months = new[]
            {
                new Aws.Odb.Inputs.CloudAutonomousVmClusterMaintenanceWindowMonthArgs
                {
                    Name = "string",
                },
            },
            WeeksOfMonths = new[]
            {
                0,
            },
        },
        CloudExadataInfrastructureArn = "string",
        OdbNetworkId = "string",
        OdbNetworkArn = "string",
        LicenseModel = "string",
        Region = "string",
        IsMtlsEnabledVmCluster = false,
        Description = "string",
        Tags = 
        {
            { "string", "string" },
        },
        TimeZone = "string",
        Timeouts = new Aws.Odb.Inputs.CloudAutonomousVmClusterTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
        CloudExadataInfrastructureId = "string",
    });
    
    example, err := odb.NewCloudAutonomousVmCluster(ctx, "cloudAutonomousVmClusterResource", &odb.CloudAutonomousVmClusterArgs{
    	ScanListenerPortTls:             pulumi.Int(0),
    	MemoryPerOracleComputeUnitInGbs: pulumi.Int(0),
    	TotalContainerDatabases:         pulumi.Int(0),
    	CpuCoreCountPerNode:             pulumi.Int(0),
    	DbServers: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AutonomousDataStorageSizeInTbs: pulumi.Float64(0),
    	DisplayName:                    pulumi.String("string"),
    	ScanListenerPortNonTls:         pulumi.Int(0),
    	MaintenanceWindow: &odb.CloudAutonomousVmClusterMaintenanceWindowArgs{
    		Preference: pulumi.String("string"),
    		DaysOfWeeks: odb.CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArray{
    			&odb.CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs{
    				Name: pulumi.String("string"),
    			},
    		},
    		HoursOfDays: pulumi.IntArray{
    			pulumi.Int(0),
    		},
    		LeadTimeInWeeks: pulumi.Int(0),
    		Months: odb.CloudAutonomousVmClusterMaintenanceWindowMonthArray{
    			&odb.CloudAutonomousVmClusterMaintenanceWindowMonthArgs{
    				Name: pulumi.String("string"),
    			},
    		},
    		WeeksOfMonths: pulumi.IntArray{
    			pulumi.Int(0),
    		},
    	},
    	CloudExadataInfrastructureArn: pulumi.String("string"),
    	OdbNetworkId:                  pulumi.String("string"),
    	OdbNetworkArn:                 pulumi.String("string"),
    	LicenseModel:                  pulumi.String("string"),
    	Region:                        pulumi.String("string"),
    	IsMtlsEnabledVmCluster:        pulumi.Bool(false),
    	Description:                   pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	TimeZone: pulumi.String("string"),
    	Timeouts: &odb.CloudAutonomousVmClusterTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	CloudExadataInfrastructureId: pulumi.String("string"),
    })
    
    resource "aws_odb_cloud_autonomous_vm_cluster" "cloudAutonomousVmClusterResource" {
      lifecycle {
        create_before_destroy = true
      }
      scan_listener_port_tls                = 0
      memory_per_oracle_compute_unit_in_gbs = 0
      total_container_databases             = 0
      cpu_core_count_per_node               = 0
      db_servers                            = ["string"]
      autonomous_data_storage_size_in_tbs   = 0
      display_name                          = "string"
      scan_listener_port_non_tls            = 0
      maintenance_window = {
        preference = "string"
        days_of_weeks = [{
          name = "string"
        }]
        hours_of_days      = [0]
        lead_time_in_weeks = 0
        months = [{
          name = "string"
        }]
        weeks_of_months = [0]
      }
      cloud_exadata_infrastructure_arn = "string"
      odb_network_id                   = "string"
      odb_network_arn                  = "string"
      license_model                    = "string"
      region                           = "string"
      is_mtls_enabled_vm_cluster       = false
      description                      = "string"
      tags = {
        "string" = "string"
      }
      time_zone = "string"
      timeouts = {
        create = "string"
        delete = "string"
        update = "string"
      }
      cloud_exadata_infrastructure_id = "string"
    }
    
    var cloudAutonomousVmClusterResource = new CloudAutonomousVmCluster("cloudAutonomousVmClusterResource", CloudAutonomousVmClusterArgs.builder()
        .scanListenerPortTls(0)
        .memoryPerOracleComputeUnitInGbs(0)
        .totalContainerDatabases(0)
        .cpuCoreCountPerNode(0)
        .dbServers("string")
        .autonomousDataStorageSizeInTbs(0.0)
        .displayName("string")
        .scanListenerPortNonTls(0)
        .maintenanceWindow(CloudAutonomousVmClusterMaintenanceWindowArgs.builder()
            .preference("string")
            .daysOfWeeks(CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs.builder()
                .name("string")
                .build())
            .hoursOfDays(0)
            .leadTimeInWeeks(0)
            .months(CloudAutonomousVmClusterMaintenanceWindowMonthArgs.builder()
                .name("string")
                .build())
            .weeksOfMonths(0)
            .build())
        .cloudExadataInfrastructureArn("string")
        .odbNetworkId("string")
        .odbNetworkArn("string")
        .licenseModel("string")
        .region("string")
        .isMtlsEnabledVmCluster(false)
        .description("string")
        .tags(Map.of("string", "string"))
        .timeZone("string")
        .timeouts(CloudAutonomousVmClusterTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .cloudExadataInfrastructureId("string")
        .build());
    
    cloud_autonomous_vm_cluster_resource = aws.odb.CloudAutonomousVmCluster("cloudAutonomousVmClusterResource",
        scan_listener_port_tls=0,
        memory_per_oracle_compute_unit_in_gbs=0,
        total_container_databases=0,
        cpu_core_count_per_node=0,
        db_servers=["string"],
        autonomous_data_storage_size_in_tbs=float(0),
        display_name="string",
        scan_listener_port_non_tls=0,
        maintenance_window={
            "preference": "string",
            "days_of_weeks": [{
                "name": "string",
            }],
            "hours_of_days": [0],
            "lead_time_in_weeks": 0,
            "months": [{
                "name": "string",
            }],
            "weeks_of_months": [0],
        },
        cloud_exadata_infrastructure_arn="string",
        odb_network_id="string",
        odb_network_arn="string",
        license_model="string",
        region="string",
        is_mtls_enabled_vm_cluster=False,
        description="string",
        tags={
            "string": "string",
        },
        time_zone="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        },
        cloud_exadata_infrastructure_id="string")
    
    const cloudAutonomousVmClusterResource = new aws.odb.CloudAutonomousVmCluster("cloudAutonomousVmClusterResource", {
        scanListenerPortTls: 0,
        memoryPerOracleComputeUnitInGbs: 0,
        totalContainerDatabases: 0,
        cpuCoreCountPerNode: 0,
        dbServers: ["string"],
        autonomousDataStorageSizeInTbs: 0,
        displayName: "string",
        scanListenerPortNonTls: 0,
        maintenanceWindow: {
            preference: "string",
            daysOfWeeks: [{
                name: "string",
            }],
            hoursOfDays: [0],
            leadTimeInWeeks: 0,
            months: [{
                name: "string",
            }],
            weeksOfMonths: [0],
        },
        cloudExadataInfrastructureArn: "string",
        odbNetworkId: "string",
        odbNetworkArn: "string",
        licenseModel: "string",
        region: "string",
        isMtlsEnabledVmCluster: false,
        description: "string",
        tags: {
            string: "string",
        },
        timeZone: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
        cloudExadataInfrastructureId: "string",
    });
    
    type: aws:odb:CloudAutonomousVmCluster
    properties:
        autonomousDataStorageSizeInTbs: 0
        cloudExadataInfrastructureArn: string
        cloudExadataInfrastructureId: string
        cpuCoreCountPerNode: 0
        dbServers:
            - string
        description: string
        displayName: string
        isMtlsEnabledVmCluster: false
        licenseModel: string
        maintenanceWindow:
            daysOfWeeks:
                - name: string
            hoursOfDays:
                - 0
            leadTimeInWeeks: 0
            months:
                - name: string
            preference: string
            weeksOfMonths:
                - 0
        memoryPerOracleComputeUnitInGbs: 0
        odbNetworkArn: string
        odbNetworkId: string
        region: string
        scanListenerPortNonTls: 0
        scanListenerPortTls: 0
        tags:
            string: string
        timeZone: string
        timeouts:
            create: string
            delete: string
            update: string
        totalContainerDatabases: 0
    

    CloudAutonomousVmCluster Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The CloudAutonomousVmCluster resource accepts the following input properties:

    AutonomousDataStorageSizeInTbs double
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB. Changing this will force terraform to create new resource.
    CpuCoreCountPerNode int
    Number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    DbServers List<string>
    Database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    DisplayName string
    Display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    MaintenanceWindow CloudAutonomousVmClusterMaintenanceWindow
    Maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    MemoryPerOracleComputeUnitInGbs int
    Amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    ScanListenerPortNonTls int
    SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    ScanListenerPortTls int
    SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    TotalContainerDatabases int

    Total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    The following arguments are optional:

    CloudExadataInfrastructureArn string
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    CloudExadataInfrastructureId string
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    Description string
    Description of the Autonomous VM cluster.
    IsMtlsEnabledVmCluster bool
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    LicenseModel string
    License model for the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. Changing this will force terraform to create new resource.
    OdbNetworkArn string
    ARN of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    OdbNetworkId string
    Unique identifier of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Changing this will create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    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.
    TimeZone string
    Time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    Timeouts CloudAutonomousVmClusterTimeouts
    AutonomousDataStorageSizeInTbs float64
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB. Changing this will force terraform to create new resource.
    CpuCoreCountPerNode int
    Number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    DbServers []string
    Database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    DisplayName string
    Display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    MaintenanceWindow CloudAutonomousVmClusterMaintenanceWindowArgs
    Maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    MemoryPerOracleComputeUnitInGbs int
    Amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    ScanListenerPortNonTls int
    SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    ScanListenerPortTls int
    SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    TotalContainerDatabases int

    Total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    The following arguments are optional:

    CloudExadataInfrastructureArn string
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    CloudExadataInfrastructureId string
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    Description string
    Description of the Autonomous VM cluster.
    IsMtlsEnabledVmCluster bool
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    LicenseModel string
    License model for the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. Changing this will force terraform to create new resource.
    OdbNetworkArn string
    ARN of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    OdbNetworkId string
    Unique identifier of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Changing this will create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    Region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    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.
    TimeZone string
    Time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    Timeouts CloudAutonomousVmClusterTimeoutsArgs
    autonomous_data_storage_size_in_tbs number
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB. Changing this will force terraform to create new resource.
    cpu_core_count_per_node number
    Number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    db_servers list(string)
    Database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    display_name string
    Display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    maintenance_window object
    Maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    memory_per_oracle_compute_unit_in_gbs number
    Amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    scan_listener_port_non_tls number
    SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    scan_listener_port_tls number
    SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    total_container_databases number

    Total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    The following arguments are optional:

    cloud_exadata_infrastructure_arn string
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    cloud_exadata_infrastructure_id string
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    description string
    Description of the Autonomous VM cluster.
    is_mtls_enabled_vm_cluster bool
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    license_model string
    License model for the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. Changing this will force terraform to create new resource.
    odb_network_arn string
    ARN of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    odb_network_id string
    Unique identifier of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Changing this will create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    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_zone string
    Time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts object
    autonomousDataStorageSizeInTbs Double
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB. Changing this will force terraform to create new resource.
    cpuCoreCountPerNode Integer
    Number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    dbServers List<String>
    Database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    displayName String
    Display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    maintenanceWindow CloudAutonomousVmClusterMaintenanceWindow
    Maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    memoryPerOracleComputeUnitInGbs Integer
    Amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    scanListenerPortNonTls Integer
    SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    scanListenerPortTls Integer
    SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    totalContainerDatabases Integer

    Total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    The following arguments are optional:

    cloudExadataInfrastructureArn String
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    cloudExadataInfrastructureId String
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    description String
    Description of the Autonomous VM cluster.
    isMtlsEnabledVmCluster Boolean
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    licenseModel String
    License model for the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. Changing this will force terraform to create new resource.
    odbNetworkArn String
    ARN of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    odbNetworkId String
    Unique identifier of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Changing this will create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    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.
    timeZone String
    Time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts CloudAutonomousVmClusterTimeouts
    autonomousDataStorageSizeInTbs number
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB. Changing this will force terraform to create new resource.
    cpuCoreCountPerNode number
    Number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    dbServers string[]
    Database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    displayName string
    Display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    maintenanceWindow CloudAutonomousVmClusterMaintenanceWindow
    Maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    memoryPerOracleComputeUnitInGbs number
    Amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    scanListenerPortNonTls number
    SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    scanListenerPortTls number
    SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    totalContainerDatabases number

    Total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    The following arguments are optional:

    cloudExadataInfrastructureArn string
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    cloudExadataInfrastructureId string
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    description string
    Description of the Autonomous VM cluster.
    isMtlsEnabledVmCluster boolean
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    licenseModel string
    License model for the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. Changing this will force terraform to create new resource.
    odbNetworkArn string
    ARN of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    odbNetworkId string
    Unique identifier of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Changing this will create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    region string
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    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.
    timeZone string
    Time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts CloudAutonomousVmClusterTimeouts
    autonomous_data_storage_size_in_tbs float
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB. Changing this will force terraform to create new resource.
    cpu_core_count_per_node int
    Number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    db_servers Sequence[str]
    Database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    display_name str
    Display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    maintenance_window CloudAutonomousVmClusterMaintenanceWindowArgs
    Maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    memory_per_oracle_compute_unit_in_gbs int
    Amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    scan_listener_port_non_tls int
    SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    scan_listener_port_tls int
    SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    total_container_databases int

    Total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    The following arguments are optional:

    cloud_exadata_infrastructure_arn str
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    cloud_exadata_infrastructure_id str
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    description str
    Description of the Autonomous VM cluster.
    is_mtls_enabled_vm_cluster bool
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    license_model str
    License model for the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. Changing this will force terraform to create new resource.
    odb_network_arn str
    ARN of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    odb_network_id str
    Unique identifier of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Changing this will create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    region str
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    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_zone str
    Time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts CloudAutonomousVmClusterTimeoutsArgs
    autonomousDataStorageSizeInTbs Number
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB. Changing this will force terraform to create new resource.
    cpuCoreCountPerNode Number
    Number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    dbServers List<String>
    Database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    displayName String
    Display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    maintenanceWindow Property Map
    Maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    memoryPerOracleComputeUnitInGbs Number
    Amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    scanListenerPortNonTls Number
    SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    scanListenerPortTls Number
    SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    totalContainerDatabases Number

    Total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    The following arguments are optional:

    cloudExadataInfrastructureArn String
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    cloudExadataInfrastructureId String
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    description String
    Description of the Autonomous VM cluster.
    isMtlsEnabledVmCluster Boolean
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    licenseModel String
    License model for the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. Changing this will force terraform to create new resource.
    odbNetworkArn String
    ARN of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    odbNetworkId String
    Unique identifier of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Changing this will create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    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.
    timeZone String
    Time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CloudAutonomousVmCluster resource produces the following output properties:

    Arn string
    ARN for the Exadata infrastructure.
    AutonomousDataStoragePercentage double
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    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.
    ComputeModel string
    Compute model of the Autonomous VM cluster: ECPU or OCPU.
    CpuCoreCount int
    Total number of CPU cores 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.
    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
    The provider-assigned unique ID for this managed resource.
    MaxAcdsLowestScaledValue int
    Minimum value to which you can scale down the maximum number of Autonomous CDBs.
    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.
    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 CPUs provisioned in the Autonomous VM cluster.
    ReclaimableCpus double
    Number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    ReservedCpus double
    Number of CPU cores reserved for system operations and redundancy.
    Shape string
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    Status string
    Status of the Autonomous VM cluster. Possible values include CREATING, AVAILABLE, UPDATING, DELETING, DELETED, FAILED.
    StatusReason string
    Additional information about the current status of the Autonomous VM cluster.
    TagsAll Dictionary<string, string>
    Combined set of user-defined and provider-defined tags.
    TimeDatabaseSslCertificateExpires string
    Expiration date and time of the database SSL certificate.
    TimeOrdsCertificateExpires string
    Expiration date and time of the ORDS certificate.
    Arn string
    ARN for the Exadata infrastructure.
    AutonomousDataStoragePercentage float64
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    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.
    ComputeModel string
    Compute model of the Autonomous VM cluster: ECPU or OCPU.
    CpuCoreCount int
    Total number of CPU cores 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.
    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
    The provider-assigned unique ID for this managed resource.
    MaxAcdsLowestScaledValue int
    Minimum value to which you can scale down the maximum number of Autonomous CDBs.
    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.
    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 CPUs provisioned in the Autonomous VM cluster.
    ReclaimableCpus float64
    Number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    ReservedCpus float64
    Number of CPU cores reserved for system operations and redundancy.
    Shape string
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    Status string
    Status of the Autonomous VM cluster. Possible values include CREATING, AVAILABLE, UPDATING, DELETING, DELETED, FAILED.
    StatusReason string
    Additional information about the current status of the Autonomous VM cluster.
    TagsAll map[string]string
    Combined set of user-defined and provider-defined tags.
    TimeDatabaseSslCertificateExpires string
    Expiration date and time of the database SSL certificate.
    TimeOrdsCertificateExpires string
    Expiration date and time of the ORDS certificate.
    arn string
    ARN for the Exadata infrastructure.
    autonomous_data_storage_percentage number
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    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.
    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_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.
    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
    The provider-assigned unique ID for this managed resource.
    max_acds_lowest_scaled_value number
    Minimum value to which you can scale down the maximum number of Autonomous CDBs.
    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_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 CPUs provisioned in the Autonomous VM cluster.
    reclaimable_cpus number
    Number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    reserved_cpus number
    Number of CPU cores reserved for system operations and redundancy.
    shape string
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status string
    Status of the Autonomous VM cluster. Possible values include CREATING, AVAILABLE, UPDATING, DELETING, DELETED, FAILED.
    status_reason string
    Additional information about the current status of the Autonomous VM cluster.
    tags_all map(string)
    Combined set of user-defined and provider-defined tags.
    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 ORDS certificate.
    arn String
    ARN for the Exadata infrastructure.
    autonomousDataStoragePercentage Double
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    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.
    computeModel String
    Compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpuCoreCount Integer
    Total number of CPU cores 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.
    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
    The provider-assigned unique ID for this managed resource.
    maxAcdsLowestScaledValue Integer
    Minimum value to which you can scale down the maximum number of Autonomous CDBs.
    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.
    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 CPUs provisioned in the Autonomous VM cluster.
    reclaimableCpus Double
    Number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    reservedCpus Double
    Number of CPU cores reserved for system operations and redundancy.
    shape String
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status String
    Status of the Autonomous VM cluster. Possible values include CREATING, AVAILABLE, UPDATING, DELETING, DELETED, FAILED.
    statusReason String
    Additional information about the current status of the Autonomous VM cluster.
    tagsAll Map<String,String>
    Combined set of user-defined and provider-defined tags.
    timeDatabaseSslCertificateExpires String
    Expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires String
    Expiration date and time of the ORDS certificate.
    arn string
    ARN for the Exadata infrastructure.
    autonomousDataStoragePercentage number
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    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.
    computeModel string
    Compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpuCoreCount number
    Total number of CPU cores 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.
    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
    The provider-assigned unique ID for this managed resource.
    maxAcdsLowestScaledValue number
    Minimum value to which you can scale down the maximum number of Autonomous CDBs.
    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.
    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 CPUs provisioned in the Autonomous VM cluster.
    reclaimableCpus number
    Number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    reservedCpus number
    Number of CPU cores reserved for system operations and redundancy.
    shape string
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status string
    Status of the Autonomous VM cluster. Possible values include CREATING, AVAILABLE, UPDATING, DELETING, DELETED, FAILED.
    statusReason string
    Additional information about the current status of the Autonomous VM cluster.
    tagsAll {[key: string]: string}
    Combined set of user-defined and provider-defined tags.
    timeDatabaseSslCertificateExpires string
    Expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires string
    Expiration date and time of the ORDS certificate.
    arn str
    ARN for the Exadata infrastructure.
    autonomous_data_storage_percentage float
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    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.
    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_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.
    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
    The provider-assigned unique ID for this managed resource.
    max_acds_lowest_scaled_value int
    Minimum value to which you can scale down the maximum number of Autonomous CDBs.
    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_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 CPUs provisioned in the Autonomous VM cluster.
    reclaimable_cpus float
    Number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    reserved_cpus float
    Number of CPU cores reserved for system operations and redundancy.
    shape str
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status str
    Status of the Autonomous VM cluster. Possible values include CREATING, AVAILABLE, UPDATING, DELETING, DELETED, FAILED.
    status_reason str
    Additional information about the current status of the Autonomous VM cluster.
    tags_all Mapping[str, str]
    Combined set of user-defined and provider-defined tags.
    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 ORDS certificate.
    arn String
    ARN for the Exadata infrastructure.
    autonomousDataStoragePercentage Number
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    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.
    computeModel String
    Compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpuCoreCount Number
    Total number of CPU cores 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.
    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
    The provider-assigned unique ID for this managed resource.
    maxAcdsLowestScaledValue Number
    Minimum value to which you can scale down the maximum number of Autonomous CDBs.
    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.
    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 CPUs provisioned in the Autonomous VM cluster.
    reclaimableCpus Number
    Number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    reservedCpus Number
    Number of CPU cores reserved for system operations and redundancy.
    shape String
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status String
    Status of the Autonomous VM cluster. Possible values include CREATING, AVAILABLE, UPDATING, DELETING, DELETED, FAILED.
    statusReason String
    Additional information about the current status of the Autonomous VM cluster.
    tagsAll Map<String>
    Combined set of user-defined and provider-defined tags.
    timeDatabaseSslCertificateExpires String
    Expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires String
    Expiration date and time of the ORDS certificate.

    Look up Existing CloudAutonomousVmCluster Resource

    Get an existing CloudAutonomousVmCluster resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: CloudAutonomousVmClusterState, opts?: CustomResourceOptions): CloudAutonomousVmCluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            autonomous_data_storage_percentage: Optional[float] = None,
            autonomous_data_storage_size_in_tbs: Optional[float] = None,
            available_autonomous_data_storage_size_in_tbs: Optional[float] = None,
            available_container_databases: Optional[int] = None,
            available_cpus: Optional[float] = None,
            cloud_exadata_infrastructure_arn: Optional[str] = None,
            cloud_exadata_infrastructure_id: Optional[str] = None,
            compute_model: Optional[str] = None,
            cpu_core_count: Optional[int] = None,
            cpu_core_count_per_node: Optional[int] = None,
            cpu_percentage: Optional[float] = None,
            created_at: Optional[str] = None,
            data_storage_size_in_gbs: Optional[float] = None,
            data_storage_size_in_tbs: Optional[float] = None,
            db_servers: Optional[Sequence[str]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            domain: Optional[str] = None,
            exadata_storage_in_tbs_lowest_scaled_value: Optional[float] = None,
            hostname: Optional[str] = None,
            is_mtls_enabled_vm_cluster: Optional[bool] = None,
            license_model: Optional[str] = None,
            maintenance_window: Optional[CloudAutonomousVmClusterMaintenanceWindowArgs] = None,
            max_acds_lowest_scaled_value: Optional[int] = None,
            memory_per_oracle_compute_unit_in_gbs: Optional[int] = None,
            memory_size_in_gbs: Optional[int] = None,
            node_count: Optional[int] = None,
            non_provisionable_autonomous_container_databases: Optional[int] = None,
            oci_resource_anchor_name: Optional[str] = None,
            oci_url: Optional[str] = None,
            ocid: Optional[str] = None,
            odb_network_arn: Optional[str] = None,
            odb_network_id: Optional[str] = None,
            odb_node_storage_size_in_gbs: Optional[int] = None,
            percent_progress: Optional[float] = None,
            provisionable_autonomous_container_databases: Optional[int] = None,
            provisioned_autonomous_container_databases: Optional[int] = None,
            provisioned_cpus: Optional[float] = None,
            reclaimable_cpus: Optional[float] = None,
            region: Optional[str] = None,
            reserved_cpus: Optional[float] = None,
            scan_listener_port_non_tls: Optional[int] = None,
            scan_listener_port_tls: Optional[int] = None,
            shape: Optional[str] = None,
            status: Optional[str] = None,
            status_reason: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            time_database_ssl_certificate_expires: Optional[str] = None,
            time_ords_certificate_expires: Optional[str] = None,
            time_zone: Optional[str] = None,
            timeouts: Optional[CloudAutonomousVmClusterTimeoutsArgs] = None,
            total_container_databases: Optional[int] = None) -> CloudAutonomousVmCluster
    func GetCloudAutonomousVmCluster(ctx *Context, name string, id IDInput, state *CloudAutonomousVmClusterState, opts ...ResourceOption) (*CloudAutonomousVmCluster, error)
    public static CloudAutonomousVmCluster Get(string name, Input<string> id, CloudAutonomousVmClusterState? state, CustomResourceOptions? opts = null)
    public static CloudAutonomousVmCluster get(String name, Output<String> id, CloudAutonomousVmClusterState state, CustomResourceOptions options)
    resources:  _:    type: aws:odb:CloudAutonomousVmCluster    get:      id: ${id}
    import {
      to = aws_odb_cloud_autonomous_vm_cluster.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Arn string
    ARN for the Exadata infrastructure.
    AutonomousDataStoragePercentage double
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    AutonomousDataStorageSizeInTbs double
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB. Changing this will force terraform to create new resource.
    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
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    CloudExadataInfrastructureId string
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    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. Changing this will force terraform to create new resource.
    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>
    Database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    Description string
    Description of the Autonomous VM cluster.
    DisplayName string
    Display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    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.
    IsMtlsEnabledVmCluster bool
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    LicenseModel string
    License model for the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. Changing this will force terraform to create new resource.
    MaintenanceWindow CloudAutonomousVmClusterMaintenanceWindow
    Maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    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. Changing this will force terraform to create new resource.
    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. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    OdbNetworkId string
    Unique identifier of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Changing this will create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    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 CPUs 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
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    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. Changing this will force terraform to create new resource.
    ScanListenerPortTls int
    SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    Shape string
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    Status string
    Status of the Autonomous VM cluster. Possible values include CREATING, AVAILABLE, UPDATING, DELETING, DELETED, FAILED.
    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.
    TagsAll Dictionary<string, string>
    Combined set of user-defined and provider-defined tags.
    TimeDatabaseSslCertificateExpires string
    Expiration date and time of the database SSL certificate.
    TimeOrdsCertificateExpires string
    Expiration date and time of the ORDS certificate.
    TimeZone string
    Time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    Timeouts CloudAutonomousVmClusterTimeouts
    TotalContainerDatabases int

    Total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    The following arguments are optional:

    Arn string
    ARN for the Exadata infrastructure.
    AutonomousDataStoragePercentage float64
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    AutonomousDataStorageSizeInTbs float64
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB. Changing this will force terraform to create new resource.
    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
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    CloudExadataInfrastructureId string
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    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. Changing this will force terraform to create new resource.
    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
    Database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    Description string
    Description of the Autonomous VM cluster.
    DisplayName string
    Display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    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.
    IsMtlsEnabledVmCluster bool
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    LicenseModel string
    License model for the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. Changing this will force terraform to create new resource.
    MaintenanceWindow CloudAutonomousVmClusterMaintenanceWindowArgs
    Maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    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. Changing this will force terraform to create new resource.
    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. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    OdbNetworkId string
    Unique identifier of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Changing this will create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    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 CPUs 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
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    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. Changing this will force terraform to create new resource.
    ScanListenerPortTls int
    SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    Shape string
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    Status string
    Status of the Autonomous VM cluster. Possible values include CREATING, AVAILABLE, UPDATING, DELETING, DELETED, FAILED.
    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.
    TagsAll map[string]string
    Combined set of user-defined and provider-defined tags.
    TimeDatabaseSslCertificateExpires string
    Expiration date and time of the database SSL certificate.
    TimeOrdsCertificateExpires string
    Expiration date and time of the ORDS certificate.
    TimeZone string
    Time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    Timeouts CloudAutonomousVmClusterTimeoutsArgs
    TotalContainerDatabases int

    Total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    The following arguments are optional:

    arn string
    ARN for the Exadata infrastructure.
    autonomous_data_storage_percentage number
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    autonomous_data_storage_size_in_tbs number
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB. Changing this will force terraform to create new resource.
    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
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    cloud_exadata_infrastructure_id string
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    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. Changing this will force terraform to create new resource.
    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)
    Database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    description string
    Description of the Autonomous VM cluster.
    display_name string
    Display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    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.
    is_mtls_enabled_vm_cluster bool
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    license_model string
    License model for the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. Changing this will force terraform to create new resource.
    maintenance_window object
    Maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    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. Changing this will force terraform to create new resource.
    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. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    odb_network_id string
    Unique identifier of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Changing this will create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    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 CPUs 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
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    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. Changing this will force terraform to create new resource.
    scan_listener_port_tls number
    SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    shape string
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status string
    Status of the Autonomous VM cluster. Possible values include CREATING, AVAILABLE, UPDATING, DELETING, DELETED, FAILED.
    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.
    tags_all map(string)
    Combined set of user-defined and provider-defined tags.
    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 ORDS certificate.
    time_zone string
    Time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts object
    total_container_databases number

    Total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    The following arguments are optional:

    arn String
    ARN for the Exadata infrastructure.
    autonomousDataStoragePercentage Double
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    autonomousDataStorageSizeInTbs Double
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB. Changing this will force terraform to create new resource.
    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
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    cloudExadataInfrastructureId String
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    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. Changing this will force terraform to create new resource.
    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>
    Database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    description String
    Description of the Autonomous VM cluster.
    displayName String
    Display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    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.
    isMtlsEnabledVmCluster Boolean
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    licenseModel String
    License model for the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. Changing this will force terraform to create new resource.
    maintenanceWindow CloudAutonomousVmClusterMaintenanceWindow
    Maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    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. Changing this will force terraform to create new resource.
    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. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    odbNetworkId String
    Unique identifier of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Changing this will create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    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 CPUs 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
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    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. Changing this will force terraform to create new resource.
    scanListenerPortTls Integer
    SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    shape String
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status String
    Status of the Autonomous VM cluster. Possible values include CREATING, AVAILABLE, UPDATING, DELETING, DELETED, FAILED.
    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.
    tagsAll Map<String,String>
    Combined set of user-defined and provider-defined tags.
    timeDatabaseSslCertificateExpires String
    Expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires String
    Expiration date and time of the ORDS certificate.
    timeZone String
    Time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts CloudAutonomousVmClusterTimeouts
    totalContainerDatabases Integer

    Total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    The following arguments are optional:

    arn string
    ARN for the Exadata infrastructure.
    autonomousDataStoragePercentage number
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    autonomousDataStorageSizeInTbs number
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB. Changing this will force terraform to create new resource.
    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
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    cloudExadataInfrastructureId string
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    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. Changing this will force terraform to create new resource.
    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[]
    Database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    description string
    Description of the Autonomous VM cluster.
    displayName string
    Display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    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.
    isMtlsEnabledVmCluster boolean
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    licenseModel string
    License model for the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. Changing this will force terraform to create new resource.
    maintenanceWindow CloudAutonomousVmClusterMaintenanceWindow
    Maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    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. Changing this will force terraform to create new resource.
    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. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    odbNetworkId string
    Unique identifier of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Changing this will create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    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 CPUs 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
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    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. Changing this will force terraform to create new resource.
    scanListenerPortTls number
    SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    shape string
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status string
    Status of the Autonomous VM cluster. Possible values include CREATING, AVAILABLE, UPDATING, DELETING, DELETED, FAILED.
    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.
    tagsAll {[key: string]: string}
    Combined set of user-defined and provider-defined tags.
    timeDatabaseSslCertificateExpires string
    Expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires string
    Expiration date and time of the ORDS certificate.
    timeZone string
    Time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts CloudAutonomousVmClusterTimeouts
    totalContainerDatabases number

    Total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    The following arguments are optional:

    arn str
    ARN for the Exadata infrastructure.
    autonomous_data_storage_percentage float
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    autonomous_data_storage_size_in_tbs float
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB. Changing this will force terraform to create new resource.
    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
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    cloud_exadata_infrastructure_id str
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    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. Changing this will force terraform to create new resource.
    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]
    Database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    description str
    Description of the Autonomous VM cluster.
    display_name str
    Display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    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.
    is_mtls_enabled_vm_cluster bool
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    license_model str
    License model for the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. Changing this will force terraform to create new resource.
    maintenance_window CloudAutonomousVmClusterMaintenanceWindowArgs
    Maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    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. Changing this will force terraform to create new resource.
    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. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    odb_network_id str
    Unique identifier of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Changing this will create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    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 CPUs 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
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    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. Changing this will force terraform to create new resource.
    scan_listener_port_tls int
    SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    shape str
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status str
    Status of the Autonomous VM cluster. Possible values include CREATING, AVAILABLE, UPDATING, DELETING, DELETED, FAILED.
    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.
    tags_all Mapping[str, str]
    Combined set of user-defined and provider-defined tags.
    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 ORDS certificate.
    time_zone str
    Time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts CloudAutonomousVmClusterTimeoutsArgs
    total_container_databases int

    Total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    The following arguments are optional:

    arn String
    ARN for the Exadata infrastructure.
    autonomousDataStoragePercentage Number
    Progress of the current operation on the Autonomous VM cluster, as a percentage.
    autonomousDataStorageSizeInTbs Number
    Data storage size allocated for Autonomous Databases in the Autonomous VM cluster, in TB. Changing this will force terraform to create new resource.
    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
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    cloudExadataInfrastructureId String
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    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. Changing this will force terraform to create new resource.
    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>
    Database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    description String
    Description of the Autonomous VM cluster.
    displayName String
    Display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    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.
    isMtlsEnabledVmCluster Boolean
    Whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    licenseModel String
    License model for the Autonomous VM cluster. Valid values are LICENSE_INCLUDED or BRING_YOUR_OWN_LICENSE. Changing this will force terraform to create new resource.
    maintenanceWindow Property Map
    Maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    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. Changing this will force terraform to create new resource.
    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. Changing this will force Terraform to create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    odbNetworkId String
    Unique identifier of the ODB network associated with this Autonomous VM Cluster. Changing this will force Terraform to create a new resource. Changing this will create a new resource. Either the combination of cloudExadataInfrastructureId and odbNetworkId or cloudExadataInfrastructureArn and odbNetworkArn must be used.
    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 CPUs 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
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    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. Changing this will force terraform to create new resource.
    scanListenerPortTls Number
    SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    shape String
    Shape of the Exadata infrastructure for the Autonomous VM cluster.
    status String
    Status of the Autonomous VM cluster. Possible values include CREATING, AVAILABLE, UPDATING, DELETING, DELETED, FAILED.
    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.
    tagsAll Map<String>
    Combined set of user-defined and provider-defined tags.
    timeDatabaseSslCertificateExpires String
    Expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires String
    Expiration date and time of the ORDS certificate.
    timeZone String
    Time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts Property Map
    totalContainerDatabases Number

    Total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    The following arguments are optional:

    Supporting Types

    CloudAutonomousVmClusterMaintenanceWindow, CloudAutonomousVmClusterMaintenanceWindowArgs

    Preference string
    Preference for the maintenance window scheduling. Changing this will force terraform to create new resource.
    DaysOfWeeks List<CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek>
    Days of the week when maintenance can be performed. Changing this will force terraform to create new resource. See daysOfWeek Block below.
    HoursOfDays List<int>
    Hours of the day when maintenance can be performed. Changing this will force terraform to create new resource.
    LeadTimeInWeeks int
    Lead time in weeks before the maintenance window. Changing this will force terraform to create new resource.
    Months List<CloudAutonomousVmClusterMaintenanceWindowMonth>
    Months when maintenance can be performed. Changing this will force terraform to create new resource. See months Block below.
    WeeksOfMonths List<int>
    Whether to skip release updates during maintenance. Changing this will force terraform to create new resource.
    Preference string
    Preference for the maintenance window scheduling. Changing this will force terraform to create new resource.
    DaysOfWeeks []CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek
    Days of the week when maintenance can be performed. Changing this will force terraform to create new resource. See daysOfWeek Block below.
    HoursOfDays []int
    Hours of the day when maintenance can be performed. Changing this will force terraform to create new resource.
    LeadTimeInWeeks int
    Lead time in weeks before the maintenance window. Changing this will force terraform to create new resource.
    Months []CloudAutonomousVmClusterMaintenanceWindowMonth
    Months when maintenance can be performed. Changing this will force terraform to create new resource. See months Block below.
    WeeksOfMonths []int
    Whether to skip release updates during maintenance. Changing this will force terraform to create new resource.
    preference string
    Preference for the maintenance window scheduling. Changing this will force terraform to create new resource.
    days_of_weeks list(object)
    Days of the week when maintenance can be performed. Changing this will force terraform to create new resource. See daysOfWeek Block below.
    hours_of_days list(number)
    Hours of the day when maintenance can be performed. Changing this will force terraform to create new resource.
    lead_time_in_weeks number
    Lead time in weeks before the maintenance window. Changing this will force terraform to create new resource.
    months list(object)
    Months when maintenance can be performed. Changing this will force terraform to create new resource. See months Block below.
    weeks_of_months list(number)
    Whether to skip release updates during maintenance. Changing this will force terraform to create new resource.
    preference String
    Preference for the maintenance window scheduling. Changing this will force terraform to create new resource.
    daysOfWeeks List<CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek>
    Days of the week when maintenance can be performed. Changing this will force terraform to create new resource. See daysOfWeek Block below.
    hoursOfDays List<Integer>
    Hours of the day when maintenance can be performed. Changing this will force terraform to create new resource.
    leadTimeInWeeks Integer
    Lead time in weeks before the maintenance window. Changing this will force terraform to create new resource.
    months List<CloudAutonomousVmClusterMaintenanceWindowMonth>
    Months when maintenance can be performed. Changing this will force terraform to create new resource. See months Block below.
    weeksOfMonths List<Integer>
    Whether to skip release updates during maintenance. Changing this will force terraform to create new resource.
    preference string
    Preference for the maintenance window scheduling. Changing this will force terraform to create new resource.
    daysOfWeeks CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek[]
    Days of the week when maintenance can be performed. Changing this will force terraform to create new resource. See daysOfWeek Block below.
    hoursOfDays number[]
    Hours of the day when maintenance can be performed. Changing this will force terraform to create new resource.
    leadTimeInWeeks number
    Lead time in weeks before the maintenance window. Changing this will force terraform to create new resource.
    months CloudAutonomousVmClusterMaintenanceWindowMonth[]
    Months when maintenance can be performed. Changing this will force terraform to create new resource. See months Block below.
    weeksOfMonths number[]
    Whether to skip release updates during maintenance. Changing this will force terraform to create new resource.
    preference str
    Preference for the maintenance window scheduling. Changing this will force terraform to create new resource.
    days_of_weeks Sequence[CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek]
    Days of the week when maintenance can be performed. Changing this will force terraform to create new resource. See daysOfWeek Block below.
    hours_of_days Sequence[int]
    Hours of the day when maintenance can be performed. Changing this will force terraform to create new resource.
    lead_time_in_weeks int
    Lead time in weeks before the maintenance window. Changing this will force terraform to create new resource.
    months Sequence[CloudAutonomousVmClusterMaintenanceWindowMonth]
    Months when maintenance can be performed. Changing this will force terraform to create new resource. See months Block below.
    weeks_of_months Sequence[int]
    Whether to skip release updates during maintenance. Changing this will force terraform to create new resource.
    preference String
    Preference for the maintenance window scheduling. Changing this will force terraform to create new resource.
    daysOfWeeks List<Property Map>
    Days of the week when maintenance can be performed. Changing this will force terraform to create new resource. See daysOfWeek Block below.
    hoursOfDays List<Number>
    Hours of the day when maintenance can be performed. Changing this will force terraform to create new resource.
    leadTimeInWeeks Number
    Lead time in weeks before the maintenance window. Changing this will force terraform to create new resource.
    months List<Property Map>
    Months when maintenance can be performed. Changing this will force terraform to create new resource. See months Block below.
    weeksOfMonths List<Number>
    Whether to skip release updates during maintenance. Changing this will force terraform to create new resource.

    CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek, CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs

    Name string
    Name of the day of the week. Valid values are MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.
    Name string
    Name of the day of the week. Valid values are MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.
    name string
    Name of the day of the week. Valid values are MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.
    name String
    Name of the day of the week. Valid values are MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.
    name string
    Name of the day of the week. Valid values are MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.
    name str
    Name of the day of the week. Valid values are MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.
    name String
    Name of the day of the week. Valid values are MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, and SUNDAY.

    CloudAutonomousVmClusterMaintenanceWindowMonth, CloudAutonomousVmClusterMaintenanceWindowMonthArgs

    Name string
    Name of the month. Valid values are JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, and DECEMBER.
    Name string
    Name of the month. Valid values are JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, and DECEMBER.
    name string
    Name of the month. Valid values are JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, and DECEMBER.
    name String
    Name of the month. Valid values are JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, and DECEMBER.
    name string
    Name of the month. Valid values are JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, and DECEMBER.
    name str
    Name of the month. Valid values are JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, and DECEMBER.
    name String
    Name of the month. Valid values are JANUARY, FEBRUARY, MARCH, APRIL, MAY, JUNE, JULY, AUGUST, SEPTEMBER, OCTOBER, NOVEMBER, and DECEMBER.

    CloudAutonomousVmClusterTimeouts, CloudAutonomousVmClusterTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    Using pulumi import, import cloud autonomous vm cluster id. For example:

    $ pulumi import aws:odb/cloudAutonomousVmCluster:CloudAutonomousVmCluster example example
    

    To learn more about importing existing cloud resources, see Importing resources.

    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