1. Packages
  2. AWS
  3. API Docs
  4. odb
  5. CloudAutonomousVmCluster
AWS v7.8.0 published on Tuesday, Oct 7, 2025 by Pulumi

aws.odb.CloudAutonomousVmCluster

Deploy with Pulumi
aws logo
AWS v7.8.0 published on Tuesday, Oct 7, 2025 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: "<exadata_infra_id>",
        odbNetworkId: "<odb_net_id>",
        displayName: "Ofake-avmc-my_avmc",
        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.test.id>",
        odbNetworkId: "<aws_odb_network.test.id>",
        displayName: "Ofake_my avmc",
        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="<exadata_infra_id>",
        odb_network_id="<odb_net_id>",
        display_name="Ofake-avmc-my_avmc",
        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.test.id>",
        odb_network_id="<aws_odb_network.test.id>",
        display_name="Ofake_my avmc",
        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("<exadata_infra_id>"),
    			OdbNetworkId:                    pulumi.String("<odb_net_id>"),
    			DisplayName:                     pulumi.String("Ofake-avmc-my_avmc"),
    			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.test.id>"),
    			OdbNetworkId:                    pulumi.String("<aws_odb_network.test.id>"),
    			DisplayName:                     pulumi.String("Ofake_my avmc"),
    			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 = "<exadata_infra_id>",
            OdbNetworkId = "<odb_net_id>",
            DisplayName = "Ofake-avmc-my_avmc",
            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.test.id>",
            OdbNetworkId = "<aws_odb_network.test.id>",
            DisplayName = "Ofake_my avmc",
            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("<exadata_infra_id>")
                .odbNetworkId("<odb_net_id>")
                .displayName("Ofake-avmc-my_avmc")
                .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.test.id>")
                .odbNetworkId("<aws_odb_network.test.id>")
                .displayName("Ofake_my avmc")
                .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: <exadata_infra_id>
          odbNetworkId: <odb_net_id>
          displayName: Ofake-avmc-my_avmc
          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.test.id>
          odbNetworkId: <aws_odb_network.test.id>
          displayName: Ofake_my avmc
          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,
                                 odb_network_id: Optional[str] = None,
                                 cloud_exadata_infrastructure_id: Optional[str] = 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,
                                 total_container_databases: Optional[int] = None,
                                 scan_listener_port_tls: Optional[int] = None,
                                 scan_listener_port_non_tls: Optional[int] = None,
                                 memory_per_oracle_compute_unit_in_gbs: Optional[int] = None,
                                 description: Optional[str] = None,
                                 region: Optional[str] = None,
                                 maintenance_window: Optional[CloudAutonomousVmClusterMaintenanceWindowArgs] = None,
                                 license_model: Optional[str] = None,
                                 tags: Optional[Mapping[str, str]] = None,
                                 time_zone: Optional[str] = None,
                                 timeouts: Optional[CloudAutonomousVmClusterTimeoutsArgs] = None,
                                 is_mtls_enabled_vm_cluster: Optional[bool] = 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()
    {
        OdbNetworkId = "string",
        CloudExadataInfrastructureId = "string",
        CpuCoreCountPerNode = 0,
        DbServers = new[]
        {
            "string",
        },
        AutonomousDataStorageSizeInTbs = 0,
        DisplayName = "string",
        TotalContainerDatabases = 0,
        ScanListenerPortTls = 0,
        ScanListenerPortNonTls = 0,
        MemoryPerOracleComputeUnitInGbs = 0,
        Description = "string",
        Region = "string",
        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,
            },
        },
        LicenseModel = "string",
        Tags = 
        {
            { "string", "string" },
        },
        TimeZone = "string",
        Timeouts = new Aws.Odb.Inputs.CloudAutonomousVmClusterTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
        IsMtlsEnabledVmCluster = false,
    });
    
    example, err := odb.NewCloudAutonomousVmCluster(ctx, "cloudAutonomousVmClusterResource", &odb.CloudAutonomousVmClusterArgs{
    	OdbNetworkId:                 pulumi.String("string"),
    	CloudExadataInfrastructureId: pulumi.String("string"),
    	CpuCoreCountPerNode:          pulumi.Int(0),
    	DbServers: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	AutonomousDataStorageSizeInTbs:  pulumi.Float64(0),
    	DisplayName:                     pulumi.String("string"),
    	TotalContainerDatabases:         pulumi.Int(0),
    	ScanListenerPortTls:             pulumi.Int(0),
    	ScanListenerPortNonTls:          pulumi.Int(0),
    	MemoryPerOracleComputeUnitInGbs: pulumi.Int(0),
    	Description:                     pulumi.String("string"),
    	Region:                          pulumi.String("string"),
    	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),
    		},
    	},
    	LicenseModel: 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"),
    	},
    	IsMtlsEnabledVmCluster: pulumi.Bool(false),
    })
    
    var cloudAutonomousVmClusterResource = new CloudAutonomousVmCluster("cloudAutonomousVmClusterResource", CloudAutonomousVmClusterArgs.builder()
        .odbNetworkId("string")
        .cloudExadataInfrastructureId("string")
        .cpuCoreCountPerNode(0)
        .dbServers("string")
        .autonomousDataStorageSizeInTbs(0.0)
        .displayName("string")
        .totalContainerDatabases(0)
        .scanListenerPortTls(0)
        .scanListenerPortNonTls(0)
        .memoryPerOracleComputeUnitInGbs(0)
        .description("string")
        .region("string")
        .maintenanceWindow(CloudAutonomousVmClusterMaintenanceWindowArgs.builder()
            .preference("string")
            .daysOfWeeks(CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs.builder()
                .name("string")
                .build())
            .hoursOfDays(0)
            .leadTimeInWeeks(0)
            .months(CloudAutonomousVmClusterMaintenanceWindowMonthArgs.builder()
                .name("string")
                .build())
            .weeksOfMonths(0)
            .build())
        .licenseModel("string")
        .tags(Map.of("string", "string"))
        .timeZone("string")
        .timeouts(CloudAutonomousVmClusterTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .isMtlsEnabledVmCluster(false)
        .build());
    
    cloud_autonomous_vm_cluster_resource = aws.odb.CloudAutonomousVmCluster("cloudAutonomousVmClusterResource",
        odb_network_id="string",
        cloud_exadata_infrastructure_id="string",
        cpu_core_count_per_node=0,
        db_servers=["string"],
        autonomous_data_storage_size_in_tbs=0,
        display_name="string",
        total_container_databases=0,
        scan_listener_port_tls=0,
        scan_listener_port_non_tls=0,
        memory_per_oracle_compute_unit_in_gbs=0,
        description="string",
        region="string",
        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],
        },
        license_model="string",
        tags={
            "string": "string",
        },
        time_zone="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        },
        is_mtls_enabled_vm_cluster=False)
    
    const cloudAutonomousVmClusterResource = new aws.odb.CloudAutonomousVmCluster("cloudAutonomousVmClusterResource", {
        odbNetworkId: "string",
        cloudExadataInfrastructureId: "string",
        cpuCoreCountPerNode: 0,
        dbServers: ["string"],
        autonomousDataStorageSizeInTbs: 0,
        displayName: "string",
        totalContainerDatabases: 0,
        scanListenerPortTls: 0,
        scanListenerPortNonTls: 0,
        memoryPerOracleComputeUnitInGbs: 0,
        description: "string",
        region: "string",
        maintenanceWindow: {
            preference: "string",
            daysOfWeeks: [{
                name: "string",
            }],
            hoursOfDays: [0],
            leadTimeInWeeks: 0,
            months: [{
                name: "string",
            }],
            weeksOfMonths: [0],
        },
        licenseModel: "string",
        tags: {
            string: "string",
        },
        timeZone: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
        isMtlsEnabledVmCluster: false,
    });
    
    type: aws:odb:CloudAutonomousVmCluster
    properties:
        autonomousDataStorageSizeInTbs: 0
        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
        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
    CloudExadataInfrastructureId string
    CpuCoreCountPerNode int
    The number of CPU cores enabled per node in the Autonomous VM cluster.
    DbServers List<string>
    DisplayName string
    MemoryPerOracleComputeUnitInGbs int
    OdbNetworkId string
    ScanListenerPortNonTls int
    ScanListenerPortTls int
    TotalContainerDatabases int
    Description string
    The description of the Autonomous VM cluster.
    IsMtlsEnabledVmCluster bool
    LicenseModel string
    MaintenanceWindow CloudAutonomousVmClusterMaintenanceWindow
    The maintenance window of the Autonomous VM cluster.
    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
    Timeouts CloudAutonomousVmClusterTimeouts
    AutonomousDataStorageSizeInTbs float64
    CloudExadataInfrastructureId string
    CpuCoreCountPerNode int
    The number of CPU cores enabled per node in the Autonomous VM cluster.
    DbServers []string
    DisplayName string
    MemoryPerOracleComputeUnitInGbs int
    OdbNetworkId string
    ScanListenerPortNonTls int
    ScanListenerPortTls int
    TotalContainerDatabases int
    Description string
    The description of the Autonomous VM cluster.
    IsMtlsEnabledVmCluster bool
    LicenseModel string
    MaintenanceWindow CloudAutonomousVmClusterMaintenanceWindowArgs
    The maintenance window of the Autonomous VM cluster.
    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
    Timeouts CloudAutonomousVmClusterTimeoutsArgs
    autonomousDataStorageSizeInTbs Double
    cloudExadataInfrastructureId String
    cpuCoreCountPerNode Integer
    The number of CPU cores enabled per node in the Autonomous VM cluster.
    dbServers List<String>
    displayName String
    memoryPerOracleComputeUnitInGbs Integer
    odbNetworkId String
    scanListenerPortNonTls Integer
    scanListenerPortTls Integer
    totalContainerDatabases Integer
    description String
    The description of the Autonomous VM cluster.
    isMtlsEnabledVmCluster Boolean
    licenseModel String
    maintenanceWindow CloudAutonomousVmClusterMaintenanceWindow
    The maintenance window of the Autonomous VM cluster.
    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
    timeouts CloudAutonomousVmClusterTimeouts
    autonomousDataStorageSizeInTbs number
    cloudExadataInfrastructureId string
    cpuCoreCountPerNode number
    The number of CPU cores enabled per node in the Autonomous VM cluster.
    dbServers string[]
    displayName string
    memoryPerOracleComputeUnitInGbs number
    odbNetworkId string
    scanListenerPortNonTls number
    scanListenerPortTls number
    totalContainerDatabases number
    description string
    The description of the Autonomous VM cluster.
    isMtlsEnabledVmCluster boolean
    licenseModel string
    maintenanceWindow CloudAutonomousVmClusterMaintenanceWindow
    The maintenance window of the Autonomous VM cluster.
    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
    timeouts CloudAutonomousVmClusterTimeouts
    autonomous_data_storage_size_in_tbs float
    cloud_exadata_infrastructure_id str
    cpu_core_count_per_node int
    The number of CPU cores enabled per node in the Autonomous VM cluster.
    db_servers Sequence[str]
    display_name str
    memory_per_oracle_compute_unit_in_gbs int
    odb_network_id str
    scan_listener_port_non_tls int
    scan_listener_port_tls int
    total_container_databases int
    description str
    The description of the Autonomous VM cluster.
    is_mtls_enabled_vm_cluster bool
    license_model str
    maintenance_window CloudAutonomousVmClusterMaintenanceWindowArgs
    The maintenance window of the Autonomous VM cluster.
    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
    timeouts CloudAutonomousVmClusterTimeoutsArgs
    autonomousDataStorageSizeInTbs Number
    cloudExadataInfrastructureId String
    cpuCoreCountPerNode Number
    The number of CPU cores enabled per node in the Autonomous VM cluster.
    dbServers List<String>
    displayName String
    memoryPerOracleComputeUnitInGbs Number
    odbNetworkId String
    scanListenerPortNonTls Number
    scanListenerPortTls Number
    totalContainerDatabases Number
    description String
    The description of the Autonomous VM cluster.
    isMtlsEnabledVmCluster Boolean
    licenseModel String
    maintenanceWindow Property Map
    The maintenance window of the Autonomous VM cluster.
    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
    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_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_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
    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.
    CloudExadataInfrastructureId string
    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.
    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>
    Description string
    The description of the Autonomous VM cluster.
    DisplayName string
    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
    LicenseModel string
    MaintenanceWindow CloudAutonomousVmClusterMaintenanceWindow
    The maintenance window of the Autonomous VM cluster.
    MaxAcdsLowestScaledValue int
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    MemoryPerOracleComputeUnitInGbs int
    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.
    OdbNetworkId string
    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
    ScanListenerPortTls int
    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
    Timeouts CloudAutonomousVmClusterTimeouts
    TotalContainerDatabases int
    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
    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.
    CloudExadataInfrastructureId string
    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.
    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
    Description string
    The description of the Autonomous VM cluster.
    DisplayName string
    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
    LicenseModel string
    MaintenanceWindow CloudAutonomousVmClusterMaintenanceWindowArgs
    The maintenance window of the Autonomous VM cluster.
    MaxAcdsLowestScaledValue int
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    MemoryPerOracleComputeUnitInGbs int
    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.
    OdbNetworkId string
    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
    ScanListenerPortTls int
    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
    Timeouts CloudAutonomousVmClusterTimeoutsArgs
    TotalContainerDatabases int
    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
    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.
    cloudExadataInfrastructureId String
    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.
    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>
    description String
    The description of the Autonomous VM cluster.
    displayName String
    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
    licenseModel String
    maintenanceWindow CloudAutonomousVmClusterMaintenanceWindow
    The maintenance window of the Autonomous VM cluster.
    maxAcdsLowestScaledValue Integer
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memoryPerOracleComputeUnitInGbs Integer
    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.
    odbNetworkId String
    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
    scanListenerPortTls Integer
    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
    timeouts CloudAutonomousVmClusterTimeouts
    totalContainerDatabases Integer
    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
    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.
    cloudExadataInfrastructureId string
    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.
    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[]
    description string
    The description of the Autonomous VM cluster.
    displayName string
    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
    licenseModel string
    maintenanceWindow CloudAutonomousVmClusterMaintenanceWindow
    The maintenance window of the Autonomous VM cluster.
    maxAcdsLowestScaledValue number
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memoryPerOracleComputeUnitInGbs number
    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.
    odbNetworkId string
    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
    scanListenerPortTls number
    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
    timeouts CloudAutonomousVmClusterTimeouts
    totalContainerDatabases number
    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
    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_id str
    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.
    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]
    description str
    The description of the Autonomous VM cluster.
    display_name str
    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
    license_model str
    maintenance_window CloudAutonomousVmClusterMaintenanceWindowArgs
    The maintenance window of the Autonomous VM cluster.
    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
    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_id str
    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
    scan_listener_port_tls int
    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
    timeouts CloudAutonomousVmClusterTimeoutsArgs
    total_container_databases int
    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
    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.
    cloudExadataInfrastructureId String
    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.
    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>
    description String
    The description of the Autonomous VM cluster.
    displayName String
    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
    licenseModel String
    maintenanceWindow Property Map
    The maintenance window of the Autonomous VM cluster.
    maxAcdsLowestScaledValue Number
    The minimum value to which you can scale down the maximum number of Autonomous CDBs.
    memoryPerOracleComputeUnitInGbs Number
    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.
    odbNetworkId String
    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
    scanListenerPortTls Number
    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
    timeouts Property Map
    totalContainerDatabases Number

    Supporting Types

    CloudAutonomousVmClusterMaintenanceWindow, CloudAutonomousVmClusterMaintenanceWindowArgs

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

    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
    AWS v7.8.0 published on Tuesday, Oct 7, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate