oci logo
Oracle Cloud Infrastructure v0.20.0, May 31 23

oci.Database.AutonomousVmCluster

Explore with Pulumi AI

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.AnyMap{
				"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=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        )],
        hours_of_days=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        lead_time_in_weeks=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        months=[oci.database.AutonomousVmClusterMaintenanceWindowDetailMonthArgs(
            name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        )],
        patching_mode=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        preference=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
        weeks_of_months=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    )],
    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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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<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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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

(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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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 AutonomousVmClusterMaintenanceWindowDetailArgs[]

(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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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:

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.

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.

OcpusEnabled double

The number of enabled OCPU cores.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
State string

The current state of the Autonomous VM cluster.

TimeCreated string

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

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.

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.

OcpusEnabled float64

The number of enabled OCPU cores.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
State string

The current state of the Autonomous VM cluster.

TimeCreated string

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

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.

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.

ocpusEnabled Double

The number of enabled OCPU cores.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
state String

The current state of the Autonomous VM cluster.

timeCreated String

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

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.

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.

ocpusEnabled number

The number of enabled OCPU cores.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
state string

The current state of the Autonomous VM cluster.

timeCreated string

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

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.

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.

ocpus_enabled float

The number of enabled OCPU cores.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
state str

The current state of the Autonomous VM cluster.

time_created str

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

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.

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.

ocpusEnabled Number

The number of enabled OCPU cores.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
state String

The current state of the Autonomous VM cluster.

timeCreated String

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

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_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,
        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,
        ocpus_enabled: Optional[float] = None,
        reclaimable_cpus: Optional[int] = 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_zone: Optional[str] = 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:
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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

CpuCoreCountPerNode int

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

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

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

MaintenanceWindows List<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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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.

OcpusEnabled double

The number of enabled OCPU cores.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
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.

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.

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.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

CpuCoreCountPerNode int

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

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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.

OcpusEnabled float64

The number of enabled OCPU cores.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
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.

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.

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.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

cpuCoreCountPerNode Integer

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

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

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

maintenanceWindows List<AutonomousVmClusterMaintenanceWindowArgs>

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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.

ocpusEnabled Double

The number of enabled OCPU cores.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
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.

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.

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.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

cpuCoreCountPerNode number

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

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

The amount of memory (in GBs) to be enabled per OCPU or ECPU. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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.

ocpusEnabled number

The number of enabled OCPU cores.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
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.

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.

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_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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

cpu_core_count_per_node int

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

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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.

ocpus_enabled float

The number of enabled OCPU cores.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
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_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.

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

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

cpuCoreCountPerNode Number

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

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.

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.

ocpusEnabled Number

The number of enabled OCPU cores.

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. See Compute Models in Autonomous Database on Dedicated Exadata Infrastructure for more details.
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.

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.

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

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

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

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

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

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

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.