1. Packages
  2. AWS
  3. API Docs
  4. odb
  5. CloudAutonomousVmCluster
Viewing docs for AWS v7.22.0
published on Wednesday, Mar 11, 2026 by Pulumi
aws logo
Viewing docs for AWS v7.22.0
published on Wednesday, Mar 11, 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", {
        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,
        maintenanceWindow: {
            preference: "NO_PREFERENCE",
        },
    });
    const avmcWithAllParams = new aws.odb.CloudAutonomousVmCluster("avmc_with_all_params", {
        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,
        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,
            ],
        },
        tags: {
            env: "dev",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    avmc_with_minimum_parameters = aws.odb.CloudAutonomousVmCluster("avmc_with_minimum_parameters",
        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,
        maintenance_window={
            "preference": "NO_PREFERENCE",
        })
    avmc_with_all_params = aws.odb.CloudAutonomousVmCluster("avmc_with_all_params",
        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,
        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,
            ],
        },
        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{
    			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),
    			MaintenanceWindow: &odb.CloudAutonomousVmClusterMaintenanceWindowArgs{
    				Preference: pulumi.String("NO_PREFERENCE"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = odb.NewCloudAutonomousVmCluster(ctx, "avmc_with_all_params", &odb.CloudAutonomousVmClusterArgs{
    			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),
    			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),
    				},
    			},
    			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()
        {
            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,
            MaintenanceWindow = new Aws.Odb.Inputs.CloudAutonomousVmClusterMaintenanceWindowArgs
            {
                Preference = "NO_PREFERENCE",
            },
        });
    
        var avmcWithAllParams = new Aws.Odb.CloudAutonomousVmCluster("avmc_with_all_params", new()
        {
            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,
            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,
                },
            },
            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 java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var avmcWithMinimumParameters = new CloudAutonomousVmCluster("avmcWithMinimumParameters", CloudAutonomousVmClusterArgs.builder()
                .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)
                .maintenanceWindow(CloudAutonomousVmClusterMaintenanceWindowArgs.builder()
                    .preference("NO_PREFERENCE")
                    .build())
                .build());
    
            var avmcWithAllParams = new CloudAutonomousVmCluster("avmcWithAllParams", CloudAutonomousVmClusterArgs.builder()
                .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)
                .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())
                .tags(Map.of("env", "dev"))
                .build());
    
        }
    }
    
    resources:
      avmcWithMinimumParameters:
        type: aws:odb:CloudAutonomousVmCluster
        name: avmc_with_minimum_parameters
        properties:
          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
          maintenanceWindow:
            preference: NO_PREFERENCE
      avmcWithAllParams:
        type: aws:odb:CloudAutonomousVmCluster
        name: avmc_with_all_params
        properties:
          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
          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
          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.
    
    

    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,
        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"),
    })
    
    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=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
    The 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
    The number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    DbServers List<string>
    The database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    DisplayName string
    The display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    MaintenanceWindow CloudAutonomousVmClusterMaintenanceWindow

    The maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.

    The following arguments are optional:

    MemoryPerOracleComputeUnitInGbs int
    The amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    ScanListenerPortNonTls int
    The SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    ScanListenerPortTls int
    The SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    TotalContainerDatabases int
    The total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.
    CloudExadataInfrastructureArn string
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    CloudExadataInfrastructureId string
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    Description string
    The description of the Autonomous VM cluster.
    IsMtlsEnabledVmCluster bool
    Indicates whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    LicenseModel string
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TimeZone string
    The time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    Timeouts CloudAutonomousVmClusterTimeouts
    AutonomousDataStorageSizeInTbs float64
    The 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
    The number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    DbServers []string
    The database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    DisplayName string
    The display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    MaintenanceWindow CloudAutonomousVmClusterMaintenanceWindowArgs

    The maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.

    The following arguments are optional:

    MemoryPerOracleComputeUnitInGbs int
    The amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    ScanListenerPortNonTls int
    The SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    ScanListenerPortTls int
    The SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    TotalContainerDatabases int
    The total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.
    CloudExadataInfrastructureArn string
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    CloudExadataInfrastructureId string
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    Description string
    The description of the Autonomous VM cluster.
    IsMtlsEnabledVmCluster bool
    Indicates whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    LicenseModel string
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TimeZone string
    The time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    Timeouts CloudAutonomousVmClusterTimeoutsArgs
    autonomousDataStorageSizeInTbs Double
    The 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
    The number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    dbServers List<String>
    The database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    displayName String
    The display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    maintenanceWindow CloudAutonomousVmClusterMaintenanceWindow

    The maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.

    The following arguments are optional:

    memoryPerOracleComputeUnitInGbs Integer
    The amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    scanListenerPortNonTls Integer
    The SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    scanListenerPortTls Integer
    The SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    totalContainerDatabases Integer
    The total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.
    cloudExadataInfrastructureArn String
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    cloudExadataInfrastructureId String
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    description String
    The description of the Autonomous VM cluster.
    isMtlsEnabledVmCluster Boolean
    Indicates whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    licenseModel String
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeZone String
    The time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts CloudAutonomousVmClusterTimeouts
    autonomousDataStorageSizeInTbs number
    The 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
    The number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    dbServers string[]
    The database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    displayName string
    The display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    maintenanceWindow CloudAutonomousVmClusterMaintenanceWindow

    The maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.

    The following arguments are optional:

    memoryPerOracleComputeUnitInGbs number
    The amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    scanListenerPortNonTls number
    The SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    scanListenerPortTls number
    The SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    totalContainerDatabases number
    The total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.
    cloudExadataInfrastructureArn string
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    cloudExadataInfrastructureId string
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    description string
    The description of the Autonomous VM cluster.
    isMtlsEnabledVmCluster boolean
    Indicates whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    licenseModel string
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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}
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeZone string
    The 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
    The 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
    The 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]
    The database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    display_name str
    The display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    maintenance_window CloudAutonomousVmClusterMaintenanceWindowArgs

    The maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.

    The following arguments are optional:

    memory_per_oracle_compute_unit_in_gbs int
    The 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
    The 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
    The SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    total_container_databases int
    The total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.
    cloud_exadata_infrastructure_arn str
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    description str
    The description of the Autonomous VM cluster.
    is_mtls_enabled_vm_cluster bool
    Indicates whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    license_model str
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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]
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    time_zone str
    The time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts CloudAutonomousVmClusterTimeoutsArgs
    autonomousDataStorageSizeInTbs Number
    The 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
    The number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    dbServers List<String>
    The database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    displayName String
    The display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    maintenanceWindow Property Map

    The maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.

    The following arguments are optional:

    memoryPerOracleComputeUnitInGbs Number
    The amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    scanListenerPortNonTls Number
    The SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    scanListenerPortTls Number
    The SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    totalContainerDatabases Number
    The total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.
    cloudExadataInfrastructureArn String
    Exadata infrastructure ARN. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    cloudExadataInfrastructureId String
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    description String
    The description of the Autonomous VM cluster.
    isMtlsEnabledVmCluster Boolean
    Indicates whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    licenseModel String
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    region String
    Region where this resource will be managed. Defaults to the Region set in the provider configuration.
    tags Map<String>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    timeZone String
    The 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
    The Amazon Resource Name (ARN) for the Exadata infrastructure.
    AutonomousDataStoragePercentage double
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    AvailableAutonomousDataStorageSizeInTbs double
    The available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    AvailableContainerDatabases int
    The number of Autonomous CDBs that you can create with the currently available storage.
    AvailableCpus double
    The number of CPU cores available for allocation to Autonomous Databases.
    ComputeModel string
    The compute model of the Autonomous VM cluster: ECPU or OCPU.
    CpuCoreCount int
    The total number of CPU cores in the Autonomous VM cluster.
    CpuPercentage double
    The percentage of total CPU cores currently in use in the Autonomous VM cluster.
    CreatedAt string
    The date and time when the Autonomous VM cluster was created.
    DataStorageSizeInGbs double
    The total data storage allocated to the Autonomous VM cluster, in GB.
    DataStorageSizeInTbs double
    The total data storage allocated to the Autonomous VM cluster, in TB.
    Domain string
    The domain name of the Autonomous VM cluster.
    ExadataStorageInTbsLowestScaledValue double
    The minimum value to which you can scale down the Exadata storage, in TB.
    Hostname string
    The hostname of the Autonomous VM cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    MaxAcdsLowestScaledValue int
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    MemorySizeInGbs int
    The total amount of memory allocated to the Autonomous VM cluster, in gigabytes(GB).
    NodeCount int
    The number of database server nodes in the Autonomous VM cluster.
    NonProvisionableAutonomousContainerDatabases int
    The number of Autonomous CDBs that can't be provisioned because of resource constraints.
    OciResourceAnchorName string
    The name of the OCI resource anchor associated with this Autonomous VM cluster.
    OciUrl string
    The URL for accessing the OCI console page for this Autonomous VM cluster.
    Ocid string
    The Oracle Cloud Identifier (OCID) of the Autonomous VM cluster.
    OdbNodeStorageSizeInGbs int
    The local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    PercentProgress double
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    ProvisionableAutonomousContainerDatabases int
    The number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    ProvisionedAutonomousContainerDatabases int
    The number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    ProvisionedCpus double
    The number of CPUs provisioned in the Autonomous VM cluster.
    ReclaimableCpus double
    The number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    ReservedCpus double
    The number of CPU cores reserved for system operations and redundancy.
    Shape string
    The shape of the Exadata infrastructure for the Autonomous VM cluster.
    Status string
    The 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>
    The combined set of user-defined and provider-defined tags.
    TimeDatabaseSslCertificateExpires string
    The expiration date and time of the database SSL certificate.
    TimeOrdsCertificateExpires string
    The expiration date and time of the ORDS certificate.
    Arn string
    The Amazon Resource Name (ARN) for the Exadata infrastructure.
    AutonomousDataStoragePercentage float64
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    AvailableAutonomousDataStorageSizeInTbs float64
    The available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    AvailableContainerDatabases int
    The number of Autonomous CDBs that you can create with the currently available storage.
    AvailableCpus float64
    The number of CPU cores available for allocation to Autonomous Databases.
    ComputeModel string
    The compute model of the Autonomous VM cluster: ECPU or OCPU.
    CpuCoreCount int
    The total number of CPU cores in the Autonomous VM cluster.
    CpuPercentage float64
    The percentage of total CPU cores currently in use in the Autonomous VM cluster.
    CreatedAt string
    The date and time when the Autonomous VM cluster was created.
    DataStorageSizeInGbs float64
    The total data storage allocated to the Autonomous VM cluster, in GB.
    DataStorageSizeInTbs float64
    The total data storage allocated to the Autonomous VM cluster, in TB.
    Domain string
    The domain name of the Autonomous VM cluster.
    ExadataStorageInTbsLowestScaledValue float64
    The minimum value to which you can scale down the Exadata storage, in TB.
    Hostname string
    The hostname of the Autonomous VM cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    MaxAcdsLowestScaledValue int
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    MemorySizeInGbs int
    The total amount of memory allocated to the Autonomous VM cluster, in gigabytes(GB).
    NodeCount int
    The number of database server nodes in the Autonomous VM cluster.
    NonProvisionableAutonomousContainerDatabases int
    The number of Autonomous CDBs that can't be provisioned because of resource constraints.
    OciResourceAnchorName string
    The name of the OCI resource anchor associated with this Autonomous VM cluster.
    OciUrl string
    The URL for accessing the OCI console page for this Autonomous VM cluster.
    Ocid string
    The Oracle Cloud Identifier (OCID) of the Autonomous VM cluster.
    OdbNodeStorageSizeInGbs int
    The local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    PercentProgress float64
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    ProvisionableAutonomousContainerDatabases int
    The number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    ProvisionedAutonomousContainerDatabases int
    The number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    ProvisionedCpus float64
    The number of CPUs provisioned in the Autonomous VM cluster.
    ReclaimableCpus float64
    The number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    ReservedCpus float64
    The number of CPU cores reserved for system operations and redundancy.
    Shape string
    The shape of the Exadata infrastructure for the Autonomous VM cluster.
    Status string
    The 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
    The combined set of user-defined and provider-defined tags.
    TimeDatabaseSslCertificateExpires string
    The expiration date and time of the database SSL certificate.
    TimeOrdsCertificateExpires string
    The expiration date and time of the ORDS certificate.
    arn String
    The Amazon Resource Name (ARN) for the Exadata infrastructure.
    autonomousDataStoragePercentage Double
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    availableAutonomousDataStorageSizeInTbs Double
    The available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    availableContainerDatabases Integer
    The number of Autonomous CDBs that you can create with the currently available storage.
    availableCpus Double
    The number of CPU cores available for allocation to Autonomous Databases.
    computeModel String
    The compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpuCoreCount Integer
    The total number of CPU cores in the Autonomous VM cluster.
    cpuPercentage Double
    The percentage of total CPU cores currently in use in the Autonomous VM cluster.
    createdAt String
    The date and time when the Autonomous VM cluster was created.
    dataStorageSizeInGbs Double
    The total data storage allocated to the Autonomous VM cluster, in GB.
    dataStorageSizeInTbs Double
    The total data storage allocated to the Autonomous VM cluster, in TB.
    domain String
    The domain name of the Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue Double
    The minimum value to which you can scale down the Exadata storage, in TB.
    hostname String
    The hostname of the Autonomous VM cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    maxAcdsLowestScaledValue Integer
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memorySizeInGbs Integer
    The total amount of memory allocated to the Autonomous VM cluster, in gigabytes(GB).
    nodeCount Integer
    The number of database server nodes in the Autonomous VM cluster.
    nonProvisionableAutonomousContainerDatabases Integer
    The number of Autonomous CDBs that can't be provisioned because of resource constraints.
    ociResourceAnchorName String
    The name of the OCI resource anchor associated with this Autonomous VM cluster.
    ociUrl String
    The URL for accessing the OCI console page for this Autonomous VM cluster.
    ocid String
    The Oracle Cloud Identifier (OCID) of the Autonomous VM cluster.
    odbNodeStorageSizeInGbs Integer
    The local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    percentProgress Double
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    provisionableAutonomousContainerDatabases Integer
    The number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    provisionedAutonomousContainerDatabases Integer
    The number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    provisionedCpus Double
    The number of CPUs provisioned in the Autonomous VM cluster.
    reclaimableCpus Double
    The number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    reservedCpus Double
    The number of CPU cores reserved for system operations and redundancy.
    shape String
    The shape of the Exadata infrastructure for the Autonomous VM cluster.
    status String
    The 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>
    The combined set of user-defined and provider-defined tags.
    timeDatabaseSslCertificateExpires String
    The expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires String
    The expiration date and time of the ORDS certificate.
    arn string
    The Amazon Resource Name (ARN) for the Exadata infrastructure.
    autonomousDataStoragePercentage number
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    availableAutonomousDataStorageSizeInTbs number
    The available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    availableContainerDatabases number
    The number of Autonomous CDBs that you can create with the currently available storage.
    availableCpus number
    The number of CPU cores available for allocation to Autonomous Databases.
    computeModel string
    The compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpuCoreCount number
    The total number of CPU cores in the Autonomous VM cluster.
    cpuPercentage number
    The percentage of total CPU cores currently in use in the Autonomous VM cluster.
    createdAt string
    The date and time when the Autonomous VM cluster was created.
    dataStorageSizeInGbs number
    The total data storage allocated to the Autonomous VM cluster, in GB.
    dataStorageSizeInTbs number
    The total data storage allocated to the Autonomous VM cluster, in TB.
    domain string
    The domain name of the Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue number
    The minimum value to which you can scale down the Exadata storage, in TB.
    hostname string
    The hostname of the Autonomous VM cluster.
    id string
    The provider-assigned unique ID for this managed resource.
    maxAcdsLowestScaledValue number
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memorySizeInGbs number
    The total amount of memory allocated to the Autonomous VM cluster, in gigabytes(GB).
    nodeCount number
    The number of database server nodes in the Autonomous VM cluster.
    nonProvisionableAutonomousContainerDatabases number
    The number of Autonomous CDBs that can't be provisioned because of resource constraints.
    ociResourceAnchorName string
    The name of the OCI resource anchor associated with this Autonomous VM cluster.
    ociUrl string
    The URL for accessing the OCI console page for this Autonomous VM cluster.
    ocid string
    The Oracle Cloud Identifier (OCID) of the Autonomous VM cluster.
    odbNodeStorageSizeInGbs number
    The local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    percentProgress number
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    provisionableAutonomousContainerDatabases number
    The number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    provisionedAutonomousContainerDatabases number
    The number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    provisionedCpus number
    The number of CPUs provisioned in the Autonomous VM cluster.
    reclaimableCpus number
    The number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    reservedCpus number
    The number of CPU cores reserved for system operations and redundancy.
    shape string
    The shape of the Exadata infrastructure for the Autonomous VM cluster.
    status string
    The 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}
    The combined set of user-defined and provider-defined tags.
    timeDatabaseSslCertificateExpires string
    The expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires string
    The expiration date and time of the ORDS certificate.
    arn str
    The Amazon Resource Name (ARN) for the Exadata infrastructure.
    autonomous_data_storage_percentage float
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    available_autonomous_data_storage_size_in_tbs float
    The available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    available_container_databases int
    The number of Autonomous CDBs that you can create with the currently available storage.
    available_cpus float
    The number of CPU cores available for allocation to Autonomous Databases.
    compute_model str
    The compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpu_core_count int
    The total number of CPU cores in the Autonomous VM cluster.
    cpu_percentage float
    The percentage of total CPU cores currently in use in the Autonomous VM cluster.
    created_at str
    The date and time when the Autonomous VM cluster was created.
    data_storage_size_in_gbs float
    The total data storage allocated to the Autonomous VM cluster, in GB.
    data_storage_size_in_tbs float
    The total data storage allocated to the Autonomous VM cluster, in TB.
    domain str
    The domain name of the Autonomous VM cluster.
    exadata_storage_in_tbs_lowest_scaled_value float
    The minimum value to which you can scale down the Exadata storage, in TB.
    hostname str
    The hostname of the Autonomous VM cluster.
    id str
    The provider-assigned unique ID for this managed resource.
    max_acds_lowest_scaled_value int
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memory_size_in_gbs int
    The total amount of memory allocated to the Autonomous VM cluster, in gigabytes(GB).
    node_count int
    The number of database server nodes in the Autonomous VM cluster.
    non_provisionable_autonomous_container_databases int
    The number of Autonomous CDBs that can't be provisioned because of resource constraints.
    oci_resource_anchor_name str
    The name of the OCI resource anchor associated with this Autonomous VM cluster.
    oci_url str
    The URL for accessing the OCI console page for this Autonomous VM cluster.
    ocid str
    The Oracle Cloud Identifier (OCID) of the Autonomous VM cluster.
    odb_node_storage_size_in_gbs int
    The local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    percent_progress float
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    provisionable_autonomous_container_databases int
    The number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    provisioned_autonomous_container_databases int
    The number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    provisioned_cpus float
    The number of CPUs provisioned in the Autonomous VM cluster.
    reclaimable_cpus float
    The number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    reserved_cpus float
    The number of CPU cores reserved for system operations and redundancy.
    shape str
    The shape of the Exadata infrastructure for the Autonomous VM cluster.
    status str
    The 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]
    The combined set of user-defined and provider-defined tags.
    time_database_ssl_certificate_expires str
    The expiration date and time of the database SSL certificate.
    time_ords_certificate_expires str
    The expiration date and time of the ORDS certificate.
    arn String
    The Amazon Resource Name (ARN) for the Exadata infrastructure.
    autonomousDataStoragePercentage Number
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    availableAutonomousDataStorageSizeInTbs Number
    The available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    availableContainerDatabases Number
    The number of Autonomous CDBs that you can create with the currently available storage.
    availableCpus Number
    The number of CPU cores available for allocation to Autonomous Databases.
    computeModel String
    The compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpuCoreCount Number
    The total number of CPU cores in the Autonomous VM cluster.
    cpuPercentage Number
    The percentage of total CPU cores currently in use in the Autonomous VM cluster.
    createdAt String
    The date and time when the Autonomous VM cluster was created.
    dataStorageSizeInGbs Number
    The total data storage allocated to the Autonomous VM cluster, in GB.
    dataStorageSizeInTbs Number
    The total data storage allocated to the Autonomous VM cluster, in TB.
    domain String
    The domain name of the Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue Number
    The minimum value to which you can scale down the Exadata storage, in TB.
    hostname String
    The hostname of the Autonomous VM cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    maxAcdsLowestScaledValue Number
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memorySizeInGbs Number
    The total amount of memory allocated to the Autonomous VM cluster, in gigabytes(GB).
    nodeCount Number
    The number of database server nodes in the Autonomous VM cluster.
    nonProvisionableAutonomousContainerDatabases Number
    The number of Autonomous CDBs that can't be provisioned because of resource constraints.
    ociResourceAnchorName String
    The name of the OCI resource anchor associated with this Autonomous VM cluster.
    ociUrl String
    The URL for accessing the OCI console page for this Autonomous VM cluster.
    ocid String
    The Oracle Cloud Identifier (OCID) of the Autonomous VM cluster.
    odbNodeStorageSizeInGbs Number
    The local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    percentProgress Number
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    provisionableAutonomousContainerDatabases Number
    The number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    provisionedAutonomousContainerDatabases Number
    The number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    provisionedCpus Number
    The number of CPUs provisioned in the Autonomous VM cluster.
    reclaimableCpus Number
    The number of CPU cores that can be reclaimed from terminated or scaled-down Autonomous Databases.
    reservedCpus Number
    The number of CPU cores reserved for system operations and redundancy.
    shape String
    The shape of the Exadata infrastructure for the Autonomous VM cluster.
    status String
    The 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>
    The combined set of user-defined and provider-defined tags.
    timeDatabaseSslCertificateExpires String
    The expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires String
    The 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}
    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
    The Amazon Resource Name (ARN) for the Exadata infrastructure.
    AutonomousDataStoragePercentage double
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    AutonomousDataStorageSizeInTbs double
    The 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
    The available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    AvailableContainerDatabases int
    The number of Autonomous CDBs that you can create with the currently available storage.
    AvailableCpus double
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    CloudExadataInfrastructureId string
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    ComputeModel string
    The compute model of the Autonomous VM cluster: ECPU or OCPU.
    CpuCoreCount int
    The total number of CPU cores in the Autonomous VM cluster.
    CpuCoreCountPerNode int
    The number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    CpuPercentage double
    The percentage of total CPU cores currently in use in the Autonomous VM cluster.
    CreatedAt string
    The date and time when the Autonomous VM cluster was created.
    DataStorageSizeInGbs double
    The total data storage allocated to the Autonomous VM cluster, in GB.
    DataStorageSizeInTbs double
    The total data storage allocated to the Autonomous VM cluster, in TB.
    DbServers List<string>
    The database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    Description string
    The description of the Autonomous VM cluster.
    DisplayName string
    The display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    Domain string
    The domain name of the Autonomous VM cluster.
    ExadataStorageInTbsLowestScaledValue double
    The minimum value to which you can scale down the Exadata storage, in TB.
    Hostname string
    The hostname of the Autonomous VM cluster.
    IsMtlsEnabledVmCluster bool
    Indicates whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    LicenseModel string
    The 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

    The maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.

    The following arguments are optional:

    MaxAcdsLowestScaledValue int
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    MemoryPerOracleComputeUnitInGbs int
    The amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    MemorySizeInGbs int
    The total amount of memory allocated to the Autonomous VM cluster, in gigabytes(GB).
    NodeCount int
    The number of database server nodes in the Autonomous VM cluster.
    NonProvisionableAutonomousContainerDatabases int
    The number of Autonomous CDBs that can't be provisioned because of resource constraints.
    OciResourceAnchorName string
    The name of the OCI resource anchor associated with this Autonomous VM cluster.
    OciUrl string
    The URL for accessing the OCI console page for this Autonomous VM cluster.
    Ocid string
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    OdbNodeStorageSizeInGbs int
    The local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    PercentProgress double
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    ProvisionableAutonomousContainerDatabases int
    The number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    ProvisionedAutonomousContainerDatabases int
    The number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    ProvisionedCpus double
    The number of CPUs provisioned in the Autonomous VM cluster.
    ReclaimableCpus double
    The 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
    The number of CPU cores reserved for system operations and redundancy.
    ScanListenerPortNonTls int
    The SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    ScanListenerPortTls int
    The SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    Shape string
    The shape of the Exadata infrastructure for the Autonomous VM cluster.
    Status string
    The 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>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    The combined set of user-defined and provider-defined tags.
    TimeDatabaseSslCertificateExpires string
    The expiration date and time of the database SSL certificate.
    TimeOrdsCertificateExpires string
    The expiration date and time of the ORDS certificate.
    TimeZone string
    The time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    Timeouts CloudAutonomousVmClusterTimeouts
    TotalContainerDatabases int
    The total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.
    Arn string
    The Amazon Resource Name (ARN) for the Exadata infrastructure.
    AutonomousDataStoragePercentage float64
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    AutonomousDataStorageSizeInTbs float64
    The 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
    The available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    AvailableContainerDatabases int
    The number of Autonomous CDBs that you can create with the currently available storage.
    AvailableCpus float64
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    CloudExadataInfrastructureId string
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    ComputeModel string
    The compute model of the Autonomous VM cluster: ECPU or OCPU.
    CpuCoreCount int
    The total number of CPU cores in the Autonomous VM cluster.
    CpuCoreCountPerNode int
    The number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    CpuPercentage float64
    The percentage of total CPU cores currently in use in the Autonomous VM cluster.
    CreatedAt string
    The date and time when the Autonomous VM cluster was created.
    DataStorageSizeInGbs float64
    The total data storage allocated to the Autonomous VM cluster, in GB.
    DataStorageSizeInTbs float64
    The total data storage allocated to the Autonomous VM cluster, in TB.
    DbServers []string
    The database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    Description string
    The description of the Autonomous VM cluster.
    DisplayName string
    The display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    Domain string
    The domain name of the Autonomous VM cluster.
    ExadataStorageInTbsLowestScaledValue float64
    The minimum value to which you can scale down the Exadata storage, in TB.
    Hostname string
    The hostname of the Autonomous VM cluster.
    IsMtlsEnabledVmCluster bool
    Indicates whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    LicenseModel string
    The 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

    The maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.

    The following arguments are optional:

    MaxAcdsLowestScaledValue int
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    MemoryPerOracleComputeUnitInGbs int
    The amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    MemorySizeInGbs int
    The total amount of memory allocated to the Autonomous VM cluster, in gigabytes(GB).
    NodeCount int
    The number of database server nodes in the Autonomous VM cluster.
    NonProvisionableAutonomousContainerDatabases int
    The number of Autonomous CDBs that can't be provisioned because of resource constraints.
    OciResourceAnchorName string
    The name of the OCI resource anchor associated with this Autonomous VM cluster.
    OciUrl string
    The URL for accessing the OCI console page for this Autonomous VM cluster.
    Ocid string
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    OdbNodeStorageSizeInGbs int
    The local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    PercentProgress float64
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    ProvisionableAutonomousContainerDatabases int
    The number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    ProvisionedAutonomousContainerDatabases int
    The number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    ProvisionedCpus float64
    The number of CPUs provisioned in the Autonomous VM cluster.
    ReclaimableCpus float64
    The 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
    The number of CPU cores reserved for system operations and redundancy.
    ScanListenerPortNonTls int
    The SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    ScanListenerPortTls int
    The SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    Shape string
    The shape of the Exadata infrastructure for the Autonomous VM cluster.
    Status string
    The 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
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    The combined set of user-defined and provider-defined tags.
    TimeDatabaseSslCertificateExpires string
    The expiration date and time of the database SSL certificate.
    TimeOrdsCertificateExpires string
    The expiration date and time of the ORDS certificate.
    TimeZone string
    The time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    Timeouts CloudAutonomousVmClusterTimeoutsArgs
    TotalContainerDatabases int
    The total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.
    arn String
    The Amazon Resource Name (ARN) for the Exadata infrastructure.
    autonomousDataStoragePercentage Double
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    autonomousDataStorageSizeInTbs Double
    The 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
    The available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    availableContainerDatabases Integer
    The number of Autonomous CDBs that you can create with the currently available storage.
    availableCpus Double
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    cloudExadataInfrastructureId String
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    computeModel String
    The compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpuCoreCount Integer
    The total number of CPU cores in the Autonomous VM cluster.
    cpuCoreCountPerNode Integer
    The number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    cpuPercentage Double
    The percentage of total CPU cores currently in use in the Autonomous VM cluster.
    createdAt String
    The date and time when the Autonomous VM cluster was created.
    dataStorageSizeInGbs Double
    The total data storage allocated to the Autonomous VM cluster, in GB.
    dataStorageSizeInTbs Double
    The total data storage allocated to the Autonomous VM cluster, in TB.
    dbServers List<String>
    The database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    description String
    The description of the Autonomous VM cluster.
    displayName String
    The display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    domain String
    The domain name of the Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue Double
    The minimum value to which you can scale down the Exadata storage, in TB.
    hostname String
    The hostname of the Autonomous VM cluster.
    isMtlsEnabledVmCluster Boolean
    Indicates whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    licenseModel String
    The 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

    The maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.

    The following arguments are optional:

    maxAcdsLowestScaledValue Integer
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memoryPerOracleComputeUnitInGbs Integer
    The amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    memorySizeInGbs Integer
    The total amount of memory allocated to the Autonomous VM cluster, in gigabytes(GB).
    nodeCount Integer
    The number of database server nodes in the Autonomous VM cluster.
    nonProvisionableAutonomousContainerDatabases Integer
    The number of Autonomous CDBs that can't be provisioned because of resource constraints.
    ociResourceAnchorName String
    The name of the OCI resource anchor associated with this Autonomous VM cluster.
    ociUrl String
    The URL for accessing the OCI console page for this Autonomous VM cluster.
    ocid String
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    odbNodeStorageSizeInGbs Integer
    The local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    percentProgress Double
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    provisionableAutonomousContainerDatabases Integer
    The number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    provisionedAutonomousContainerDatabases Integer
    The number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    provisionedCpus Double
    The number of CPUs provisioned in the Autonomous VM cluster.
    reclaimableCpus Double
    The 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
    The number of CPU cores reserved for system operations and redundancy.
    scanListenerPortNonTls Integer
    The SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    scanListenerPortTls Integer
    The SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    shape String
    The shape of the Exadata infrastructure for the Autonomous VM cluster.
    status String
    The 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>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    The combined set of user-defined and provider-defined tags.
    timeDatabaseSslCertificateExpires String
    The expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires String
    The expiration date and time of the ORDS certificate.
    timeZone String
    The time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts CloudAutonomousVmClusterTimeouts
    totalContainerDatabases Integer
    The total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.
    arn string
    The Amazon Resource Name (ARN) for the Exadata infrastructure.
    autonomousDataStoragePercentage number
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    autonomousDataStorageSizeInTbs number
    The 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
    The available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    availableContainerDatabases number
    The number of Autonomous CDBs that you can create with the currently available storage.
    availableCpus number
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    cloudExadataInfrastructureId string
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    computeModel string
    The compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpuCoreCount number
    The total number of CPU cores in the Autonomous VM cluster.
    cpuCoreCountPerNode number
    The number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    cpuPercentage number
    The percentage of total CPU cores currently in use in the Autonomous VM cluster.
    createdAt string
    The date and time when the Autonomous VM cluster was created.
    dataStorageSizeInGbs number
    The total data storage allocated to the Autonomous VM cluster, in GB.
    dataStorageSizeInTbs number
    The total data storage allocated to the Autonomous VM cluster, in TB.
    dbServers string[]
    The database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    description string
    The description of the Autonomous VM cluster.
    displayName string
    The display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    domain string
    The domain name of the Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue number
    The minimum value to which you can scale down the Exadata storage, in TB.
    hostname string
    The hostname of the Autonomous VM cluster.
    isMtlsEnabledVmCluster boolean
    Indicates whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    licenseModel string
    The 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

    The maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.

    The following arguments are optional:

    maxAcdsLowestScaledValue number
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memoryPerOracleComputeUnitInGbs number
    The amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    memorySizeInGbs number
    The total amount of memory allocated to the Autonomous VM cluster, in gigabytes(GB).
    nodeCount number
    The number of database server nodes in the Autonomous VM cluster.
    nonProvisionableAutonomousContainerDatabases number
    The number of Autonomous CDBs that can't be provisioned because of resource constraints.
    ociResourceAnchorName string
    The name of the OCI resource anchor associated with this Autonomous VM cluster.
    ociUrl string
    The URL for accessing the OCI console page for this Autonomous VM cluster.
    ocid string
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    odbNodeStorageSizeInGbs number
    The local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    percentProgress number
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    provisionableAutonomousContainerDatabases number
    The number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    provisionedAutonomousContainerDatabases number
    The number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    provisionedCpus number
    The number of CPUs provisioned in the Autonomous VM cluster.
    reclaimableCpus number
    The 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
    The number of CPU cores reserved for system operations and redundancy.
    scanListenerPortNonTls number
    The SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    scanListenerPortTls number
    The SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    shape string
    The shape of the Exadata infrastructure for the Autonomous VM cluster.
    status string
    The 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}
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    The combined set of user-defined and provider-defined tags.
    timeDatabaseSslCertificateExpires string
    The expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires string
    The expiration date and time of the ORDS certificate.
    timeZone string
    The time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts CloudAutonomousVmClusterTimeouts
    totalContainerDatabases number
    The total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.
    arn str
    The Amazon Resource Name (ARN) for the Exadata infrastructure.
    autonomous_data_storage_percentage float
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    autonomous_data_storage_size_in_tbs float
    The 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
    The available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    available_container_databases int
    The number of Autonomous CDBs that you can create with the currently available storage.
    available_cpus float
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    compute_model str
    The compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpu_core_count int
    The total number of CPU cores in the Autonomous VM cluster.
    cpu_core_count_per_node int
    The number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    cpu_percentage float
    The percentage of total CPU cores currently in use in the Autonomous VM cluster.
    created_at str
    The date and time when the Autonomous VM cluster was created.
    data_storage_size_in_gbs float
    The total data storage allocated to the Autonomous VM cluster, in GB.
    data_storage_size_in_tbs float
    The total data storage allocated to the Autonomous VM cluster, in TB.
    db_servers Sequence[str]
    The database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    description str
    The description of the Autonomous VM cluster.
    display_name str
    The display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    domain str
    The domain name of the Autonomous VM cluster.
    exadata_storage_in_tbs_lowest_scaled_value float
    The minimum value to which you can scale down the Exadata storage, in TB.
    hostname str
    The hostname of the Autonomous VM cluster.
    is_mtls_enabled_vm_cluster bool
    Indicates whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    license_model str
    The 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

    The maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.

    The following arguments are optional:

    max_acds_lowest_scaled_value int
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memory_per_oracle_compute_unit_in_gbs int
    The amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    memory_size_in_gbs int
    The total amount of memory allocated to the Autonomous VM cluster, in gigabytes(GB).
    node_count int
    The number of database server nodes in the Autonomous VM cluster.
    non_provisionable_autonomous_container_databases int
    The number of Autonomous CDBs that can't be provisioned because of resource constraints.
    oci_resource_anchor_name str
    The name of the OCI resource anchor associated with this Autonomous VM cluster.
    oci_url str
    The URL for accessing the OCI console page for this Autonomous VM cluster.
    ocid str
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    odb_node_storage_size_in_gbs int
    The local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    percent_progress float
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    provisionable_autonomous_container_databases int
    The number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    provisioned_autonomous_container_databases int
    The number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    provisioned_cpus float
    The number of CPUs provisioned in the Autonomous VM cluster.
    reclaimable_cpus float
    The 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
    The number of CPU cores reserved for system operations and redundancy.
    scan_listener_port_non_tls int
    The 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
    The SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    shape str
    The shape of the Exadata infrastructure for the Autonomous VM cluster.
    status str
    The 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]
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    The combined set of user-defined and provider-defined tags.
    time_database_ssl_certificate_expires str
    The expiration date and time of the database SSL certificate.
    time_ords_certificate_expires str
    The expiration date and time of the ORDS certificate.
    time_zone str
    The time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts CloudAutonomousVmClusterTimeoutsArgs
    total_container_databases int
    The total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.
    arn String
    The Amazon Resource Name (ARN) for the Exadata infrastructure.
    autonomousDataStoragePercentage Number
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    autonomousDataStorageSizeInTbs Number
    The 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
    The available data storage space for Autonomous Databases in the Autonomous VM cluster, in TB.
    availableContainerDatabases Number
    The number of Autonomous CDBs that you can create with the currently available storage.
    availableCpus Number
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    cloudExadataInfrastructureId String
    Exadata infrastructure id. Changing this will force Terraform to create a new resource. Either the combination of cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    computeModel String
    The compute model of the Autonomous VM cluster: ECPU or OCPU.
    cpuCoreCount Number
    The total number of CPU cores in the Autonomous VM cluster.
    cpuCoreCountPerNode Number
    The number of CPU cores enabled per node in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    cpuPercentage Number
    The percentage of total CPU cores currently in use in the Autonomous VM cluster.
    createdAt String
    The date and time when the Autonomous VM cluster was created.
    dataStorageSizeInGbs Number
    The total data storage allocated to the Autonomous VM cluster, in GB.
    dataStorageSizeInTbs Number
    The total data storage allocated to the Autonomous VM cluster, in TB.
    dbServers List<String>
    The database servers in the Autonomous VM cluster. Changing this will force terraform to create new resource.
    description String
    The description of the Autonomous VM cluster.
    displayName String
    The display name of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    domain String
    The domain name of the Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue Number
    The minimum value to which you can scale down the Exadata storage, in TB.
    hostname String
    The hostname of the Autonomous VM cluster.
    isMtlsEnabledVmCluster Boolean
    Indicates whether mutual TLS (mTLS) authentication is enabled for the Autonomous VM cluster. Changing this will force terraform to create new resource.
    licenseModel String
    The 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

    The maintenance window of the Autonomous VM cluster. Changing this will force terraform to create new resource.

    The following arguments are optional:

    maxAcdsLowestScaledValue Number
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memoryPerOracleComputeUnitInGbs Number
    The amount of memory allocated per Oracle Compute Unit, in GB. Changing this will force terraform to create new resource.
    memorySizeInGbs Number
    The total amount of memory allocated to the Autonomous VM cluster, in gigabytes(GB).
    nodeCount Number
    The number of database server nodes in the Autonomous VM cluster.
    nonProvisionableAutonomousContainerDatabases Number
    The number of Autonomous CDBs that can't be provisioned because of resource constraints.
    ociResourceAnchorName String
    The name of the OCI resource anchor associated with this Autonomous VM cluster.
    ociUrl String
    The URL for accessing the OCI console page for this Autonomous VM cluster.
    ocid String
    The 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn 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 cloud_exadata_infrastructure_id and odb_network_id or cloud_exadata_infrastructure_arn and odb_network_arn must be used.
    odbNodeStorageSizeInGbs Number
    The local node storage allocated to the Autonomous VM cluster, in gigabytes (GB).
    percentProgress Number
    The progress of the current operation on the Autonomous VM cluster, as a percentage.
    provisionableAutonomousContainerDatabases Number
    The number of Autonomous CDBs that can be provisioned in the Autonomous VM cluster.
    provisionedAutonomousContainerDatabases Number
    The number of Autonomous CDBs currently provisioned in the Autonomous VM cluster.
    provisionedCpus Number
    The number of CPUs provisioned in the Autonomous VM cluster.
    reclaimableCpus Number
    The 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
    The number of CPU cores reserved for system operations and redundancy.
    scanListenerPortNonTls Number
    The SCAN listener port for non-TLS (TCP) protocol. The default is 1521. Changing this will force terraform to create new resource.
    scanListenerPortTls Number
    The SCAN listener port for TLS (TCP) protocol. The default is 2484. Changing this will force terraform to create new resource.
    shape String
    The shape of the Exadata infrastructure for the Autonomous VM cluster.
    status String
    The 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>
    A map of tags to assign to the exadata infrastructure. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    The combined set of user-defined and provider-defined tags.
    timeDatabaseSslCertificateExpires String
    The expiration date and time of the database SSL certificate.
    timeOrdsCertificateExpires String
    The expiration date and time of the ORDS certificate.
    timeZone String
    The time zone of the Autonomous VM cluster. Changing this will force terraform to create new resource.
    timeouts Property Map
    totalContainerDatabases Number
    The total number of Autonomous Container Databases that can be created with the allocated local storage. Changing this will force terraform to create new resource.

    Supporting Types

    CloudAutonomousVmClusterMaintenanceWindow, CloudAutonomousVmClusterMaintenanceWindowArgs

    Preference string
    The preference for the maintenance window scheduling. Changing this will force terraform to create new resource.
    DaysOfWeeks List<CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek>
    The days of the week when maintenance can be performed. Changing this will force terraform to create new resource.
    HoursOfDays List<int>
    The hours of the day when maintenance can be performed. Changing this will force terraform to create new resource.
    LeadTimeInWeeks int
    The lead time in weeks before the maintenance window. Changing this will force terraform to create new resource.
    Months List<CloudAutonomousVmClusterMaintenanceWindowMonth>
    The months when maintenance can be performed. Changing this will force terraform to create new resource.
    WeeksOfMonths List<int>
    Indicates whether to skip release updates during maintenance. Changing this will force terraform to create new resource.
    Preference string
    The preference for the maintenance window scheduling. Changing this will force terraform to create new resource.
    DaysOfWeeks []CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek
    The days of the week when maintenance can be performed. Changing this will force terraform to create new resource.
    HoursOfDays []int
    The hours of the day when maintenance can be performed. Changing this will force terraform to create new resource.
    LeadTimeInWeeks int
    The lead time in weeks before the maintenance window. Changing this will force terraform to create new resource.
    Months []CloudAutonomousVmClusterMaintenanceWindowMonth
    The months when maintenance can be performed. Changing this will force terraform to create new resource.
    WeeksOfMonths []int
    Indicates whether to skip release updates during maintenance. Changing this will force terraform to create new resource.
    preference String
    The preference for the maintenance window scheduling. Changing this will force terraform to create new resource.
    daysOfWeeks List<CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek>
    The days of the week when maintenance can be performed. Changing this will force terraform to create new resource.
    hoursOfDays List<Integer>
    The hours of the day when maintenance can be performed. Changing this will force terraform to create new resource.
    leadTimeInWeeks Integer
    The lead time in weeks before the maintenance window. Changing this will force terraform to create new resource.
    months List<CloudAutonomousVmClusterMaintenanceWindowMonth>
    The months when maintenance can be performed. Changing this will force terraform to create new resource.
    weeksOfMonths List<Integer>
    Indicates whether to skip release updates during maintenance. Changing this will force terraform to create new resource.
    preference string
    The preference for the maintenance window scheduling. Changing this will force terraform to create new resource.
    daysOfWeeks CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek[]
    The days of the week when maintenance can be performed. Changing this will force terraform to create new resource.
    hoursOfDays number[]
    The hours of the day when maintenance can be performed. Changing this will force terraform to create new resource.
    leadTimeInWeeks number
    The lead time in weeks before the maintenance window. Changing this will force terraform to create new resource.
    months CloudAutonomousVmClusterMaintenanceWindowMonth[]
    The months when maintenance can be performed. Changing this will force terraform to create new resource.
    weeksOfMonths number[]
    Indicates whether to skip release updates during maintenance. Changing this will force terraform to create new resource.
    preference str
    The preference for the maintenance window scheduling. Changing this will force terraform to create new resource.
    days_of_weeks Sequence[CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek]
    The days of the week when maintenance can be performed. Changing this will force terraform to create new resource.
    hours_of_days Sequence[int]
    The hours of the day when maintenance can be performed. Changing this will force terraform to create new resource.
    lead_time_in_weeks int
    The lead time in weeks before the maintenance window. Changing this will force terraform to create new resource.
    months Sequence[CloudAutonomousVmClusterMaintenanceWindowMonth]
    The months when maintenance can be performed. Changing this will force terraform to create new resource.
    weeks_of_months Sequence[int]
    Indicates whether to skip release updates during maintenance. Changing this will force terraform to create new resource.
    preference String
    The preference for the maintenance window scheduling. Changing this will force terraform to create new resource.
    daysOfWeeks List<Property Map>
    The days of the week when maintenance can be performed. Changing this will force terraform to create new resource.
    hoursOfDays List<Number>
    The hours of the day when maintenance can be performed. Changing this will force terraform to create new resource.
    leadTimeInWeeks Number
    The lead time in weeks before the maintenance window. Changing this will force terraform to create new resource.
    months List<Property Map>
    The months when maintenance can be performed. Changing this will force terraform to create new resource.
    weeksOfMonths List<Number>
    Indicates whether to skip release updates during maintenance. Changing this will force terraform to create new resource.

    CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek, CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs

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

    CloudAutonomousVmClusterMaintenanceWindowMonth, CloudAutonomousVmClusterMaintenanceWindowMonthArgs

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

    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 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
    Viewing docs for AWS v7.22.0
    published on Wednesday, Mar 11, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.