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
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAutonomousVmCluster = new oci.database.AutonomousVmCluster("test_autonomous_vm_cluster", {
    compartmentId: compartmentId,
    displayName: autonomousVmClusterDisplayName,
    exadataInfrastructureId: testExadataInfrastructure.id,
    vmClusterNetworkId: testVmClusterNetwork.id,
    autonomousDataStorageSizeInTbs: autonomousVmClusterAutonomousDataStorageSizeInTbs,
    computeModel: autonomousVmClusterComputeModel,
    cpuCoreCountPerNode: autonomousVmClusterCpuCoreCountPerNode,
    dbServers: autonomousVmClusterDbServers,
    definedTags: autonomousVmClusterDefinedTags,
    freeformTags: {
        Department: "Finance",
    },
    isLocalBackupEnabled: autonomousVmClusterIsLocalBackupEnabled,
    isMtlsEnabled: autonomousVmClusterIsMtlsEnabled,
    licenseModel: autonomousVmClusterLicenseModel,
    maintenanceWindowDetails: [{
        daysOfWeeks: [{
            name: autonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName,
        }],
        hoursOfDays: autonomousVmClusterMaintenanceWindowDetailsHoursOfDay,
        leadTimeInWeeks: autonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks,
        months: [{
            name: autonomousVmClusterMaintenanceWindowDetailsMonthsName,
        }],
        patchingMode: autonomousVmClusterMaintenanceWindowDetailsPatchingMode,
        preference: autonomousVmClusterMaintenanceWindowDetailsPreference,
        weeksOfMonths: autonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth,
    }],
    memoryPerOracleComputeUnitInGbs: autonomousVmClusterMemoryPerOracleComputeUnitInGbs,
    scanListenerPortNonTls: autonomousVmClusterScanListenerPortNonTls,
    scanListenerPortTls: autonomousVmClusterScanListenerPortTls,
    timeZone: autonomousVmClusterTimeZone,
    totalContainerDatabases: autonomousVmClusterTotalContainerDatabases,
});
import pulumi
import pulumi_oci as oci
test_autonomous_vm_cluster = oci.database.AutonomousVmCluster("test_autonomous_vm_cluster",
    compartment_id=compartment_id,
    display_name=autonomous_vm_cluster_display_name,
    exadata_infrastructure_id=test_exadata_infrastructure["id"],
    vm_cluster_network_id=test_vm_cluster_network["id"],
    autonomous_data_storage_size_in_tbs=autonomous_vm_cluster_autonomous_data_storage_size_in_tbs,
    compute_model=autonomous_vm_cluster_compute_model,
    cpu_core_count_per_node=autonomous_vm_cluster_cpu_core_count_per_node,
    db_servers=autonomous_vm_cluster_db_servers,
    defined_tags=autonomous_vm_cluster_defined_tags,
    freeform_tags={
        "Department": "Finance",
    },
    is_local_backup_enabled=autonomous_vm_cluster_is_local_backup_enabled,
    is_mtls_enabled=autonomous_vm_cluster_is_mtls_enabled,
    license_model=autonomous_vm_cluster_license_model,
    maintenance_window_details=[{
        "days_of_weeks": [{
            "name": autonomous_vm_cluster_maintenance_window_details_days_of_week_name,
        }],
        "hours_of_days": autonomous_vm_cluster_maintenance_window_details_hours_of_day,
        "lead_time_in_weeks": autonomous_vm_cluster_maintenance_window_details_lead_time_in_weeks,
        "months": [{
            "name": autonomous_vm_cluster_maintenance_window_details_months_name,
        }],
        "patching_mode": autonomous_vm_cluster_maintenance_window_details_patching_mode,
        "preference": autonomous_vm_cluster_maintenance_window_details_preference,
        "weeks_of_months": autonomous_vm_cluster_maintenance_window_details_weeks_of_month,
    }],
    memory_per_oracle_compute_unit_in_gbs=autonomous_vm_cluster_memory_per_oracle_compute_unit_in_gbs,
    scan_listener_port_non_tls=autonomous_vm_cluster_scan_listener_port_non_tls,
    scan_listener_port_tls=autonomous_vm_cluster_scan_listener_port_tls,
    time_zone=autonomous_vm_cluster_time_zone,
    total_container_databases=autonomous_vm_cluster_total_container_databases)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.NewAutonomousVmCluster(ctx, "test_autonomous_vm_cluster", &database.AutonomousVmClusterArgs{
			CompartmentId:                  pulumi.Any(compartmentId),
			DisplayName:                    pulumi.Any(autonomousVmClusterDisplayName),
			ExadataInfrastructureId:        pulumi.Any(testExadataInfrastructure.Id),
			VmClusterNetworkId:             pulumi.Any(testVmClusterNetwork.Id),
			AutonomousDataStorageSizeInTbs: pulumi.Any(autonomousVmClusterAutonomousDataStorageSizeInTbs),
			ComputeModel:                   pulumi.Any(autonomousVmClusterComputeModel),
			CpuCoreCountPerNode:            pulumi.Any(autonomousVmClusterCpuCoreCountPerNode),
			DbServers:                      pulumi.Any(autonomousVmClusterDbServers),
			DefinedTags:                    pulumi.Any(autonomousVmClusterDefinedTags),
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
			IsLocalBackupEnabled: pulumi.Any(autonomousVmClusterIsLocalBackupEnabled),
			IsMtlsEnabled:        pulumi.Any(autonomousVmClusterIsMtlsEnabled),
			LicenseModel:         pulumi.Any(autonomousVmClusterLicenseModel),
			MaintenanceWindowDetails: database.AutonomousVmClusterMaintenanceWindowDetailArray{
				&database.AutonomousVmClusterMaintenanceWindowDetailArgs{
					DaysOfWeeks: database.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArray{
						&database.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs{
							Name: pulumi.Any(autonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName),
						},
					},
					HoursOfDays:     pulumi.Any(autonomousVmClusterMaintenanceWindowDetailsHoursOfDay),
					LeadTimeInWeeks: pulumi.Any(autonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks),
					Months: database.AutonomousVmClusterMaintenanceWindowDetailMonthArray{
						&database.AutonomousVmClusterMaintenanceWindowDetailMonthArgs{
							Name: pulumi.Any(autonomousVmClusterMaintenanceWindowDetailsMonthsName),
						},
					},
					PatchingMode:  pulumi.Any(autonomousVmClusterMaintenanceWindowDetailsPatchingMode),
					Preference:    pulumi.Any(autonomousVmClusterMaintenanceWindowDetailsPreference),
					WeeksOfMonths: pulumi.Any(autonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth),
				},
			},
			MemoryPerOracleComputeUnitInGbs: pulumi.Any(autonomousVmClusterMemoryPerOracleComputeUnitInGbs),
			ScanListenerPortNonTls:          pulumi.Any(autonomousVmClusterScanListenerPortNonTls),
			ScanListenerPortTls:             pulumi.Any(autonomousVmClusterScanListenerPortTls),
			TimeZone:                        pulumi.Any(autonomousVmClusterTimeZone),
			TotalContainerDatabases:         pulumi.Any(autonomousVmClusterTotalContainerDatabases),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() => 
{
    var testAutonomousVmCluster = new Oci.Database.AutonomousVmCluster("test_autonomous_vm_cluster", new()
    {
        CompartmentId = compartmentId,
        DisplayName = autonomousVmClusterDisplayName,
        ExadataInfrastructureId = testExadataInfrastructure.Id,
        VmClusterNetworkId = testVmClusterNetwork.Id,
        AutonomousDataStorageSizeInTbs = autonomousVmClusterAutonomousDataStorageSizeInTbs,
        ComputeModel = autonomousVmClusterComputeModel,
        CpuCoreCountPerNode = autonomousVmClusterCpuCoreCountPerNode,
        DbServers = autonomousVmClusterDbServers,
        DefinedTags = autonomousVmClusterDefinedTags,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        IsLocalBackupEnabled = autonomousVmClusterIsLocalBackupEnabled,
        IsMtlsEnabled = autonomousVmClusterIsMtlsEnabled,
        LicenseModel = autonomousVmClusterLicenseModel,
        MaintenanceWindowDetails = new[]
        {
            new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailArgs
            {
                DaysOfWeeks = new[]
                {
                    new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs
                    {
                        Name = autonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName,
                    },
                },
                HoursOfDays = autonomousVmClusterMaintenanceWindowDetailsHoursOfDay,
                LeadTimeInWeeks = autonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks,
                Months = new[]
                {
                    new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailMonthArgs
                    {
                        Name = autonomousVmClusterMaintenanceWindowDetailsMonthsName,
                    },
                },
                PatchingMode = autonomousVmClusterMaintenanceWindowDetailsPatchingMode,
                Preference = autonomousVmClusterMaintenanceWindowDetailsPreference,
                WeeksOfMonths = autonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth,
            },
        },
        MemoryPerOracleComputeUnitInGbs = autonomousVmClusterMemoryPerOracleComputeUnitInGbs,
        ScanListenerPortNonTls = autonomousVmClusterScanListenerPortNonTls,
        ScanListenerPortTls = autonomousVmClusterScanListenerPortTls,
        TimeZone = autonomousVmClusterTimeZone,
        TotalContainerDatabases = autonomousVmClusterTotalContainerDatabases,
    });
});
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(compartmentId)
            .displayName(autonomousVmClusterDisplayName)
            .exadataInfrastructureId(testExadataInfrastructure.id())
            .vmClusterNetworkId(testVmClusterNetwork.id())
            .autonomousDataStorageSizeInTbs(autonomousVmClusterAutonomousDataStorageSizeInTbs)
            .computeModel(autonomousVmClusterComputeModel)
            .cpuCoreCountPerNode(autonomousVmClusterCpuCoreCountPerNode)
            .dbServers(autonomousVmClusterDbServers)
            .definedTags(autonomousVmClusterDefinedTags)
            .freeformTags(Map.of("Department", "Finance"))
            .isLocalBackupEnabled(autonomousVmClusterIsLocalBackupEnabled)
            .isMtlsEnabled(autonomousVmClusterIsMtlsEnabled)
            .licenseModel(autonomousVmClusterLicenseModel)
            .maintenanceWindowDetails(AutonomousVmClusterMaintenanceWindowDetailArgs.builder()
                .daysOfWeeks(AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs.builder()
                    .name(autonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName)
                    .build())
                .hoursOfDays(autonomousVmClusterMaintenanceWindowDetailsHoursOfDay)
                .leadTimeInWeeks(autonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks)
                .months(AutonomousVmClusterMaintenanceWindowDetailMonthArgs.builder()
                    .name(autonomousVmClusterMaintenanceWindowDetailsMonthsName)
                    .build())
                .patchingMode(autonomousVmClusterMaintenanceWindowDetailsPatchingMode)
                .preference(autonomousVmClusterMaintenanceWindowDetailsPreference)
                .weeksOfMonths(autonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth)
                .build())
            .memoryPerOracleComputeUnitInGbs(autonomousVmClusterMemoryPerOracleComputeUnitInGbs)
            .scanListenerPortNonTls(autonomousVmClusterScanListenerPortNonTls)
            .scanListenerPortTls(autonomousVmClusterScanListenerPortTls)
            .timeZone(autonomousVmClusterTimeZone)
            .totalContainerDatabases(autonomousVmClusterTotalContainerDatabases)
            .build());
    }
}
resources:
  testAutonomousVmCluster:
    type: oci:Database:AutonomousVmCluster
    name: test_autonomous_vm_cluster
    properties:
      compartmentId: ${compartmentId}
      displayName: ${autonomousVmClusterDisplayName}
      exadataInfrastructureId: ${testExadataInfrastructure.id}
      vmClusterNetworkId: ${testVmClusterNetwork.id}
      autonomousDataStorageSizeInTbs: ${autonomousVmClusterAutonomousDataStorageSizeInTbs}
      computeModel: ${autonomousVmClusterComputeModel}
      cpuCoreCountPerNode: ${autonomousVmClusterCpuCoreCountPerNode}
      dbServers: ${autonomousVmClusterDbServers}
      definedTags: ${autonomousVmClusterDefinedTags}
      freeformTags:
        Department: Finance
      isLocalBackupEnabled: ${autonomousVmClusterIsLocalBackupEnabled}
      isMtlsEnabled: ${autonomousVmClusterIsMtlsEnabled}
      licenseModel: ${autonomousVmClusterLicenseModel}
      maintenanceWindowDetails:
        - daysOfWeeks:
            - name: ${autonomousVmClusterMaintenanceWindowDetailsDaysOfWeekName}
          hoursOfDays: ${autonomousVmClusterMaintenanceWindowDetailsHoursOfDay}
          leadTimeInWeeks: ${autonomousVmClusterMaintenanceWindowDetailsLeadTimeInWeeks}
          months:
            - name: ${autonomousVmClusterMaintenanceWindowDetailsMonthsName}
          patchingMode: ${autonomousVmClusterMaintenanceWindowDetailsPatchingMode}
          preference: ${autonomousVmClusterMaintenanceWindowDetailsPreference}
          weeksOfMonths: ${autonomousVmClusterMaintenanceWindowDetailsWeeksOfMonth}
      memoryPerOracleComputeUnitInGbs: ${autonomousVmClusterMemoryPerOracleComputeUnitInGbs}
      scanListenerPortNonTls: ${autonomousVmClusterScanListenerPortNonTls}
      scanListenerPortTls: ${autonomousVmClusterScanListenerPortTls}
      timeZone: ${autonomousVmClusterTimeZone}
      totalContainerDatabases: ${autonomousVmClusterTotalContainerDatabases}
Create AutonomousVmCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AutonomousVmCluster(name: string, args: AutonomousVmClusterArgs, opts?: CustomResourceOptions);@overload
def AutonomousVmCluster(resource_name: str,
                        args: AutonomousVmClusterArgs,
                        opts: Optional[ResourceOptions] = None)
@overload
def AutonomousVmCluster(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        display_name: Optional[str] = None,
                        compartment_id: Optional[str] = None,
                        vm_cluster_network_id: Optional[str] = None,
                        exadata_infrastructure_id: Optional[str] = None,
                        freeform_tags: Optional[Mapping[str, str]] = None,
                        license_model: Optional[str] = None,
                        db_servers: Optional[Sequence[str]] = None,
                        cpu_core_count_per_node: Optional[int] = None,
                        autonomous_data_storage_size_in_tbs: Optional[float] = None,
                        is_local_backup_enabled: Optional[bool] = None,
                        is_mtls_enabled: Optional[bool] = None,
                        defined_tags: Optional[Mapping[str, str]] = None,
                        maintenance_window_details: Optional[Sequence[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,
                        compute_model: Optional[str] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var autonomousVmClusterResource = new Oci.Database.AutonomousVmCluster("autonomousVmClusterResource", new()
{
    DisplayName = "string",
    CompartmentId = "string",
    VmClusterNetworkId = "string",
    ExadataInfrastructureId = "string",
    FreeformTags = 
    {
        { "string", "string" },
    },
    LicenseModel = "string",
    DbServers = new[]
    {
        "string",
    },
    CpuCoreCountPerNode = 0,
    AutonomousDataStorageSizeInTbs = 0,
    IsLocalBackupEnabled = false,
    IsMtlsEnabled = false,
    DefinedTags = 
    {
        { "string", "string" },
    },
    MaintenanceWindowDetails = new[]
    {
        new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailArgs
        {
            CustomActionTimeoutInMins = 0,
            DaysOfWeeks = new[]
            {
                new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs
                {
                    Name = "string",
                },
            },
            HoursOfDays = new[]
            {
                0,
            },
            IsCustomActionTimeoutEnabled = false,
            IsMonthlyPatchingEnabled = false,
            LeadTimeInWeeks = 0,
            Months = new[]
            {
                new Oci.Database.Inputs.AutonomousVmClusterMaintenanceWindowDetailMonthArgs
                {
                    Name = "string",
                },
            },
            PatchingMode = "string",
            Preference = "string",
            SkipRus = new[]
            {
                false,
            },
            WeeksOfMonths = new[]
            {
                0,
            },
        },
    },
    MemoryPerOracleComputeUnitInGbs = 0,
    ScanListenerPortNonTls = 0,
    ScanListenerPortTls = 0,
    TimeZone = "string",
    TotalContainerDatabases = 0,
    ComputeModel = "string",
});
example, err := database.NewAutonomousVmCluster(ctx, "autonomousVmClusterResource", &database.AutonomousVmClusterArgs{
	DisplayName:             pulumi.String("string"),
	CompartmentId:           pulumi.String("string"),
	VmClusterNetworkId:      pulumi.String("string"),
	ExadataInfrastructureId: pulumi.String("string"),
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	LicenseModel: pulumi.String("string"),
	DbServers: pulumi.StringArray{
		pulumi.String("string"),
	},
	CpuCoreCountPerNode:            pulumi.Int(0),
	AutonomousDataStorageSizeInTbs: pulumi.Float64(0),
	IsLocalBackupEnabled:           pulumi.Bool(false),
	IsMtlsEnabled:                  pulumi.Bool(false),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	MaintenanceWindowDetails: database.AutonomousVmClusterMaintenanceWindowDetailArray{
		&database.AutonomousVmClusterMaintenanceWindowDetailArgs{
			CustomActionTimeoutInMins: pulumi.Int(0),
			DaysOfWeeks: database.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArray{
				&database.AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs{
					Name: pulumi.String("string"),
				},
			},
			HoursOfDays: pulumi.IntArray{
				pulumi.Int(0),
			},
			IsCustomActionTimeoutEnabled: pulumi.Bool(false),
			IsMonthlyPatchingEnabled:     pulumi.Bool(false),
			LeadTimeInWeeks:              pulumi.Int(0),
			Months: database.AutonomousVmClusterMaintenanceWindowDetailMonthArray{
				&database.AutonomousVmClusterMaintenanceWindowDetailMonthArgs{
					Name: pulumi.String("string"),
				},
			},
			PatchingMode: pulumi.String("string"),
			Preference:   pulumi.String("string"),
			SkipRus: pulumi.BoolArray{
				pulumi.Bool(false),
			},
			WeeksOfMonths: pulumi.IntArray{
				pulumi.Int(0),
			},
		},
	},
	MemoryPerOracleComputeUnitInGbs: pulumi.Int(0),
	ScanListenerPortNonTls:          pulumi.Int(0),
	ScanListenerPortTls:             pulumi.Int(0),
	TimeZone:                        pulumi.String("string"),
	TotalContainerDatabases:         pulumi.Int(0),
	ComputeModel:                    pulumi.String("string"),
})
var autonomousVmClusterResource = new AutonomousVmCluster("autonomousVmClusterResource", AutonomousVmClusterArgs.builder()
    .displayName("string")
    .compartmentId("string")
    .vmClusterNetworkId("string")
    .exadataInfrastructureId("string")
    .freeformTags(Map.of("string", "string"))
    .licenseModel("string")
    .dbServers("string")
    .cpuCoreCountPerNode(0)
    .autonomousDataStorageSizeInTbs(0.0)
    .isLocalBackupEnabled(false)
    .isMtlsEnabled(false)
    .definedTags(Map.of("string", "string"))
    .maintenanceWindowDetails(AutonomousVmClusterMaintenanceWindowDetailArgs.builder()
        .customActionTimeoutInMins(0)
        .daysOfWeeks(AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs.builder()
            .name("string")
            .build())
        .hoursOfDays(0)
        .isCustomActionTimeoutEnabled(false)
        .isMonthlyPatchingEnabled(false)
        .leadTimeInWeeks(0)
        .months(AutonomousVmClusterMaintenanceWindowDetailMonthArgs.builder()
            .name("string")
            .build())
        .patchingMode("string")
        .preference("string")
        .skipRus(false)
        .weeksOfMonths(0)
        .build())
    .memoryPerOracleComputeUnitInGbs(0)
    .scanListenerPortNonTls(0)
    .scanListenerPortTls(0)
    .timeZone("string")
    .totalContainerDatabases(0)
    .computeModel("string")
    .build());
autonomous_vm_cluster_resource = oci.database.AutonomousVmCluster("autonomousVmClusterResource",
    display_name="string",
    compartment_id="string",
    vm_cluster_network_id="string",
    exadata_infrastructure_id="string",
    freeform_tags={
        "string": "string",
    },
    license_model="string",
    db_servers=["string"],
    cpu_core_count_per_node=0,
    autonomous_data_storage_size_in_tbs=0,
    is_local_backup_enabled=False,
    is_mtls_enabled=False,
    defined_tags={
        "string": "string",
    },
    maintenance_window_details=[{
        "custom_action_timeout_in_mins": 0,
        "days_of_weeks": [{
            "name": "string",
        }],
        "hours_of_days": [0],
        "is_custom_action_timeout_enabled": False,
        "is_monthly_patching_enabled": False,
        "lead_time_in_weeks": 0,
        "months": [{
            "name": "string",
        }],
        "patching_mode": "string",
        "preference": "string",
        "skip_rus": [False],
        "weeks_of_months": [0],
    }],
    memory_per_oracle_compute_unit_in_gbs=0,
    scan_listener_port_non_tls=0,
    scan_listener_port_tls=0,
    time_zone="string",
    total_container_databases=0,
    compute_model="string")
const autonomousVmClusterResource = new oci.database.AutonomousVmCluster("autonomousVmClusterResource", {
    displayName: "string",
    compartmentId: "string",
    vmClusterNetworkId: "string",
    exadataInfrastructureId: "string",
    freeformTags: {
        string: "string",
    },
    licenseModel: "string",
    dbServers: ["string"],
    cpuCoreCountPerNode: 0,
    autonomousDataStorageSizeInTbs: 0,
    isLocalBackupEnabled: false,
    isMtlsEnabled: false,
    definedTags: {
        string: "string",
    },
    maintenanceWindowDetails: [{
        customActionTimeoutInMins: 0,
        daysOfWeeks: [{
            name: "string",
        }],
        hoursOfDays: [0],
        isCustomActionTimeoutEnabled: false,
        isMonthlyPatchingEnabled: false,
        leadTimeInWeeks: 0,
        months: [{
            name: "string",
        }],
        patchingMode: "string",
        preference: "string",
        skipRus: [false],
        weeksOfMonths: [0],
    }],
    memoryPerOracleComputeUnitInGbs: 0,
    scanListenerPortNonTls: 0,
    scanListenerPortTls: 0,
    timeZone: "string",
    totalContainerDatabases: 0,
    computeModel: "string",
});
type: oci:Database:AutonomousVmCluster
properties:
    autonomousDataStorageSizeInTbs: 0
    compartmentId: string
    computeModel: string
    cpuCoreCountPerNode: 0
    dbServers:
        - string
    definedTags:
        string: string
    displayName: string
    exadataInfrastructureId: string
    freeformTags:
        string: string
    isLocalBackupEnabled: false
    isMtlsEnabled: false
    licenseModel: string
    maintenanceWindowDetails:
        - customActionTimeoutInMins: 0
          daysOfWeeks:
            - name: string
          hoursOfDays:
            - 0
          isCustomActionTimeoutEnabled: false
          isMonthlyPatchingEnabled: false
          leadTimeInWeeks: 0
          months:
            - name: string
          patchingMode: string
          preference: string
          skipRus:
            - false
          weeksOfMonths:
            - 0
    memoryPerOracleComputeUnitInGbs: 0
    scanListenerPortNonTls: 0
    scanListenerPortTls: 0
    timeZone: string
    totalContainerDatabases: 0
    vmClusterNetworkId: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
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.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- VmCluster stringNetwork Id 
- 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 
- AutonomousData doubleStorage Size In Tbs 
- (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- ComputeModel string
- The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- CpuCore intCount Per Node 
- (Updatable) The number of CPU cores to enable per VM cluster node.
- DbServers List<string>
- The list of OCIDs of the Db servers.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Dictionary<string, string>
- (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"}
- IsLocal boolBackup Enabled 
- 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.
- IsMtls boolEnabled 
- 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.
- MaintenanceWindow List<AutonomousDetails Vm Cluster Maintenance Window Detail> 
- (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- MemoryPer intOracle Compute Unit In Gbs 
- The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- ScanListener intPort Non Tls 
- The SCAN Listener Non TLS port number. Default value is 1521.
- ScanListener intPort Tls 
- 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.
- TotalContainer intDatabases 
- (Updatable) 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.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- VmCluster stringNetwork Id 
- 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 
- AutonomousData float64Storage Size In Tbs 
- (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- ComputeModel string
- The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- CpuCore intCount Per Node 
- (Updatable) The number of CPU cores to enable per VM cluster node.
- DbServers []string
- The list of OCIDs of the Db servers.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- map[string]string
- (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"}
- IsLocal boolBackup Enabled 
- 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.
- IsMtls boolEnabled 
- 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.
- MaintenanceWindow []AutonomousDetails Vm Cluster Maintenance Window Detail Args 
- (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- MemoryPer intOracle Compute Unit In Gbs 
- The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- ScanListener intPort Non Tls 
- The SCAN Listener Non TLS port number. Default value is 1521.
- ScanListener intPort Tls 
- 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.
- TotalContainer intDatabases 
- (Updatable) 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.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- vmCluster StringNetwork Id 
- 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 
- autonomousData DoubleStorage Size In Tbs 
- (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- computeModel String
- The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpuCore IntegerCount Per Node 
- (Updatable) The number of CPU cores to enable per VM cluster node.
- dbServers List<String>
- The list of OCIDs of the Db servers.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String,String>
- (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"}
- isLocal BooleanBackup Enabled 
- 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.
- isMtls BooleanEnabled 
- 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.
- maintenanceWindow List<AutonomousDetails Vm Cluster Maintenance Window Detail> 
- (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memoryPer IntegerOracle Compute Unit In Gbs 
- The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- scanListener IntegerPort Non Tls 
- The SCAN Listener Non TLS port number. Default value is 1521.
- scanListener IntegerPort Tls 
- 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.
- totalContainer IntegerDatabases 
- (Updatable) 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.
- exadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- vmCluster stringNetwork Id 
- 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 
- autonomousData numberStorage Size In Tbs 
- (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- computeModel string
- The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpuCore numberCount Per Node 
- (Updatable) The number of CPU cores to enable per VM cluster node.
- dbServers string[]
- The list of OCIDs of the Db servers.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- {[key: string]: string}
- (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"}
- isLocal booleanBackup Enabled 
- 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.
- isMtls booleanEnabled 
- 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.
- maintenanceWindow AutonomousDetails Vm Cluster Maintenance Window Detail[] 
- (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memoryPer numberOracle Compute Unit In Gbs 
- The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- scanListener numberPort Non Tls 
- The SCAN Listener Non TLS port number. Default value is 1521.
- scanListener numberPort Tls 
- 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.
- totalContainer numberDatabases 
- (Updatable) 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_ strid 
- The OCID of the Exadata infrastructure.
- vm_cluster_ strnetwork_ id 
- 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_ floatstorage_ size_ in_ tbs 
- (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- compute_model str
- The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpu_core_ intcount_ per_ node 
- (Updatable) The number of CPU cores to enable per VM cluster node.
- db_servers Sequence[str]
- The list of OCIDs of the Db servers.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Mapping[str, str]
- (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_ boolbackup_ enabled 
- 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_ boolenabled 
- 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_ Sequence[Autonomousdetails Vm Cluster Maintenance Window Detail Args] 
- (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memory_per_ intoracle_ compute_ unit_ in_ gbs 
- The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- scan_listener_ intport_ non_ tls 
- The SCAN Listener Non TLS port number. Default value is 1521.
- scan_listener_ intport_ tls 
- 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_ intdatabases 
- (Updatable) 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.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- vmCluster StringNetwork Id 
- 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 
- autonomousData NumberStorage Size In Tbs 
- (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- computeModel String
- The compute model of the Autonomous VM Cluster. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpuCore NumberCount Per Node 
- (Updatable) The number of CPU cores to enable per VM cluster node.
- dbServers List<String>
- The list of OCIDs of the Db servers.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Map<String>
- (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"}
- isLocal BooleanBackup Enabled 
- 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.
- isMtls BooleanEnabled 
- 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.
- maintenanceWindow List<Property Map>Details 
- (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- memoryPer NumberOracle Compute Unit In Gbs 
- The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- scanListener NumberPort Non Tls 
- The SCAN Listener Non TLS port number. Default value is 1521.
- scanListener NumberPort Tls 
- 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.
- totalContainer NumberDatabases 
- (Updatable) 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:
- AutonomousData doubleStorage Percentage 
- AvailableAutonomous doubleData Storage Size In Tbs 
- The data disk group size available for Autonomous Databases, in TBs.
- AvailableContainer intDatabases 
- The number of Autonomous Container Databases that can be created with the currently available local storage.
- AvailableCpus int
- The numnber of CPU cores available.
- AvailableData doubleStorage Size In Tbs 
- Deprecated. Use availableAutonomousDataStorageSizeInTBsfor Autonomous Databases' data storage availability in TBs.
- CpuPercentage double
- CpusEnabled int
- The number of enabled CPU cores.
- CpusLowest intScaled Value 
- DataStorage doubleSize In Gb 
- DataStorage doubleSize In Tbs 
- The total data storage allocated in TBs
- DbNode intStorage Size In Gbs 
- The local node storage allocated in GBs.
- ExadataStorage doubleIn Tbs Lowest Scaled Value 
- The lowest value to which exadataStorage(in TBs) can be scaled down.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- MaintenanceWindows List<AutonomousVm Cluster Maintenance Window> 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- MaxAcds intLowest Scaled Value 
- The lowest value to which maximum number of ACDs can be scaled down.
- MemorySize intIn Gbs 
- The memory allocated in GBs.
- NextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- NodeCount int
- The number of nodes in the Autonomous VM Cluster.
- NonProvisionable intAutonomous Container Databases 
- OcpusEnabled double
- The number of enabled OCPU cores.
- ProvisionableAutonomous intContainer Databases 
- Deprecated. Use field totalContainerDatabases.
- ProvisionedAutonomous intContainer Databases 
- The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- ProvisionedCpus double
- The number of CPUs provisioned in an Autonomous VM Cluster.
- ReclaimableCpus int
- For Autonomous Databases on Dedicated Exadata Infrastructure:- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
 
- ReservedCpus double
- The number of CPUs reserved in an Autonomous VM Cluster.
- State string
- The current state of the Autonomous VM cluster.
- TimeCreated string
- The date and time that the Autonomous VM cluster was created.
- TimeDatabase stringSsl Certificate Expires 
- The date and time of Database SSL certificate expiration.
- TimeOrds stringCertificate Expires 
- The date and time of ORDS certificate expiration.
- TotalAutonomous doubleData Storage In Tbs 
- AutonomousData float64Storage Percentage 
- AvailableAutonomous float64Data Storage Size In Tbs 
- The data disk group size available for Autonomous Databases, in TBs.
- AvailableContainer intDatabases 
- The number of Autonomous Container Databases that can be created with the currently available local storage.
- AvailableCpus int
- The numnber of CPU cores available.
- AvailableData float64Storage Size In Tbs 
- Deprecated. Use availableAutonomousDataStorageSizeInTBsfor Autonomous Databases' data storage availability in TBs.
- CpuPercentage float64
- CpusEnabled int
- The number of enabled CPU cores.
- CpusLowest intScaled Value 
- DataStorage float64Size In Gb 
- DataStorage float64Size In Tbs 
- The total data storage allocated in TBs
- DbNode intStorage Size In Gbs 
- The local node storage allocated in GBs.
- ExadataStorage float64In Tbs Lowest Scaled Value 
- The lowest value to which exadataStorage(in TBs) can be scaled down.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- LifecycleDetails string
- Additional information about the current lifecycle state.
- MaintenanceWindows []AutonomousVm Cluster Maintenance Window 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- MaxAcds intLowest Scaled Value 
- The lowest value to which maximum number of ACDs can be scaled down.
- MemorySize intIn Gbs 
- The memory allocated in GBs.
- NextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- NodeCount int
- The number of nodes in the Autonomous VM Cluster.
- NonProvisionable intAutonomous Container Databases 
- OcpusEnabled float64
- The number of enabled OCPU cores.
- ProvisionableAutonomous intContainer Databases 
- Deprecated. Use field totalContainerDatabases.
- ProvisionedAutonomous intContainer Databases 
- The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- ProvisionedCpus float64
- The number of CPUs provisioned in an Autonomous VM Cluster.
- ReclaimableCpus int
- For Autonomous Databases on Dedicated Exadata Infrastructure:- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
 
- ReservedCpus float64
- The number of CPUs reserved in an Autonomous VM Cluster.
- State string
- The current state of the Autonomous VM cluster.
- TimeCreated string
- The date and time that the Autonomous VM cluster was created.
- TimeDatabase stringSsl Certificate Expires 
- The date and time of Database SSL certificate expiration.
- TimeOrds stringCertificate Expires 
- The date and time of ORDS certificate expiration.
- TotalAutonomous float64Data Storage In Tbs 
- autonomousData DoubleStorage Percentage 
- availableAutonomous DoubleData Storage Size In Tbs 
- The data disk group size available for Autonomous Databases, in TBs.
- availableContainer IntegerDatabases 
- The number of Autonomous Container Databases that can be created with the currently available local storage.
- availableCpus Integer
- The numnber of CPU cores available.
- availableData DoubleStorage Size In Tbs 
- Deprecated. Use availableAutonomousDataStorageSizeInTBsfor Autonomous Databases' data storage availability in TBs.
- cpuPercentage Double
- cpusEnabled Integer
- The number of enabled CPU cores.
- cpusLowest IntegerScaled Value 
- dataStorage DoubleSize In Gb 
- dataStorage DoubleSize In Tbs 
- The total data storage allocated in TBs
- dbNode IntegerStorage Size In Gbs 
- The local node storage allocated in GBs.
- exadataStorage DoubleIn Tbs Lowest Scaled Value 
- The lowest value to which exadataStorage(in TBs) can be scaled down.
- id String
- The provider-assigned unique ID for this managed resource.
- lastMaintenance StringRun Id 
- The OCID of the last maintenance run.
- lifecycleDetails String
- Additional information about the current lifecycle state.
- maintenanceWindows List<AutonomousVm Cluster Maintenance Window> 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maxAcds IntegerLowest Scaled Value 
- The lowest value to which maximum number of ACDs can be scaled down.
- memorySize IntegerIn Gbs 
- The memory allocated in GBs.
- nextMaintenance StringRun Id 
- The OCID of the next maintenance run.
- nodeCount Integer
- The number of nodes in the Autonomous VM Cluster.
- nonProvisionable IntegerAutonomous Container Databases 
- ocpusEnabled Double
- The number of enabled OCPU cores.
- provisionableAutonomous IntegerContainer Databases 
- Deprecated. Use field totalContainerDatabases.
- provisionedAutonomous IntegerContainer Databases 
- The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisionedCpus Double
- The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimableCpus Integer
- For Autonomous Databases on Dedicated Exadata Infrastructure:- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
 
- reservedCpus Double
- The number of CPUs reserved in an Autonomous VM Cluster.
- state String
- The current state of the Autonomous VM cluster.
- timeCreated String
- The date and time that the Autonomous VM cluster was created.
- timeDatabase StringSsl Certificate Expires 
- The date and time of Database SSL certificate expiration.
- timeOrds StringCertificate Expires 
- The date and time of ORDS certificate expiration.
- totalAutonomous DoubleData Storage In Tbs 
- autonomousData numberStorage Percentage 
- availableAutonomous numberData Storage Size In Tbs 
- The data disk group size available for Autonomous Databases, in TBs.
- availableContainer numberDatabases 
- The number of Autonomous Container Databases that can be created with the currently available local storage.
- availableCpus number
- The numnber of CPU cores available.
- availableData numberStorage Size In Tbs 
- Deprecated. Use availableAutonomousDataStorageSizeInTBsfor Autonomous Databases' data storage availability in TBs.
- cpuPercentage number
- cpusEnabled number
- The number of enabled CPU cores.
- cpusLowest numberScaled Value 
- dataStorage numberSize In Gb 
- dataStorage numberSize In Tbs 
- The total data storage allocated in TBs
- dbNode numberStorage Size In Gbs 
- The local node storage allocated in GBs.
- exadataStorage numberIn Tbs Lowest Scaled Value 
- The lowest value to which exadataStorage(in TBs) can be scaled down.
- id string
- The provider-assigned unique ID for this managed resource.
- lastMaintenance stringRun Id 
- The OCID of the last maintenance run.
- lifecycleDetails string
- Additional information about the current lifecycle state.
- maintenanceWindows AutonomousVm Cluster Maintenance Window[] 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maxAcds numberLowest Scaled Value 
- The lowest value to which maximum number of ACDs can be scaled down.
- memorySize numberIn Gbs 
- The memory allocated in GBs.
- nextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- nodeCount number
- The number of nodes in the Autonomous VM Cluster.
- nonProvisionable numberAutonomous Container Databases 
- ocpusEnabled number
- The number of enabled OCPU cores.
- provisionableAutonomous numberContainer Databases 
- Deprecated. Use field totalContainerDatabases.
- provisionedAutonomous numberContainer Databases 
- The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisionedCpus number
- The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimableCpus number
- For Autonomous Databases on Dedicated Exadata Infrastructure:- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
 
- reservedCpus number
- The number of CPUs reserved in an Autonomous VM Cluster.
- state string
- The current state of the Autonomous VM cluster.
- timeCreated string
- The date and time that the Autonomous VM cluster was created.
- timeDatabase stringSsl Certificate Expires 
- The date and time of Database SSL certificate expiration.
- timeOrds stringCertificate Expires 
- The date and time of ORDS certificate expiration.
- totalAutonomous numberData Storage In Tbs 
- autonomous_data_ floatstorage_ percentage 
- available_autonomous_ floatdata_ storage_ size_ in_ tbs 
- The data disk group size available for Autonomous Databases, in TBs.
- available_container_ intdatabases 
- 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_ floatstorage_ size_ in_ tbs 
- Deprecated. Use availableAutonomousDataStorageSizeInTBsfor Autonomous Databases' data storage availability in TBs.
- cpu_percentage float
- cpus_enabled int
- The number of enabled CPU cores.
- cpus_lowest_ intscaled_ value 
- data_storage_ floatsize_ in_ gb 
- data_storage_ floatsize_ in_ tbs 
- The total data storage allocated in TBs
- db_node_ intstorage_ size_ in_ gbs 
- The local node storage allocated in GBs.
- exadata_storage_ floatin_ tbs_ lowest_ scaled_ value 
- The lowest value to which exadataStorage(in TBs) can be scaled down.
- id str
- The provider-assigned unique ID for this managed resource.
- last_maintenance_ strrun_ id 
- The OCID of the last maintenance run.
- lifecycle_details str
- Additional information about the current lifecycle state.
- maintenance_windows Sequence[AutonomousVm Cluster Maintenance Window] 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- max_acds_ intlowest_ scaled_ value 
- The lowest value to which maximum number of ACDs can be scaled down.
- memory_size_ intin_ gbs 
- The memory allocated in GBs.
- next_maintenance_ strrun_ id 
- The OCID of the next maintenance run.
- node_count int
- The number of nodes in the Autonomous VM Cluster.
- non_provisionable_ intautonomous_ container_ databases 
- ocpus_enabled float
- The number of enabled OCPU cores.
- provisionable_autonomous_ intcontainer_ databases 
- Deprecated. Use field totalContainerDatabases.
- provisioned_autonomous_ intcontainer_ databases 
- The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned_cpus float
- The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimable_cpus int
- For Autonomous Databases on Dedicated Exadata Infrastructure:- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
 
- reserved_cpus float
- The number of CPUs reserved in an Autonomous VM Cluster.
- state str
- The current state of the Autonomous VM cluster.
- time_created str
- The date and time that the Autonomous VM cluster was created.
- time_database_ strssl_ certificate_ expires 
- The date and time of Database SSL certificate expiration.
- time_ords_ strcertificate_ expires 
- The date and time of ORDS certificate expiration.
- total_autonomous_ floatdata_ storage_ in_ tbs 
- autonomousData NumberStorage Percentage 
- availableAutonomous NumberData Storage Size In Tbs 
- The data disk group size available for Autonomous Databases, in TBs.
- availableContainer NumberDatabases 
- The number of Autonomous Container Databases that can be created with the currently available local storage.
- availableCpus Number
- The numnber of CPU cores available.
- availableData NumberStorage Size In Tbs 
- Deprecated. Use availableAutonomousDataStorageSizeInTBsfor Autonomous Databases' data storage availability in TBs.
- cpuPercentage Number
- cpusEnabled Number
- The number of enabled CPU cores.
- cpusLowest NumberScaled Value 
- dataStorage NumberSize In Gb 
- dataStorage NumberSize In Tbs 
- The total data storage allocated in TBs
- dbNode NumberStorage Size In Gbs 
- The local node storage allocated in GBs.
- exadataStorage NumberIn Tbs Lowest Scaled Value 
- The lowest value to which exadataStorage(in TBs) can be scaled down.
- id String
- The provider-assigned unique ID for this managed resource.
- lastMaintenance StringRun Id 
- 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.
- maxAcds NumberLowest Scaled Value 
- The lowest value to which maximum number of ACDs can be scaled down.
- memorySize NumberIn Gbs 
- The memory allocated in GBs.
- nextMaintenance StringRun Id 
- The OCID of the next maintenance run.
- nodeCount Number
- The number of nodes in the Autonomous VM Cluster.
- nonProvisionable NumberAutonomous Container Databases 
- ocpusEnabled Number
- The number of enabled OCPU cores.
- provisionableAutonomous NumberContainer Databases 
- Deprecated. Use field totalContainerDatabases.
- provisionedAutonomous NumberContainer Databases 
- The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisionedCpus Number
- The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimableCpus Number
- For Autonomous Databases on Dedicated Exadata Infrastructure:- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
 
- reservedCpus Number
- The number of CPUs reserved in an Autonomous VM Cluster.
- state String
- The current state of the Autonomous VM cluster.
- timeCreated String
- The date and time that the Autonomous VM cluster was created.
- timeDatabase StringSsl Certificate Expires 
- The date and time of Database SSL certificate expiration.
- timeOrds StringCertificate Expires 
- The date and time of ORDS certificate expiration.
- totalAutonomous NumberData Storage In Tbs 
Look up Existing AutonomousVmCluster Resource
Get an existing AutonomousVmCluster resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AutonomousVmClusterState, opts?: CustomResourceOptions): AutonomousVmCluster@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        autonomous_data_storage_percentage: Optional[float] = None,
        autonomous_data_storage_size_in_tbs: Optional[float] = None,
        available_autonomous_data_storage_size_in_tbs: Optional[float] = None,
        available_container_databases: Optional[int] = None,
        available_cpus: Optional[int] = None,
        available_data_storage_size_in_tbs: Optional[float] = None,
        compartment_id: Optional[str] = None,
        compute_model: Optional[str] = None,
        cpu_core_count_per_node: Optional[int] = None,
        cpu_percentage: Optional[float] = None,
        cpus_enabled: Optional[int] = None,
        cpus_lowest_scaled_value: 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, str]] = None,
        display_name: Optional[str] = None,
        exadata_infrastructure_id: Optional[str] = None,
        exadata_storage_in_tbs_lowest_scaled_value: Optional[float] = None,
        freeform_tags: Optional[Mapping[str, str]] = 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[AutonomousVmClusterMaintenanceWindowDetailArgs]] = None,
        maintenance_windows: Optional[Sequence[AutonomousVmClusterMaintenanceWindowArgs]] = None,
        max_acds_lowest_scaled_value: Optional[int] = None,
        memory_per_oracle_compute_unit_in_gbs: Optional[int] = None,
        memory_size_in_gbs: Optional[int] = None,
        next_maintenance_run_id: Optional[str] = None,
        node_count: Optional[int] = None,
        non_provisionable_autonomous_container_databases: Optional[int] = None,
        ocpus_enabled: Optional[float] = None,
        provisionable_autonomous_container_databases: Optional[int] = None,
        provisioned_autonomous_container_databases: Optional[int] = None,
        provisioned_cpus: Optional[float] = None,
        reclaimable_cpus: Optional[int] = None,
        reserved_cpus: Optional[float] = None,
        scan_listener_port_non_tls: Optional[int] = None,
        scan_listener_port_tls: Optional[int] = None,
        state: Optional[str] = None,
        time_created: Optional[str] = None,
        time_database_ssl_certificate_expires: Optional[str] = None,
        time_ords_certificate_expires: Optional[str] = None,
        time_zone: Optional[str] = None,
        total_autonomous_data_storage_in_tbs: Optional[float] = None,
        total_container_databases: Optional[int] = None,
        vm_cluster_network_id: Optional[str] = None) -> AutonomousVmClusterfunc 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)resources:  _:    type: oci:Database:AutonomousVmCluster    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- AutonomousData doubleStorage Percentage 
- AutonomousData doubleStorage Size In Tbs 
- (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- AvailableAutonomous doubleData Storage Size In Tbs 
- The data disk group size available for Autonomous Databases, in TBs.
- AvailableContainer intDatabases 
- The number of Autonomous Container Databases that can be created with the currently available local storage.
- AvailableCpus int
- The numnber of CPU cores available.
- AvailableData doubleStorage Size In Tbs 
- Deprecated. Use availableAutonomousDataStorageSizeInTBsfor 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. ECPU compute model is the recommended model and OCPU compute model is legacy.
- CpuCore intCount Per Node 
- (Updatable) The number of CPU cores to enable per VM cluster node.
- CpuPercentage double
- CpusEnabled int
- The number of enabled CPU cores.
- CpusLowest intScaled Value 
- DataStorage doubleSize In Gb 
- DataStorage doubleSize In Tbs 
- The total data storage allocated in TBs
- DbNode intStorage Size In Gbs 
- The local node storage allocated in GBs.
- DbServers List<string>
- The list of OCIDs of the Db servers.
- Dictionary<string, string>
- (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.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- ExadataStorage doubleIn Tbs Lowest Scaled Value 
- The lowest value to which exadataStorage(in TBs) can be scaled down.
- Dictionary<string, string>
- (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"}
- IsLocal boolBackup Enabled 
- 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.
- IsMtls boolEnabled 
- Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- LastMaintenance stringRun Id 
- 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.
- MaintenanceWindow List<AutonomousDetails Vm Cluster Maintenance Window Detail> 
- (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- MaintenanceWindows List<AutonomousVm Cluster Maintenance Window> 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- MaxAcds intLowest Scaled Value 
- The lowest value to which maximum number of ACDs can be scaled down.
- MemoryPer intOracle Compute Unit In Gbs 
- The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- MemorySize intIn Gbs 
- The memory allocated in GBs.
- NextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- NodeCount int
- The number of nodes in the Autonomous VM Cluster.
- NonProvisionable intAutonomous Container Databases 
- OcpusEnabled double
- The number of enabled OCPU cores.
- ProvisionableAutonomous intContainer Databases 
- Deprecated. Use field totalContainerDatabases.
- ProvisionedAutonomous intContainer Databases 
- The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- ProvisionedCpus double
- The number of CPUs provisioned in an Autonomous VM Cluster.
- ReclaimableCpus int
- For Autonomous Databases on Dedicated Exadata Infrastructure:- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
 
- ReservedCpus double
- The number of CPUs reserved in an Autonomous VM Cluster.
- ScanListener intPort Non Tls 
- The SCAN Listener Non TLS port number. Default value is 1521.
- ScanListener intPort Tls 
- 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.
- TimeDatabase stringSsl Certificate Expires 
- The date and time of Database SSL certificate expiration.
- TimeOrds stringCertificate Expires 
- The date and time of ORDS certificate expiration.
- TimeZone string
- The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- TotalAutonomous doubleData Storage In Tbs 
- TotalContainer intDatabases 
- (Updatable) The total number of Autonomous Container Databases that can be created.
- VmCluster stringNetwork Id 
- 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 
- AutonomousData float64Storage Percentage 
- AutonomousData float64Storage Size In Tbs 
- (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- AvailableAutonomous float64Data Storage Size In Tbs 
- The data disk group size available for Autonomous Databases, in TBs.
- AvailableContainer intDatabases 
- The number of Autonomous Container Databases that can be created with the currently available local storage.
- AvailableCpus int
- The numnber of CPU cores available.
- AvailableData float64Storage Size In Tbs 
- Deprecated. Use availableAutonomousDataStorageSizeInTBsfor 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. ECPU compute model is the recommended model and OCPU compute model is legacy.
- CpuCore intCount Per Node 
- (Updatable) The number of CPU cores to enable per VM cluster node.
- CpuPercentage float64
- CpusEnabled int
- The number of enabled CPU cores.
- CpusLowest intScaled Value 
- DataStorage float64Size In Gb 
- DataStorage float64Size In Tbs 
- The total data storage allocated in TBs
- DbNode intStorage Size In Gbs 
- The local node storage allocated in GBs.
- DbServers []string
- The list of OCIDs of the Db servers.
- map[string]string
- (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.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- ExadataStorage float64In Tbs Lowest Scaled Value 
- The lowest value to which exadataStorage(in TBs) can be scaled down.
- map[string]string
- (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"}
- IsLocal boolBackup Enabled 
- 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.
- IsMtls boolEnabled 
- Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- LastMaintenance stringRun Id 
- 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.
- MaintenanceWindow []AutonomousDetails Vm Cluster Maintenance Window Detail Args 
- (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- MaintenanceWindows []AutonomousVm Cluster Maintenance Window Args 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- MaxAcds intLowest Scaled Value 
- The lowest value to which maximum number of ACDs can be scaled down.
- MemoryPer intOracle Compute Unit In Gbs 
- The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- MemorySize intIn Gbs 
- The memory allocated in GBs.
- NextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- NodeCount int
- The number of nodes in the Autonomous VM Cluster.
- NonProvisionable intAutonomous Container Databases 
- OcpusEnabled float64
- The number of enabled OCPU cores.
- ProvisionableAutonomous intContainer Databases 
- Deprecated. Use field totalContainerDatabases.
- ProvisionedAutonomous intContainer Databases 
- The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- ProvisionedCpus float64
- The number of CPUs provisioned in an Autonomous VM Cluster.
- ReclaimableCpus int
- For Autonomous Databases on Dedicated Exadata Infrastructure:- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
 
- ReservedCpus float64
- The number of CPUs reserved in an Autonomous VM Cluster.
- ScanListener intPort Non Tls 
- The SCAN Listener Non TLS port number. Default value is 1521.
- ScanListener intPort Tls 
- 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.
- TimeDatabase stringSsl Certificate Expires 
- The date and time of Database SSL certificate expiration.
- TimeOrds stringCertificate Expires 
- The date and time of ORDS certificate expiration.
- TimeZone string
- The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- TotalAutonomous float64Data Storage In Tbs 
- TotalContainer intDatabases 
- (Updatable) The total number of Autonomous Container Databases that can be created.
- VmCluster stringNetwork Id 
- 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 
- autonomousData DoubleStorage Percentage 
- autonomousData DoubleStorage Size In Tbs 
- (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- availableAutonomous DoubleData Storage Size In Tbs 
- The data disk group size available for Autonomous Databases, in TBs.
- availableContainer IntegerDatabases 
- The number of Autonomous Container Databases that can be created with the currently available local storage.
- availableCpus Integer
- The numnber of CPU cores available.
- availableData DoubleStorage Size In Tbs 
- Deprecated. Use availableAutonomousDataStorageSizeInTBsfor 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. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpuCore IntegerCount Per Node 
- (Updatable) The number of CPU cores to enable per VM cluster node.
- cpuPercentage Double
- cpusEnabled Integer
- The number of enabled CPU cores.
- cpusLowest IntegerScaled Value 
- dataStorage DoubleSize In Gb 
- dataStorage DoubleSize In Tbs 
- The total data storage allocated in TBs
- dbNode IntegerStorage Size In Gbs 
- The local node storage allocated in GBs.
- dbServers List<String>
- The list of OCIDs of the Db servers.
- Map<String,String>
- (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.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- exadataStorage DoubleIn Tbs Lowest Scaled Value 
- The lowest value to which exadataStorage(in TBs) can be scaled down.
- Map<String,String>
- (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"}
- isLocal BooleanBackup Enabled 
- 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.
- isMtls BooleanEnabled 
- Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- lastMaintenance StringRun Id 
- 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.
- maintenanceWindow List<AutonomousDetails Vm Cluster Maintenance Window Detail> 
- (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maintenanceWindows List<AutonomousVm Cluster Maintenance Window> 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maxAcds IntegerLowest Scaled Value 
- The lowest value to which maximum number of ACDs can be scaled down.
- memoryPer IntegerOracle Compute Unit In Gbs 
- The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- memorySize IntegerIn Gbs 
- The memory allocated in GBs.
- nextMaintenance StringRun Id 
- The OCID of the next maintenance run.
- nodeCount Integer
- The number of nodes in the Autonomous VM Cluster.
- nonProvisionable IntegerAutonomous Container Databases 
- ocpusEnabled Double
- The number of enabled OCPU cores.
- provisionableAutonomous IntegerContainer Databases 
- Deprecated. Use field totalContainerDatabases.
- provisionedAutonomous IntegerContainer Databases 
- The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisionedCpus Double
- The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimableCpus Integer
- For Autonomous Databases on Dedicated Exadata Infrastructure:- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
 
- reservedCpus Double
- The number of CPUs reserved in an Autonomous VM Cluster.
- scanListener IntegerPort Non Tls 
- The SCAN Listener Non TLS port number. Default value is 1521.
- scanListener IntegerPort Tls 
- 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.
- timeDatabase StringSsl Certificate Expires 
- The date and time of Database SSL certificate expiration.
- timeOrds StringCertificate Expires 
- The date and time of ORDS certificate expiration.
- timeZone String
- The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- totalAutonomous DoubleData Storage In Tbs 
- totalContainer IntegerDatabases 
- (Updatable) The total number of Autonomous Container Databases that can be created.
- vmCluster StringNetwork Id 
- 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 
- autonomousData numberStorage Percentage 
- autonomousData numberStorage Size In Tbs 
- (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- availableAutonomous numberData Storage Size In Tbs 
- The data disk group size available for Autonomous Databases, in TBs.
- availableContainer numberDatabases 
- The number of Autonomous Container Databases that can be created with the currently available local storage.
- availableCpus number
- The numnber of CPU cores available.
- availableData numberStorage Size In Tbs 
- Deprecated. Use availableAutonomousDataStorageSizeInTBsfor 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. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpuCore numberCount Per Node 
- (Updatable) The number of CPU cores to enable per VM cluster node.
- cpuPercentage number
- cpusEnabled number
- The number of enabled CPU cores.
- cpusLowest numberScaled Value 
- dataStorage numberSize In Gb 
- dataStorage numberSize In Tbs 
- The total data storage allocated in TBs
- dbNode numberStorage Size In Gbs 
- The local node storage allocated in GBs.
- dbServers string[]
- The list of OCIDs of the Db servers.
- {[key: string]: string}
- (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.
- exadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- exadataStorage numberIn Tbs Lowest Scaled Value 
- The lowest value to which exadataStorage(in TBs) can be scaled down.
- {[key: string]: string}
- (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"}
- isLocal booleanBackup Enabled 
- 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.
- isMtls booleanEnabled 
- Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- lastMaintenance stringRun Id 
- 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.
- maintenanceWindow AutonomousDetails Vm Cluster Maintenance Window Detail[] 
- (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maintenanceWindows AutonomousVm Cluster Maintenance Window[] 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maxAcds numberLowest Scaled Value 
- The lowest value to which maximum number of ACDs can be scaled down.
- memoryPer numberOracle Compute Unit In Gbs 
- The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- memorySize numberIn Gbs 
- The memory allocated in GBs.
- nextMaintenance stringRun Id 
- The OCID of the next maintenance run.
- nodeCount number
- The number of nodes in the Autonomous VM Cluster.
- nonProvisionable numberAutonomous Container Databases 
- ocpusEnabled number
- The number of enabled OCPU cores.
- provisionableAutonomous numberContainer Databases 
- Deprecated. Use field totalContainerDatabases.
- provisionedAutonomous numberContainer Databases 
- The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisionedCpus number
- The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimableCpus number
- For Autonomous Databases on Dedicated Exadata Infrastructure:- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
 
- reservedCpus number
- The number of CPUs reserved in an Autonomous VM Cluster.
- scanListener numberPort Non Tls 
- The SCAN Listener Non TLS port number. Default value is 1521.
- scanListener numberPort Tls 
- 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.
- timeDatabase stringSsl Certificate Expires 
- The date and time of Database SSL certificate expiration.
- timeOrds stringCertificate Expires 
- The date and time of ORDS certificate expiration.
- timeZone string
- The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- totalAutonomous numberData Storage In Tbs 
- totalContainer numberDatabases 
- (Updatable) The total number of Autonomous Container Databases that can be created.
- vmCluster stringNetwork Id 
- 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_ floatstorage_ percentage 
- autonomous_data_ floatstorage_ size_ in_ tbs 
- (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- available_autonomous_ floatdata_ storage_ size_ in_ tbs 
- The data disk group size available for Autonomous Databases, in TBs.
- available_container_ intdatabases 
- 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_ floatstorage_ size_ in_ tbs 
- Deprecated. Use availableAutonomousDataStorageSizeInTBsfor 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. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpu_core_ intcount_ per_ node 
- (Updatable) The number of CPU cores to enable per VM cluster node.
- cpu_percentage float
- cpus_enabled int
- The number of enabled CPU cores.
- cpus_lowest_ intscaled_ value 
- data_storage_ floatsize_ in_ gb 
- data_storage_ floatsize_ in_ tbs 
- The total data storage allocated in TBs
- db_node_ intstorage_ size_ in_ gbs 
- The local node storage allocated in GBs.
- db_servers Sequence[str]
- The list of OCIDs of the Db servers.
- Mapping[str, str]
- (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_ strid 
- The OCID of the Exadata infrastructure.
- exadata_storage_ floatin_ tbs_ lowest_ scaled_ value 
- The lowest value to which exadataStorage(in TBs) can be scaled down.
- Mapping[str, str]
- (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_ boolbackup_ enabled 
- 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_ boolenabled 
- Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- last_maintenance_ strrun_ id 
- 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_ Sequence[Autonomousdetails Vm Cluster Maintenance Window Detail Args] 
- (Updatable) The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- maintenance_windows Sequence[AutonomousVm Cluster Maintenance Window Args] 
- The scheduling details for the quarterly maintenance window. Patching and system updates take place during the maintenance window.
- max_acds_ intlowest_ scaled_ value 
- The lowest value to which maximum number of ACDs can be scaled down.
- memory_per_ intoracle_ compute_ unit_ in_ gbs 
- The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- memory_size_ intin_ gbs 
- The memory allocated in GBs.
- next_maintenance_ strrun_ id 
- The OCID of the next maintenance run.
- node_count int
- The number of nodes in the Autonomous VM Cluster.
- non_provisionable_ intautonomous_ container_ databases 
- ocpus_enabled float
- The number of enabled OCPU cores.
- provisionable_autonomous_ intcontainer_ databases 
- Deprecated. Use field totalContainerDatabases.
- provisioned_autonomous_ intcontainer_ databases 
- The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisioned_cpus float
- The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimable_cpus int
- For Autonomous Databases on Dedicated Exadata Infrastructure:- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
 
- reserved_cpus float
- The number of CPUs reserved in an Autonomous VM Cluster.
- scan_listener_ intport_ non_ tls 
- The SCAN Listener Non TLS port number. Default value is 1521.
- scan_listener_ intport_ tls 
- The SCAN Listener TLS port number. Default value is 2484.
- state str
- The current state of the Autonomous VM cluster.
- time_created str
- The date and time that the Autonomous VM cluster was created.
- time_database_ strssl_ certificate_ expires 
- The date and time of Database SSL certificate expiration.
- time_ords_ strcertificate_ expires 
- The date and time of ORDS certificate expiration.
- time_zone str
- The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- total_autonomous_ floatdata_ storage_ in_ tbs 
- total_container_ intdatabases 
- (Updatable) The total number of Autonomous Container Databases that can be created.
- vm_cluster_ strnetwork_ id 
- 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 
- autonomousData NumberStorage Percentage 
- autonomousData NumberStorage Size In Tbs 
- (Updatable) The data disk group size to be allocated for Autonomous Databases, in TBs.
- availableAutonomous NumberData Storage Size In Tbs 
- The data disk group size available for Autonomous Databases, in TBs.
- availableContainer NumberDatabases 
- The number of Autonomous Container Databases that can be created with the currently available local storage.
- availableCpus Number
- The numnber of CPU cores available.
- availableData NumberStorage Size In Tbs 
- Deprecated. Use availableAutonomousDataStorageSizeInTBsfor 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. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpuCore NumberCount Per Node 
- (Updatable) The number of CPU cores to enable per VM cluster node.
- cpuPercentage Number
- cpusEnabled Number
- The number of enabled CPU cores.
- cpusLowest NumberScaled Value 
- dataStorage NumberSize In Gb 
- dataStorage NumberSize In Tbs 
- The total data storage allocated in TBs
- dbNode NumberStorage Size In Gbs 
- The local node storage allocated in GBs.
- dbServers List<String>
- The list of OCIDs of the Db servers.
- Map<String>
- (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.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- exadataStorage NumberIn Tbs Lowest Scaled Value 
- The lowest value to which exadataStorage(in TBs) can be scaled down.
- Map<String>
- (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"}
- isLocal BooleanBackup Enabled 
- 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.
- isMtls BooleanEnabled 
- Enable mutual TLS(mTLS) authentication for database while provisioning a VMCluster. Default is TLS.
- lastMaintenance StringRun Id 
- 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.
- maintenanceWindow List<Property Map>Details 
- (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.
- maxAcds NumberLowest Scaled Value 
- The lowest value to which maximum number of ACDs can be scaled down.
- memoryPer NumberOracle Compute Unit In Gbs 
- The amount of memory (in GBs) to be enabled per OCPU or ECPU.
- memorySize NumberIn Gbs 
- The memory allocated in GBs.
- nextMaintenance StringRun Id 
- The OCID of the next maintenance run.
- nodeCount Number
- The number of nodes in the Autonomous VM Cluster.
- nonProvisionable NumberAutonomous Container Databases 
- ocpusEnabled Number
- The number of enabled OCPU cores.
- provisionableAutonomous NumberContainer Databases 
- Deprecated. Use field totalContainerDatabases.
- provisionedAutonomous NumberContainer Databases 
- The number of provisioned Autonomous Container Databases in an Autonomous VM Cluster.
- provisionedCpus Number
- The number of CPUs provisioned in an Autonomous VM Cluster.
- reclaimableCpus Number
- For Autonomous Databases on Dedicated Exadata Infrastructure:- These are the CPUs that continue to be included in the count of CPUs available to the Autonomous Container Database even after one of its Autonomous Database is terminated or scaled down. You can release them to the available CPUs at its parent Autonomous VM Cluster level by restarting the Autonomous Container Database.
- The CPU type (OCPUs or ECPUs) is determined by the parent Autonomous Exadata VM Cluster's compute model.
 
- reservedCpus Number
- The number of CPUs reserved in an Autonomous VM Cluster.
- scanListener NumberPort Non Tls 
- The SCAN Listener Non TLS port number. Default value is 1521.
- scanListener NumberPort Tls 
- 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.
- timeDatabase StringSsl Certificate Expires 
- The date and time of Database SSL certificate expiration.
- timeOrds StringCertificate Expires 
- The date and time of ORDS certificate expiration.
- timeZone String
- The time zone to use for the Autonomous VM cluster. For details, see DB System Time Zones.
- totalAutonomous NumberData Storage In Tbs 
- totalContainer NumberDatabases 
- (Updatable) The total number of Autonomous Container Databases that can be created.
- vmCluster StringNetwork Id 
- The OCID of the VM cluster network. - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
Supporting Types
AutonomousVmClusterMaintenanceWindow, AutonomousVmClusterMaintenanceWindowArgs          
- CustomAction intTimeout In Mins 
- DaysOf List<AutonomousWeeks Vm Cluster Maintenance Window Days Of Week> 
- Days during the week when maintenance should be performed.
- HoursOf List<int>Days 
- 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
 
- IsCustom boolAction Timeout Enabled 
- IsMonthly boolPatching Enabled 
- LeadTime intIn Weeks 
- 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<AutonomousVm Cluster Maintenance Window Month> 
- 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
- The maintenance window scheduling preference.
- SkipRus List<bool>
- WeeksOf List<int>Months 
- 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.
- CustomAction intTimeout In Mins 
- DaysOf []AutonomousWeeks Vm Cluster Maintenance Window Days Of Week 
- Days during the week when maintenance should be performed.
- HoursOf []intDays 
- 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
 
- IsCustom boolAction Timeout Enabled 
- IsMonthly boolPatching Enabled 
- LeadTime intIn Weeks 
- 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
[]AutonomousVm Cluster Maintenance Window Month 
- 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
- The maintenance window scheduling preference.
- SkipRus []bool
- WeeksOf []intMonths 
- 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.
- customAction IntegerTimeout In Mins 
- daysOf List<AutonomousWeeks Vm Cluster Maintenance Window Days Of Week> 
- Days during the week when maintenance should be performed.
- hoursOf List<Integer>Days 
- 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
 
- isCustom BooleanAction Timeout Enabled 
- isMonthly BooleanPatching Enabled 
- leadTime IntegerIn Weeks 
- 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<AutonomousVm Cluster Maintenance Window Month> 
- 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
- The maintenance window scheduling preference.
- skipRus List<Boolean>
- weeksOf List<Integer>Months 
- 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.
- customAction numberTimeout In Mins 
- daysOf AutonomousWeeks Vm Cluster Maintenance Window Days Of Week[] 
- Days during the week when maintenance should be performed.
- hoursOf number[]Days 
- 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
 
- isCustom booleanAction Timeout Enabled 
- isMonthly booleanPatching Enabled 
- leadTime numberIn Weeks 
- 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
AutonomousVm Cluster Maintenance Window Month[] 
- 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
- The maintenance window scheduling preference.
- skipRus boolean[]
- weeksOf number[]Months 
- 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_ inttimeout_ in_ mins 
- days_of_ Sequence[Autonomousweeks Vm Cluster Maintenance Window Days Of Week] 
- Days during the week when maintenance should be performed.
- hours_of_ Sequence[int]days 
- 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_ boolaction_ timeout_ enabled 
- is_monthly_ boolpatching_ enabled 
- lead_time_ intin_ weeks 
- Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
Sequence[AutonomousVm Cluster Maintenance Window Month] 
- 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
- The maintenance window scheduling preference.
- skip_rus Sequence[bool]
- weeks_of_ Sequence[int]months 
- 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.
- customAction NumberTimeout In Mins 
- daysOf List<Property Map>Weeks 
- Days during the week when maintenance should be performed.
- hoursOf List<Number>Days 
- 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
 
- isCustom BooleanAction Timeout Enabled 
- isMonthly BooleanPatching Enabled 
- leadTime NumberIn Weeks 
- 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>
- 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
- The maintenance window scheduling preference.
- skipRus List<Boolean>
- weeksOf List<Number>Months 
- Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
AutonomousVmClusterMaintenanceWindowDaysOfWeek, AutonomousVmClusterMaintenanceWindowDaysOfWeekArgs                
- Name string
- Name of the month of the year.
- Name string
- Name of the month of the year.
- name String
- Name of the month of the year.
- name string
- Name of the month of the year.
- name str
- Name of the month of the year.
- name String
- Name of the month of the year.
AutonomousVmClusterMaintenanceWindowDetail, AutonomousVmClusterMaintenanceWindowDetailArgs            
- CustomAction intTimeout In Mins 
- DaysOf List<AutonomousWeeks Vm Cluster Maintenance Window Detail Days Of Week> 
- (Updatable) Days during the week when maintenance should be performed.
- HoursOf List<int>Days 
- (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
 
- IsCustom boolAction Timeout Enabled 
- IsMonthly boolPatching Enabled 
- LeadTime intIn Weeks 
- (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<AutonomousVm Cluster Maintenance Window Detail Month> 
- (Updatable) Months during the year when maintenance should be performed.
- PatchingMode string
- (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING. - IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information. 
- Preference string
- (Updatable) The maintenance window scheduling preference.
- SkipRus List<bool>
- WeeksOf List<int>Months 
- (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.
- CustomAction intTimeout In Mins 
- DaysOf []AutonomousWeeks Vm Cluster Maintenance Window Detail Days Of Week 
- (Updatable) Days during the week when maintenance should be performed.
- HoursOf []intDays 
- (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
 
- IsCustom boolAction Timeout Enabled 
- IsMonthly boolPatching Enabled 
- LeadTime intIn Weeks 
- (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
[]AutonomousVm Cluster Maintenance Window Detail Month 
- (Updatable) Months during the year when maintenance should be performed.
- PatchingMode string
- (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING. - IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information. 
- Preference string
- (Updatable) The maintenance window scheduling preference.
- SkipRus []bool
- WeeksOf []intMonths 
- (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.
- customAction IntegerTimeout In Mins 
- daysOf List<AutonomousWeeks Vm Cluster Maintenance Window Detail Days Of Week> 
- (Updatable) Days during the week when maintenance should be performed.
- hoursOf List<Integer>Days 
- (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
 
- isCustom BooleanAction Timeout Enabled 
- isMonthly BooleanPatching Enabled 
- leadTime IntegerIn Weeks 
- (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<AutonomousVm Cluster Maintenance Window Detail Month> 
- (Updatable) Months during the year when maintenance should be performed.
- patchingMode String
- (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING. - IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information. 
- preference String
- (Updatable) The maintenance window scheduling preference.
- skipRus List<Boolean>
- weeksOf List<Integer>Months 
- (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.
- customAction numberTimeout In Mins 
- daysOf AutonomousWeeks Vm Cluster Maintenance Window Detail Days Of Week[] 
- (Updatable) Days during the week when maintenance should be performed.
- hoursOf number[]Days 
- (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
 
- isCustom booleanAction Timeout Enabled 
- isMonthly booleanPatching Enabled 
- leadTime numberIn Weeks 
- (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
AutonomousVm Cluster Maintenance Window Detail Month[] 
- (Updatable) Months during the year when maintenance should be performed.
- patchingMode string
- (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING. - IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information. 
- preference string
- (Updatable) The maintenance window scheduling preference.
- skipRus boolean[]
- weeksOf number[]Months 
- (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_ inttimeout_ in_ mins 
- days_of_ Sequence[Autonomousweeks Vm Cluster Maintenance Window Detail Days Of Week] 
- (Updatable) Days during the week when maintenance should be performed.
- hours_of_ Sequence[int]days 
- (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_ boolaction_ timeout_ enabled 
- is_monthly_ boolpatching_ enabled 
- lead_time_ intin_ weeks 
- (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months
Sequence[AutonomousVm Cluster Maintenance Window Detail Month] 
- (Updatable) Months during the year when maintenance should be performed.
- patching_mode str
- (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING. - IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information. 
- preference str
- (Updatable) The maintenance window scheduling preference.
- skip_rus Sequence[bool]
- weeks_of_ Sequence[int]months 
- (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.
- customAction NumberTimeout In Mins 
- daysOf List<Property Map>Weeks 
- (Updatable) Days during the week when maintenance should be performed.
- hoursOf List<Number>Days 
- (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
 
- isCustom BooleanAction Timeout Enabled 
- isMonthly BooleanPatching Enabled 
- leadTime NumberIn Weeks 
- (Updatable) Lead time window allows user to set a lead time to prepare for a down time. The lead time is in weeks and valid value is between 1 to 4.
- months List<Property Map>
- (Updatable) Months during the year when maintenance should be performed.
- patchingMode String
- (Updatable) Cloud Exadata infrastructure node patching method, either "ROLLING" or "NONROLLING". Default value is ROLLING. - IMPORTANT: Non-rolling infrastructure patching involves system down time. See Oracle-Managed Infrastructure Maintenance Updates for more information. 
- preference String
- (Updatable) The maintenance window scheduling preference.
- skipRus List<Boolean>
- weeksOf List<Number>Months 
- (Updatable) Weeks during the month when maintenance should be performed. Weeks start on the 1st, 8th, 15th, and 22nd days of the month, and have a duration of 7 days. Weeks start and end based on calendar dates, not days of the week. For example, to allow maintenance during the 2nd week of the month (from the 8th day to the 14th day of the month), use the value 2. Maintenance cannot be scheduled for the fifth week of months that contain more than 28 days. Note that this parameter works in conjunction with the daysOfWeek and hoursOfDay parameters to allow you to specify specific days of the week and hours that maintenance will be performed.
AutonomousVmClusterMaintenanceWindowDetailDaysOfWeek, AutonomousVmClusterMaintenanceWindowDetailDaysOfWeekArgs                  
- Name string
- (Updatable) Name of the day of the week.
- Name string
- (Updatable) Name of the day of the week.
- name String
- (Updatable) Name of the day of the week.
- name string
- (Updatable) Name of the day of the week.
- name str
- (Updatable) Name of the day of the week.
- name String
- (Updatable) Name of the day of the week.
AutonomousVmClusterMaintenanceWindowDetailMonth, AutonomousVmClusterMaintenanceWindowDetailMonthArgs              
- Name string
- (Updatable) Name of the month of the year.
- Name string
- (Updatable) Name of the month of the year.
- name String
- (Updatable) Name of the month of the year.
- name string
- (Updatable) Name of the month of the year.
- name str
- (Updatable) Name of the month of the year.
- name String
- (Updatable) Name of the month of the year.
AutonomousVmClusterMaintenanceWindowMonth, AutonomousVmClusterMaintenanceWindowMonthArgs            
- Name string
- Name of the month of the year.
- Name string
- Name of the month of the year.
- name String
- Name of the month of the year.
- name string
- Name of the month of the year.
- name str
- Name of the month of the year.
- name String
- 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"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.