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

oci.Database.CloudVmCluster

Explore with Pulumi AI

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

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

    Creates a cloud VM cluster.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCloudVmCluster = new oci.database.CloudVmCluster("testCloudVmCluster", {
        backupSubnetId: oci_core_subnet.test_subnet.id,
        cloudExadataInfrastructureId: oci_database_cloud_exadata_infrastructure.test_cloud_exadata_infrastructure.id,
        compartmentId: _var.compartment_id,
        cpuCoreCount: _var.cloud_vm_cluster_cpu_core_count,
        displayName: _var.cloud_vm_cluster_display_name,
        giVersion: _var.cloud_vm_cluster_gi_version,
        hostname: _var.cloud_vm_cluster_hostname,
        sshPublicKeys: _var.cloud_vm_cluster_ssh_public_keys,
        subnetId: oci_core_subnet.test_subnet.id,
        backupNetworkNsgIds: _var.cloud_vm_cluster_backup_network_nsg_ids,
        clusterName: _var.cloud_vm_cluster_cluster_name,
        dataCollectionOptions: {
            isDiagnosticsEventsEnabled: _var.cloud_vm_cluster_data_collection_options_is_diagnostics_events_enabled,
            isHealthMonitoringEnabled: _var.cloud_vm_cluster_data_collection_options_is_health_monitoring_enabled,
            isIncidentLogsEnabled: _var.cloud_vm_cluster_data_collection_options_is_incident_logs_enabled,
        },
        dataStoragePercentage: _var.cloud_vm_cluster_data_storage_percentage,
        dataStorageSizeInTbs: _var.cloud_vm_cluster_data_storage_size_in_tbs,
        dbNodeStorageSizeInGbs: _var.cloud_vm_cluster_db_node_storage_size_in_gbs,
        dbServers: _var.cloud_vm_cluster_db_servers,
        definedTags: _var.cloud_vm_cluster_defined_tags,
        domain: _var.cloud_vm_cluster_domain,
        freeformTags: {
            Department: "Finance",
        },
        isLocalBackupEnabled: _var.cloud_vm_cluster_is_local_backup_enabled,
        isSparseDiskgroupEnabled: _var.cloud_vm_cluster_is_sparse_diskgroup_enabled,
        licenseModel: _var.cloud_vm_cluster_license_model,
        memorySizeInGbs: _var.cloud_vm_cluster_memory_size_in_gbs,
        nsgIds: _var.cloud_vm_cluster_nsg_ids,
        ocpuCount: _var.cloud_vm_cluster_ocpu_count,
        privateZoneId: oci_dns_zone.test_zone.id,
        scanListenerPortTcp: _var.cloud_vm_cluster_scan_listener_port_tcp,
        scanListenerPortTcpSsl: _var.cloud_vm_cluster_scan_listener_port_tcp_ssl,
        systemVersion: _var.cloud_vm_cluster_system_version,
        timeZone: _var.cloud_vm_cluster_time_zone,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_cloud_vm_cluster = oci.database.CloudVmCluster("testCloudVmCluster",
        backup_subnet_id=oci_core_subnet["test_subnet"]["id"],
        cloud_exadata_infrastructure_id=oci_database_cloud_exadata_infrastructure["test_cloud_exadata_infrastructure"]["id"],
        compartment_id=var["compartment_id"],
        cpu_core_count=var["cloud_vm_cluster_cpu_core_count"],
        display_name=var["cloud_vm_cluster_display_name"],
        gi_version=var["cloud_vm_cluster_gi_version"],
        hostname=var["cloud_vm_cluster_hostname"],
        ssh_public_keys=var["cloud_vm_cluster_ssh_public_keys"],
        subnet_id=oci_core_subnet["test_subnet"]["id"],
        backup_network_nsg_ids=var["cloud_vm_cluster_backup_network_nsg_ids"],
        cluster_name=var["cloud_vm_cluster_cluster_name"],
        data_collection_options=oci.database.CloudVmClusterDataCollectionOptionsArgs(
            is_diagnostics_events_enabled=var["cloud_vm_cluster_data_collection_options_is_diagnostics_events_enabled"],
            is_health_monitoring_enabled=var["cloud_vm_cluster_data_collection_options_is_health_monitoring_enabled"],
            is_incident_logs_enabled=var["cloud_vm_cluster_data_collection_options_is_incident_logs_enabled"],
        ),
        data_storage_percentage=var["cloud_vm_cluster_data_storage_percentage"],
        data_storage_size_in_tbs=var["cloud_vm_cluster_data_storage_size_in_tbs"],
        db_node_storage_size_in_gbs=var["cloud_vm_cluster_db_node_storage_size_in_gbs"],
        db_servers=var["cloud_vm_cluster_db_servers"],
        defined_tags=var["cloud_vm_cluster_defined_tags"],
        domain=var["cloud_vm_cluster_domain"],
        freeform_tags={
            "Department": "Finance",
        },
        is_local_backup_enabled=var["cloud_vm_cluster_is_local_backup_enabled"],
        is_sparse_diskgroup_enabled=var["cloud_vm_cluster_is_sparse_diskgroup_enabled"],
        license_model=var["cloud_vm_cluster_license_model"],
        memory_size_in_gbs=var["cloud_vm_cluster_memory_size_in_gbs"],
        nsg_ids=var["cloud_vm_cluster_nsg_ids"],
        ocpu_count=var["cloud_vm_cluster_ocpu_count"],
        private_zone_id=oci_dns_zone["test_zone"]["id"],
        scan_listener_port_tcp=var["cloud_vm_cluster_scan_listener_port_tcp"],
        scan_listener_port_tcp_ssl=var["cloud_vm_cluster_scan_listener_port_tcp_ssl"],
        system_version=var["cloud_vm_cluster_system_version"],
        time_zone=var["cloud_vm_cluster_time_zone"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Database"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Database.NewCloudVmCluster(ctx, "testCloudVmCluster", &Database.CloudVmClusterArgs{
    			BackupSubnetId:               pulumi.Any(oci_core_subnet.Test_subnet.Id),
    			CloudExadataInfrastructureId: pulumi.Any(oci_database_cloud_exadata_infrastructure.Test_cloud_exadata_infrastructure.Id),
    			CompartmentId:                pulumi.Any(_var.Compartment_id),
    			CpuCoreCount:                 pulumi.Any(_var.Cloud_vm_cluster_cpu_core_count),
    			DisplayName:                  pulumi.Any(_var.Cloud_vm_cluster_display_name),
    			GiVersion:                    pulumi.Any(_var.Cloud_vm_cluster_gi_version),
    			Hostname:                     pulumi.Any(_var.Cloud_vm_cluster_hostname),
    			SshPublicKeys:                pulumi.Any(_var.Cloud_vm_cluster_ssh_public_keys),
    			SubnetId:                     pulumi.Any(oci_core_subnet.Test_subnet.Id),
    			BackupNetworkNsgIds:          pulumi.Any(_var.Cloud_vm_cluster_backup_network_nsg_ids),
    			ClusterName:                  pulumi.Any(_var.Cloud_vm_cluster_cluster_name),
    			DataCollectionOptions: &database.CloudVmClusterDataCollectionOptionsArgs{
    				IsDiagnosticsEventsEnabled: pulumi.Any(_var.Cloud_vm_cluster_data_collection_options_is_diagnostics_events_enabled),
    				IsHealthMonitoringEnabled:  pulumi.Any(_var.Cloud_vm_cluster_data_collection_options_is_health_monitoring_enabled),
    				IsIncidentLogsEnabled:      pulumi.Any(_var.Cloud_vm_cluster_data_collection_options_is_incident_logs_enabled),
    			},
    			DataStoragePercentage:  pulumi.Any(_var.Cloud_vm_cluster_data_storage_percentage),
    			DataStorageSizeInTbs:   pulumi.Any(_var.Cloud_vm_cluster_data_storage_size_in_tbs),
    			DbNodeStorageSizeInGbs: pulumi.Any(_var.Cloud_vm_cluster_db_node_storage_size_in_gbs),
    			DbServers:              pulumi.Any(_var.Cloud_vm_cluster_db_servers),
    			DefinedTags:            pulumi.Any(_var.Cloud_vm_cluster_defined_tags),
    			Domain:                 pulumi.Any(_var.Cloud_vm_cluster_domain),
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("Finance"),
    			},
    			IsLocalBackupEnabled:     pulumi.Any(_var.Cloud_vm_cluster_is_local_backup_enabled),
    			IsSparseDiskgroupEnabled: pulumi.Any(_var.Cloud_vm_cluster_is_sparse_diskgroup_enabled),
    			LicenseModel:             pulumi.Any(_var.Cloud_vm_cluster_license_model),
    			MemorySizeInGbs:          pulumi.Any(_var.Cloud_vm_cluster_memory_size_in_gbs),
    			NsgIds:                   pulumi.Any(_var.Cloud_vm_cluster_nsg_ids),
    			OcpuCount:                pulumi.Any(_var.Cloud_vm_cluster_ocpu_count),
    			PrivateZoneId:            pulumi.Any(oci_dns_zone.Test_zone.Id),
    			ScanListenerPortTcp:      pulumi.Any(_var.Cloud_vm_cluster_scan_listener_port_tcp),
    			ScanListenerPortTcpSsl:   pulumi.Any(_var.Cloud_vm_cluster_scan_listener_port_tcp_ssl),
    			SystemVersion:            pulumi.Any(_var.Cloud_vm_cluster_system_version),
    			TimeZone:                 pulumi.Any(_var.Cloud_vm_cluster_time_zone),
    		})
    		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 testCloudVmCluster = new Oci.Database.CloudVmCluster("testCloudVmCluster", new()
        {
            BackupSubnetId = oci_core_subnet.Test_subnet.Id,
            CloudExadataInfrastructureId = oci_database_cloud_exadata_infrastructure.Test_cloud_exadata_infrastructure.Id,
            CompartmentId = @var.Compartment_id,
            CpuCoreCount = @var.Cloud_vm_cluster_cpu_core_count,
            DisplayName = @var.Cloud_vm_cluster_display_name,
            GiVersion = @var.Cloud_vm_cluster_gi_version,
            Hostname = @var.Cloud_vm_cluster_hostname,
            SshPublicKeys = @var.Cloud_vm_cluster_ssh_public_keys,
            SubnetId = oci_core_subnet.Test_subnet.Id,
            BackupNetworkNsgIds = @var.Cloud_vm_cluster_backup_network_nsg_ids,
            ClusterName = @var.Cloud_vm_cluster_cluster_name,
            DataCollectionOptions = new Oci.Database.Inputs.CloudVmClusterDataCollectionOptionsArgs
            {
                IsDiagnosticsEventsEnabled = @var.Cloud_vm_cluster_data_collection_options_is_diagnostics_events_enabled,
                IsHealthMonitoringEnabled = @var.Cloud_vm_cluster_data_collection_options_is_health_monitoring_enabled,
                IsIncidentLogsEnabled = @var.Cloud_vm_cluster_data_collection_options_is_incident_logs_enabled,
            },
            DataStoragePercentage = @var.Cloud_vm_cluster_data_storage_percentage,
            DataStorageSizeInTbs = @var.Cloud_vm_cluster_data_storage_size_in_tbs,
            DbNodeStorageSizeInGbs = @var.Cloud_vm_cluster_db_node_storage_size_in_gbs,
            DbServers = @var.Cloud_vm_cluster_db_servers,
            DefinedTags = @var.Cloud_vm_cluster_defined_tags,
            Domain = @var.Cloud_vm_cluster_domain,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            IsLocalBackupEnabled = @var.Cloud_vm_cluster_is_local_backup_enabled,
            IsSparseDiskgroupEnabled = @var.Cloud_vm_cluster_is_sparse_diskgroup_enabled,
            LicenseModel = @var.Cloud_vm_cluster_license_model,
            MemorySizeInGbs = @var.Cloud_vm_cluster_memory_size_in_gbs,
            NsgIds = @var.Cloud_vm_cluster_nsg_ids,
            OcpuCount = @var.Cloud_vm_cluster_ocpu_count,
            PrivateZoneId = oci_dns_zone.Test_zone.Id,
            ScanListenerPortTcp = @var.Cloud_vm_cluster_scan_listener_port_tcp,
            ScanListenerPortTcpSsl = @var.Cloud_vm_cluster_scan_listener_port_tcp_ssl,
            SystemVersion = @var.Cloud_vm_cluster_system_version,
            TimeZone = @var.Cloud_vm_cluster_time_zone,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Database.CloudVmCluster;
    import com.pulumi.oci.Database.CloudVmClusterArgs;
    import com.pulumi.oci.Database.inputs.CloudVmClusterDataCollectionOptionsArgs;
    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 testCloudVmCluster = new CloudVmCluster("testCloudVmCluster", CloudVmClusterArgs.builder()        
                .backupSubnetId(oci_core_subnet.test_subnet().id())
                .cloudExadataInfrastructureId(oci_database_cloud_exadata_infrastructure.test_cloud_exadata_infrastructure().id())
                .compartmentId(var_.compartment_id())
                .cpuCoreCount(var_.cloud_vm_cluster_cpu_core_count())
                .displayName(var_.cloud_vm_cluster_display_name())
                .giVersion(var_.cloud_vm_cluster_gi_version())
                .hostname(var_.cloud_vm_cluster_hostname())
                .sshPublicKeys(var_.cloud_vm_cluster_ssh_public_keys())
                .subnetId(oci_core_subnet.test_subnet().id())
                .backupNetworkNsgIds(var_.cloud_vm_cluster_backup_network_nsg_ids())
                .clusterName(var_.cloud_vm_cluster_cluster_name())
                .dataCollectionOptions(CloudVmClusterDataCollectionOptionsArgs.builder()
                    .isDiagnosticsEventsEnabled(var_.cloud_vm_cluster_data_collection_options_is_diagnostics_events_enabled())
                    .isHealthMonitoringEnabled(var_.cloud_vm_cluster_data_collection_options_is_health_monitoring_enabled())
                    .isIncidentLogsEnabled(var_.cloud_vm_cluster_data_collection_options_is_incident_logs_enabled())
                    .build())
                .dataStoragePercentage(var_.cloud_vm_cluster_data_storage_percentage())
                .dataStorageSizeInTbs(var_.cloud_vm_cluster_data_storage_size_in_tbs())
                .dbNodeStorageSizeInGbs(var_.cloud_vm_cluster_db_node_storage_size_in_gbs())
                .dbServers(var_.cloud_vm_cluster_db_servers())
                .definedTags(var_.cloud_vm_cluster_defined_tags())
                .domain(var_.cloud_vm_cluster_domain())
                .freeformTags(Map.of("Department", "Finance"))
                .isLocalBackupEnabled(var_.cloud_vm_cluster_is_local_backup_enabled())
                .isSparseDiskgroupEnabled(var_.cloud_vm_cluster_is_sparse_diskgroup_enabled())
                .licenseModel(var_.cloud_vm_cluster_license_model())
                .memorySizeInGbs(var_.cloud_vm_cluster_memory_size_in_gbs())
                .nsgIds(var_.cloud_vm_cluster_nsg_ids())
                .ocpuCount(var_.cloud_vm_cluster_ocpu_count())
                .privateZoneId(oci_dns_zone.test_zone().id())
                .scanListenerPortTcp(var_.cloud_vm_cluster_scan_listener_port_tcp())
                .scanListenerPortTcpSsl(var_.cloud_vm_cluster_scan_listener_port_tcp_ssl())
                .systemVersion(var_.cloud_vm_cluster_system_version())
                .timeZone(var_.cloud_vm_cluster_time_zone())
                .build());
    
        }
    }
    
    resources:
      testCloudVmCluster:
        type: oci:Database:CloudVmCluster
        properties:
          #Required
          backupSubnetId: ${oci_core_subnet.test_subnet.id}
          cloudExadataInfrastructureId: ${oci_database_cloud_exadata_infrastructure.test_cloud_exadata_infrastructure.id}
          compartmentId: ${var.compartment_id}
          cpuCoreCount: ${var.cloud_vm_cluster_cpu_core_count}
          displayName: ${var.cloud_vm_cluster_display_name}
          giVersion: ${var.cloud_vm_cluster_gi_version}
          hostname: ${var.cloud_vm_cluster_hostname}
          sshPublicKeys: ${var.cloud_vm_cluster_ssh_public_keys}
          subnetId: ${oci_core_subnet.test_subnet.id}
          #Optional
          backupNetworkNsgIds: ${var.cloud_vm_cluster_backup_network_nsg_ids}
          clusterName: ${var.cloud_vm_cluster_cluster_name}
          dataCollectionOptions:
            isDiagnosticsEventsEnabled: ${var.cloud_vm_cluster_data_collection_options_is_diagnostics_events_enabled}
            isHealthMonitoringEnabled: ${var.cloud_vm_cluster_data_collection_options_is_health_monitoring_enabled}
            isIncidentLogsEnabled: ${var.cloud_vm_cluster_data_collection_options_is_incident_logs_enabled}
          dataStoragePercentage: ${var.cloud_vm_cluster_data_storage_percentage}
          dataStorageSizeInTbs: ${var.cloud_vm_cluster_data_storage_size_in_tbs}
          dbNodeStorageSizeInGbs: ${var.cloud_vm_cluster_db_node_storage_size_in_gbs}
          dbServers: ${var.cloud_vm_cluster_db_servers}
          definedTags: ${var.cloud_vm_cluster_defined_tags}
          domain: ${var.cloud_vm_cluster_domain}
          freeformTags:
            Department: Finance
          isLocalBackupEnabled: ${var.cloud_vm_cluster_is_local_backup_enabled}
          isSparseDiskgroupEnabled: ${var.cloud_vm_cluster_is_sparse_diskgroup_enabled}
          licenseModel: ${var.cloud_vm_cluster_license_model}
          memorySizeInGbs: ${var.cloud_vm_cluster_memory_size_in_gbs}
          nsgIds: ${var.cloud_vm_cluster_nsg_ids}
          ocpuCount: ${var.cloud_vm_cluster_ocpu_count}
          privateZoneId: ${oci_dns_zone.test_zone.id}
          scanListenerPortTcp: ${var.cloud_vm_cluster_scan_listener_port_tcp}
          scanListenerPortTcpSsl: ${var.cloud_vm_cluster_scan_listener_port_tcp_ssl}
          systemVersion: ${var.cloud_vm_cluster_system_version}
          timeZone: ${var.cloud_vm_cluster_time_zone}
    

    Create CloudVmCluster Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new CloudVmCluster(name: string, args: CloudVmClusterArgs, opts?: CustomResourceOptions);
    @overload
    def CloudVmCluster(resource_name: str,
                       args: CloudVmClusterArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudVmCluster(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       display_name: Optional[str] = None,
                       backup_subnet_id: Optional[str] = None,
                       cloud_exadata_infrastructure_id: Optional[str] = None,
                       subnet_id: Optional[str] = None,
                       compartment_id: Optional[str] = None,
                       cpu_core_count: Optional[int] = None,
                       ssh_public_keys: Optional[Sequence[str]] = None,
                       hostname: Optional[str] = None,
                       gi_version: Optional[str] = None,
                       domain: Optional[str] = None,
                       license_model: Optional[str] = None,
                       db_servers: Optional[Sequence[str]] = None,
                       defined_tags: Optional[Mapping[str, Any]] = None,
                       data_storage_size_in_tbs: Optional[float] = None,
                       backup_network_nsg_ids: Optional[Sequence[str]] = None,
                       freeform_tags: Optional[Mapping[str, Any]] = None,
                       data_storage_percentage: Optional[int] = None,
                       data_collection_options: Optional[_database.CloudVmClusterDataCollectionOptionsArgs] = None,
                       is_local_backup_enabled: Optional[bool] = None,
                       is_sparse_diskgroup_enabled: Optional[bool] = None,
                       db_node_storage_size_in_gbs: Optional[int] = None,
                       memory_size_in_gbs: Optional[int] = None,
                       nsg_ids: Optional[Sequence[str]] = None,
                       ocpu_count: Optional[float] = None,
                       private_zone_id: Optional[str] = None,
                       scan_listener_port_tcp: Optional[int] = None,
                       scan_listener_port_tcp_ssl: Optional[int] = None,
                       create_async: Optional[bool] = None,
                       cluster_name: Optional[str] = None,
                       system_version: Optional[str] = None,
                       time_zone: Optional[str] = None)
    func NewCloudVmCluster(ctx *Context, name string, args CloudVmClusterArgs, opts ...ResourceOption) (*CloudVmCluster, error)
    public CloudVmCluster(string name, CloudVmClusterArgs args, CustomResourceOptions? opts = null)
    public CloudVmCluster(String name, CloudVmClusterArgs args)
    public CloudVmCluster(String name, CloudVmClusterArgs args, CustomResourceOptions options)
    
    type: oci:Database:CloudVmCluster
    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 CloudVmClusterArgs
    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 CloudVmClusterArgs
    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 CloudVmClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudVmClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudVmClusterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

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

    var cloudVmClusterResource = new Oci.Database.CloudVmCluster("cloudVmClusterResource", new()
    {
        DisplayName = "string",
        BackupSubnetId = "string",
        CloudExadataInfrastructureId = "string",
        SubnetId = "string",
        CompartmentId = "string",
        CpuCoreCount = 0,
        SshPublicKeys = new[]
        {
            "string",
        },
        Hostname = "string",
        GiVersion = "string",
        Domain = "string",
        LicenseModel = "string",
        DbServers = new[]
        {
            "string",
        },
        DefinedTags = 
        {
            { "string", "any" },
        },
        DataStorageSizeInTbs = 0,
        BackupNetworkNsgIds = new[]
        {
            "string",
        },
        FreeformTags = 
        {
            { "string", "any" },
        },
        DataStoragePercentage = 0,
        DataCollectionOptions = new Oci.Database.Inputs.CloudVmClusterDataCollectionOptionsArgs
        {
            IsDiagnosticsEventsEnabled = false,
            IsHealthMonitoringEnabled = false,
            IsIncidentLogsEnabled = false,
        },
        IsLocalBackupEnabled = false,
        IsSparseDiskgroupEnabled = false,
        DbNodeStorageSizeInGbs = 0,
        MemorySizeInGbs = 0,
        NsgIds = new[]
        {
            "string",
        },
        OcpuCount = 0,
        PrivateZoneId = "string",
        ScanListenerPortTcp = 0,
        ScanListenerPortTcpSsl = 0,
        CreateAsync = false,
        ClusterName = "string",
        SystemVersion = "string",
        TimeZone = "string",
    });
    
    example, err := Database.NewCloudVmCluster(ctx, "cloudVmClusterResource", &Database.CloudVmClusterArgs{
    	DisplayName:                  pulumi.String("string"),
    	BackupSubnetId:               pulumi.String("string"),
    	CloudExadataInfrastructureId: pulumi.String("string"),
    	SubnetId:                     pulumi.String("string"),
    	CompartmentId:                pulumi.String("string"),
    	CpuCoreCount:                 pulumi.Int(0),
    	SshPublicKeys: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Hostname:     pulumi.String("string"),
    	GiVersion:    pulumi.String("string"),
    	Domain:       pulumi.String("string"),
    	LicenseModel: pulumi.String("string"),
    	DbServers: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	DataStorageSizeInTbs: pulumi.Float64(0),
    	BackupNetworkNsgIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	DataStoragePercentage: pulumi.Int(0),
    	DataCollectionOptions: &database.CloudVmClusterDataCollectionOptionsArgs{
    		IsDiagnosticsEventsEnabled: pulumi.Bool(false),
    		IsHealthMonitoringEnabled:  pulumi.Bool(false),
    		IsIncidentLogsEnabled:      pulumi.Bool(false),
    	},
    	IsLocalBackupEnabled:     pulumi.Bool(false),
    	IsSparseDiskgroupEnabled: pulumi.Bool(false),
    	DbNodeStorageSizeInGbs:   pulumi.Int(0),
    	MemorySizeInGbs:          pulumi.Int(0),
    	NsgIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	OcpuCount:              pulumi.Float64(0),
    	PrivateZoneId:          pulumi.String("string"),
    	ScanListenerPortTcp:    pulumi.Int(0),
    	ScanListenerPortTcpSsl: pulumi.Int(0),
    	CreateAsync:            pulumi.Bool(false),
    	ClusterName:            pulumi.String("string"),
    	SystemVersion:          pulumi.String("string"),
    	TimeZone:               pulumi.String("string"),
    })
    
    var cloudVmClusterResource = new CloudVmCluster("cloudVmClusterResource", CloudVmClusterArgs.builder()        
        .displayName("string")
        .backupSubnetId("string")
        .cloudExadataInfrastructureId("string")
        .subnetId("string")
        .compartmentId("string")
        .cpuCoreCount(0)
        .sshPublicKeys("string")
        .hostname("string")
        .giVersion("string")
        .domain("string")
        .licenseModel("string")
        .dbServers("string")
        .definedTags(Map.of("string", "any"))
        .dataStorageSizeInTbs(0)
        .backupNetworkNsgIds("string")
        .freeformTags(Map.of("string", "any"))
        .dataStoragePercentage(0)
        .dataCollectionOptions(CloudVmClusterDataCollectionOptionsArgs.builder()
            .isDiagnosticsEventsEnabled(false)
            .isHealthMonitoringEnabled(false)
            .isIncidentLogsEnabled(false)
            .build())
        .isLocalBackupEnabled(false)
        .isSparseDiskgroupEnabled(false)
        .dbNodeStorageSizeInGbs(0)
        .memorySizeInGbs(0)
        .nsgIds("string")
        .ocpuCount(0)
        .privateZoneId("string")
        .scanListenerPortTcp(0)
        .scanListenerPortTcpSsl(0)
        .createAsync(false)
        .clusterName("string")
        .systemVersion("string")
        .timeZone("string")
        .build());
    
    cloud_vm_cluster_resource = oci.database.CloudVmCluster("cloudVmClusterResource",
        display_name="string",
        backup_subnet_id="string",
        cloud_exadata_infrastructure_id="string",
        subnet_id="string",
        compartment_id="string",
        cpu_core_count=0,
        ssh_public_keys=["string"],
        hostname="string",
        gi_version="string",
        domain="string",
        license_model="string",
        db_servers=["string"],
        defined_tags={
            "string": "any",
        },
        data_storage_size_in_tbs=0,
        backup_network_nsg_ids=["string"],
        freeform_tags={
            "string": "any",
        },
        data_storage_percentage=0,
        data_collection_options=oci.database.CloudVmClusterDataCollectionOptionsArgs(
            is_diagnostics_events_enabled=False,
            is_health_monitoring_enabled=False,
            is_incident_logs_enabled=False,
        ),
        is_local_backup_enabled=False,
        is_sparse_diskgroup_enabled=False,
        db_node_storage_size_in_gbs=0,
        memory_size_in_gbs=0,
        nsg_ids=["string"],
        ocpu_count=0,
        private_zone_id="string",
        scan_listener_port_tcp=0,
        scan_listener_port_tcp_ssl=0,
        create_async=False,
        cluster_name="string",
        system_version="string",
        time_zone="string")
    
    const cloudVmClusterResource = new oci.database.CloudVmCluster("cloudVmClusterResource", {
        displayName: "string",
        backupSubnetId: "string",
        cloudExadataInfrastructureId: "string",
        subnetId: "string",
        compartmentId: "string",
        cpuCoreCount: 0,
        sshPublicKeys: ["string"],
        hostname: "string",
        giVersion: "string",
        domain: "string",
        licenseModel: "string",
        dbServers: ["string"],
        definedTags: {
            string: "any",
        },
        dataStorageSizeInTbs: 0,
        backupNetworkNsgIds: ["string"],
        freeformTags: {
            string: "any",
        },
        dataStoragePercentage: 0,
        dataCollectionOptions: {
            isDiagnosticsEventsEnabled: false,
            isHealthMonitoringEnabled: false,
            isIncidentLogsEnabled: false,
        },
        isLocalBackupEnabled: false,
        isSparseDiskgroupEnabled: false,
        dbNodeStorageSizeInGbs: 0,
        memorySizeInGbs: 0,
        nsgIds: ["string"],
        ocpuCount: 0,
        privateZoneId: "string",
        scanListenerPortTcp: 0,
        scanListenerPortTcpSsl: 0,
        createAsync: false,
        clusterName: "string",
        systemVersion: "string",
        timeZone: "string",
    });
    
    type: oci:Database:CloudVmCluster
    properties:
        backupNetworkNsgIds:
            - string
        backupSubnetId: string
        cloudExadataInfrastructureId: string
        clusterName: string
        compartmentId: string
        cpuCoreCount: 0
        createAsync: false
        dataCollectionOptions:
            isDiagnosticsEventsEnabled: false
            isHealthMonitoringEnabled: false
            isIncidentLogsEnabled: false
        dataStoragePercentage: 0
        dataStorageSizeInTbs: 0
        dbNodeStorageSizeInGbs: 0
        dbServers:
            - string
        definedTags:
            string: any
        displayName: string
        domain: string
        freeformTags:
            string: any
        giVersion: string
        hostname: string
        isLocalBackupEnabled: false
        isSparseDiskgroupEnabled: false
        licenseModel: string
        memorySizeInGbs: 0
        nsgIds:
            - string
        ocpuCount: 0
        privateZoneId: string
        scanListenerPortTcp: 0
        scanListenerPortTcpSsl: 0
        sshPublicKeys:
            - string
        subnetId: string
        systemVersion: string
        timeZone: string
    

    CloudVmCluster Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The CloudVmCluster resource accepts the following input properties:

    BackupSubnetId string
    The OCID of the backup network subnet associated with the cloud VM cluster.
    CloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure resource.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    CpuCoreCount int
    (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:

    • Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
    • Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
    • Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
    • Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
    • Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
    • Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
    • Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
    DisplayName string
    (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
    GiVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    Hostname string

    The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.

    The maximum length of the combined hostname and domain is 63 characters.

    Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.

    SshPublicKeys List<string>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
    SubnetId string
    The OCID of the subnet associated with the cloud VM cluster.
    BackupNetworkNsgIds List<string>
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    ClusterName string
    The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    CreateAsync bool
    DataCollectionOptions CloudVmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DataStoragePercentage int
    The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
    DataStorageSizeInTbs double
    (Updatable) The data disk group size to be allocated in TBs.
    DbNodeStorageSizeInGbs int
    (Updatable) The local node storage to be allocated in GBs.
    DbServers List<string>
    The list of DB servers.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    Domain string
    A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
    FreeformTags Dictionary<string, object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsLocalBackupEnabled bool
    If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
    IsSparseDiskgroupEnabled bool
    If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
    LicenseModel string
    (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    MemorySizeInGbs int
    (Updatable) The memory to be allocated in GBs.
    NsgIds List<string>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    OcpuCount double
    (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
    PrivateZoneId string
    The private zone id in which DNS records need to be created.
    ScanListenerPortTcp int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    ScanListenerPortTcpSsl int
    The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
    SystemVersion string
    Operating system version of the image.
    TimeZone string

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

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

    BackupSubnetId string
    The OCID of the backup network subnet associated with the cloud VM cluster.
    CloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure resource.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    CpuCoreCount int
    (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:

    • Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
    • Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
    • Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
    • Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
    • Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
    • Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
    • Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
    DisplayName string
    (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
    GiVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    Hostname string

    The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.

    The maximum length of the combined hostname and domain is 63 characters.

    Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.

    SshPublicKeys []string
    (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
    SubnetId string
    The OCID of the subnet associated with the cloud VM cluster.
    BackupNetworkNsgIds []string
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    ClusterName string
    The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    CreateAsync bool
    DataCollectionOptions CloudVmClusterDataCollectionOptionsArgs
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DataStoragePercentage int
    The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
    DataStorageSizeInTbs float64
    (Updatable) The data disk group size to be allocated in TBs.
    DbNodeStorageSizeInGbs int
    (Updatable) The local node storage to be allocated in GBs.
    DbServers []string
    The list of DB servers.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    Domain string
    A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
    FreeformTags map[string]interface{}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsLocalBackupEnabled bool
    If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
    IsSparseDiskgroupEnabled bool
    If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
    LicenseModel string
    (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    MemorySizeInGbs int
    (Updatable) The memory to be allocated in GBs.
    NsgIds []string
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    OcpuCount float64
    (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
    PrivateZoneId string
    The private zone id in which DNS records need to be created.
    ScanListenerPortTcp int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    ScanListenerPortTcpSsl int
    The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
    SystemVersion string
    Operating system version of the image.
    TimeZone string

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

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

    backupSubnetId String
    The OCID of the backup network subnet associated with the cloud VM cluster.
    cloudExadataInfrastructureId String
    The OCID of the cloud Exadata infrastructure resource.
    compartmentId String
    (Updatable) The OCID of the compartment.
    cpuCoreCount Integer
    (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:

    • Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
    • Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
    • Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
    • Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
    • Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
    • Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
    • Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
    displayName String
    (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
    giVersion String
    A valid Oracle Grid Infrastructure (GI) software version.
    hostname String

    The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.

    The maximum length of the combined hostname and domain is 63 characters.

    Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.

    sshPublicKeys List<String>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
    subnetId String
    The OCID of the subnet associated with the cloud VM cluster.
    backupNetworkNsgIds List<String>
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    clusterName String
    The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    createAsync Boolean
    dataCollectionOptions CloudVmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStoragePercentage Integer
    The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
    dataStorageSizeInTbs Double
    (Updatable) The data disk group size to be allocated in TBs.
    dbNodeStorageSizeInGbs Integer
    (Updatable) The local node storage to be allocated in GBs.
    dbServers List<String>
    The list of DB servers.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    domain String
    A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
    freeformTags Map<String,Object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isLocalBackupEnabled Boolean
    If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
    isSparseDiskgroupEnabled Boolean
    If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
    licenseModel String
    (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    memorySizeInGbs Integer
    (Updatable) The memory to be allocated in GBs.
    nsgIds List<String>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpuCount Double
    (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
    privateZoneId String
    The private zone id in which DNS records need to be created.
    scanListenerPortTcp Integer
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl Integer
    The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
    systemVersion String
    Operating system version of the image.
    timeZone String

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

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

    backupSubnetId string
    The OCID of the backup network subnet associated with the cloud VM cluster.
    cloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure resource.
    compartmentId string
    (Updatable) The OCID of the compartment.
    cpuCoreCount number
    (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:

    • Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
    • Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
    • Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
    • Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
    • Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
    • Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
    • Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
    displayName string
    (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
    giVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    hostname string

    The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.

    The maximum length of the combined hostname and domain is 63 characters.

    Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.

    sshPublicKeys string[]
    (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
    subnetId string
    The OCID of the subnet associated with the cloud VM cluster.
    backupNetworkNsgIds string[]
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    clusterName string
    The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    createAsync boolean
    dataCollectionOptions CloudVmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStoragePercentage number
    The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
    dataStorageSizeInTbs number
    (Updatable) The data disk group size to be allocated in TBs.
    dbNodeStorageSizeInGbs number
    (Updatable) The local node storage to be allocated in GBs.
    dbServers string[]
    The list of DB servers.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    domain string
    A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
    freeformTags {[key: string]: any}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isLocalBackupEnabled boolean
    If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
    isSparseDiskgroupEnabled boolean
    If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
    licenseModel string
    (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    memorySizeInGbs number
    (Updatable) The memory to be allocated in GBs.
    nsgIds string[]
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpuCount number
    (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
    privateZoneId string
    The private zone id in which DNS records need to be created.
    scanListenerPortTcp number
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl number
    The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
    systemVersion string
    Operating system version of the image.
    timeZone string

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

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

    backup_subnet_id str
    The OCID of the backup network subnet associated with the cloud VM cluster.
    cloud_exadata_infrastructure_id str
    The OCID of the cloud Exadata infrastructure resource.
    compartment_id str
    (Updatable) The OCID of the compartment.
    cpu_core_count int
    (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:

    • Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
    • Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
    • Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
    • Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
    • Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
    • Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
    • Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
    display_name str
    (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
    gi_version str
    A valid Oracle Grid Infrastructure (GI) software version.
    hostname str

    The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.

    The maximum length of the combined hostname and domain is 63 characters.

    Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.

    ssh_public_keys Sequence[str]
    (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
    subnet_id str
    The OCID of the subnet associated with the cloud VM cluster.
    backup_network_nsg_ids Sequence[str]
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    cluster_name str
    The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    create_async bool
    data_collection_options database.CloudVmClusterDataCollectionOptionsArgs
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    data_storage_percentage int
    The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
    data_storage_size_in_tbs float
    (Updatable) The data disk group size to be allocated in TBs.
    db_node_storage_size_in_gbs int
    (Updatable) The local node storage to be allocated in GBs.
    db_servers Sequence[str]
    The list of DB servers.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    domain str
    A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
    freeform_tags Mapping[str, Any]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    is_local_backup_enabled bool
    If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
    is_sparse_diskgroup_enabled bool
    If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
    license_model str
    (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    memory_size_in_gbs int
    (Updatable) The memory to be allocated in GBs.
    nsg_ids Sequence[str]
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpu_count float
    (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
    private_zone_id str
    The private zone id in which DNS records need to be created.
    scan_listener_port_tcp int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scan_listener_port_tcp_ssl int
    The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
    system_version str
    Operating system version of the image.
    time_zone str

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

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

    backupSubnetId String
    The OCID of the backup network subnet associated with the cloud VM cluster.
    cloudExadataInfrastructureId String
    The OCID of the cloud Exadata infrastructure resource.
    compartmentId String
    (Updatable) The OCID of the compartment.
    cpuCoreCount Number
    (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:

    • Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
    • Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
    • Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
    • Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
    • Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
    • Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
    • Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
    displayName String
    (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
    giVersion String
    A valid Oracle Grid Infrastructure (GI) software version.
    hostname String

    The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.

    The maximum length of the combined hostname and domain is 63 characters.

    Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.

    sshPublicKeys List<String>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
    subnetId String
    The OCID of the subnet associated with the cloud VM cluster.
    backupNetworkNsgIds List<String>
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    clusterName String
    The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    createAsync Boolean
    dataCollectionOptions Property Map
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStoragePercentage Number
    The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
    dataStorageSizeInTbs Number
    (Updatable) The data disk group size to be allocated in TBs.
    dbNodeStorageSizeInGbs Number
    (Updatable) The local node storage to be allocated in GBs.
    dbServers List<String>
    The list of DB servers.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    domain String
    A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
    freeformTags Map<Any>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isLocalBackupEnabled Boolean
    If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
    isSparseDiskgroupEnabled Boolean
    If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
    licenseModel String
    (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    memorySizeInGbs Number
    (Updatable) The memory to be allocated in GBs.
    nsgIds List<String>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpuCount Number
    (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
    privateZoneId String
    The private zone id in which DNS records need to be created.
    scanListenerPortTcp Number
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl Number
    The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
    systemVersion String
    Operating system version of the image.
    timeZone String

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

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

    Outputs

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

    AvailabilityDomain string
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    DiskRedundancy string
    The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
    Id string
    The provider-assigned unique ID for this managed resource.
    IormConfigCaches List<CloudVmClusterIormConfigCach>
    The IORM settings of the Exadata DB system.
    LastUpdateHistoryEntryId string
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    ListenerPort string
    The port number configured for the listener on the cloud VM cluster.
    NodeCount int
    The number of nodes in the cloud VM cluster.
    ScanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    ScanIpIds List<string>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    Shape string
    The model name of the Exadata hardware running the cloud VM cluster.
    State string
    The current state of the cloud VM cluster.
    StorageSizeInGbs int
    The storage allocation for the disk group, in gigabytes (GB).
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time that the cloud VM cluster was created.
    VipIds List<string>
    The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
    ZoneId string
    The OCID of the zone the cloud VM cluster is associated with.
    AvailabilityDomain string
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    DiskRedundancy string
    The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
    Id string
    The provider-assigned unique ID for this managed resource.
    IormConfigCaches []CloudVmClusterIormConfigCach
    The IORM settings of the Exadata DB system.
    LastUpdateHistoryEntryId string
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    ListenerPort string
    The port number configured for the listener on the cloud VM cluster.
    NodeCount int
    The number of nodes in the cloud VM cluster.
    ScanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    ScanIpIds []string
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    Shape string
    The model name of the Exadata hardware running the cloud VM cluster.
    State string
    The current state of the cloud VM cluster.
    StorageSizeInGbs int
    The storage allocation for the disk group, in gigabytes (GB).
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time that the cloud VM cluster was created.
    VipIds []string
    The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
    ZoneId string
    The OCID of the zone the cloud VM cluster is associated with.
    availabilityDomain String
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    diskRedundancy String
    The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
    id String
    The provider-assigned unique ID for this managed resource.
    iormConfigCaches List<CloudVmClusterIormConfigCach>
    The IORM settings of the Exadata DB system.
    lastUpdateHistoryEntryId String
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    listenerPort String
    The port number configured for the listener on the cloud VM cluster.
    nodeCount Integer
    The number of nodes in the cloud VM cluster.
    scanDnsName String
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scanIpIds List<String>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    shape String
    The model name of the Exadata hardware running the cloud VM cluster.
    state String
    The current state of the cloud VM cluster.
    storageSizeInGbs Integer
    The storage allocation for the disk group, in gigabytes (GB).
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time that the cloud VM cluster was created.
    vipIds List<String>
    The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
    zoneId String
    The OCID of the zone the cloud VM cluster is associated with.
    availabilityDomain string
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    diskRedundancy string
    The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
    id string
    The provider-assigned unique ID for this managed resource.
    iormConfigCaches CloudVmClusterIormConfigCach[]
    The IORM settings of the Exadata DB system.
    lastUpdateHistoryEntryId string
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    listenerPort string
    The port number configured for the listener on the cloud VM cluster.
    nodeCount number
    The number of nodes in the cloud VM cluster.
    scanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scanIpIds string[]
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    shape string
    The model name of the Exadata hardware running the cloud VM cluster.
    state string
    The current state of the cloud VM cluster.
    storageSizeInGbs number
    The storage allocation for the disk group, in gigabytes (GB).
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated string
    The date and time that the cloud VM cluster was created.
    vipIds string[]
    The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
    zoneId string
    The OCID of the zone the cloud VM cluster is associated with.
    availability_domain str
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    disk_redundancy str
    The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
    id str
    The provider-assigned unique ID for this managed resource.
    iorm_config_caches Sequence[database.CloudVmClusterIormConfigCach]
    The IORM settings of the Exadata DB system.
    last_update_history_entry_id str
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    lifecycle_details str
    Additional information about the current lifecycle state.
    listener_port str
    The port number configured for the listener on the cloud VM cluster.
    node_count int
    The number of nodes in the cloud VM cluster.
    scan_dns_name str
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scan_dns_record_id str
    The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scan_ip_ids Sequence[str]
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    shape str
    The model name of the Exadata hardware running the cloud VM cluster.
    state str
    The current state of the cloud VM cluster.
    storage_size_in_gbs int
    The storage allocation for the disk group, in gigabytes (GB).
    system_tags Mapping[str, Any]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    time_created str
    The date and time that the cloud VM cluster was created.
    vip_ids Sequence[str]
    The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
    zone_id str
    The OCID of the zone the cloud VM cluster is associated with.
    availabilityDomain String
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    diskRedundancy String
    The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
    id String
    The provider-assigned unique ID for this managed resource.
    iormConfigCaches List<Property Map>
    The IORM settings of the Exadata DB system.
    lastUpdateHistoryEntryId String
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    listenerPort String
    The port number configured for the listener on the cloud VM cluster.
    nodeCount Number
    The number of nodes in the cloud VM cluster.
    scanDnsName String
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scanIpIds List<String>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    shape String
    The model name of the Exadata hardware running the cloud VM cluster.
    state String
    The current state of the cloud VM cluster.
    storageSizeInGbs Number
    The storage allocation for the disk group, in gigabytes (GB).
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time that the cloud VM cluster was created.
    vipIds List<String>
    The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
    zoneId String
    The OCID of the zone the cloud VM cluster is associated with.

    Look up Existing CloudVmCluster Resource

    Get an existing CloudVmCluster 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?: CloudVmClusterState, opts?: CustomResourceOptions): CloudVmCluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            availability_domain: Optional[str] = None,
            backup_network_nsg_ids: Optional[Sequence[str]] = None,
            backup_subnet_id: Optional[str] = None,
            cloud_exadata_infrastructure_id: Optional[str] = None,
            cluster_name: Optional[str] = None,
            compartment_id: Optional[str] = None,
            cpu_core_count: Optional[int] = None,
            create_async: Optional[bool] = None,
            data_collection_options: Optional[_database.CloudVmClusterDataCollectionOptionsArgs] = None,
            data_storage_percentage: Optional[int] = None,
            data_storage_size_in_tbs: Optional[float] = None,
            db_node_storage_size_in_gbs: Optional[int] = None,
            db_servers: Optional[Sequence[str]] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            disk_redundancy: Optional[str] = None,
            display_name: Optional[str] = None,
            domain: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            gi_version: Optional[str] = None,
            hostname: Optional[str] = None,
            iorm_config_caches: Optional[Sequence[_database.CloudVmClusterIormConfigCachArgs]] = None,
            is_local_backup_enabled: Optional[bool] = None,
            is_sparse_diskgroup_enabled: Optional[bool] = None,
            last_update_history_entry_id: Optional[str] = None,
            license_model: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            listener_port: Optional[str] = None,
            memory_size_in_gbs: Optional[int] = None,
            node_count: Optional[int] = None,
            nsg_ids: Optional[Sequence[str]] = None,
            ocpu_count: Optional[float] = None,
            private_zone_id: Optional[str] = None,
            scan_dns_name: Optional[str] = None,
            scan_dns_record_id: Optional[str] = None,
            scan_ip_ids: Optional[Sequence[str]] = None,
            scan_listener_port_tcp: Optional[int] = None,
            scan_listener_port_tcp_ssl: Optional[int] = None,
            shape: Optional[str] = None,
            ssh_public_keys: Optional[Sequence[str]] = None,
            state: Optional[str] = None,
            storage_size_in_gbs: Optional[int] = None,
            subnet_id: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            system_version: Optional[str] = None,
            time_created: Optional[str] = None,
            time_zone: Optional[str] = None,
            vip_ids: Optional[Sequence[str]] = None,
            zone_id: Optional[str] = None) -> CloudVmCluster
    func GetCloudVmCluster(ctx *Context, name string, id IDInput, state *CloudVmClusterState, opts ...ResourceOption) (*CloudVmCluster, error)
    public static CloudVmCluster Get(string name, Input<string> id, CloudVmClusterState? state, CustomResourceOptions? opts = null)
    public static CloudVmCluster get(String name, Output<String> id, CloudVmClusterState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AvailabilityDomain string
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    BackupNetworkNsgIds List<string>
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    BackupSubnetId string
    The OCID of the backup network subnet associated with the cloud VM cluster.
    CloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure resource.
    ClusterName string
    The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    CpuCoreCount int
    (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:

    • Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
    • Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
    • Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
    • Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
    • Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
    • Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
    • Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
    CreateAsync bool
    DataCollectionOptions CloudVmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DataStoragePercentage int
    The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
    DataStorageSizeInTbs double
    (Updatable) The data disk group size to be allocated in TBs.
    DbNodeStorageSizeInGbs int
    (Updatable) The local node storage to be allocated in GBs.
    DbServers List<string>
    The list of DB servers.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DiskRedundancy string
    The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
    DisplayName string
    (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
    Domain string
    A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
    FreeformTags Dictionary<string, object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    GiVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    Hostname string

    The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.

    The maximum length of the combined hostname and domain is 63 characters.

    Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.

    IormConfigCaches List<CloudVmClusterIormConfigCach>
    The IORM settings of the Exadata DB system.
    IsLocalBackupEnabled bool
    If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
    IsSparseDiskgroupEnabled bool
    If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
    LastUpdateHistoryEntryId string
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    LicenseModel string
    (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    ListenerPort string
    The port number configured for the listener on the cloud VM cluster.
    MemorySizeInGbs int
    (Updatable) The memory to be allocated in GBs.
    NodeCount int
    The number of nodes in the cloud VM cluster.
    NsgIds List<string>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    OcpuCount double
    (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
    PrivateZoneId string
    The private zone id in which DNS records need to be created.
    ScanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    ScanIpIds List<string>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    ScanListenerPortTcp int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    ScanListenerPortTcpSsl int
    The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
    Shape string
    The model name of the Exadata hardware running the cloud VM cluster.
    SshPublicKeys List<string>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
    State string
    The current state of the cloud VM cluster.
    StorageSizeInGbs int
    The storage allocation for the disk group, in gigabytes (GB).
    SubnetId string
    The OCID of the subnet associated with the cloud VM cluster.
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    SystemVersion string
    Operating system version of the image.
    TimeCreated string
    The date and time that the cloud VM cluster was created.
    TimeZone string

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

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

    VipIds List<string>
    The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
    ZoneId string
    The OCID of the zone the cloud VM cluster is associated with.
    AvailabilityDomain string
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    BackupNetworkNsgIds []string
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    BackupSubnetId string
    The OCID of the backup network subnet associated with the cloud VM cluster.
    CloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure resource.
    ClusterName string
    The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    CpuCoreCount int
    (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:

    • Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
    • Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
    • Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
    • Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
    • Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
    • Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
    • Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
    CreateAsync bool
    DataCollectionOptions CloudVmClusterDataCollectionOptionsArgs
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DataStoragePercentage int
    The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
    DataStorageSizeInTbs float64
    (Updatable) The data disk group size to be allocated in TBs.
    DbNodeStorageSizeInGbs int
    (Updatable) The local node storage to be allocated in GBs.
    DbServers []string
    The list of DB servers.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DiskRedundancy string
    The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
    DisplayName string
    (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
    Domain string
    A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
    FreeformTags map[string]interface{}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    GiVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    Hostname string

    The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.

    The maximum length of the combined hostname and domain is 63 characters.

    Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.

    IormConfigCaches []CloudVmClusterIormConfigCachArgs
    The IORM settings of the Exadata DB system.
    IsLocalBackupEnabled bool
    If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
    IsSparseDiskgroupEnabled bool
    If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
    LastUpdateHistoryEntryId string
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    LicenseModel string
    (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    ListenerPort string
    The port number configured for the listener on the cloud VM cluster.
    MemorySizeInGbs int
    (Updatable) The memory to be allocated in GBs.
    NodeCount int
    The number of nodes in the cloud VM cluster.
    NsgIds []string
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    OcpuCount float64
    (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
    PrivateZoneId string
    The private zone id in which DNS records need to be created.
    ScanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    ScanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    ScanIpIds []string
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    ScanListenerPortTcp int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    ScanListenerPortTcpSsl int
    The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
    Shape string
    The model name of the Exadata hardware running the cloud VM cluster.
    SshPublicKeys []string
    (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
    State string
    The current state of the cloud VM cluster.
    StorageSizeInGbs int
    The storage allocation for the disk group, in gigabytes (GB).
    SubnetId string
    The OCID of the subnet associated with the cloud VM cluster.
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    SystemVersion string
    Operating system version of the image.
    TimeCreated string
    The date and time that the cloud VM cluster was created.
    TimeZone string

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

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

    VipIds []string
    The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
    ZoneId string
    The OCID of the zone the cloud VM cluster is associated with.
    availabilityDomain String
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    backupNetworkNsgIds List<String>
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    backupSubnetId String
    The OCID of the backup network subnet associated with the cloud VM cluster.
    cloudExadataInfrastructureId String
    The OCID of the cloud Exadata infrastructure resource.
    clusterName String
    The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    compartmentId String
    (Updatable) The OCID of the compartment.
    cpuCoreCount Integer
    (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:

    • Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
    • Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
    • Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
    • Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
    • Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
    • Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
    • Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
    createAsync Boolean
    dataCollectionOptions CloudVmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStoragePercentage Integer
    The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
    dataStorageSizeInTbs Double
    (Updatable) The data disk group size to be allocated in TBs.
    dbNodeStorageSizeInGbs Integer
    (Updatable) The local node storage to be allocated in GBs.
    dbServers List<String>
    The list of DB servers.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    diskRedundancy String
    The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
    displayName String
    (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
    domain String
    A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
    freeformTags Map<String,Object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    giVersion String
    A valid Oracle Grid Infrastructure (GI) software version.
    hostname String

    The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.

    The maximum length of the combined hostname and domain is 63 characters.

    Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.

    iormConfigCaches List<CloudVmClusterIormConfigCach>
    The IORM settings of the Exadata DB system.
    isLocalBackupEnabled Boolean
    If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
    isSparseDiskgroupEnabled Boolean
    If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
    lastUpdateHistoryEntryId String
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    licenseModel String
    (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    listenerPort String
    The port number configured for the listener on the cloud VM cluster.
    memorySizeInGbs Integer
    (Updatable) The memory to be allocated in GBs.
    nodeCount Integer
    The number of nodes in the cloud VM cluster.
    nsgIds List<String>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpuCount Double
    (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
    privateZoneId String
    The private zone id in which DNS records need to be created.
    scanDnsName String
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scanIpIds List<String>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    scanListenerPortTcp Integer
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl Integer
    The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
    shape String
    The model name of the Exadata hardware running the cloud VM cluster.
    sshPublicKeys List<String>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
    state String
    The current state of the cloud VM cluster.
    storageSizeInGbs Integer
    The storage allocation for the disk group, in gigabytes (GB).
    subnetId String
    The OCID of the subnet associated with the cloud VM cluster.
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    systemVersion String
    Operating system version of the image.
    timeCreated String
    The date and time that the cloud VM cluster was created.
    timeZone String

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

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

    vipIds List<String>
    The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
    zoneId String
    The OCID of the zone the cloud VM cluster is associated with.
    availabilityDomain string
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    backupNetworkNsgIds string[]
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    backupSubnetId string
    The OCID of the backup network subnet associated with the cloud VM cluster.
    cloudExadataInfrastructureId string
    The OCID of the cloud Exadata infrastructure resource.
    clusterName string
    The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    compartmentId string
    (Updatable) The OCID of the compartment.
    cpuCoreCount number
    (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:

    • Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
    • Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
    • Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
    • Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
    • Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
    • Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
    • Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
    createAsync boolean
    dataCollectionOptions CloudVmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStoragePercentage number
    The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
    dataStorageSizeInTbs number
    (Updatable) The data disk group size to be allocated in TBs.
    dbNodeStorageSizeInGbs number
    (Updatable) The local node storage to be allocated in GBs.
    dbServers string[]
    The list of DB servers.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    diskRedundancy string
    The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
    displayName string
    (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
    domain string
    A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
    freeformTags {[key: string]: any}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    giVersion string
    A valid Oracle Grid Infrastructure (GI) software version.
    hostname string

    The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.

    The maximum length of the combined hostname and domain is 63 characters.

    Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.

    iormConfigCaches CloudVmClusterIormConfigCach[]
    The IORM settings of the Exadata DB system.
    isLocalBackupEnabled boolean
    If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
    isSparseDiskgroupEnabled boolean
    If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
    lastUpdateHistoryEntryId string
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    licenseModel string
    (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    listenerPort string
    The port number configured for the listener on the cloud VM cluster.
    memorySizeInGbs number
    (Updatable) The memory to be allocated in GBs.
    nodeCount number
    The number of nodes in the cloud VM cluster.
    nsgIds string[]
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpuCount number
    (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
    privateZoneId string
    The private zone id in which DNS records need to be created.
    scanDnsName string
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scanDnsRecordId string
    The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scanIpIds string[]
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    scanListenerPortTcp number
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl number
    The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
    shape string
    The model name of the Exadata hardware running the cloud VM cluster.
    sshPublicKeys string[]
    (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
    state string
    The current state of the cloud VM cluster.
    storageSizeInGbs number
    The storage allocation for the disk group, in gigabytes (GB).
    subnetId string
    The OCID of the subnet associated with the cloud VM cluster.
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    systemVersion string
    Operating system version of the image.
    timeCreated string
    The date and time that the cloud VM cluster was created.
    timeZone string

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

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

    vipIds string[]
    The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
    zoneId string
    The OCID of the zone the cloud VM cluster is associated with.
    availability_domain str
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    backup_network_nsg_ids Sequence[str]
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    backup_subnet_id str
    The OCID of the backup network subnet associated with the cloud VM cluster.
    cloud_exadata_infrastructure_id str
    The OCID of the cloud Exadata infrastructure resource.
    cluster_name str
    The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    compartment_id str
    (Updatable) The OCID of the compartment.
    cpu_core_count int
    (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:

    • Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
    • Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
    • Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
    • Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
    • Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
    • Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
    • Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
    create_async bool
    data_collection_options database.CloudVmClusterDataCollectionOptionsArgs
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    data_storage_percentage int
    The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
    data_storage_size_in_tbs float
    (Updatable) The data disk group size to be allocated in TBs.
    db_node_storage_size_in_gbs int
    (Updatable) The local node storage to be allocated in GBs.
    db_servers Sequence[str]
    The list of DB servers.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    disk_redundancy str
    The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
    display_name str
    (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
    domain str
    A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
    freeform_tags Mapping[str, Any]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    gi_version str
    A valid Oracle Grid Infrastructure (GI) software version.
    hostname str

    The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.

    The maximum length of the combined hostname and domain is 63 characters.

    Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.

    iorm_config_caches Sequence[database.CloudVmClusterIormConfigCachArgs]
    The IORM settings of the Exadata DB system.
    is_local_backup_enabled bool
    If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
    is_sparse_diskgroup_enabled bool
    If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
    last_update_history_entry_id str
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    license_model str
    (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    lifecycle_details str
    Additional information about the current lifecycle state.
    listener_port str
    The port number configured for the listener on the cloud VM cluster.
    memory_size_in_gbs int
    (Updatable) The memory to be allocated in GBs.
    node_count int
    The number of nodes in the cloud VM cluster.
    nsg_ids Sequence[str]
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpu_count float
    (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
    private_zone_id str
    The private zone id in which DNS records need to be created.
    scan_dns_name str
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scan_dns_record_id str
    The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scan_ip_ids Sequence[str]
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    scan_listener_port_tcp int
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scan_listener_port_tcp_ssl int
    The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
    shape str
    The model name of the Exadata hardware running the cloud VM cluster.
    ssh_public_keys Sequence[str]
    (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
    state str
    The current state of the cloud VM cluster.
    storage_size_in_gbs int
    The storage allocation for the disk group, in gigabytes (GB).
    subnet_id str
    The OCID of the subnet associated with the cloud VM cluster.
    system_tags Mapping[str, Any]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    system_version str
    Operating system version of the image.
    time_created str
    The date and time that the cloud VM cluster was created.
    time_zone str

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

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

    vip_ids Sequence[str]
    The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
    zone_id str
    The OCID of the zone the cloud VM cluster is associated with.
    availabilityDomain String
    The name of the availability domain that the cloud Exadata infrastructure resource is located in.
    backupNetworkNsgIds List<String>
    (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
    backupSubnetId String
    The OCID of the backup network subnet associated with the cloud VM cluster.
    cloudExadataInfrastructureId String
    The OCID of the cloud Exadata infrastructure resource.
    clusterName String
    The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
    compartmentId String
    (Updatable) The OCID of the compartment.
    cpuCoreCount Number
    (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:

    • Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
    • Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
    • Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
    • Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
    • Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
    • Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
    • Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
    createAsync Boolean
    dataCollectionOptions Property Map
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStoragePercentage Number
    The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
    dataStorageSizeInTbs Number
    (Updatable) The data disk group size to be allocated in TBs.
    dbNodeStorageSizeInGbs Number
    (Updatable) The local node storage to be allocated in GBs.
    dbServers List<String>
    The list of DB servers.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    diskRedundancy String
    The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
    displayName String
    (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
    domain String
    A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
    freeformTags Map<Any>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    giVersion String
    A valid Oracle Grid Infrastructure (GI) software version.
    hostname String

    The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.

    The maximum length of the combined hostname and domain is 63 characters.

    Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.

    iormConfigCaches List<Property Map>
    The IORM settings of the Exadata DB system.
    isLocalBackupEnabled Boolean
    If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
    isSparseDiskgroupEnabled Boolean
    If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
    lastUpdateHistoryEntryId String
    The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
    licenseModel String
    (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    listenerPort String
    The port number configured for the listener on the cloud VM cluster.
    memorySizeInGbs Number
    (Updatable) The memory to be allocated in GBs.
    nodeCount Number
    The number of nodes in the cloud VM cluster.
    nsgIds List<String>
    (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:

    • A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
    ocpuCount Number
    (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
    privateZoneId String
    The private zone id in which DNS records need to be created.
    scanDnsName String
    The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scanDnsRecordId String
    The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
    scanIpIds List<String>
    The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
    scanListenerPortTcp Number
    The TCP Single Client Access Name (SCAN) port. The default port is 1521.
    scanListenerPortTcpSsl Number
    The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
    shape String
    The model name of the Exadata hardware running the cloud VM cluster.
    sshPublicKeys List<String>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
    state String
    The current state of the cloud VM cluster.
    storageSizeInGbs Number
    The storage allocation for the disk group, in gigabytes (GB).
    subnetId String
    The OCID of the subnet associated with the cloud VM cluster.
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    systemVersion String
    Operating system version of the image.
    timeCreated String
    The date and time that the cloud VM cluster was created.
    timeZone String

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

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

    vipIds List<String>
    The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
    zoneId String
    The OCID of the zone the cloud VM cluster is associated with.

    Supporting Types

    CloudVmClusterDataCollectionOptions, CloudVmClusterDataCollectionOptionsArgs

    IsDiagnosticsEventsEnabled bool
    (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmCluster or updateCloudVmCluster API.
    IsHealthMonitoringEnabled bool
    (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster, UpdateCloudVmCluster or updateDbsystem API.
    IsIncidentLogsEnabled bool
    (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster, updateCloudVmCluster or updateDbsystem API.
    IsDiagnosticsEventsEnabled bool
    (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmCluster or updateCloudVmCluster API.
    IsHealthMonitoringEnabled bool
    (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster, UpdateCloudVmCluster or updateDbsystem API.
    IsIncidentLogsEnabled bool
    (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster, updateCloudVmCluster or updateDbsystem API.
    isDiagnosticsEventsEnabled Boolean
    (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmCluster or updateCloudVmCluster API.
    isHealthMonitoringEnabled Boolean
    (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster, UpdateCloudVmCluster or updateDbsystem API.
    isIncidentLogsEnabled Boolean
    (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster, updateCloudVmCluster or updateDbsystem API.
    isDiagnosticsEventsEnabled boolean
    (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmCluster or updateCloudVmCluster API.
    isHealthMonitoringEnabled boolean
    (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster, UpdateCloudVmCluster or updateDbsystem API.
    isIncidentLogsEnabled boolean
    (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster, updateCloudVmCluster or updateDbsystem API.
    is_diagnostics_events_enabled bool
    (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmCluster or updateCloudVmCluster API.
    is_health_monitoring_enabled bool
    (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster, UpdateCloudVmCluster or updateDbsystem API.
    is_incident_logs_enabled bool
    (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster, updateCloudVmCluster or updateDbsystem API.
    isDiagnosticsEventsEnabled Boolean
    (Updatable) Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the UpdateVmCluster or updateCloudVmCluster API.
    isHealthMonitoringEnabled Boolean
    (Updatable) Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the UpdateVmCluster, UpdateCloudVmCluster or updateDbsystem API.
    isIncidentLogsEnabled Boolean
    (Updatable) Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the UpdateVmCluster, updateCloudVmCluster or updateDbsystem API.

    CloudVmClusterIormConfigCach, CloudVmClusterIormConfigCachArgs

    DbPlans List<CloudVmClusterIormConfigCachDbPlan>
    An array of IORM settings for all the database in the Exadata DB system.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    Objective string
    The current value for the IORM objective. The default is AUTO.
    State string
    The current state of the cloud VM cluster.
    DbPlans []CloudVmClusterIormConfigCachDbPlan
    An array of IORM settings for all the database in the Exadata DB system.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    Objective string
    The current value for the IORM objective. The default is AUTO.
    State string
    The current state of the cloud VM cluster.
    dbPlans List<CloudVmClusterIormConfigCachDbPlan>
    An array of IORM settings for all the database in the Exadata DB system.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    objective String
    The current value for the IORM objective. The default is AUTO.
    state String
    The current state of the cloud VM cluster.
    dbPlans CloudVmClusterIormConfigCachDbPlan[]
    An array of IORM settings for all the database in the Exadata DB system.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    objective string
    The current value for the IORM objective. The default is AUTO.
    state string
    The current state of the cloud VM cluster.
    db_plans Sequence[database.CloudVmClusterIormConfigCachDbPlan]
    An array of IORM settings for all the database in the Exadata DB system.
    lifecycle_details str
    Additional information about the current lifecycle state.
    objective str
    The current value for the IORM objective. The default is AUTO.
    state str
    The current state of the cloud VM cluster.
    dbPlans List<Property Map>
    An array of IORM settings for all the database in the Exadata DB system.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    objective String
    The current value for the IORM objective. The default is AUTO.
    state String
    The current state of the cloud VM cluster.

    CloudVmClusterIormConfigCachDbPlan, CloudVmClusterIormConfigCachDbPlanArgs

    DbName string
    The database name. For the default DbPlan, the dbName is default.
    FlashCacheLimit string
    The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
    Share int
    The relative priority of this database.
    DbName string
    The database name. For the default DbPlan, the dbName is default.
    FlashCacheLimit string
    The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
    Share int
    The relative priority of this database.
    dbName String
    The database name. For the default DbPlan, the dbName is default.
    flashCacheLimit String
    The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
    share Integer
    The relative priority of this database.
    dbName string
    The database name. For the default DbPlan, the dbName is default.
    flashCacheLimit string
    The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
    share number
    The relative priority of this database.
    db_name str
    The database name. For the default DbPlan, the dbName is default.
    flash_cache_limit str
    The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
    share int
    The relative priority of this database.
    dbName String
    The database name. For the default DbPlan, the dbName is default.
    flashCacheLimit String
    The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
    share Number
    The relative priority of this database.

    Import

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

    $ pulumi import oci:Database/cloudVmCluster:CloudVmCluster test_cloud_vm_cluster "id"
    

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

    Package Details

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