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

oci.Database.CloudAutonomousVmCluster

Explore with Pulumi AI

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

    This resource provides the Cloud Autonomous Vm Cluster resource in Oracle Cloud Infrastructure Database service.

    Creates an Autonomous Exadata VM cluster in the Oracle cloud. For Exadata Cloud@Customer systems, see CreateAutonomousVmCluster.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCloudAutonomousVmCluster = new oci.database.CloudAutonomousVmCluster("testCloudAutonomousVmCluster", {
        cloudExadataInfrastructureId: oci_database_cloud_exadata_infrastructure.test_cloud_exadata_infrastructure.id,
        compartmentId: _var.compartment_id,
        displayName: _var.cloud_autonomous_vm_cluster_display_name,
        subnetId: oci_core_subnet.test_subnet.id,
        autonomousDataStorageSizeInTbs: _var.cloud_autonomous_vm_cluster_autonomous_data_storage_size_in_tbs,
        clusterTimeZone: _var.cloud_autonomous_vm_cluster_cluster_time_zone,
        computeModel: _var.cloud_autonomous_vm_cluster_compute_model,
        cpuCoreCountPerNode: _var.cloud_autonomous_vm_cluster_cpu_core_count_per_node,
        dbServers: _var.cloud_autonomous_vm_cluster_db_servers,
        definedTags: _var.cloud_autonomous_vm_cluster_defined_tags,
        description: _var.cloud_autonomous_vm_cluster_description,
        freeformTags: {
            Department: "Finance",
        },
        isMtlsEnabledVmCluster: _var.cloud_autonomous_vm_cluster_is_mtls_enabled_vm_cluster,
        licenseModel: _var.cloud_autonomous_vm_cluster_license_model,
        maintenanceWindowDetails: {
            customActionTimeoutInMins: _var.cloud_autonomous_vm_cluster_maintenance_window_details_custom_action_timeout_in_mins,
            daysOfWeeks: [{
                name: _var.cloud_autonomous_vm_cluster_maintenance_window_details_days_of_week_name,
            }],
            hoursOfDays: _var.cloud_autonomous_vm_cluster_maintenance_window_details_hours_of_day,
            isCustomActionTimeoutEnabled: _var.cloud_autonomous_vm_cluster_maintenance_window_details_is_custom_action_timeout_enabled,
            isMonthlyPatchingEnabled: _var.cloud_autonomous_vm_cluster_maintenance_window_details_is_monthly_patching_enabled,
            leadTimeInWeeks: _var.cloud_autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks,
            months: [{
                name: _var.cloud_autonomous_vm_cluster_maintenance_window_details_months_name,
            }],
            patchingMode: _var.cloud_autonomous_vm_cluster_maintenance_window_details_patching_mode,
            preference: _var.cloud_autonomous_vm_cluster_maintenance_window_details_preference,
            weeksOfMonths: _var.cloud_autonomous_vm_cluster_maintenance_window_details_weeks_of_month,
        },
        memoryPerOracleComputeUnitInGbs: _var.cloud_autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs,
        nsgIds: _var.cloud_autonomous_vm_cluster_nsg_ids,
        scanListenerPortNonTls: _var.cloud_autonomous_vm_cluster_scan_listener_port_non_tls,
        scanListenerPortTls: _var.cloud_autonomous_vm_cluster_scan_listener_port_tls,
        totalContainerDatabases: _var.cloud_autonomous_vm_cluster_total_container_databases,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_cloud_autonomous_vm_cluster = oci.database.CloudAutonomousVmCluster("testCloudAutonomousVmCluster",
        cloud_exadata_infrastructure_id=oci_database_cloud_exadata_infrastructure["test_cloud_exadata_infrastructure"]["id"],
        compartment_id=var["compartment_id"],
        display_name=var["cloud_autonomous_vm_cluster_display_name"],
        subnet_id=oci_core_subnet["test_subnet"]["id"],
        autonomous_data_storage_size_in_tbs=var["cloud_autonomous_vm_cluster_autonomous_data_storage_size_in_tbs"],
        cluster_time_zone=var["cloud_autonomous_vm_cluster_cluster_time_zone"],
        compute_model=var["cloud_autonomous_vm_cluster_compute_model"],
        cpu_core_count_per_node=var["cloud_autonomous_vm_cluster_cpu_core_count_per_node"],
        db_servers=var["cloud_autonomous_vm_cluster_db_servers"],
        defined_tags=var["cloud_autonomous_vm_cluster_defined_tags"],
        description=var["cloud_autonomous_vm_cluster_description"],
        freeform_tags={
            "Department": "Finance",
        },
        is_mtls_enabled_vm_cluster=var["cloud_autonomous_vm_cluster_is_mtls_enabled_vm_cluster"],
        license_model=var["cloud_autonomous_vm_cluster_license_model"],
        maintenance_window_details=oci.database.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs(
            custom_action_timeout_in_mins=var["cloud_autonomous_vm_cluster_maintenance_window_details_custom_action_timeout_in_mins"],
            days_of_weeks=[oci.database.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs(
                name=var["cloud_autonomous_vm_cluster_maintenance_window_details_days_of_week_name"],
            )],
            hours_of_days=var["cloud_autonomous_vm_cluster_maintenance_window_details_hours_of_day"],
            is_custom_action_timeout_enabled=var["cloud_autonomous_vm_cluster_maintenance_window_details_is_custom_action_timeout_enabled"],
            is_monthly_patching_enabled=var["cloud_autonomous_vm_cluster_maintenance_window_details_is_monthly_patching_enabled"],
            lead_time_in_weeks=var["cloud_autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks"],
            months=[oci.database.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs(
                name=var["cloud_autonomous_vm_cluster_maintenance_window_details_months_name"],
            )],
            patching_mode=var["cloud_autonomous_vm_cluster_maintenance_window_details_patching_mode"],
            preference=var["cloud_autonomous_vm_cluster_maintenance_window_details_preference"],
            weeks_of_months=var["cloud_autonomous_vm_cluster_maintenance_window_details_weeks_of_month"],
        ),
        memory_per_oracle_compute_unit_in_gbs=var["cloud_autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs"],
        nsg_ids=var["cloud_autonomous_vm_cluster_nsg_ids"],
        scan_listener_port_non_tls=var["cloud_autonomous_vm_cluster_scan_listener_port_non_tls"],
        scan_listener_port_tls=var["cloud_autonomous_vm_cluster_scan_listener_port_tls"],
        total_container_databases=var["cloud_autonomous_vm_cluster_total_container_databases"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Database"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Database.NewCloudAutonomousVmCluster(ctx, "testCloudAutonomousVmCluster", &Database.CloudAutonomousVmClusterArgs{
    			CloudExadataInfrastructureId:   pulumi.Any(oci_database_cloud_exadata_infrastructure.Test_cloud_exadata_infrastructure.Id),
    			CompartmentId:                  pulumi.Any(_var.Compartment_id),
    			DisplayName:                    pulumi.Any(_var.Cloud_autonomous_vm_cluster_display_name),
    			SubnetId:                       pulumi.Any(oci_core_subnet.Test_subnet.Id),
    			AutonomousDataStorageSizeInTbs: pulumi.Any(_var.Cloud_autonomous_vm_cluster_autonomous_data_storage_size_in_tbs),
    			ClusterTimeZone:                pulumi.Any(_var.Cloud_autonomous_vm_cluster_cluster_time_zone),
    			ComputeModel:                   pulumi.Any(_var.Cloud_autonomous_vm_cluster_compute_model),
    			CpuCoreCountPerNode:            pulumi.Any(_var.Cloud_autonomous_vm_cluster_cpu_core_count_per_node),
    			DbServers:                      pulumi.Any(_var.Cloud_autonomous_vm_cluster_db_servers),
    			DefinedTags:                    pulumi.Any(_var.Cloud_autonomous_vm_cluster_defined_tags),
    			Description:                    pulumi.Any(_var.Cloud_autonomous_vm_cluster_description),
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("Finance"),
    			},
    			IsMtlsEnabledVmCluster: pulumi.Any(_var.Cloud_autonomous_vm_cluster_is_mtls_enabled_vm_cluster),
    			LicenseModel:           pulumi.Any(_var.Cloud_autonomous_vm_cluster_license_model),
    			MaintenanceWindowDetails: &database.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs{
    				CustomActionTimeoutInMins: pulumi.Any(_var.Cloud_autonomous_vm_cluster_maintenance_window_details_custom_action_timeout_in_mins),
    				DaysOfWeeks: database.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArray{
    					&database.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs{
    						Name: pulumi.Any(_var.Cloud_autonomous_vm_cluster_maintenance_window_details_days_of_week_name),
    					},
    				},
    				HoursOfDays:                  pulumi.Any(_var.Cloud_autonomous_vm_cluster_maintenance_window_details_hours_of_day),
    				IsCustomActionTimeoutEnabled: pulumi.Any(_var.Cloud_autonomous_vm_cluster_maintenance_window_details_is_custom_action_timeout_enabled),
    				IsMonthlyPatchingEnabled:     pulumi.Any(_var.Cloud_autonomous_vm_cluster_maintenance_window_details_is_monthly_patching_enabled),
    				LeadTimeInWeeks:              pulumi.Any(_var.Cloud_autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks),
    				Months: database.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArray{
    					&database.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs{
    						Name: pulumi.Any(_var.Cloud_autonomous_vm_cluster_maintenance_window_details_months_name),
    					},
    				},
    				PatchingMode:  pulumi.Any(_var.Cloud_autonomous_vm_cluster_maintenance_window_details_patching_mode),
    				Preference:    pulumi.Any(_var.Cloud_autonomous_vm_cluster_maintenance_window_details_preference),
    				WeeksOfMonths: pulumi.Any(_var.Cloud_autonomous_vm_cluster_maintenance_window_details_weeks_of_month),
    			},
    			MemoryPerOracleComputeUnitInGbs: pulumi.Any(_var.Cloud_autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs),
    			NsgIds:                          pulumi.Any(_var.Cloud_autonomous_vm_cluster_nsg_ids),
    			ScanListenerPortNonTls:          pulumi.Any(_var.Cloud_autonomous_vm_cluster_scan_listener_port_non_tls),
    			ScanListenerPortTls:             pulumi.Any(_var.Cloud_autonomous_vm_cluster_scan_listener_port_tls),
    			TotalContainerDatabases:         pulumi.Any(_var.Cloud_autonomous_vm_cluster_total_container_databases),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testCloudAutonomousVmCluster = new Oci.Database.CloudAutonomousVmCluster("testCloudAutonomousVmCluster", new()
        {
            CloudExadataInfrastructureId = oci_database_cloud_exadata_infrastructure.Test_cloud_exadata_infrastructure.Id,
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Cloud_autonomous_vm_cluster_display_name,
            SubnetId = oci_core_subnet.Test_subnet.Id,
            AutonomousDataStorageSizeInTbs = @var.Cloud_autonomous_vm_cluster_autonomous_data_storage_size_in_tbs,
            ClusterTimeZone = @var.Cloud_autonomous_vm_cluster_cluster_time_zone,
            ComputeModel = @var.Cloud_autonomous_vm_cluster_compute_model,
            CpuCoreCountPerNode = @var.Cloud_autonomous_vm_cluster_cpu_core_count_per_node,
            DbServers = @var.Cloud_autonomous_vm_cluster_db_servers,
            DefinedTags = @var.Cloud_autonomous_vm_cluster_defined_tags,
            Description = @var.Cloud_autonomous_vm_cluster_description,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            IsMtlsEnabledVmCluster = @var.Cloud_autonomous_vm_cluster_is_mtls_enabled_vm_cluster,
            LicenseModel = @var.Cloud_autonomous_vm_cluster_license_model,
            MaintenanceWindowDetails = new Oci.Database.Inputs.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs
            {
                CustomActionTimeoutInMins = @var.Cloud_autonomous_vm_cluster_maintenance_window_details_custom_action_timeout_in_mins,
                DaysOfWeeks = new[]
                {
                    new Oci.Database.Inputs.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs
                    {
                        Name = @var.Cloud_autonomous_vm_cluster_maintenance_window_details_days_of_week_name,
                    },
                },
                HoursOfDays = @var.Cloud_autonomous_vm_cluster_maintenance_window_details_hours_of_day,
                IsCustomActionTimeoutEnabled = @var.Cloud_autonomous_vm_cluster_maintenance_window_details_is_custom_action_timeout_enabled,
                IsMonthlyPatchingEnabled = @var.Cloud_autonomous_vm_cluster_maintenance_window_details_is_monthly_patching_enabled,
                LeadTimeInWeeks = @var.Cloud_autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks,
                Months = new[]
                {
                    new Oci.Database.Inputs.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs
                    {
                        Name = @var.Cloud_autonomous_vm_cluster_maintenance_window_details_months_name,
                    },
                },
                PatchingMode = @var.Cloud_autonomous_vm_cluster_maintenance_window_details_patching_mode,
                Preference = @var.Cloud_autonomous_vm_cluster_maintenance_window_details_preference,
                WeeksOfMonths = @var.Cloud_autonomous_vm_cluster_maintenance_window_details_weeks_of_month,
            },
            MemoryPerOracleComputeUnitInGbs = @var.Cloud_autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs,
            NsgIds = @var.Cloud_autonomous_vm_cluster_nsg_ids,
            ScanListenerPortNonTls = @var.Cloud_autonomous_vm_cluster_scan_listener_port_non_tls,
            ScanListenerPortTls = @var.Cloud_autonomous_vm_cluster_scan_listener_port_tls,
            TotalContainerDatabases = @var.Cloud_autonomous_vm_cluster_total_container_databases,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Database.CloudAutonomousVmCluster;
    import com.pulumi.oci.Database.CloudAutonomousVmClusterArgs;
    import com.pulumi.oci.Database.inputs.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs;
    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 testCloudAutonomousVmCluster = new CloudAutonomousVmCluster("testCloudAutonomousVmCluster", CloudAutonomousVmClusterArgs.builder()        
                .cloudExadataInfrastructureId(oci_database_cloud_exadata_infrastructure.test_cloud_exadata_infrastructure().id())
                .compartmentId(var_.compartment_id())
                .displayName(var_.cloud_autonomous_vm_cluster_display_name())
                .subnetId(oci_core_subnet.test_subnet().id())
                .autonomousDataStorageSizeInTbs(var_.cloud_autonomous_vm_cluster_autonomous_data_storage_size_in_tbs())
                .clusterTimeZone(var_.cloud_autonomous_vm_cluster_cluster_time_zone())
                .computeModel(var_.cloud_autonomous_vm_cluster_compute_model())
                .cpuCoreCountPerNode(var_.cloud_autonomous_vm_cluster_cpu_core_count_per_node())
                .dbServers(var_.cloud_autonomous_vm_cluster_db_servers())
                .definedTags(var_.cloud_autonomous_vm_cluster_defined_tags())
                .description(var_.cloud_autonomous_vm_cluster_description())
                .freeformTags(Map.of("Department", "Finance"))
                .isMtlsEnabledVmCluster(var_.cloud_autonomous_vm_cluster_is_mtls_enabled_vm_cluster())
                .licenseModel(var_.cloud_autonomous_vm_cluster_license_model())
                .maintenanceWindowDetails(CloudAutonomousVmClusterMaintenanceWindowDetailsArgs.builder()
                    .customActionTimeoutInMins(var_.cloud_autonomous_vm_cluster_maintenance_window_details_custom_action_timeout_in_mins())
                    .daysOfWeeks(CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs.builder()
                        .name(var_.cloud_autonomous_vm_cluster_maintenance_window_details_days_of_week_name())
                        .build())
                    .hoursOfDays(var_.cloud_autonomous_vm_cluster_maintenance_window_details_hours_of_day())
                    .isCustomActionTimeoutEnabled(var_.cloud_autonomous_vm_cluster_maintenance_window_details_is_custom_action_timeout_enabled())
                    .isMonthlyPatchingEnabled(var_.cloud_autonomous_vm_cluster_maintenance_window_details_is_monthly_patching_enabled())
                    .leadTimeInWeeks(var_.cloud_autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks())
                    .months(CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs.builder()
                        .name(var_.cloud_autonomous_vm_cluster_maintenance_window_details_months_name())
                        .build())
                    .patchingMode(var_.cloud_autonomous_vm_cluster_maintenance_window_details_patching_mode())
                    .preference(var_.cloud_autonomous_vm_cluster_maintenance_window_details_preference())
                    .weeksOfMonths(var_.cloud_autonomous_vm_cluster_maintenance_window_details_weeks_of_month())
                    .build())
                .memoryPerOracleComputeUnitInGbs(var_.cloud_autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs())
                .nsgIds(var_.cloud_autonomous_vm_cluster_nsg_ids())
                .scanListenerPortNonTls(var_.cloud_autonomous_vm_cluster_scan_listener_port_non_tls())
                .scanListenerPortTls(var_.cloud_autonomous_vm_cluster_scan_listener_port_tls())
                .totalContainerDatabases(var_.cloud_autonomous_vm_cluster_total_container_databases())
                .build());
    
        }
    }
    
    resources:
      testCloudAutonomousVmCluster:
        type: oci:Database:CloudAutonomousVmCluster
        properties:
          #Required
          cloudExadataInfrastructureId: ${oci_database_cloud_exadata_infrastructure.test_cloud_exadata_infrastructure.id}
          compartmentId: ${var.compartment_id}
          displayName: ${var.cloud_autonomous_vm_cluster_display_name}
          subnetId: ${oci_core_subnet.test_subnet.id}
          #Optional
          autonomousDataStorageSizeInTbs: ${var.cloud_autonomous_vm_cluster_autonomous_data_storage_size_in_tbs}
          clusterTimeZone: ${var.cloud_autonomous_vm_cluster_cluster_time_zone}
          computeModel: ${var.cloud_autonomous_vm_cluster_compute_model}
          cpuCoreCountPerNode: ${var.cloud_autonomous_vm_cluster_cpu_core_count_per_node}
          dbServers: ${var.cloud_autonomous_vm_cluster_db_servers}
          definedTags: ${var.cloud_autonomous_vm_cluster_defined_tags}
          description: ${var.cloud_autonomous_vm_cluster_description}
          freeformTags:
            Department: Finance
          isMtlsEnabledVmCluster: ${var.cloud_autonomous_vm_cluster_is_mtls_enabled_vm_cluster}
          licenseModel: ${var.cloud_autonomous_vm_cluster_license_model}
          maintenanceWindowDetails:
            customActionTimeoutInMins: ${var.cloud_autonomous_vm_cluster_maintenance_window_details_custom_action_timeout_in_mins}
            daysOfWeeks:
              - name: ${var.cloud_autonomous_vm_cluster_maintenance_window_details_days_of_week_name}
            hoursOfDays: ${var.cloud_autonomous_vm_cluster_maintenance_window_details_hours_of_day}
            isCustomActionTimeoutEnabled: ${var.cloud_autonomous_vm_cluster_maintenance_window_details_is_custom_action_timeout_enabled}
            isMonthlyPatchingEnabled: ${var.cloud_autonomous_vm_cluster_maintenance_window_details_is_monthly_patching_enabled}
            leadTimeInWeeks: ${var.cloud_autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks}
            months:
              - name: ${var.cloud_autonomous_vm_cluster_maintenance_window_details_months_name}
            patchingMode: ${var.cloud_autonomous_vm_cluster_maintenance_window_details_patching_mode}
            preference: ${var.cloud_autonomous_vm_cluster_maintenance_window_details_preference}
            weeksOfMonths: ${var.cloud_autonomous_vm_cluster_maintenance_window_details_weeks_of_month}
          memoryPerOracleComputeUnitInGbs: ${var.cloud_autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs}
          nsgIds: ${var.cloud_autonomous_vm_cluster_nsg_ids}
          scanListenerPortNonTls: ${var.cloud_autonomous_vm_cluster_scan_listener_port_non_tls}
          scanListenerPortTls: ${var.cloud_autonomous_vm_cluster_scan_listener_port_tls}
          totalContainerDatabases: ${var.cloud_autonomous_vm_cluster_total_container_databases}
    

    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,
                                 display_name: Optional[str] = None,
                                 cloud_exadata_infrastructure_id: Optional[str] = None,
                                 subnet_id: Optional[str] = None,
                                 compartment_id: Optional[str] = None,
                                 freeform_tags: Optional[Mapping[str, Any]] = None,
                                 maintenance_window_details: Optional[_database.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs] = None,
                                 db_servers: Optional[Sequence[str]] = None,
                                 defined_tags: Optional[Mapping[str, Any]] = None,
                                 description: Optional[str] = None,
                                 compute_model: Optional[str] = None,
                                 autonomous_data_storage_size_in_tbs: Optional[float] = None,
                                 is_mtls_enabled_vm_cluster: Optional[bool] = None,
                                 license_model: Optional[str] = None,
                                 cpu_core_count_per_node: Optional[int] = None,
                                 memory_per_oracle_compute_unit_in_gbs: Optional[int] = None,
                                 nsg_ids: Optional[Sequence[str]] = None,
                                 scan_listener_port_non_tls: Optional[int] = None,
                                 scan_listener_port_tls: Optional[int] = None,
                                 cluster_time_zone: Optional[str] = None,
                                 time_updated: Optional[str] = None,
                                 total_container_databases: Optional[int] = 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: oci:Database: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.

    Example

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

    var cloudAutonomousVmClusterResource = new Oci.Database.CloudAutonomousVmCluster("cloudAutonomousVmClusterResource", new()
    {
        DisplayName = "string",
        CloudExadataInfrastructureId = "string",
        SubnetId = "string",
        CompartmentId = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
        MaintenanceWindowDetails = new Oci.Database.Inputs.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs
        {
            CustomActionTimeoutInMins = 0,
            DaysOfWeeks = new[]
            {
                new Oci.Database.Inputs.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs
                {
                    Name = "string",
                },
            },
            HoursOfDays = new[]
            {
                0,
            },
            IsCustomActionTimeoutEnabled = false,
            IsMonthlyPatchingEnabled = false,
            LeadTimeInWeeks = 0,
            Months = new[]
            {
                new Oci.Database.Inputs.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs
                {
                    Name = "string",
                },
            },
            PatchingMode = "string",
            Preference = "string",
            SkipRus = new[]
            {
                false,
            },
            WeeksOfMonths = new[]
            {
                0,
            },
        },
        DbServers = new[]
        {
            "string",
        },
        DefinedTags = 
        {
            { "string", "any" },
        },
        Description = "string",
        ComputeModel = "string",
        AutonomousDataStorageSizeInTbs = 0,
        IsMtlsEnabledVmCluster = false,
        LicenseModel = "string",
        CpuCoreCountPerNode = 0,
        MemoryPerOracleComputeUnitInGbs = 0,
        NsgIds = new[]
        {
            "string",
        },
        ScanListenerPortNonTls = 0,
        ScanListenerPortTls = 0,
        ClusterTimeZone = "string",
        TimeUpdated = "string",
        TotalContainerDatabases = 0,
    });
    
    example, err := Database.NewCloudAutonomousVmCluster(ctx, "cloudAutonomousVmClusterResource", &Database.CloudAutonomousVmClusterArgs{
    	DisplayName:                  pulumi.String("string"),
    	CloudExadataInfrastructureId: pulumi.String("string"),
    	SubnetId:                     pulumi.String("string"),
    	CompartmentId:                pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	MaintenanceWindowDetails: &database.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs{
    		CustomActionTimeoutInMins: pulumi.Int(0),
    		DaysOfWeeks: database.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArray{
    			&database.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs{
    				Name: pulumi.String("string"),
    			},
    		},
    		HoursOfDays: pulumi.IntArray{
    			pulumi.Int(0),
    		},
    		IsCustomActionTimeoutEnabled: pulumi.Bool(false),
    		IsMonthlyPatchingEnabled:     pulumi.Bool(false),
    		LeadTimeInWeeks:              pulumi.Int(0),
    		Months: database.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArray{
    			&database.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs{
    				Name: pulumi.String("string"),
    			},
    		},
    		PatchingMode: pulumi.String("string"),
    		Preference:   pulumi.String("string"),
    		SkipRus: pulumi.BoolArray{
    			pulumi.Bool(false),
    		},
    		WeeksOfMonths: pulumi.IntArray{
    			pulumi.Int(0),
    		},
    	},
    	DbServers: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	Description:                     pulumi.String("string"),
    	ComputeModel:                    pulumi.String("string"),
    	AutonomousDataStorageSizeInTbs:  pulumi.Float64(0),
    	IsMtlsEnabledVmCluster:          pulumi.Bool(false),
    	LicenseModel:                    pulumi.String("string"),
    	CpuCoreCountPerNode:             pulumi.Int(0),
    	MemoryPerOracleComputeUnitInGbs: pulumi.Int(0),
    	NsgIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	ScanListenerPortNonTls:  pulumi.Int(0),
    	ScanListenerPortTls:     pulumi.Int(0),
    	ClusterTimeZone:         pulumi.String("string"),
    	TimeUpdated:             pulumi.String("string"),
    	TotalContainerDatabases: pulumi.Int(0),
    })
    
    var cloudAutonomousVmClusterResource = new CloudAutonomousVmCluster("cloudAutonomousVmClusterResource", CloudAutonomousVmClusterArgs.builder()        
        .displayName("string")
        .cloudExadataInfrastructureId("string")
        .subnetId("string")
        .compartmentId("string")
        .freeformTags(Map.of("string", "any"))
        .maintenanceWindowDetails(CloudAutonomousVmClusterMaintenanceWindowDetailsArgs.builder()
            .customActionTimeoutInMins(0)
            .daysOfWeeks(CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs.builder()
                .name("string")
                .build())
            .hoursOfDays(0)
            .isCustomActionTimeoutEnabled(false)
            .isMonthlyPatchingEnabled(false)
            .leadTimeInWeeks(0)
            .months(CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs.builder()
                .name("string")
                .build())
            .patchingMode("string")
            .preference("string")
            .skipRus(false)
            .weeksOfMonths(0)
            .build())
        .dbServers("string")
        .definedTags(Map.of("string", "any"))
        .description("string")
        .computeModel("string")
        .autonomousDataStorageSizeInTbs(0)
        .isMtlsEnabledVmCluster(false)
        .licenseModel("string")
        .cpuCoreCountPerNode(0)
        .memoryPerOracleComputeUnitInGbs(0)
        .nsgIds("string")
        .scanListenerPortNonTls(0)
        .scanListenerPortTls(0)
        .clusterTimeZone("string")
        .timeUpdated("string")
        .totalContainerDatabases(0)
        .build());
    
    cloud_autonomous_vm_cluster_resource = oci.database.CloudAutonomousVmCluster("cloudAutonomousVmClusterResource",
        display_name="string",
        cloud_exadata_infrastructure_id="string",
        subnet_id="string",
        compartment_id="string",
        freeform_tags={
            "string": "any",
        },
        maintenance_window_details=oci.database.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs(
            custom_action_timeout_in_mins=0,
            days_of_weeks=[oci.database.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs(
                name="string",
            )],
            hours_of_days=[0],
            is_custom_action_timeout_enabled=False,
            is_monthly_patching_enabled=False,
            lead_time_in_weeks=0,
            months=[oci.database.CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs(
                name="string",
            )],
            patching_mode="string",
            preference="string",
            skip_rus=[False],
            weeks_of_months=[0],
        ),
        db_servers=["string"],
        defined_tags={
            "string": "any",
        },
        description="string",
        compute_model="string",
        autonomous_data_storage_size_in_tbs=0,
        is_mtls_enabled_vm_cluster=False,
        license_model="string",
        cpu_core_count_per_node=0,
        memory_per_oracle_compute_unit_in_gbs=0,
        nsg_ids=["string"],
        scan_listener_port_non_tls=0,
        scan_listener_port_tls=0,
        cluster_time_zone="string",
        time_updated="string",
        total_container_databases=0)
    
    const cloudAutonomousVmClusterResource = new oci.database.CloudAutonomousVmCluster("cloudAutonomousVmClusterResource", {
        displayName: "string",
        cloudExadataInfrastructureId: "string",
        subnetId: "string",
        compartmentId: "string",
        freeformTags: {
            string: "any",
        },
        maintenanceWindowDetails: {
            customActionTimeoutInMins: 0,
            daysOfWeeks: [{
                name: "string",
            }],
            hoursOfDays: [0],
            isCustomActionTimeoutEnabled: false,
            isMonthlyPatchingEnabled: false,
            leadTimeInWeeks: 0,
            months: [{
                name: "string",
            }],
            patchingMode: "string",
            preference: "string",
            skipRus: [false],
            weeksOfMonths: [0],
        },
        dbServers: ["string"],
        definedTags: {
            string: "any",
        },
        description: "string",
        computeModel: "string",
        autonomousDataStorageSizeInTbs: 0,
        isMtlsEnabledVmCluster: false,
        licenseModel: "string",
        cpuCoreCountPerNode: 0,
        memoryPerOracleComputeUnitInGbs: 0,
        nsgIds: ["string"],
        scanListenerPortNonTls: 0,
        scanListenerPortTls: 0,
        clusterTimeZone: "string",
        timeUpdated: "string",
        totalContainerDatabases: 0,
    });
    
    type: oci:Database:CloudAutonomousVmCluster
    properties:
        autonomousDataStorageSizeInTbs: 0
        cloudExadataInfrastructureId: string
        clusterTimeZone: string
        compartmentId: string
        computeModel: string
        cpuCoreCountPerNode: 0
        dbServers:
            - string
        definedTags:
            string: any
        description: string
        displayName: string
        freeformTags:
            string: any
        isMtlsEnabledVmCluster: false
        licenseModel: string
        maintenanceWindowDetails:
            customActionTimeoutInMins: 0
            daysOfWeeks:
                - name: string
            hoursOfDays:
                - 0
            isCustomActionTimeoutEnabled: false
            isMonthlyPatchingEnabled: false
            leadTimeInWeeks: 0
            months:
                - name: string
            patchingMode: string
            preference: string
            skipRus:
                - false
            weeksOfMonths:
                - 0
        memoryPerOracleComputeUnitInGbs: 0
        nsgIds:
            - string
        scanListenerPortNonTls: 0
        scanListenerPortTls: 0
        subnetId: string
        timeUpdated: 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

    The CloudAutonomousVmCluster resource accepts the following input properties:

    CloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    DisplayName string
    (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    SubnetId string
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    AutonomousDataStorageSizeInTbs double
    (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
    ClusterTimeZone string
    The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
    ComputeModel string
    The compute model of the Cloud Autonomous VM Cluster.
    CpuCoreCountPerNode int
    (Updatable) The number of CPU cores to be enabled per VM cluster node.
    DbServers List<string>
    The list of database servers.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    Description string
    (Updatable) User defined description of the cloud Autonomous VM cluster.
    FreeformTags Dictionary<string, object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsMtlsEnabledVmCluster bool
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    LicenseModel string

    (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.

    This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

    MaintenanceWindowDetails CloudAutonomousVmClusterMaintenanceWindowDetails
    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MemoryPerOracleComputeUnitInGbs int
    The amount of memory (in GBs) to be enabled per OCPU or ECPU.
    NsgIds List<string>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ScanListenerPortNonTls int
    The SCAN Listener Non TLS port. Default is 1521.
    ScanListenerPortTls int
    The SCAN Listener TLS port. Default is 2484.
    TimeUpdated string
    The last date and time that the cloud Autonomous VM cluster was updated.
    TotalContainerDatabases int

    (Updatable) The total number of Autonomous Container Databases that can be created.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    CloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    DisplayName string
    (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    SubnetId string
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    AutonomousDataStorageSizeInTbs float64
    (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
    ClusterTimeZone string
    The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
    ComputeModel string
    The compute model of the Cloud Autonomous VM Cluster.
    CpuCoreCountPerNode int
    (Updatable) The number of CPU cores to be enabled per VM cluster node.
    DbServers []string
    The list of database servers.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    Description string
    (Updatable) User defined description of the cloud Autonomous VM cluster.
    FreeformTags map[string]interface{}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsMtlsEnabledVmCluster bool
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    LicenseModel string

    (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.

    This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

    MaintenanceWindowDetails CloudAutonomousVmClusterMaintenanceWindowDetailsArgs
    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MemoryPerOracleComputeUnitInGbs int
    The amount of memory (in GBs) to be enabled per OCPU or ECPU.
    NsgIds []string
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ScanListenerPortNonTls int
    The SCAN Listener Non TLS port. Default is 1521.
    ScanListenerPortTls int
    The SCAN Listener TLS port. Default is 2484.
    TimeUpdated string
    The last date and time that the cloud Autonomous VM cluster was updated.
    TotalContainerDatabases int

    (Updatable) The total number of Autonomous Container Databases that can be created.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    cloudExadataInfrastructureId String
    The OCID of the cloud Exadata infrastructure.
    compartmentId String
    (Updatable) The OCID of the compartment.
    displayName String
    (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    subnetId String
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    autonomousDataStorageSizeInTbs Double
    (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
    clusterTimeZone String
    The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
    computeModel String
    The compute model of the Cloud Autonomous VM Cluster.
    cpuCoreCountPerNode Integer
    (Updatable) The number of CPU cores to be enabled per VM cluster node.
    dbServers List<String>
    The list of database servers.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description String
    (Updatable) User defined description of the cloud Autonomous VM cluster.
    freeformTags Map<String,Object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isMtlsEnabledVmCluster Boolean
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    licenseModel String

    (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.

    This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

    maintenanceWindowDetails CloudAutonomousVmClusterMaintenanceWindowDetails
    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    memoryPerOracleComputeUnitInGbs Integer
    The amount of memory (in GBs) to be enabled per OCPU or ECPU.
    nsgIds List<String>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    scanListenerPortNonTls Integer
    The SCAN Listener Non TLS port. Default is 1521.
    scanListenerPortTls Integer
    The SCAN Listener TLS port. Default is 2484.
    timeUpdated String
    The last date and time that the cloud Autonomous VM cluster was updated.
    totalContainerDatabases Integer

    (Updatable) The total number of Autonomous Container Databases that can be created.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    cloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure.
    compartmentId string
    (Updatable) The OCID of the compartment.
    displayName string
    (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    subnetId string
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    autonomousDataStorageSizeInTbs number
    (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
    clusterTimeZone string
    The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
    computeModel string
    The compute model of the Cloud Autonomous VM Cluster.
    cpuCoreCountPerNode number
    (Updatable) The number of CPU cores to be enabled per VM cluster node.
    dbServers string[]
    The list of database servers.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description string
    (Updatable) User defined description of the cloud Autonomous VM cluster.
    freeformTags {[key: string]: any}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isMtlsEnabledVmCluster boolean
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    licenseModel string

    (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.

    This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

    maintenanceWindowDetails CloudAutonomousVmClusterMaintenanceWindowDetails
    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    memoryPerOracleComputeUnitInGbs number
    The amount of memory (in GBs) to be enabled per OCPU or ECPU.
    nsgIds string[]
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    scanListenerPortNonTls number
    The SCAN Listener Non TLS port. Default is 1521.
    scanListenerPortTls number
    The SCAN Listener TLS port. Default is 2484.
    timeUpdated string
    The last date and time that the cloud Autonomous VM cluster was updated.
    totalContainerDatabases number

    (Updatable) The total number of Autonomous Container Databases that can be created.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    cloud_exadata_infrastructure_id str
    The OCID of the cloud Exadata infrastructure.
    compartment_id str
    (Updatable) The OCID of the compartment.
    display_name str
    (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    subnet_id str
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    autonomous_data_storage_size_in_tbs float
    (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
    cluster_time_zone str
    The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
    compute_model str
    The compute model of the Cloud Autonomous VM Cluster.
    cpu_core_count_per_node int
    (Updatable) The number of CPU cores to be enabled per VM cluster node.
    db_servers Sequence[str]
    The list of database servers.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description str
    (Updatable) User defined description of the cloud Autonomous VM cluster.
    freeform_tags Mapping[str, Any]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    is_mtls_enabled_vm_cluster bool
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    license_model str

    (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.

    This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

    maintenance_window_details database.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs
    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    memory_per_oracle_compute_unit_in_gbs int
    The amount of memory (in GBs) to be enabled per OCPU or ECPU.
    nsg_ids Sequence[str]
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    scan_listener_port_non_tls int
    The SCAN Listener Non TLS port. Default is 1521.
    scan_listener_port_tls int
    The SCAN Listener TLS port. Default is 2484.
    time_updated str
    The last date and time that the cloud Autonomous VM cluster was updated.
    total_container_databases int

    (Updatable) The total number of Autonomous Container Databases that can be created.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    cloudExadataInfrastructureId String
    The OCID of the cloud Exadata infrastructure.
    compartmentId String
    (Updatable) The OCID of the compartment.
    displayName String
    (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    subnetId String
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    autonomousDataStorageSizeInTbs Number
    (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
    clusterTimeZone String
    The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
    computeModel String
    The compute model of the Cloud Autonomous VM Cluster.
    cpuCoreCountPerNode Number
    (Updatable) The number of CPU cores to be enabled per VM cluster node.
    dbServers List<String>
    The list of database servers.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description String
    (Updatable) User defined description of the cloud Autonomous VM cluster.
    freeformTags Map<Any>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isMtlsEnabledVmCluster Boolean
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    licenseModel String

    (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.

    This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

    maintenanceWindowDetails Property Map
    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    memoryPerOracleComputeUnitInGbs Number
    The amount of memory (in GBs) to be enabled per OCPU or ECPU.
    nsgIds List<String>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    scanListenerPortNonTls Number
    The SCAN Listener Non TLS port. Default is 1521.
    scanListenerPortTls Number
    The SCAN Listener TLS port. Default is 2484.
    timeUpdated String
    The last date and time that the cloud Autonomous VM cluster was updated.
    totalContainerDatabases Number

    (Updatable) The total number of Autonomous Container Databases that can be created.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    Outputs

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

    AutonomousDataStoragePercentage double
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    AvailabilityDomain string
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    AvailableAutonomousDataStorageSizeInTbs double
    The data disk group size available for Autonomous Databases, in TBs.
    AvailableContainerDatabases int
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    AvailableCpus double
    CPU cores available for allocation to Autonomous Databases.
    CpuCoreCount int
    The number of CPU cores on the cloud Autonomous VM cluster.
    CpuPercentage double
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    DataStorageSizeInGb double
    The total data storage allocated, in gigabytes (GB).
    DataStorageSizeInTbs double
    The total data storage allocated, in terabytes (TB).
    DbNodeStorageSizeInGbs int
    The local node storage allocated in GBs.
    Domain string
    The domain name for the cloud Autonomous VM cluster.
    ExadataStorageInTbsLowestScaledValue double
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    Hostname string
    The hostname for the cloud Autonomous VM cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastMaintenanceRunId string
    The OCID of the last maintenance run.
    LastUpdateHistoryEntryId string
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MaintenanceWindows List<CloudAutonomousVmClusterMaintenanceWindow>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MaxAcdsLowestScaledValue int
    The lowest value to which maximum number of ACDs can be scaled down.
    MemorySizeInGbs int
    The memory allocated in GBs.
    NextMaintenanceRunId string
    The OCID of the next maintenance run.
    NodeCount int
    The number of database servers in the cloud VM cluster.
    NonProvisionableAutonomousContainerDatabases int
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    OcpuCount double
    The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
    OcpusLowestScaledValue int
    The lowest value to which ocpus can be scaled down.
    ProvisionableAutonomousContainerDatabases int
    The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    ProvisionedAutonomousContainerDatabases int
    The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
    ProvisionedCpus double
    The number of CPUs provisioned in an Autonomous VM Cluster.
    ReclaimableCpus double
    For Autonomous Databases on Dedicated Exadata Infrastructure:

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    ReservedCpus double
    The number of CPUs reserved in an Autonomous VM Cluster.
    Shape string
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    State string
    The current state of the cloud Autonomous VM cluster.
    TimeCreated string
    The date and time that the cloud Autonomous VM cluster was created.
    TotalAutonomousDataStorageInTbs double
    The total data disk group size for Autonomous Databases, in TBs.
    TotalCpus double
    The total number of CPUs in an Autonomous VM Cluster.
    AutonomousDataStoragePercentage float64
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    AvailabilityDomain string
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    AvailableAutonomousDataStorageSizeInTbs float64
    The data disk group size available for Autonomous Databases, in TBs.
    AvailableContainerDatabases int
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    AvailableCpus float64
    CPU cores available for allocation to Autonomous Databases.
    CpuCoreCount int
    The number of CPU cores on the cloud Autonomous VM cluster.
    CpuPercentage float64
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    DataStorageSizeInGb float64
    The total data storage allocated, in gigabytes (GB).
    DataStorageSizeInTbs float64
    The total data storage allocated, in terabytes (TB).
    DbNodeStorageSizeInGbs int
    The local node storage allocated in GBs.
    Domain string
    The domain name for the cloud Autonomous VM cluster.
    ExadataStorageInTbsLowestScaledValue float64
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    Hostname string
    The hostname for the cloud Autonomous VM cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastMaintenanceRunId string
    The OCID of the last maintenance run.
    LastUpdateHistoryEntryId string
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MaintenanceWindows []CloudAutonomousVmClusterMaintenanceWindow
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MaxAcdsLowestScaledValue int
    The lowest value to which maximum number of ACDs can be scaled down.
    MemorySizeInGbs int
    The memory allocated in GBs.
    NextMaintenanceRunId string
    The OCID of the next maintenance run.
    NodeCount int
    The number of database servers in the cloud VM cluster.
    NonProvisionableAutonomousContainerDatabases int
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    OcpuCount float64
    The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
    OcpusLowestScaledValue int
    The lowest value to which ocpus can be scaled down.
    ProvisionableAutonomousContainerDatabases int
    The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    ProvisionedAutonomousContainerDatabases int
    The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
    ProvisionedCpus float64
    The number of CPUs provisioned in an Autonomous VM Cluster.
    ReclaimableCpus float64
    For Autonomous Databases on Dedicated Exadata Infrastructure:

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    ReservedCpus float64
    The number of CPUs reserved in an Autonomous VM Cluster.
    Shape string
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    State string
    The current state of the cloud Autonomous VM cluster.
    TimeCreated string
    The date and time that the cloud Autonomous VM cluster was created.
    TotalAutonomousDataStorageInTbs float64
    The total data disk group size for Autonomous Databases, in TBs.
    TotalCpus float64
    The total number of CPUs in an Autonomous VM Cluster.
    autonomousDataStoragePercentage Double
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    availabilityDomain String
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    availableAutonomousDataStorageSizeInTbs Double
    The data disk group size available for Autonomous Databases, in TBs.
    availableContainerDatabases Integer
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    availableCpus Double
    CPU cores available for allocation to Autonomous Databases.
    cpuCoreCount Integer
    The number of CPU cores on the cloud Autonomous VM cluster.
    cpuPercentage Double
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    dataStorageSizeInGb Double
    The total data storage allocated, in gigabytes (GB).
    dataStorageSizeInTbs Double
    The total data storage allocated, in terabytes (TB).
    dbNodeStorageSizeInGbs Integer
    The local node storage allocated in GBs.
    domain String
    The domain name for the cloud Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue Double
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    hostname String
    The hostname for the cloud Autonomous VM cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    lastMaintenanceRunId String
    The OCID of the last maintenance run.
    lastUpdateHistoryEntryId String
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    maintenanceWindows List<CloudAutonomousVmClusterMaintenanceWindow>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxAcdsLowestScaledValue Integer
    The lowest value to which maximum number of ACDs can be scaled down.
    memorySizeInGbs Integer
    The memory allocated in GBs.
    nextMaintenanceRunId String
    The OCID of the next maintenance run.
    nodeCount Integer
    The number of database servers in the cloud VM cluster.
    nonProvisionableAutonomousContainerDatabases Integer
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    ocpuCount Double
    The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
    ocpusLowestScaledValue Integer
    The lowest value to which ocpus can be scaled down.
    provisionableAutonomousContainerDatabases Integer
    The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    provisionedAutonomousContainerDatabases Integer
    The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
    provisionedCpus Double
    The number of CPUs provisioned in an Autonomous VM Cluster.
    reclaimableCpus Double
    For Autonomous Databases on Dedicated Exadata Infrastructure:

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    reservedCpus Double
    The number of CPUs reserved in an Autonomous VM Cluster.
    shape String
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    state String
    The current state of the cloud Autonomous VM cluster.
    timeCreated String
    The date and time that the cloud Autonomous VM cluster was created.
    totalAutonomousDataStorageInTbs Double
    The total data disk group size for Autonomous Databases, in TBs.
    totalCpus Double
    The total number of CPUs in an Autonomous VM Cluster.
    autonomousDataStoragePercentage number
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    availabilityDomain string
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    availableAutonomousDataStorageSizeInTbs number
    The data disk group size available for Autonomous Databases, in TBs.
    availableContainerDatabases number
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    availableCpus number
    CPU cores available for allocation to Autonomous Databases.
    cpuCoreCount number
    The number of CPU cores on the cloud Autonomous VM cluster.
    cpuPercentage number
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    dataStorageSizeInGb number
    The total data storage allocated, in gigabytes (GB).
    dataStorageSizeInTbs number
    The total data storage allocated, in terabytes (TB).
    dbNodeStorageSizeInGbs number
    The local node storage allocated in GBs.
    domain string
    The domain name for the cloud Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue number
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    hostname string
    The hostname for the cloud Autonomous VM cluster.
    id string
    The provider-assigned unique ID for this managed resource.
    lastMaintenanceRunId string
    The OCID of the last maintenance run.
    lastUpdateHistoryEntryId string
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    maintenanceWindows CloudAutonomousVmClusterMaintenanceWindow[]
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxAcdsLowestScaledValue number
    The lowest value to which maximum number of ACDs can be scaled down.
    memorySizeInGbs number
    The memory allocated in GBs.
    nextMaintenanceRunId string
    The OCID of the next maintenance run.
    nodeCount number
    The number of database servers in the cloud VM cluster.
    nonProvisionableAutonomousContainerDatabases number
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    ocpuCount number
    The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
    ocpusLowestScaledValue number
    The lowest value to which ocpus can be scaled down.
    provisionableAutonomousContainerDatabases number
    The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    provisionedAutonomousContainerDatabases number
    The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
    provisionedCpus number
    The number of CPUs provisioned in an Autonomous VM Cluster.
    reclaimableCpus number
    For Autonomous Databases on Dedicated Exadata Infrastructure:

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    reservedCpus number
    The number of CPUs reserved in an Autonomous VM Cluster.
    shape string
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    state string
    The current state of the cloud Autonomous VM cluster.
    timeCreated string
    The date and time that the cloud Autonomous VM cluster was created.
    totalAutonomousDataStorageInTbs number
    The total data disk group size for Autonomous Databases, in TBs.
    totalCpus number
    The total number of CPUs in an Autonomous VM Cluster.
    autonomous_data_storage_percentage float
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    availability_domain str
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    available_autonomous_data_storage_size_in_tbs float
    The data disk group size available for Autonomous Databases, in TBs.
    available_container_databases int
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    available_cpus float
    CPU cores available for allocation to Autonomous Databases.
    cpu_core_count int
    The number of CPU cores on the cloud Autonomous VM cluster.
    cpu_percentage float
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    data_storage_size_in_gb float
    The total data storage allocated, in gigabytes (GB).
    data_storage_size_in_tbs float
    The total data storage allocated, in terabytes (TB).
    db_node_storage_size_in_gbs int
    The local node storage allocated in GBs.
    domain str
    The domain name for the cloud Autonomous VM cluster.
    exadata_storage_in_tbs_lowest_scaled_value float
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    hostname str
    The hostname for the cloud Autonomous VM cluster.
    id str
    The provider-assigned unique ID for this managed resource.
    last_maintenance_run_id str
    The OCID of the last maintenance run.
    last_update_history_entry_id str
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    lifecycle_details str
    Additional information about the current lifecycle state.
    maintenance_windows Sequence[database.CloudAutonomousVmClusterMaintenanceWindow]
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    max_acds_lowest_scaled_value int
    The lowest value to which maximum number of ACDs can be scaled down.
    memory_size_in_gbs int
    The memory allocated in GBs.
    next_maintenance_run_id str
    The OCID of the next maintenance run.
    node_count int
    The number of database servers in the cloud VM cluster.
    non_provisionable_autonomous_container_databases int
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    ocpu_count float
    The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
    ocpus_lowest_scaled_value int
    The lowest value to which ocpus can be scaled down.
    provisionable_autonomous_container_databases int
    The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    provisioned_autonomous_container_databases int
    The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
    provisioned_cpus float
    The number of CPUs provisioned in an Autonomous VM Cluster.
    reclaimable_cpus float
    For Autonomous Databases on Dedicated Exadata Infrastructure:

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    reserved_cpus float
    The number of CPUs reserved in an Autonomous VM Cluster.
    shape str
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    state str
    The current state of the cloud Autonomous VM cluster.
    time_created str
    The date and time that the cloud Autonomous VM cluster was created.
    total_autonomous_data_storage_in_tbs float
    The total data disk group size for Autonomous Databases, in TBs.
    total_cpus float
    The total number of CPUs in an Autonomous VM Cluster.
    autonomousDataStoragePercentage Number
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    availabilityDomain String
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    availableAutonomousDataStorageSizeInTbs Number
    The data disk group size available for Autonomous Databases, in TBs.
    availableContainerDatabases Number
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    availableCpus Number
    CPU cores available for allocation to Autonomous Databases.
    cpuCoreCount Number
    The number of CPU cores on the cloud Autonomous VM cluster.
    cpuPercentage Number
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    dataStorageSizeInGb Number
    The total data storage allocated, in gigabytes (GB).
    dataStorageSizeInTbs Number
    The total data storage allocated, in terabytes (TB).
    dbNodeStorageSizeInGbs Number
    The local node storage allocated in GBs.
    domain String
    The domain name for the cloud Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue Number
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    hostname String
    The hostname for the cloud Autonomous VM cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    lastMaintenanceRunId String
    The OCID of the last maintenance run.
    lastUpdateHistoryEntryId String
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    maintenanceWindows List<Property Map>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxAcdsLowestScaledValue Number
    The lowest value to which maximum number of ACDs can be scaled down.
    memorySizeInGbs Number
    The memory allocated in GBs.
    nextMaintenanceRunId String
    The OCID of the next maintenance run.
    nodeCount Number
    The number of database servers in the cloud VM cluster.
    nonProvisionableAutonomousContainerDatabases Number
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    ocpuCount Number
    The number of CPU cores on the cloud Autonomous VM cluster. Only 1 decimal place is allowed for the fractional part.
    ocpusLowestScaledValue Number
    The lowest value to which ocpus can be scaled down.
    provisionableAutonomousContainerDatabases Number
    The number of provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    provisionedAutonomousContainerDatabases Number
    The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
    provisionedCpus Number
    The number of CPUs provisioned in an Autonomous VM Cluster.
    reclaimableCpus Number
    For Autonomous Databases on Dedicated Exadata Infrastructure:

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    reservedCpus Number
    The number of CPUs reserved in an Autonomous VM Cluster.
    shape String
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    state String
    The current state of the cloud Autonomous VM cluster.
    timeCreated String
    The date and time that the cloud Autonomous VM cluster was created.
    totalAutonomousDataStorageInTbs Number
    The total data disk group size for Autonomous Databases, in TBs.
    totalCpus Number
    The total number of CPUs in an Autonomous VM Cluster.

    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,
            autonomous_data_storage_percentage: Optional[float] = None,
            autonomous_data_storage_size_in_tbs: Optional[float] = None,
            availability_domain: Optional[str] = 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,
            cluster_time_zone: Optional[str] = None,
            compartment_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,
            data_storage_size_in_gb: Optional[float] = None,
            data_storage_size_in_tbs: Optional[float] = None,
            db_node_storage_size_in_gbs: Optional[int] = None,
            db_servers: Optional[Sequence[str]] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            domain: Optional[str] = None,
            exadata_storage_in_tbs_lowest_scaled_value: Optional[float] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            hostname: Optional[str] = None,
            is_mtls_enabled_vm_cluster: Optional[bool] = None,
            last_maintenance_run_id: Optional[str] = None,
            last_update_history_entry_id: Optional[str] = None,
            license_model: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            maintenance_window_details: Optional[_database.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs] = None,
            maintenance_windows: Optional[Sequence[_database.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,
            next_maintenance_run_id: Optional[str] = None,
            node_count: Optional[int] = None,
            non_provisionable_autonomous_container_databases: Optional[int] = None,
            nsg_ids: Optional[Sequence[str]] = None,
            ocpu_count: Optional[float] = None,
            ocpus_lowest_scaled_value: Optional[int] = 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,
            reserved_cpus: Optional[float] = None,
            scan_listener_port_non_tls: Optional[int] = None,
            scan_listener_port_tls: Optional[int] = None,
            shape: Optional[str] = None,
            state: Optional[str] = None,
            subnet_id: Optional[str] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None,
            total_autonomous_data_storage_in_tbs: Optional[float] = None,
            total_container_databases: Optional[int] = None,
            total_cpus: Optional[float] = 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)
    Resource lookup is not supported in YAML
    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:
    AutonomousDataStoragePercentage double
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    AutonomousDataStorageSizeInTbs double
    (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
    AvailabilityDomain string
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    AvailableAutonomousDataStorageSizeInTbs double
    The data disk group size available for Autonomous Databases, in TBs.
    AvailableContainerDatabases int
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    AvailableCpus double
    CPU cores available for allocation to Autonomous Databases.
    CloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure.
    ClusterTimeZone string
    The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    ComputeModel string
    The compute model of the Cloud Autonomous VM Cluster.
    CpuCoreCount int
    The number of CPU cores on the cloud Autonomous VM cluster.
    CpuCoreCountPerNode int
    (Updatable) The number of CPU cores to be enabled per VM cluster node.
    CpuPercentage double
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    DataStorageSizeInGb double
    The total data storage allocated, in gigabytes (GB).
    DataStorageSizeInTbs double
    The total data storage allocated, in terabytes (TB).
    DbNodeStorageSizeInGbs int
    The local node storage allocated in GBs.
    DbServers List<string>
    The list of database servers.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    Description string
    (Updatable) User defined description of the cloud Autonomous VM cluster.
    DisplayName string
    (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    Domain string
    The domain name for the cloud Autonomous VM cluster.
    ExadataStorageInTbsLowestScaledValue double
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    FreeformTags Dictionary<string, object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Hostname string
    The hostname for the cloud Autonomous VM cluster.
    IsMtlsEnabledVmCluster bool
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    LastMaintenanceRunId string
    The OCID of the last maintenance run.
    LastUpdateHistoryEntryId string
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    LicenseModel string

    (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.

    This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

    LifecycleDetails string
    Additional information about the current lifecycle state.
    MaintenanceWindowDetails CloudAutonomousVmClusterMaintenanceWindowDetails
    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MaintenanceWindows List<CloudAutonomousVmClusterMaintenanceWindow>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MaxAcdsLowestScaledValue int
    The lowest value to which maximum number of ACDs can be scaled down.
    MemoryPerOracleComputeUnitInGbs int
    The amount of memory (in GBs) to be enabled per OCPU or ECPU.
    MemorySizeInGbs int
    The memory allocated in GBs.
    NextMaintenanceRunId string
    The OCID of the next maintenance run.
    NodeCount int
    The number of database servers in the cloud VM cluster.
    NonProvisionableAutonomousContainerDatabases int
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    NsgIds List<string>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

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

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    ReservedCpus double
    The number of CPUs reserved in an Autonomous VM Cluster.
    ScanListenerPortNonTls int
    The SCAN Listener Non TLS port. Default is 1521.
    ScanListenerPortTls int
    The SCAN Listener TLS port. Default is 2484.
    Shape string
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    State string
    The current state of the cloud Autonomous VM cluster.
    SubnetId string
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    TimeCreated string
    The date and time that the cloud Autonomous VM cluster was created.
    TimeUpdated string
    The last date and time that the cloud Autonomous VM cluster was updated.
    TotalAutonomousDataStorageInTbs double
    The total data disk group size for Autonomous Databases, in TBs.
    TotalContainerDatabases int

    (Updatable) The total number of Autonomous Container Databases that can be created.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    TotalCpus double
    The total number of CPUs in an Autonomous VM Cluster.
    AutonomousDataStoragePercentage float64
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    AutonomousDataStorageSizeInTbs float64
    (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
    AvailabilityDomain string
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    AvailableAutonomousDataStorageSizeInTbs float64
    The data disk group size available for Autonomous Databases, in TBs.
    AvailableContainerDatabases int
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    AvailableCpus float64
    CPU cores available for allocation to Autonomous Databases.
    CloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure.
    ClusterTimeZone string
    The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    ComputeModel string
    The compute model of the Cloud Autonomous VM Cluster.
    CpuCoreCount int
    The number of CPU cores on the cloud Autonomous VM cluster.
    CpuCoreCountPerNode int
    (Updatable) The number of CPU cores to be enabled per VM cluster node.
    CpuPercentage float64
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    DataStorageSizeInGb float64
    The total data storage allocated, in gigabytes (GB).
    DataStorageSizeInTbs float64
    The total data storage allocated, in terabytes (TB).
    DbNodeStorageSizeInGbs int
    The local node storage allocated in GBs.
    DbServers []string
    The list of database servers.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    Description string
    (Updatable) User defined description of the cloud Autonomous VM cluster.
    DisplayName string
    (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    Domain string
    The domain name for the cloud Autonomous VM cluster.
    ExadataStorageInTbsLowestScaledValue float64
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    FreeformTags map[string]interface{}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Hostname string
    The hostname for the cloud Autonomous VM cluster.
    IsMtlsEnabledVmCluster bool
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    LastMaintenanceRunId string
    The OCID of the last maintenance run.
    LastUpdateHistoryEntryId string
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    LicenseModel string

    (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.

    This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

    LifecycleDetails string
    Additional information about the current lifecycle state.
    MaintenanceWindowDetails CloudAutonomousVmClusterMaintenanceWindowDetailsArgs
    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MaintenanceWindows []CloudAutonomousVmClusterMaintenanceWindowArgs
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    MaxAcdsLowestScaledValue int
    The lowest value to which maximum number of ACDs can be scaled down.
    MemoryPerOracleComputeUnitInGbs int
    The amount of memory (in GBs) to be enabled per OCPU or ECPU.
    MemorySizeInGbs int
    The memory allocated in GBs.
    NextMaintenanceRunId string
    The OCID of the next maintenance run.
    NodeCount int
    The number of database servers in the cloud VM cluster.
    NonProvisionableAutonomousContainerDatabases int
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    NsgIds []string
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

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

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    ReservedCpus float64
    The number of CPUs reserved in an Autonomous VM Cluster.
    ScanListenerPortNonTls int
    The SCAN Listener Non TLS port. Default is 1521.
    ScanListenerPortTls int
    The SCAN Listener TLS port. Default is 2484.
    Shape string
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    State string
    The current state of the cloud Autonomous VM cluster.
    SubnetId string
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    TimeCreated string
    The date and time that the cloud Autonomous VM cluster was created.
    TimeUpdated string
    The last date and time that the cloud Autonomous VM cluster was updated.
    TotalAutonomousDataStorageInTbs float64
    The total data disk group size for Autonomous Databases, in TBs.
    TotalContainerDatabases int

    (Updatable) The total number of Autonomous Container Databases that can be created.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    TotalCpus float64
    The total number of CPUs in an Autonomous VM Cluster.
    autonomousDataStoragePercentage Double
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    autonomousDataStorageSizeInTbs Double
    (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
    availabilityDomain String
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    availableAutonomousDataStorageSizeInTbs Double
    The data disk group size available for Autonomous Databases, in TBs.
    availableContainerDatabases Integer
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    availableCpus Double
    CPU cores available for allocation to Autonomous Databases.
    cloudExadataInfrastructureId String
    The OCID of the cloud Exadata infrastructure.
    clusterTimeZone String
    The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
    compartmentId String
    (Updatable) The OCID of the compartment.
    computeModel String
    The compute model of the Cloud Autonomous VM Cluster.
    cpuCoreCount Integer
    The number of CPU cores on the cloud Autonomous VM cluster.
    cpuCoreCountPerNode Integer
    (Updatable) The number of CPU cores to be enabled per VM cluster node.
    cpuPercentage Double
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    dataStorageSizeInGb Double
    The total data storage allocated, in gigabytes (GB).
    dataStorageSizeInTbs Double
    The total data storage allocated, in terabytes (TB).
    dbNodeStorageSizeInGbs Integer
    The local node storage allocated in GBs.
    dbServers List<String>
    The list of database servers.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description String
    (Updatable) User defined description of the cloud Autonomous VM cluster.
    displayName String
    (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    domain String
    The domain name for the cloud Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue Double
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    freeformTags Map<String,Object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hostname String
    The hostname for the cloud Autonomous VM cluster.
    isMtlsEnabledVmCluster Boolean
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    lastMaintenanceRunId String
    The OCID of the last maintenance run.
    lastUpdateHistoryEntryId String
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    licenseModel String

    (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.

    This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

    lifecycleDetails String
    Additional information about the current lifecycle state.
    maintenanceWindowDetails CloudAutonomousVmClusterMaintenanceWindowDetails
    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maintenanceWindows List<CloudAutonomousVmClusterMaintenanceWindow>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxAcdsLowestScaledValue Integer
    The lowest value to which maximum number of ACDs can be scaled down.
    memoryPerOracleComputeUnitInGbs Integer
    The amount of memory (in GBs) to be enabled per OCPU or ECPU.
    memorySizeInGbs Integer
    The memory allocated in GBs.
    nextMaintenanceRunId String
    The OCID of the next maintenance run.
    nodeCount Integer
    The number of database servers in the cloud VM cluster.
    nonProvisionableAutonomousContainerDatabases Integer
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    nsgIds List<String>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

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

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

    (Updatable) The total number of Autonomous Container Databases that can be created.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    totalCpus Double
    The total number of CPUs in an Autonomous VM Cluster.
    autonomousDataStoragePercentage number
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    autonomousDataStorageSizeInTbs number
    (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
    availabilityDomain string
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    availableAutonomousDataStorageSizeInTbs number
    The data disk group size available for Autonomous Databases, in TBs.
    availableContainerDatabases number
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    availableCpus number
    CPU cores available for allocation to Autonomous Databases.
    cloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure.
    clusterTimeZone string
    The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
    compartmentId string
    (Updatable) The OCID of the compartment.
    computeModel string
    The compute model of the Cloud Autonomous VM Cluster.
    cpuCoreCount number
    The number of CPU cores on the cloud Autonomous VM cluster.
    cpuCoreCountPerNode number
    (Updatable) The number of CPU cores to be enabled per VM cluster node.
    cpuPercentage number
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    dataStorageSizeInGb number
    The total data storage allocated, in gigabytes (GB).
    dataStorageSizeInTbs number
    The total data storage allocated, in terabytes (TB).
    dbNodeStorageSizeInGbs number
    The local node storage allocated in GBs.
    dbServers string[]
    The list of database servers.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description string
    (Updatable) User defined description of the cloud Autonomous VM cluster.
    displayName string
    (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    domain string
    The domain name for the cloud Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue number
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    freeformTags {[key: string]: any}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hostname string
    The hostname for the cloud Autonomous VM cluster.
    isMtlsEnabledVmCluster boolean
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    lastMaintenanceRunId string
    The OCID of the last maintenance run.
    lastUpdateHistoryEntryId string
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    licenseModel string

    (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.

    This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

    lifecycleDetails string
    Additional information about the current lifecycle state.
    maintenanceWindowDetails CloudAutonomousVmClusterMaintenanceWindowDetails
    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maintenanceWindows CloudAutonomousVmClusterMaintenanceWindow[]
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxAcdsLowestScaledValue number
    The lowest value to which maximum number of ACDs can be scaled down.
    memoryPerOracleComputeUnitInGbs number
    The amount of memory (in GBs) to be enabled per OCPU or ECPU.
    memorySizeInGbs number
    The memory allocated in GBs.
    nextMaintenanceRunId string
    The OCID of the next maintenance run.
    nodeCount number
    The number of database servers in the cloud VM cluster.
    nonProvisionableAutonomousContainerDatabases number
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    nsgIds string[]
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

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

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

    (Updatable) The total number of Autonomous Container Databases that can be created.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    totalCpus number
    The total number of CPUs in an Autonomous VM Cluster.
    autonomous_data_storage_percentage float
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    autonomous_data_storage_size_in_tbs float
    (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
    availability_domain str
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    available_autonomous_data_storage_size_in_tbs float
    The data disk group size available for Autonomous Databases, in TBs.
    available_container_databases int
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    available_cpus float
    CPU cores available for allocation to Autonomous Databases.
    cloud_exadata_infrastructure_id str
    The OCID of the cloud Exadata infrastructure.
    cluster_time_zone str
    The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
    compartment_id str
    (Updatable) The OCID of the compartment.
    compute_model str
    The compute model of the Cloud Autonomous VM Cluster.
    cpu_core_count int
    The number of CPU cores on the cloud Autonomous VM cluster.
    cpu_core_count_per_node int
    (Updatable) The number of CPU cores to be enabled per VM cluster node.
    cpu_percentage float
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    data_storage_size_in_gb float
    The total data storage allocated, in gigabytes (GB).
    data_storage_size_in_tbs float
    The total data storage allocated, in terabytes (TB).
    db_node_storage_size_in_gbs int
    The local node storage allocated in GBs.
    db_servers Sequence[str]
    The list of database servers.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description str
    (Updatable) User defined description of the cloud Autonomous VM cluster.
    display_name str
    (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    domain str
    The domain name for the cloud Autonomous VM cluster.
    exadata_storage_in_tbs_lowest_scaled_value float
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    freeform_tags Mapping[str, Any]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hostname str
    The hostname for the cloud Autonomous VM cluster.
    is_mtls_enabled_vm_cluster bool
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    last_maintenance_run_id str
    The OCID of the last maintenance run.
    last_update_history_entry_id str
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    license_model str

    (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.

    This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

    lifecycle_details str
    Additional information about the current lifecycle state.
    maintenance_window_details database.CloudAutonomousVmClusterMaintenanceWindowDetailsArgs
    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maintenance_windows Sequence[database.CloudAutonomousVmClusterMaintenanceWindowArgs]
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    max_acds_lowest_scaled_value int
    The lowest value to which maximum number of ACDs can be scaled down.
    memory_per_oracle_compute_unit_in_gbs int
    The amount of memory (in GBs) to be enabled per OCPU or ECPU.
    memory_size_in_gbs int
    The memory allocated in GBs.
    next_maintenance_run_id str
    The OCID of the next maintenance run.
    node_count int
    The number of database servers in the cloud VM cluster.
    non_provisionable_autonomous_container_databases int
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    nsg_ids Sequence[str]
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

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

    • These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
    • The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
    reserved_cpus float
    The number of CPUs reserved in an Autonomous VM Cluster.
    scan_listener_port_non_tls int
    The SCAN Listener Non TLS port. Default is 1521.
    scan_listener_port_tls int
    The SCAN Listener TLS port. Default is 2484.
    shape str
    The model name of the Exadata hardware running the cloud Autonomous VM cluster.
    state str
    The current state of the cloud Autonomous VM cluster.
    subnet_id str
    The OCID of the subnet the cloud Autonomous VM Cluster is associated with.
    time_created str
    The date and time that the cloud Autonomous VM cluster was created.
    time_updated str
    The last date and time that the cloud Autonomous VM cluster was updated.
    total_autonomous_data_storage_in_tbs float
    The total data disk group size for Autonomous Databases, in TBs.
    total_container_databases int

    (Updatable) The total number of Autonomous Container Databases that can be created.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    total_cpus float
    The total number of CPUs in an Autonomous VM Cluster.
    autonomousDataStoragePercentage Number
    The percentage of the data storage used for the Autonomous Databases in an Autonomous VM Cluster.
    autonomousDataStorageSizeInTbs Number
    (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
    availabilityDomain String
    The name of the availability domain that the cloud Autonomous VM cluster is located in.
    availableAutonomousDataStorageSizeInTbs Number
    The data disk group size available for Autonomous Databases, in TBs.
    availableContainerDatabases Number
    The number of Autonomous Container Databases that can be created with the currently available local storage.
    availableCpus Number
    CPU cores available for allocation to Autonomous Databases.
    cloudExadataInfrastructureId String
    The OCID of the cloud Exadata infrastructure.
    clusterTimeZone String
    The time zone to use for the Cloud Autonomous VM cluster. For details, see DB System Time Zones.
    compartmentId String
    (Updatable) The OCID of the compartment.
    computeModel String
    The compute model of the Cloud Autonomous VM Cluster.
    cpuCoreCount Number
    The number of CPU cores on the cloud Autonomous VM cluster.
    cpuCoreCountPerNode Number
    (Updatable) The number of CPU cores to be enabled per VM cluster node.
    cpuPercentage Number
    The percentage of total number of CPUs used in an Autonomous VM Cluster.
    dataStorageSizeInGb Number
    The total data storage allocated, in gigabytes (GB).
    dataStorageSizeInTbs Number
    The total data storage allocated, in terabytes (TB).
    dbNodeStorageSizeInGbs Number
    The local node storage allocated in GBs.
    dbServers List<String>
    The list of database servers.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    description String
    (Updatable) User defined description of the cloud Autonomous VM cluster.
    displayName String
    (Updatable) The user-friendly name for the cloud Autonomous VM cluster. The name does not need to be unique.
    domain String
    The domain name for the cloud Autonomous VM cluster.
    exadataStorageInTbsLowestScaledValue Number
    The lowest value to which exadataStorage (in TBs) can be scaled down.
    freeformTags Map<Any>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    hostname String
    The hostname for the cloud Autonomous VM cluster.
    isMtlsEnabledVmCluster Boolean
    Enable mutual TLS(mTLS) authentication for database at time of provisioning a VMCluster. This is applicable to database TLS Certificates only. Default is TLS
    lastMaintenanceRunId String
    The OCID of the last maintenance run.
    lastUpdateHistoryEntryId String
    The OCID of the last maintenance update history. This value is updated when a maintenance update starts.
    licenseModel String

    (Updatable) The Oracle license model that applies to the Oracle Autonomous Database. Bring your own license (BYOL) allows you to apply your current on-premises Oracle software licenses to equivalent, highly automated Oracle services in the cloud. License Included allows you to subscribe to new Oracle Database software licenses and the Oracle Database service. Note that when provisioning an Autonomous Database on dedicated Exadata infrastructure, this attribute must be null. It is already set at the Autonomous Exadata Infrastructure level. When provisioning an [Autonomous Database Serverless] (https://docs.oracle.com/en/cloud/paas/autonomous-database/index.html) database, if a value is not specified, the system defaults the value to BRING_YOUR_OWN_LICENSE. Bring your own license (BYOL) also allows you to select the DB edition using the optional parameter.

    This cannot be updated in parallel with any of the following: cpuCoreCount, computeCount, maxCpuCoreCount, dataStorageSizeInTBs, adminPassword, isMTLSConnectionRequired, dbWorkload, privateEndpointLabel, nsgIds, dbVersion, dbName, scheduledOperations, dbToolsDetails, or isFreeTier.

    lifecycleDetails String
    Additional information about the current lifecycle state.
    maintenanceWindowDetails Property Map
    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maintenanceWindows List<Property Map>
    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
    maxAcdsLowestScaledValue Number
    The lowest value to which maximum number of ACDs can be scaled down.
    memoryPerOracleComputeUnitInGbs Number
    The amount of memory (in GBs) to be enabled per OCPU or ECPU.
    memorySizeInGbs Number
    The memory allocated in GBs.
    nextMaintenanceRunId String
    The OCID of the next maintenance run.
    nodeCount Number
    The number of database servers in the cloud VM cluster.
    nonProvisionableAutonomousContainerDatabases Number
    The number of non-provisionable Autonomous Container Databases in an Autonomous VM Cluster.
    nsgIds List<String>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

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

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

    (Updatable) The total number of Autonomous Container Databases that can be created.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    totalCpus Number
    The total number of CPUs in an Autonomous VM Cluster.

    Supporting Types

    CloudAutonomousVmClusterMaintenanceWindow, CloudAutonomousVmClusterMaintenanceWindowArgs

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

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    IsCustomActionTimeoutEnabled bool
    (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    (Updatable) If true, enables the monthly patching option.
    LeadTimeInWeeks int
    (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    Months List<CloudAutonomousVmClusterMaintenanceWindowMonth>
    (Updatable) Months during the year when maintenance should be performed.
    PatchingMode string

    (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

    IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

    Preference string
    (Updatable) The maintenance window scheduling preference.
    SkipRus List<bool>
    WeeksOfMonths List<int>
    (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    CustomActionTimeoutInMins int
    (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    DaysOfWeeks []CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek
    (Updatable) Days during the week when maintenance should be performed.
    HoursOfDays []int
    (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    IsCustomActionTimeoutEnabled bool
    (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    (Updatable) If true, enables the monthly patching option.
    LeadTimeInWeeks int
    (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    Months []CloudAutonomousVmClusterMaintenanceWindowMonth
    (Updatable) Months during the year when maintenance should be performed.
    PatchingMode string

    (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

    IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

    Preference string
    (Updatable) The maintenance window scheduling preference.
    SkipRus []bool
    WeeksOfMonths []int
    (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins Integer
    (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks List<CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek>
    (Updatable) Days during the week when maintenance should be performed.
    hoursOfDays List<Integer>
    (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled Boolean
    (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    (Updatable) If true, enables the monthly patching option.
    leadTimeInWeeks Integer
    (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months List<CloudAutonomousVmClusterMaintenanceWindowMonth>
    (Updatable) Months during the year when maintenance should be performed.
    patchingMode String

    (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

    IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

    preference String
    (Updatable) The maintenance window scheduling preference.
    skipRus List<Boolean>
    weeksOfMonths List<Integer>
    (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins number
    (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek[]
    (Updatable) Days during the week when maintenance should be performed.
    hoursOfDays number[]
    (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled boolean
    (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled boolean
    (Updatable) If true, enables the monthly patching option.
    leadTimeInWeeks number
    (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months CloudAutonomousVmClusterMaintenanceWindowMonth[]
    (Updatable) Months during the year when maintenance should be performed.
    patchingMode string

    (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

    IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

    preference string
    (Updatable) The maintenance window scheduling preference.
    skipRus boolean[]
    weeksOfMonths number[]
    (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    custom_action_timeout_in_mins int
    (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    days_of_weeks Sequence[database.CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek]
    (Updatable) Days during the week when maintenance should be performed.
    hours_of_days Sequence[int]
    (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    is_custom_action_timeout_enabled bool
    (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    is_monthly_patching_enabled bool
    (Updatable) If true, enables the monthly patching option.
    lead_time_in_weeks int
    (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months Sequence[database.CloudAutonomousVmClusterMaintenanceWindowMonth]
    (Updatable) Months during the year when maintenance should be performed.
    patching_mode str

    (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

    IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

    preference str
    (Updatable) The maintenance window scheduling preference.
    skip_rus Sequence[bool]
    weeks_of_months Sequence[int]
    (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins Number
    (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks List<Property Map>
    (Updatable) Days during the week when maintenance should be performed.
    hoursOfDays List<Number>
    (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled Boolean
    (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    (Updatable) If true, enables the monthly patching option.
    leadTimeInWeeks Number
    (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months List<Property Map>
    (Updatable) Months during the year when maintenance should be performed.
    patchingMode String

    (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

    IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

    preference String
    (Updatable) The maintenance window scheduling preference.
    skipRus List<Boolean>
    weeksOfMonths List<Number>
    (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

    CloudAutonomousVmClusterMaintenanceWindowDaysOfWeek, CloudAutonomousVmClusterMaintenanceWindowDaysOfWeekArgs

    Name string
    (Updatable) Name of the month of the year.
    Name string
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.
    name string
    (Updatable) Name of the month of the year.
    name str
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.

    CloudAutonomousVmClusterMaintenanceWindowDetails, CloudAutonomousVmClusterMaintenanceWindowDetailsArgs

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

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    IsCustomActionTimeoutEnabled bool
    (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    (Updatable) If true, enables the monthly patching option.
    LeadTimeInWeeks int
    (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    Months List<CloudAutonomousVmClusterMaintenanceWindowDetailsMonth>
    (Updatable) Months during the year when maintenance should be performed.
    PatchingMode string

    (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

    IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

    Preference string
    (Updatable) The maintenance window scheduling preference.
    SkipRus List<bool>
    WeeksOfMonths List<int>
    (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    CustomActionTimeoutInMins int
    (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    DaysOfWeeks []CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeek
    (Updatable) Days during the week when maintenance should be performed.
    HoursOfDays []int
    (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    IsCustomActionTimeoutEnabled bool
    (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    IsMonthlyPatchingEnabled bool
    (Updatable) If true, enables the monthly patching option.
    LeadTimeInWeeks int
    (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    Months []CloudAutonomousVmClusterMaintenanceWindowDetailsMonth
    (Updatable) Months during the year when maintenance should be performed.
    PatchingMode string

    (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

    IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

    Preference string
    (Updatable) The maintenance window scheduling preference.
    SkipRus []bool
    WeeksOfMonths []int
    (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins Integer
    (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks List<CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeek>
    (Updatable) Days during the week when maintenance should be performed.
    hoursOfDays List<Integer>
    (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled Boolean
    (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    (Updatable) If true, enables the monthly patching option.
    leadTimeInWeeks Integer
    (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months List<CloudAutonomousVmClusterMaintenanceWindowDetailsMonth>
    (Updatable) Months during the year when maintenance should be performed.
    patchingMode String

    (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

    IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

    preference String
    (Updatable) The maintenance window scheduling preference.
    skipRus List<Boolean>
    weeksOfMonths List<Integer>
    (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins number
    (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeek[]
    (Updatable) Days during the week when maintenance should be performed.
    hoursOfDays number[]
    (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled boolean
    (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled boolean
    (Updatable) If true, enables the monthly patching option.
    leadTimeInWeeks number
    (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months CloudAutonomousVmClusterMaintenanceWindowDetailsMonth[]
    (Updatable) Months during the year when maintenance should be performed.
    patchingMode string

    (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

    IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

    preference string
    (Updatable) The maintenance window scheduling preference.
    skipRus boolean[]
    weeksOfMonths number[]
    (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    custom_action_timeout_in_mins int
    (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    days_of_weeks Sequence[database.CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeek]
    (Updatable) Days during the week when maintenance should be performed.
    hours_of_days Sequence[int]
    (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    is_custom_action_timeout_enabled bool
    (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    is_monthly_patching_enabled bool
    (Updatable) If true, enables the monthly patching option.
    lead_time_in_weeks int
    (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months Sequence[database.CloudAutonomousVmClusterMaintenanceWindowDetailsMonth]
    (Updatable) Months during the year when maintenance should be performed.
    patching_mode str

    (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

    IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

    preference str
    (Updatable) The maintenance window scheduling preference.
    skip_rus Sequence[bool]
    weeks_of_months Sequence[int]
    (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
    customActionTimeoutInMins Number
    (Updatable) Determines the amount of time the system will wait before the start of each database server patching operation. Custom action timeout is in minutes and valid value is between 15 to 120 (inclusive).
    daysOfWeeks List<Property Map>
    (Updatable) Days during the week when maintenance should be performed.
    hoursOfDays List<Number>
    (Updatable) The window of hours during the day when maintenance should be performed. The window is a 4 hour slot. Valid values are

    • 0 - represents time slot 0:00 - 3:59 UTC - 4 - represents time slot 4:00 - 7:59 UTC - 8 - represents time slot 8:00 - 11:59 UTC - 12 - represents time slot 12:00 - 15:59 UTC - 16 - represents time slot 16:00 - 19:59 UTC - 20 - represents time slot 20:00 - 23:59 UTC
    isCustomActionTimeoutEnabled Boolean
    (Updatable) If true, enables the configuration of a custom action timeout (waiting period) between database server patching operations.
    isMonthlyPatchingEnabled Boolean
    (Updatable) If true, enables the monthly patching option.
    leadTimeInWeeks Number
    (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
    months List<Property Map>
    (Updatable) Months during the year when maintenance should be performed.
    patchingMode String

    (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING.

    IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information.

    preference String
    (Updatable) The maintenance window scheduling preference.
    skipRus List<Boolean>
    weeksOfMonths List<Number>
    (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.

    CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeek, CloudAutonomousVmClusterMaintenanceWindowDetailsDaysOfWeekArgs

    Name string
    (Updatable) Name of the month of the year.
    Name string
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.
    name string
    (Updatable) Name of the month of the year.
    name str
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.

    CloudAutonomousVmClusterMaintenanceWindowDetailsMonth, CloudAutonomousVmClusterMaintenanceWindowDetailsMonthArgs

    Name string
    (Updatable) Name of the month of the year.
    Name string
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.
    name string
    (Updatable) Name of the month of the year.
    name str
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.

    CloudAutonomousVmClusterMaintenanceWindowMonth, CloudAutonomousVmClusterMaintenanceWindowMonthArgs

    Name string
    (Updatable) Name of the month of the year.
    Name string
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.
    name string
    (Updatable) Name of the month of the year.
    name str
    (Updatable) Name of the month of the year.
    name String
    (Updatable) Name of the month of the year.

    Import

    CloudAutonomousVmClusters can be imported using the id, e.g.

    $ pulumi import oci:Database/cloudAutonomousVmCluster:CloudAutonomousVmCluster test_cloud_autonomous_vm_cluster "id"
    

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

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi