1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. AutonomousVmCluster
Oracle Cloud Infrastructure v1.16.0 published on Thursday, Nov 2, 2023 by Pulumi

oci.Database.AutonomousVmCluster

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.16.0 published on Thursday, Nov 2, 2023 by Pulumi

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

    Creates an Autonomous VM cluster for Exadata Cloud@Customer. To create an Autonomous VM Cluster in the Oracle cloud, see CreateCloudAutonomousVmCluster.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testAutonomousVmCluster = new Oci.Database.AutonomousVmCluster("testAutonomousVmCluster", new()
        {
            CompartmentId = @var.Compartment_id,
            DisplayName = @var.Autonomous_vm_cluster_display_name,
            ExadataInfrastructureId = oci_database_exadata_infrastructure.Test_exadata_infrastructure.Id,
            VmClusterNetworkId = oci_database_vm_cluster_network.Test_vm_cluster_network.Id,
            AutonomousDataStorageSizeInTbs = @var.Autonomous_vm_cluster_autonomous_data_storage_size_in_tbs,
            ComputeModel = @var.Autonomous_vm_cluster_compute_model,
            CpuCoreCountPerNode = @var.Autonomous_vm_cluster_cpu_core_count_per_node,
            DbServers = @var.Autonomous_vm_cluster_db_servers,
            DefinedTags = @var.Autonomous_vm_cluster_defined_tags,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            IsLocalBackupEnabled = @var.Autonomous_vm_cluster_is_local_backup_enabled,
            IsMtlsEnabled = @var.Autonomous_vm_cluster_is_mtls_enabled,
            LicenseModel = @var.Autonomous_vm_cluster_license_model,
            MaintenanceWindowDetails = new[]
            {
                new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailArgs
                {
                    DaysOfWeeks = new[]
                    {
                        new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs
                        {
                            Name = @var.Autonomous_vm_cluster_maintenance_window_details_days_of_week_name,
                        },
                    },
                    HoursOfDays = @var.Autonomous_vm_cluster_maintenance_window_details_hours_of_day,
                    LeadTimeInWeeks = @var.Autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks,
                    Months = new[]
                    {
                        new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailMonthArgs
                        {
                            Name = @var.Autonomous_vm_cluster_maintenance_window_details_months_name,
                        },
                    },
                    PatchingMode = @var.Autonomous_vm_cluster_maintenance_window_details_patching_mode,
                    Preference = @var.Autonomous_vm_cluster_maintenance_window_details_preference,
                    WeeksOfMonths = @var.Autonomous_vm_cluster_maintenance_window_details_weeks_of_month,
                },
            },
            MemoryPerOracleComputeUnitInGbs = @var.Autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs,
            ScanListenerPortNonTls = @var.Autonomous_vm_cluster_scan_listener_port_non_tls,
            ScanListenerPortTls = @var.Autonomous_vm_cluster_scan_listener_port_tls,
            TimeZone = @var.Autonomous_vm_cluster_time_zone,
            TotalContainerDatabases = @var.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.NewAutonomousVmCluster(ctx, "testAutonomousVmCluster", &Database.AutonomousVmClusterArgs{
    			CompartmentId:                  pulumi.Any(_var.Compartment_id),
    			DisplayName:                    pulumi.Any(_var.Autonomous_vm_cluster_display_name),
    			ExadataInfrastructureId:        pulumi.Any(oci_database_exadata_infrastructure.Test_exadata_infrastructure.Id),
    			VmClusterNetworkId:             pulumi.Any(oci_database_vm_cluster_network.Test_vm_cluster_network.Id),
    			AutonomousDataStorageSizeInTbs: pulumi.Any(_var.Autonomous_vm_cluster_autonomous_data_storage_size_in_tbs),
    			ComputeModel:                   pulumi.Any(_var.Autonomous_vm_cluster_compute_model),
    			CpuCoreCountPerNode:            pulumi.Any(_var.Autonomous_vm_cluster_cpu_core_count_per_node),
    			DbServers:                      pulumi.Any(_var.Autonomous_vm_cluster_db_servers),
    			DefinedTags:                    pulumi.Any(_var.Autonomous_vm_cluster_defined_tags),
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("Finance"),
    			},
    			IsLocalBackupEnabled: pulumi.Any(_var.Autonomous_vm_cluster_is_local_backup_enabled),
    			IsMtlsEnabled:        pulumi.Any(_var.Autonomous_vm_cluster_is_mtls_enabled),
    			LicenseModel:         pulumi.Any(_var.Autonomous_vm_cluster_license_model),
    			MaintenanceWindowDetails: database.AutonomousVmClusterMaintenanceWindowDetailArray{
    				&database.AutonomousVmClusterMaintenanceWindowDetailArgs{
    					DaysOfWeeks: database.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArray{
    						&database.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs{
    							Name: pulumi.Any(_var.Autonomous_vm_cluster_maintenance_window_details_days_of_week_name),
    						},
    					},
    					HoursOfDays:     pulumi.Any(_var.Autonomous_vm_cluster_maintenance_window_details_hours_of_day),
    					LeadTimeInWeeks: pulumi.Any(_var.Autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks),
    					Months: database.AutonomousVmClusterMaintenanceWindowDetailMonthArray{
    						&database.AutonomousVmClusterMaintenanceWindowDetailMonthArgs{
    							Name: pulumi.Any(_var.Autonomous_vm_cluster_maintenance_window_details_months_name),
    						},
    					},
    					PatchingMode:  pulumi.Any(_var.Autonomous_vm_cluster_maintenance_window_details_patching_mode),
    					Preference:    pulumi.Any(_var.Autonomous_vm_cluster_maintenance_window_details_preference),
    					WeeksOfMonths: pulumi.Any(_var.Autonomous_vm_cluster_maintenance_window_details_weeks_of_month),
    				},
    			},
    			MemoryPerOracleComputeUnitInGbs: pulumi.Any(_var.Autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs),
    			ScanListenerPortNonTls:          pulumi.Any(_var.Autonomous_vm_cluster_scan_listener_port_non_tls),
    			ScanListenerPortTls:             pulumi.Any(_var.Autonomous_vm_cluster_scan_listener_port_tls),
    			TimeZone:                        pulumi.Any(_var.Autonomous_vm_cluster_time_zone),
    			TotalContainerDatabases:         pulumi.Any(_var.Autonomous_vm_cluster_total_container_databases),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Database.AutonomousVmCluster;
    import com.pulumi.oci.Database.AutonomousVmClusterArgs;
    import com.pulumi.oci.Database.inputs.AutonomousVmClusterMaintenanceWindowDetailArgs;
    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 testAutonomousVmCluster = new AutonomousVmCluster("testAutonomousVmCluster", AutonomousVmClusterArgs.builder()        
                .compartmentId(var_.compartment_id())
                .displayName(var_.autonomous_vm_cluster_display_name())
                .exadataInfrastructureId(oci_database_exadata_infrastructure.test_exadata_infrastructure().id())
                .vmClusterNetworkId(oci_database_vm_cluster_network.test_vm_cluster_network().id())
                .autonomousDataStorageSizeInTbs(var_.autonomous_vm_cluster_autonomous_data_storage_size_in_tbs())
                .computeModel(var_.autonomous_vm_cluster_compute_model())
                .cpuCoreCountPerNode(var_.autonomous_vm_cluster_cpu_core_count_per_node())
                .dbServers(var_.autonomous_vm_cluster_db_servers())
                .definedTags(var_.autonomous_vm_cluster_defined_tags())
                .freeformTags(Map.of("Department", "Finance"))
                .isLocalBackupEnabled(var_.autonomous_vm_cluster_is_local_backup_enabled())
                .isMtlsEnabled(var_.autonomous_vm_cluster_is_mtls_enabled())
                .licenseModel(var_.autonomous_vm_cluster_license_model())
                .maintenanceWindowDetails(AutonomousVmClusterMaintenanceWindowDetailArgs.builder()
                    .daysOfWeeks(AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs.builder()
                        .name(var_.autonomous_vm_cluster_maintenance_window_details_days_of_week_name())
                        .build())
                    .hoursOfDays(var_.autonomous_vm_cluster_maintenance_window_details_hours_of_day())
                    .leadTimeInWeeks(var_.autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks())
                    .months(AutonomousVmClusterMaintenanceWindowDetailMonthArgs.builder()
                        .name(var_.autonomous_vm_cluster_maintenance_window_details_months_name())
                        .build())
                    .patchingMode(var_.autonomous_vm_cluster_maintenance_window_details_patching_mode())
                    .preference(var_.autonomous_vm_cluster_maintenance_window_details_preference())
                    .weeksOfMonths(var_.autonomous_vm_cluster_maintenance_window_details_weeks_of_month())
                    .build())
                .memoryPerOracleComputeUnitInGbs(var_.autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs())
                .scanListenerPortNonTls(var_.autonomous_vm_cluster_scan_listener_port_non_tls())
                .scanListenerPortTls(var_.autonomous_vm_cluster_scan_listener_port_tls())
                .timeZone(var_.autonomous_vm_cluster_time_zone())
                .totalContainerDatabases(var_.autonomous_vm_cluster_total_container_databases())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_oci as oci
    
    test_autonomous_vm_cluster = oci.database.AutonomousVmCluster("testAutonomousVmCluster",
        compartment_id=var["compartment_id"],
        display_name=var["autonomous_vm_cluster_display_name"],
        exadata_infrastructure_id=oci_database_exadata_infrastructure["test_exadata_infrastructure"]["id"],
        vm_cluster_network_id=oci_database_vm_cluster_network["test_vm_cluster_network"]["id"],
        autonomous_data_storage_size_in_tbs=var["autonomous_vm_cluster_autonomous_data_storage_size_in_tbs"],
        compute_model=var["autonomous_vm_cluster_compute_model"],
        cpu_core_count_per_node=var["autonomous_vm_cluster_cpu_core_count_per_node"],
        db_servers=var["autonomous_vm_cluster_db_servers"],
        defined_tags=var["autonomous_vm_cluster_defined_tags"],
        freeform_tags={
            "Department": "Finance",
        },
        is_local_backup_enabled=var["autonomous_vm_cluster_is_local_backup_enabled"],
        is_mtls_enabled=var["autonomous_vm_cluster_is_mtls_enabled"],
        license_model=var["autonomous_vm_cluster_license_model"],
        maintenance_window_details=[oci.database.AutonomousVmClusterMaintenanceWindowDetailArgs(
            days_of_weeks=[oci.database.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs(
                name=var["autonomous_vm_cluster_maintenance_window_details_days_of_week_name"],
            )],
            hours_of_days=var["autonomous_vm_cluster_maintenance_window_details_hours_of_day"],
            lead_time_in_weeks=var["autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks"],
            months=[oci.database.AutonomousVmClusterMaintenanceWindowDetailMonthArgs(
                name=var["autonomous_vm_cluster_maintenance_window_details_months_name"],
            )],
            patching_mode=var["autonomous_vm_cluster_maintenance_window_details_patching_mode"],
            preference=var["autonomous_vm_cluster_maintenance_window_details_preference"],
            weeks_of_months=var["autonomous_vm_cluster_maintenance_window_details_weeks_of_month"],
        )],
        memory_per_oracle_compute_unit_in_gbs=var["autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs"],
        scan_listener_port_non_tls=var["autonomous_vm_cluster_scan_listener_port_non_tls"],
        scan_listener_port_tls=var["autonomous_vm_cluster_scan_listener_port_tls"],
        time_zone=var["autonomous_vm_cluster_time_zone"],
        total_container_databases=var["autonomous_vm_cluster_total_container_databases"])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testAutonomousVmCluster = new oci.database.AutonomousVmCluster("testAutonomousVmCluster", {
        compartmentId: _var.compartment_id,
        displayName: _var.autonomous_vm_cluster_display_name,
        exadataInfrastructureId: oci_database_exadata_infrastructure.test_exadata_infrastructure.id,
        vmClusterNetworkId: oci_database_vm_cluster_network.test_vm_cluster_network.id,
        autonomousDataStorageSizeInTbs: _var.autonomous_vm_cluster_autonomous_data_storage_size_in_tbs,
        computeModel: _var.autonomous_vm_cluster_compute_model,
        cpuCoreCountPerNode: _var.autonomous_vm_cluster_cpu_core_count_per_node,
        dbServers: _var.autonomous_vm_cluster_db_servers,
        definedTags: _var.autonomous_vm_cluster_defined_tags,
        freeformTags: {
            Department: "Finance",
        },
        isLocalBackupEnabled: _var.autonomous_vm_cluster_is_local_backup_enabled,
        isMtlsEnabled: _var.autonomous_vm_cluster_is_mtls_enabled,
        licenseModel: _var.autonomous_vm_cluster_license_model,
        maintenanceWindowDetails: [{
            daysOfWeeks: [{
                name: _var.autonomous_vm_cluster_maintenance_window_details_days_of_week_name,
            }],
            hoursOfDays: _var.autonomous_vm_cluster_maintenance_window_details_hours_of_day,
            leadTimeInWeeks: _var.autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks,
            months: [{
                name: _var.autonomous_vm_cluster_maintenance_window_details_months_name,
            }],
            patchingMode: _var.autonomous_vm_cluster_maintenance_window_details_patching_mode,
            preference: _var.autonomous_vm_cluster_maintenance_window_details_preference,
            weeksOfMonths: _var.autonomous_vm_cluster_maintenance_window_details_weeks_of_month,
        }],
        memoryPerOracleComputeUnitInGbs: _var.autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs,
        scanListenerPortNonTls: _var.autonomous_vm_cluster_scan_listener_port_non_tls,
        scanListenerPortTls: _var.autonomous_vm_cluster_scan_listener_port_tls,
        timeZone: _var.autonomous_vm_cluster_time_zone,
        totalContainerDatabases: _var.autonomous_vm_cluster_total_container_databases,
    });
    
    resources:
      testAutonomousVmCluster:
        type: oci:Database:AutonomousVmCluster
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          displayName: ${var.autonomous_vm_cluster_display_name}
          exadataInfrastructureId: ${oci_database_exadata_infrastructure.test_exadata_infrastructure.id}
          vmClusterNetworkId: ${oci_database_vm_cluster_network.test_vm_cluster_network.id}
          #Optional
          autonomousDataStorageSizeInTbs: ${var.autonomous_vm_cluster_autonomous_data_storage_size_in_tbs}
          computeModel: ${var.autonomous_vm_cluster_compute_model}
          cpuCoreCountPerNode: ${var.autonomous_vm_cluster_cpu_core_count_per_node}
          dbServers: ${var.autonomous_vm_cluster_db_servers}
          definedTags: ${var.autonomous_vm_cluster_defined_tags}
          freeformTags:
            Department: Finance
          isLocalBackupEnabled: ${var.autonomous_vm_cluster_is_local_backup_enabled}
          isMtlsEnabled: ${var.autonomous_vm_cluster_is_mtls_enabled}
          licenseModel: ${var.autonomous_vm_cluster_license_model}
          maintenanceWindowDetails:
            - daysOfWeeks:
                - name: ${var.autonomous_vm_cluster_maintenance_window_details_days_of_week_name}
              hoursOfDays: ${var.autonomous_vm_cluster_maintenance_window_details_hours_of_day}
              leadTimeInWeeks: ${var.autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks}
              months:
                - name: ${var.autonomous_vm_cluster_maintenance_window_details_months_name}
              patchingMode: ${var.autonomous_vm_cluster_maintenance_window_details_patching_mode}
              preference: ${var.autonomous_vm_cluster_maintenance_window_details_preference}
              weeksOfMonths: ${var.autonomous_vm_cluster_maintenance_window_details_weeks_of_month}
          memoryPerOracleComputeUnitInGbs: ${var.autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs}
          scanListenerPortNonTls: ${var.autonomous_vm_cluster_scan_listener_port_non_tls}
          scanListenerPortTls: ${var.autonomous_vm_cluster_scan_listener_port_tls}
          timeZone: ${var.autonomous_vm_cluster_time_zone}
          totalContainerDatabases: ${var.autonomous_vm_cluster_total_container_databases}
    

    Create AutonomousVmCluster Resource

    new AutonomousVmCluster(name: string, args: AutonomousVmClusterArgs, opts?: CustomResourceOptions);
    @overload
    def AutonomousVmCluster(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            autonomous_data_storage_size_in_tbs: Optional[float] = None,
                            compartment_id: Optional[str] = None,
                            compute_model: Optional[str] = None,
                            cpu_core_count_per_node: Optional[int] = None,
                            db_servers: Optional[Sequence[str]] = None,
                            defined_tags: Optional[Mapping[str, Any]] = None,
                            display_name: Optional[str] = None,
                            exadata_infrastructure_id: Optional[str] = None,
                            freeform_tags: Optional[Mapping[str, Any]] = None,
                            is_local_backup_enabled: Optional[bool] = None,
                            is_mtls_enabled: Optional[bool] = None,
                            license_model: Optional[str] = None,
                            maintenance_window_details: Optional[Sequence[_database.AutonomousVmClusterMaintenanceWindowDetailArgs]] = None,
                            memory_per_oracle_compute_unit_in_gbs: Optional[int] = None,
                            scan_listener_port_non_tls: Optional[int] = None,
                            scan_listener_port_tls: Optional[int] = None,
                            time_zone: Optional[str] = None,
                            total_container_databases: Optional[int] = None,
                            vm_cluster_network_id: Optional[str] = None)
    @overload
    def AutonomousVmCluster(resource_name: str,
                            args: AutonomousVmClusterArgs,
                            opts: Optional[ResourceOptions] = None)
    func NewAutonomousVmCluster(ctx *Context, name string, args AutonomousVmClusterArgs, opts ...ResourceOption) (*AutonomousVmCluster, error)
    public AutonomousVmCluster(string name, AutonomousVmClusterArgs args, CustomResourceOptions? opts = null)
    public AutonomousVmCluster(String name, AutonomousVmClusterArgs args)
    public AutonomousVmCluster(String name, AutonomousVmClusterArgs args, CustomResourceOptions options)
    
    type: oci:Database:AutonomousVmCluster
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args AutonomousVmClusterArgs
    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 AutonomousVmClusterArgs
    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 AutonomousVmClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AutonomousVmClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AutonomousVmClusterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    AutonomousVmCluster 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 AutonomousVmCluster resource accepts the following input properties:

    CompartmentId string

    (Updatable) The OCID of the compartment.

    DisplayName string

    The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.

    ExadataInfrastructureId string

    The OCID of the Exadata infrastructure.

    VmClusterNetworkId string

    The OCID of the VM cluster network.

    ** 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

    AutonomousDataStorageSizeInTbs double

    The data disk group size to be allocated for Autonomous Databases, in TBs.

    ComputeModel string

    The compute model of the Autonomous VM Cluster.

    CpuCoreCountPerNode int

    The number of CPU cores to enable per VM cluster node.

    DbServers List<string>

    The list of OCIDs of the Db 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.

    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"}

    IsLocalBackupEnabled bool

    If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.

    IsMtlsEnabled bool

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    LicenseModel string

    (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.

    MaintenanceWindowDetails List<AutonomousVmClusterMaintenanceWindowDetail>

    (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.

    ScanListenerPortNonTls int

    The SCAN Listener Non TLS port number. Default value is 1521.

    ScanListenerPortTls int

    The SCAN Listener TLS port number. Default value is 2484.

    TimeZone string

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    TotalContainerDatabases int

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

    CompartmentId string

    (Updatable) The OCID of the compartment.

    DisplayName string

    The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.

    ExadataInfrastructureId string

    The OCID of the Exadata infrastructure.

    VmClusterNetworkId string

    The OCID of the VM cluster network.

    ** 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

    AutonomousDataStorageSizeInTbs float64

    The data disk group size to be allocated for Autonomous Databases, in TBs.

    ComputeModel string

    The compute model of the Autonomous VM Cluster.

    CpuCoreCountPerNode int

    The number of CPU cores to enable per VM cluster node.

    DbServers []string

    The list of OCIDs of the Db 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.

    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"}

    IsLocalBackupEnabled bool

    If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.

    IsMtlsEnabled bool

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    LicenseModel string

    (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.

    MaintenanceWindowDetails []AutonomousVmClusterMaintenanceWindowDetailArgs

    (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.

    ScanListenerPortNonTls int

    The SCAN Listener Non TLS port number. Default value is 1521.

    ScanListenerPortTls int

    The SCAN Listener TLS port number. Default value is 2484.

    TimeZone string

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    TotalContainerDatabases int

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

    compartmentId String

    (Updatable) The OCID of the compartment.

    displayName String

    The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.

    exadataInfrastructureId String

    The OCID of the Exadata infrastructure.

    vmClusterNetworkId String

    The OCID of the VM cluster network.

    ** 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

    autonomousDataStorageSizeInTbs Double

    The data disk group size to be allocated for Autonomous Databases, in TBs.

    computeModel String

    The compute model of the Autonomous VM Cluster.

    cpuCoreCountPerNode Integer

    The number of CPU cores to enable per VM cluster node.

    dbServers List<String>

    The list of OCIDs of the Db 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.

    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"}

    isLocalBackupEnabled Boolean

    If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.

    isMtlsEnabled Boolean

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    licenseModel String

    (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.

    maintenanceWindowDetails List<AutonomousVmClusterMaintenanceWindowDetail>

    (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.

    scanListenerPortNonTls Integer

    The SCAN Listener Non TLS port number. Default value is 1521.

    scanListenerPortTls Integer

    The SCAN Listener TLS port number. Default value is 2484.

    timeZone String

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    totalContainerDatabases Integer

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

    compartmentId string

    (Updatable) The OCID of the compartment.

    displayName string

    The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.

    exadataInfrastructureId string

    The OCID of the Exadata infrastructure.

    vmClusterNetworkId string

    The OCID of the VM cluster network.

    ** 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

    autonomousDataStorageSizeInTbs number

    The data disk group size to be allocated for Autonomous Databases, in TBs.

    computeModel string

    The compute model of the Autonomous VM Cluster.

    cpuCoreCountPerNode number

    The number of CPU cores to enable per VM cluster node.

    dbServers string[]

    The list of OCIDs of the Db 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.

    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"}

    isLocalBackupEnabled boolean

    If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.

    isMtlsEnabled boolean

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    licenseModel string

    (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.

    maintenanceWindowDetails AutonomousVmClusterMaintenanceWindowDetail[]

    (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.

    scanListenerPortNonTls number

    The SCAN Listener Non TLS port number. Default value is 1521.

    scanListenerPortTls number

    The SCAN Listener TLS port number. Default value is 2484.

    timeZone string

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    totalContainerDatabases number

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

    compartment_id str

    (Updatable) The OCID of the compartment.

    display_name str

    The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.

    exadata_infrastructure_id str

    The OCID of the Exadata infrastructure.

    vm_cluster_network_id str

    The OCID of the VM cluster network.

    ** 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

    autonomous_data_storage_size_in_tbs float

    The data disk group size to be allocated for Autonomous Databases, in TBs.

    compute_model str

    The compute model of the Autonomous VM Cluster.

    cpu_core_count_per_node int

    The number of CPU cores to enable per VM cluster node.

    db_servers Sequence[str]

    The list of OCIDs of the Db 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.

    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_local_backup_enabled bool

    If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.

    is_mtls_enabled bool

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    license_model str

    (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.

    maintenance_window_details AutonomousVmClusterMaintenanceWindowDetailArgs]

    (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.

    scan_listener_port_non_tls int

    The SCAN Listener Non TLS port number. Default value is 1521.

    scan_listener_port_tls int

    The SCAN Listener TLS port number. Default value is 2484.

    time_zone str

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    total_container_databases int

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

    compartmentId String

    (Updatable) The OCID of the compartment.

    displayName String

    The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.

    exadataInfrastructureId String

    The OCID of the Exadata infrastructure.

    vmClusterNetworkId String

    The OCID of the VM cluster network.

    ** 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

    autonomousDataStorageSizeInTbs Number

    The data disk group size to be allocated for Autonomous Databases, in TBs.

    computeModel String

    The compute model of the Autonomous VM Cluster.

    cpuCoreCountPerNode Number

    The number of CPU cores to enable per VM cluster node.

    dbServers List<String>

    The list of OCIDs of the Db 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.

    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"}

    isLocalBackupEnabled Boolean

    If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.

    isMtlsEnabled Boolean

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    licenseModel String

    (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.

    maintenanceWindowDetails List<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.

    scanListenerPortNonTls Number

    The SCAN Listener Non TLS port number. Default value is 1521.

    scanListenerPortTls Number

    The SCAN Listener TLS port number. Default value is 2484.

    timeZone String

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    totalContainerDatabases Number

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

    Outputs

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

    AutonomousDataStoragePercentage double
    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 int

    The numnber of CPU cores available.

    AvailableDataStorageSizeInTbs double

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    CpuPercentage double
    CpusEnabled int

    The number of enabled CPU cores.

    DataStorageSizeInGb double
    DataStorageSizeInTbs double

    The total data storage allocated in TBs

    DbNodeStorageSizeInGbs int

    The local node storage allocated in GBs.

    Id string

    The provider-assigned unique ID for this managed resource.

    LastMaintenanceRunId string

    The OCID of the last maintenance run.

    LifecycleDetails string

    Additional information about the current lifecycle state.

    MaintenanceWindows List<AutonomousVmClusterMaintenanceWindow>

    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    MemorySizeInGbs int

    The memory allocated in GBs.

    NextMaintenanceRunId string

    The OCID of the next maintenance run.

    NodeCount int

    The number of nodes in the Autonomous VM Cluster.

    NonProvisionableAutonomousContainerDatabases int
    OcpusEnabled double

    The number of enabled OCPU cores.

    ProvisionedAutonomousContainerDatabases int
    ProvisionedCpus double
    ReclaimableCpus int

    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
    State string

    The current state of the Autonomous VM cluster.

    TimeCreated string

    The date and time that the Autonomous VM cluster was created.

    TimeDatabaseSslCertificateExpires string

    The date and time of Database SSL certificate expiration.

    TimeOrdsCertificateExpires string

    The date and time of ORDS certificate expiration.

    TotalAutonomousDataStorageInTbs double
    AutonomousDataStoragePercentage float64
    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 int

    The numnber of CPU cores available.

    AvailableDataStorageSizeInTbs float64

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    CpuPercentage float64
    CpusEnabled int

    The number of enabled CPU cores.

    DataStorageSizeInGb float64
    DataStorageSizeInTbs float64

    The total data storage allocated in TBs

    DbNodeStorageSizeInGbs int

    The local node storage allocated in GBs.

    Id string

    The provider-assigned unique ID for this managed resource.

    LastMaintenanceRunId string

    The OCID of the last maintenance run.

    LifecycleDetails string

    Additional information about the current lifecycle state.

    MaintenanceWindows []AutonomousVmClusterMaintenanceWindow

    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    MemorySizeInGbs int

    The memory allocated in GBs.

    NextMaintenanceRunId string

    The OCID of the next maintenance run.

    NodeCount int

    The number of nodes in the Autonomous VM Cluster.

    NonProvisionableAutonomousContainerDatabases int
    OcpusEnabled float64

    The number of enabled OCPU cores.

    ProvisionedAutonomousContainerDatabases int
    ProvisionedCpus float64
    ReclaimableCpus int

    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
    State string

    The current state of the Autonomous VM cluster.

    TimeCreated string

    The date and time that the Autonomous VM cluster was created.

    TimeDatabaseSslCertificateExpires string

    The date and time of Database SSL certificate expiration.

    TimeOrdsCertificateExpires string

    The date and time of ORDS certificate expiration.

    TotalAutonomousDataStorageInTbs float64
    autonomousDataStoragePercentage Double
    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 Integer

    The numnber of CPU cores available.

    availableDataStorageSizeInTbs Double

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    cpuPercentage Double
    cpusEnabled Integer

    The number of enabled CPU cores.

    dataStorageSizeInGb Double
    dataStorageSizeInTbs Double

    The total data storage allocated in TBs

    dbNodeStorageSizeInGbs Integer

    The local node storage allocated in GBs.

    id String

    The provider-assigned unique ID for this managed resource.

    lastMaintenanceRunId String

    The OCID of the last maintenance run.

    lifecycleDetails String

    Additional information about the current lifecycle state.

    maintenanceWindows List<AutonomousVmClusterMaintenanceWindow>

    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    memorySizeInGbs Integer

    The memory allocated in GBs.

    nextMaintenanceRunId String

    The OCID of the next maintenance run.

    nodeCount Integer

    The number of nodes in the Autonomous VM Cluster.

    nonProvisionableAutonomousContainerDatabases Integer
    ocpusEnabled Double

    The number of enabled OCPU cores.

    provisionedAutonomousContainerDatabases Integer
    provisionedCpus Double
    reclaimableCpus Integer

    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
    state String

    The current state of the Autonomous VM cluster.

    timeCreated String

    The date and time that the Autonomous VM cluster was created.

    timeDatabaseSslCertificateExpires String

    The date and time of Database SSL certificate expiration.

    timeOrdsCertificateExpires String

    The date and time of ORDS certificate expiration.

    totalAutonomousDataStorageInTbs Double
    autonomousDataStoragePercentage number
    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

    The numnber of CPU cores available.

    availableDataStorageSizeInTbs number

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    cpuPercentage number
    cpusEnabled number

    The number of enabled CPU cores.

    dataStorageSizeInGb number
    dataStorageSizeInTbs number

    The total data storage allocated in TBs

    dbNodeStorageSizeInGbs number

    The local node storage allocated in GBs.

    id string

    The provider-assigned unique ID for this managed resource.

    lastMaintenanceRunId string

    The OCID of the last maintenance run.

    lifecycleDetails string

    Additional information about the current lifecycle state.

    maintenanceWindows AutonomousVmClusterMaintenanceWindow[]

    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    memorySizeInGbs number

    The memory allocated in GBs.

    nextMaintenanceRunId string

    The OCID of the next maintenance run.

    nodeCount number

    The number of nodes in the Autonomous VM Cluster.

    nonProvisionableAutonomousContainerDatabases number
    ocpusEnabled number

    The number of enabled OCPU cores.

    provisionedAutonomousContainerDatabases number
    provisionedCpus number
    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
    state string

    The current state of the Autonomous VM cluster.

    timeCreated string

    The date and time that the Autonomous VM cluster was created.

    timeDatabaseSslCertificateExpires string

    The date and time of Database SSL certificate expiration.

    timeOrdsCertificateExpires string

    The date and time of ORDS certificate expiration.

    totalAutonomousDataStorageInTbs number
    autonomous_data_storage_percentage float
    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 int

    The numnber of CPU cores available.

    available_data_storage_size_in_tbs float

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    cpu_percentage float
    cpus_enabled int

    The number of enabled CPU cores.

    data_storage_size_in_gb float
    data_storage_size_in_tbs float

    The total data storage allocated in TBs

    db_node_storage_size_in_gbs int

    The local node storage allocated in GBs.

    id str

    The provider-assigned unique ID for this managed resource.

    last_maintenance_run_id str

    The OCID of the last maintenance run.

    lifecycle_details str

    Additional information about the current lifecycle state.

    maintenance_windows AutonomousVmClusterMaintenanceWindow]

    The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    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 nodes in the Autonomous VM Cluster.

    non_provisionable_autonomous_container_databases int
    ocpus_enabled float

    The number of enabled OCPU cores.

    provisioned_autonomous_container_databases int
    provisioned_cpus float
    reclaimable_cpus int

    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
    state str

    The current state of the Autonomous VM cluster.

    time_created str

    The date and time that the Autonomous VM cluster was created.

    time_database_ssl_certificate_expires str

    The date and time of Database SSL certificate expiration.

    time_ords_certificate_expires str

    The date and time of ORDS certificate expiration.

    total_autonomous_data_storage_in_tbs float
    autonomousDataStoragePercentage Number
    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

    The numnber of CPU cores available.

    availableDataStorageSizeInTbs Number

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    cpuPercentage Number
    cpusEnabled Number

    The number of enabled CPU cores.

    dataStorageSizeInGb Number
    dataStorageSizeInTbs Number

    The total data storage allocated in TBs

    dbNodeStorageSizeInGbs Number

    The local node storage allocated in GBs.

    id String

    The provider-assigned unique ID for this managed resource.

    lastMaintenanceRunId String

    The OCID of the last maintenance run.

    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.

    memorySizeInGbs Number

    The memory allocated in GBs.

    nextMaintenanceRunId String

    The OCID of the next maintenance run.

    nodeCount Number

    The number of nodes in the Autonomous VM Cluster.

    nonProvisionableAutonomousContainerDatabases Number
    ocpusEnabled Number

    The number of enabled OCPU cores.

    provisionedAutonomousContainerDatabases Number
    provisionedCpus Number
    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
    state String

    The current state of the Autonomous VM cluster.

    timeCreated String

    The date and time that the Autonomous VM cluster was created.

    timeDatabaseSslCertificateExpires String

    The date and time of Database SSL certificate expiration.

    timeOrdsCertificateExpires String

    The date and time of ORDS certificate expiration.

    totalAutonomousDataStorageInTbs Number

    Look up Existing AutonomousVmCluster Resource

    Get an existing AutonomousVmCluster 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?: AutonomousVmClusterState, opts?: CustomResourceOptions): AutonomousVmCluster
    @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,
            available_autonomous_data_storage_size_in_tbs: Optional[float] = None,
            available_container_databases: Optional[int] = None,
            available_cpus: Optional[int] = None,
            available_data_storage_size_in_tbs: Optional[float] = None,
            compartment_id: Optional[str] = None,
            compute_model: Optional[str] = None,
            cpu_core_count_per_node: Optional[int] = None,
            cpu_percentage: Optional[float] = None,
            cpus_enabled: Optional[int] = 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,
            display_name: Optional[str] = None,
            exadata_infrastructure_id: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            is_local_backup_enabled: Optional[bool] = None,
            is_mtls_enabled: Optional[bool] = None,
            last_maintenance_run_id: Optional[str] = None,
            license_model: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            maintenance_window_details: Optional[Sequence[_database.AutonomousVmClusterMaintenanceWindowDetailArgs]] = None,
            maintenance_windows: Optional[Sequence[_database.AutonomousVmClusterMaintenanceWindowArgs]] = 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,
            ocpus_enabled: Optional[float] = None,
            provisioned_autonomous_container_databases: Optional[int] = None,
            provisioned_cpus: Optional[float] = None,
            reclaimable_cpus: Optional[int] = None,
            reserved_cpus: Optional[float] = None,
            scan_listener_port_non_tls: Optional[int] = None,
            scan_listener_port_tls: Optional[int] = None,
            state: Optional[str] = None,
            time_created: Optional[str] = None,
            time_database_ssl_certificate_expires: Optional[str] = None,
            time_ords_certificate_expires: Optional[str] = None,
            time_zone: Optional[str] = None,
            total_autonomous_data_storage_in_tbs: Optional[float] = None,
            total_container_databases: Optional[int] = None,
            vm_cluster_network_id: Optional[str] = None) -> AutonomousVmCluster
    func GetAutonomousVmCluster(ctx *Context, name string, id IDInput, state *AutonomousVmClusterState, opts ...ResourceOption) (*AutonomousVmCluster, error)
    public static AutonomousVmCluster Get(string name, Input<string> id, AutonomousVmClusterState? state, CustomResourceOptions? opts = null)
    public static AutonomousVmCluster get(String name, Output<String> id, AutonomousVmClusterState 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
    AutonomousDataStorageSizeInTbs double

    The data disk group size to be allocated for Autonomous Databases, in TBs.

    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 int

    The numnber of CPU cores available.

    AvailableDataStorageSizeInTbs double

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    CompartmentId string

    (Updatable) The OCID of the compartment.

    ComputeModel string

    The compute model of the Autonomous VM Cluster.

    CpuCoreCountPerNode int

    The number of CPU cores to enable per VM cluster node.

    CpuPercentage double
    CpusEnabled int

    The number of enabled CPU cores.

    DataStorageSizeInGb double
    DataStorageSizeInTbs double

    The total data storage allocated in TBs

    DbNodeStorageSizeInGbs int

    The local node storage allocated in GBs.

    DbServers List<string>

    The list of OCIDs of the Db 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.

    DisplayName string

    The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.

    ExadataInfrastructureId string

    The OCID of the Exadata infrastructure.

    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"}

    IsLocalBackupEnabled bool

    If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.

    IsMtlsEnabled bool

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    LastMaintenanceRunId string

    The OCID of the last maintenance run.

    LicenseModel string

    (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.

    LifecycleDetails string

    Additional information about the current lifecycle state.

    MaintenanceWindowDetails List<AutonomousVmClusterMaintenanceWindowDetail>

    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    MaintenanceWindows List<AutonomousVmClusterMaintenanceWindow>

    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.

    MemorySizeInGbs int

    The memory allocated in GBs.

    NextMaintenanceRunId string

    The OCID of the next maintenance run.

    NodeCount int

    The number of nodes in the Autonomous VM Cluster.

    NonProvisionableAutonomousContainerDatabases int
    OcpusEnabled double

    The number of enabled OCPU cores.

    ProvisionedAutonomousContainerDatabases int
    ProvisionedCpus double
    ReclaimableCpus int

    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
    ScanListenerPortNonTls int

    The SCAN Listener Non TLS port number. Default value is 1521.

    ScanListenerPortTls int

    The SCAN Listener TLS port number. Default value is 2484.

    State string

    The current state of the Autonomous VM cluster.

    TimeCreated string

    The date and time that the Autonomous VM cluster was created.

    TimeDatabaseSslCertificateExpires string

    The date and time of Database SSL certificate expiration.

    TimeOrdsCertificateExpires string

    The date and time of ORDS certificate expiration.

    TimeZone string

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    TotalAutonomousDataStorageInTbs double
    TotalContainerDatabases int

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

    VmClusterNetworkId string

    The OCID of the VM cluster network.

    ** 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

    AutonomousDataStoragePercentage float64
    AutonomousDataStorageSizeInTbs float64

    The data disk group size to be allocated for Autonomous Databases, in TBs.

    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 int

    The numnber of CPU cores available.

    AvailableDataStorageSizeInTbs float64

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    CompartmentId string

    (Updatable) The OCID of the compartment.

    ComputeModel string

    The compute model of the Autonomous VM Cluster.

    CpuCoreCountPerNode int

    The number of CPU cores to enable per VM cluster node.

    CpuPercentage float64
    CpusEnabled int

    The number of enabled CPU cores.

    DataStorageSizeInGb float64
    DataStorageSizeInTbs float64

    The total data storage allocated in TBs

    DbNodeStorageSizeInGbs int

    The local node storage allocated in GBs.

    DbServers []string

    The list of OCIDs of the Db 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.

    DisplayName string

    The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.

    ExadataInfrastructureId string

    The OCID of the Exadata infrastructure.

    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"}

    IsLocalBackupEnabled bool

    If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.

    IsMtlsEnabled bool

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    LastMaintenanceRunId string

    The OCID of the last maintenance run.

    LicenseModel string

    (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.

    LifecycleDetails string

    Additional information about the current lifecycle state.

    MaintenanceWindowDetails []AutonomousVmClusterMaintenanceWindowDetailArgs

    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    MaintenanceWindows []AutonomousVmClusterMaintenanceWindowArgs

    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.

    MemorySizeInGbs int

    The memory allocated in GBs.

    NextMaintenanceRunId string

    The OCID of the next maintenance run.

    NodeCount int

    The number of nodes in the Autonomous VM Cluster.

    NonProvisionableAutonomousContainerDatabases int
    OcpusEnabled float64

    The number of enabled OCPU cores.

    ProvisionedAutonomousContainerDatabases int
    ProvisionedCpus float64
    ReclaimableCpus int

    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
    ScanListenerPortNonTls int

    The SCAN Listener Non TLS port number. Default value is 1521.

    ScanListenerPortTls int

    The SCAN Listener TLS port number. Default value is 2484.

    State string

    The current state of the Autonomous VM cluster.

    TimeCreated string

    The date and time that the Autonomous VM cluster was created.

    TimeDatabaseSslCertificateExpires string

    The date and time of Database SSL certificate expiration.

    TimeOrdsCertificateExpires string

    The date and time of ORDS certificate expiration.

    TimeZone string

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    TotalAutonomousDataStorageInTbs float64
    TotalContainerDatabases int

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

    VmClusterNetworkId string

    The OCID of the VM cluster network.

    ** 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

    autonomousDataStoragePercentage Double
    autonomousDataStorageSizeInTbs Double

    The data disk group size to be allocated for Autonomous Databases, in TBs.

    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 Integer

    The numnber of CPU cores available.

    availableDataStorageSizeInTbs Double

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    compartmentId String

    (Updatable) The OCID of the compartment.

    computeModel String

    The compute model of the Autonomous VM Cluster.

    cpuCoreCountPerNode Integer

    The number of CPU cores to enable per VM cluster node.

    cpuPercentage Double
    cpusEnabled Integer

    The number of enabled CPU cores.

    dataStorageSizeInGb Double
    dataStorageSizeInTbs Double

    The total data storage allocated in TBs

    dbNodeStorageSizeInGbs Integer

    The local node storage allocated in GBs.

    dbServers List<String>

    The list of OCIDs of the Db 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.

    displayName String

    The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.

    exadataInfrastructureId String

    The OCID of the Exadata infrastructure.

    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"}

    isLocalBackupEnabled Boolean

    If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.

    isMtlsEnabled Boolean

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    lastMaintenanceRunId String

    The OCID of the last maintenance run.

    licenseModel String

    (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.

    lifecycleDetails String

    Additional information about the current lifecycle state.

    maintenanceWindowDetails List<AutonomousVmClusterMaintenanceWindowDetail>

    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    maintenanceWindows List<AutonomousVmClusterMaintenanceWindow>

    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.

    memorySizeInGbs Integer

    The memory allocated in GBs.

    nextMaintenanceRunId String

    The OCID of the next maintenance run.

    nodeCount Integer

    The number of nodes in the Autonomous VM Cluster.

    nonProvisionableAutonomousContainerDatabases Integer
    ocpusEnabled Double

    The number of enabled OCPU cores.

    provisionedAutonomousContainerDatabases Integer
    provisionedCpus Double
    reclaimableCpus Integer

    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
    scanListenerPortNonTls Integer

    The SCAN Listener Non TLS port number. Default value is 1521.

    scanListenerPortTls Integer

    The SCAN Listener TLS port number. Default value is 2484.

    state String

    The current state of the Autonomous VM cluster.

    timeCreated String

    The date and time that the Autonomous VM cluster was created.

    timeDatabaseSslCertificateExpires String

    The date and time of Database SSL certificate expiration.

    timeOrdsCertificateExpires String

    The date and time of ORDS certificate expiration.

    timeZone String

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    totalAutonomousDataStorageInTbs Double
    totalContainerDatabases Integer

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

    vmClusterNetworkId String

    The OCID of the VM cluster network.

    ** 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

    autonomousDataStoragePercentage number
    autonomousDataStorageSizeInTbs number

    The data disk group size to be allocated for Autonomous Databases, in TBs.

    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

    The numnber of CPU cores available.

    availableDataStorageSizeInTbs number

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    compartmentId string

    (Updatable) The OCID of the compartment.

    computeModel string

    The compute model of the Autonomous VM Cluster.

    cpuCoreCountPerNode number

    The number of CPU cores to enable per VM cluster node.

    cpuPercentage number
    cpusEnabled number

    The number of enabled CPU cores.

    dataStorageSizeInGb number
    dataStorageSizeInTbs number

    The total data storage allocated in TBs

    dbNodeStorageSizeInGbs number

    The local node storage allocated in GBs.

    dbServers string[]

    The list of OCIDs of the Db 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.

    displayName string

    The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.

    exadataInfrastructureId string

    The OCID of the Exadata infrastructure.

    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"}

    isLocalBackupEnabled boolean

    If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.

    isMtlsEnabled boolean

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    lastMaintenanceRunId string

    The OCID of the last maintenance run.

    licenseModel string

    (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.

    lifecycleDetails string

    Additional information about the current lifecycle state.

    maintenanceWindowDetails AutonomousVmClusterMaintenanceWindowDetail[]

    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    maintenanceWindows AutonomousVmClusterMaintenanceWindow[]

    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.

    memorySizeInGbs number

    The memory allocated in GBs.

    nextMaintenanceRunId string

    The OCID of the next maintenance run.

    nodeCount number

    The number of nodes in the Autonomous VM Cluster.

    nonProvisionableAutonomousContainerDatabases number
    ocpusEnabled number

    The number of enabled OCPU cores.

    provisionedAutonomousContainerDatabases number
    provisionedCpus number
    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
    scanListenerPortNonTls number

    The SCAN Listener Non TLS port number. Default value is 1521.

    scanListenerPortTls number

    The SCAN Listener TLS port number. Default value is 2484.

    state string

    The current state of the Autonomous VM cluster.

    timeCreated string

    The date and time that the Autonomous VM cluster was created.

    timeDatabaseSslCertificateExpires string

    The date and time of Database SSL certificate expiration.

    timeOrdsCertificateExpires string

    The date and time of ORDS certificate expiration.

    timeZone string

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    totalAutonomousDataStorageInTbs number
    totalContainerDatabases number

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

    vmClusterNetworkId string

    The OCID of the VM cluster network.

    ** 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

    autonomous_data_storage_percentage float
    autonomous_data_storage_size_in_tbs float

    The data disk group size to be allocated for Autonomous Databases, in TBs.

    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 int

    The numnber of CPU cores available.

    available_data_storage_size_in_tbs float

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    compartment_id str

    (Updatable) The OCID of the compartment.

    compute_model str

    The compute model of the Autonomous VM Cluster.

    cpu_core_count_per_node int

    The number of CPU cores to enable per VM cluster node.

    cpu_percentage float
    cpus_enabled int

    The number of enabled CPU cores.

    data_storage_size_in_gb float
    data_storage_size_in_tbs float

    The total data storage allocated in TBs

    db_node_storage_size_in_gbs int

    The local node storage allocated in GBs.

    db_servers Sequence[str]

    The list of OCIDs of the Db 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.

    display_name str

    The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.

    exadata_infrastructure_id str

    The OCID of the Exadata infrastructure.

    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_local_backup_enabled bool

    If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.

    is_mtls_enabled bool

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    last_maintenance_run_id str

    The OCID of the last maintenance run.

    license_model str

    (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.

    lifecycle_details str

    Additional information about the current lifecycle state.

    maintenance_window_details AutonomousVmClusterMaintenanceWindowDetailArgs]

    (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.

    maintenance_windows AutonomousVmClusterMaintenanceWindowArgs]

    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.

    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 nodes in the Autonomous VM Cluster.

    non_provisionable_autonomous_container_databases int
    ocpus_enabled float

    The number of enabled OCPU cores.

    provisioned_autonomous_container_databases int
    provisioned_cpus float
    reclaimable_cpus int

    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
    scan_listener_port_non_tls int

    The SCAN Listener Non TLS port number. Default value is 1521.

    scan_listener_port_tls int

    The SCAN Listener TLS port number. Default value is 2484.

    state str

    The current state of the Autonomous VM cluster.

    time_created str

    The date and time that the Autonomous VM cluster was created.

    time_database_ssl_certificate_expires str

    The date and time of Database SSL certificate expiration.

    time_ords_certificate_expires str

    The date and time of ORDS certificate expiration.

    time_zone str

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    total_autonomous_data_storage_in_tbs float
    total_container_databases int

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

    vm_cluster_network_id str

    The OCID of the VM cluster network.

    ** 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

    autonomousDataStoragePercentage Number
    autonomousDataStorageSizeInTbs Number

    The data disk group size to be allocated for Autonomous Databases, in TBs.

    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

    The numnber of CPU cores available.

    availableDataStorageSizeInTbs Number

    Deprecated. Use availableAutonomousDataStorageSizeInTBs for Autonomous Databases' data storage availability in TBs.

    compartmentId String

    (Updatable) The OCID of the compartment.

    computeModel String

    The compute model of the Autonomous VM Cluster.

    cpuCoreCountPerNode Number

    The number of CPU cores to enable per VM cluster node.

    cpuPercentage Number
    cpusEnabled Number

    The number of enabled CPU cores.

    dataStorageSizeInGb Number
    dataStorageSizeInTbs Number

    The total data storage allocated in TBs

    dbNodeStorageSizeInGbs Number

    The local node storage allocated in GBs.

    dbServers List<String>

    The list of OCIDs of the Db 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.

    displayName String

    The user-friendly name for the Autonomous VM cluster. The name does not need to be unique.

    exadataInfrastructureId String

    The OCID of the Exadata infrastructure.

    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"}

    isLocalBackupEnabled Boolean

    If true, database backup on local Exadata storage is configured for the Autonomous VM cluster. If false, database backup on local Exadata storage is not available in the Autonomous VM cluster.

    isMtlsEnabled Boolean

    Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.

    lastMaintenanceRunId String

    The OCID of the last maintenance run.

    licenseModel String

    (Updatable) The Oracle license model that applies to the Autonomous VM cluster. The default is BRING_YOUR_OWN_LICENSE.

    lifecycleDetails String

    Additional information about the current lifecycle state.

    maintenanceWindowDetails List<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.

    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 nodes in the Autonomous VM Cluster.

    nonProvisionableAutonomousContainerDatabases Number
    ocpusEnabled Number

    The number of enabled OCPU cores.

    provisionedAutonomousContainerDatabases Number
    provisionedCpus Number
    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
    scanListenerPortNonTls Number

    The SCAN Listener Non TLS port number. Default value is 1521.

    scanListenerPortTls Number

    The SCAN Listener TLS port number. Default value is 2484.

    state String

    The current state of the Autonomous VM cluster.

    timeCreated String

    The date and time that the Autonomous VM cluster was created.

    timeDatabaseSslCertificateExpires String

    The date and time of Database SSL certificate expiration.

    timeOrdsCertificateExpires String

    The date and time of ORDS certificate expiration.

    timeZone String

    The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.

    totalAutonomousDataStorageInTbs Number
    totalContainerDatabases Number

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

    vmClusterNetworkId String

    The OCID of the VM cluster network.

    ** 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

    Supporting Types

    AutonomousVmClusterMaintenanceWindow, AutonomousVmClusterMaintenanceWindowArgs

    CustomActionTimeoutInMins int
    DaysOfWeeks List<AutonomousVmClusterMaintenanceWindowDaysOfWeek>

    (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
    IsMonthlyPatchingEnabled bool
    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<AutonomousVmClusterMaintenanceWindowMonth>

    (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.

    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
    DaysOfWeeks []AutonomousVmClusterMaintenanceWindowDaysOfWeek

    (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
    IsMonthlyPatchingEnabled bool
    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 []AutonomousVmClusterMaintenanceWindowMonth

    (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.

    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
    daysOfWeeks List<AutonomousVmClusterMaintenanceWindowDaysOfWeek>

    (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
    isMonthlyPatchingEnabled Boolean
    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<AutonomousVmClusterMaintenanceWindowMonth>

    (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.

    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
    daysOfWeeks AutonomousVmClusterMaintenanceWindowDaysOfWeek[]

    (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
    isMonthlyPatchingEnabled boolean
    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 AutonomousVmClusterMaintenanceWindowMonth[]

    (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.

    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
    days_of_weeks AutonomousVmClusterMaintenanceWindowDaysOfWeek]

    (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
    is_monthly_patching_enabled bool
    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 AutonomousVmClusterMaintenanceWindowMonth]

    (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.

    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
    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
    isMonthlyPatchingEnabled Boolean
    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.

    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.

    AutonomousVmClusterMaintenanceWindowDaysOfWeek, AutonomousVmClusterMaintenanceWindowDaysOfWeekArgs

    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.

    AutonomousVmClusterMaintenanceWindowDetail, AutonomousVmClusterMaintenanceWindowDetailArgs

    CustomActionTimeoutInMins int
    DaysOfWeeks List<AutonomousVmClusterMaintenanceWindowDetailDaysOfWeek>

    (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
    IsMonthlyPatchingEnabled bool
    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<AutonomousVmClusterMaintenanceWindowDetailMonth>

    (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.

    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
    DaysOfWeeks []AutonomousVmClusterMaintenanceWindowDetailDaysOfWeek

    (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
    IsMonthlyPatchingEnabled bool
    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 []AutonomousVmClusterMaintenanceWindowDetailMonth

    (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.

    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
    daysOfWeeks List<AutonomousVmClusterMaintenanceWindowDetailDaysOfWeek>

    (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
    isMonthlyPatchingEnabled Boolean
    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<AutonomousVmClusterMaintenanceWindowDetailMonth>

    (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.

    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
    daysOfWeeks AutonomousVmClusterMaintenanceWindowDetailDaysOfWeek[]

    (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
    isMonthlyPatchingEnabled boolean
    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 AutonomousVmClusterMaintenanceWindowDetailMonth[]

    (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.

    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
    days_of_weeks AutonomousVmClusterMaintenanceWindowDetailDaysOfWeek]

    (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
    is_monthly_patching_enabled bool
    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 AutonomousVmClusterMaintenanceWindowDetailMonth]

    (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.

    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
    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
    isMonthlyPatchingEnabled Boolean
    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.

    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.

    AutonomousVmClusterMaintenanceWindowDetailDaysOfWeek, AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs

    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.

    AutonomousVmClusterMaintenanceWindowDetailMonth, AutonomousVmClusterMaintenanceWindowDetailMonthArgs

    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.

    AutonomousVmClusterMaintenanceWindowMonth, AutonomousVmClusterMaintenanceWindowMonthArgs

    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

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

     $ pulumi import oci:Database/autonomousVmCluster:AutonomousVmCluster test_autonomous_vm_cluster "id"
    

    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.16.0 published on Thursday, Nov 2, 2023 by Pulumi