1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. VmCluster
Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi

oci.Database.VmCluster

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi

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

    Creates an Exadata Cloud@Customer VM cluster.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testVmCluster = new oci.database.VmCluster("testVmCluster", {
        compartmentId: _var.compartment_id,
        cpuCoreCount: _var.vm_cluster_cpu_core_count,
        displayName: _var.vm_cluster_display_name,
        exadataInfrastructureId: oci_database_exadata_infrastructure.test_exadata_infrastructure.id,
        giVersion: _var.vm_cluster_gi_version,
        sshPublicKeys: _var.vm_cluster_ssh_public_keys,
        vmClusterNetworkId: oci_database_vm_cluster_network.test_vm_cluster_network.id,
        dataCollectionOptions: {
            isDiagnosticsEventsEnabled: _var.vm_cluster_data_collection_options_is_diagnostics_events_enabled,
            isHealthMonitoringEnabled: _var.vm_cluster_data_collection_options_is_health_monitoring_enabled,
            isIncidentLogsEnabled: _var.vm_cluster_data_collection_options_is_incident_logs_enabled,
        },
        dataStorageSizeInTbs: _var.vm_cluster_data_storage_size_in_tbs,
        dbNodeStorageSizeInGbs: _var.vm_cluster_db_node_storage_size_in_gbs,
        dbServers: _var.vm_cluster_db_servers,
        definedTags: _var.vm_cluster_defined_tags,
        freeformTags: {
            Department: "Finance",
        },
        isLocalBackupEnabled: _var.vm_cluster_is_local_backup_enabled,
        isSparseDiskgroupEnabled: _var.vm_cluster_is_sparse_diskgroup_enabled,
        licenseModel: _var.vm_cluster_license_model,
        memorySizeInGbs: _var.vm_cluster_memory_size_in_gbs,
        systemVersion: _var.vm_cluster_system_version,
        timeZone: _var.vm_cluster_time_zone,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_vm_cluster = oci.database.VmCluster("testVmCluster",
        compartment_id=var["compartment_id"],
        cpu_core_count=var["vm_cluster_cpu_core_count"],
        display_name=var["vm_cluster_display_name"],
        exadata_infrastructure_id=oci_database_exadata_infrastructure["test_exadata_infrastructure"]["id"],
        gi_version=var["vm_cluster_gi_version"],
        ssh_public_keys=var["vm_cluster_ssh_public_keys"],
        vm_cluster_network_id=oci_database_vm_cluster_network["test_vm_cluster_network"]["id"],
        data_collection_options=oci.database.VmClusterDataCollectionOptionsArgs(
            is_diagnostics_events_enabled=var["vm_cluster_data_collection_options_is_diagnostics_events_enabled"],
            is_health_monitoring_enabled=var["vm_cluster_data_collection_options_is_health_monitoring_enabled"],
            is_incident_logs_enabled=var["vm_cluster_data_collection_options_is_incident_logs_enabled"],
        ),
        data_storage_size_in_tbs=var["vm_cluster_data_storage_size_in_tbs"],
        db_node_storage_size_in_gbs=var["vm_cluster_db_node_storage_size_in_gbs"],
        db_servers=var["vm_cluster_db_servers"],
        defined_tags=var["vm_cluster_defined_tags"],
        freeform_tags={
            "Department": "Finance",
        },
        is_local_backup_enabled=var["vm_cluster_is_local_backup_enabled"],
        is_sparse_diskgroup_enabled=var["vm_cluster_is_sparse_diskgroup_enabled"],
        license_model=var["vm_cluster_license_model"],
        memory_size_in_gbs=var["vm_cluster_memory_size_in_gbs"],
        system_version=var["vm_cluster_system_version"],
        time_zone=var["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.NewVmCluster(ctx, "testVmCluster", &Database.VmClusterArgs{
    			CompartmentId:           pulumi.Any(_var.Compartment_id),
    			CpuCoreCount:            pulumi.Any(_var.Vm_cluster_cpu_core_count),
    			DisplayName:             pulumi.Any(_var.Vm_cluster_display_name),
    			ExadataInfrastructureId: pulumi.Any(oci_database_exadata_infrastructure.Test_exadata_infrastructure.Id),
    			GiVersion:               pulumi.Any(_var.Vm_cluster_gi_version),
    			SshPublicKeys:           pulumi.Any(_var.Vm_cluster_ssh_public_keys),
    			VmClusterNetworkId:      pulumi.Any(oci_database_vm_cluster_network.Test_vm_cluster_network.Id),
    			DataCollectionOptions: &database.VmClusterDataCollectionOptionsArgs{
    				IsDiagnosticsEventsEnabled: pulumi.Any(_var.Vm_cluster_data_collection_options_is_diagnostics_events_enabled),
    				IsHealthMonitoringEnabled:  pulumi.Any(_var.Vm_cluster_data_collection_options_is_health_monitoring_enabled),
    				IsIncidentLogsEnabled:      pulumi.Any(_var.Vm_cluster_data_collection_options_is_incident_logs_enabled),
    			},
    			DataStorageSizeInTbs:   pulumi.Any(_var.Vm_cluster_data_storage_size_in_tbs),
    			DbNodeStorageSizeInGbs: pulumi.Any(_var.Vm_cluster_db_node_storage_size_in_gbs),
    			DbServers:              pulumi.Any(_var.Vm_cluster_db_servers),
    			DefinedTags:            pulumi.Any(_var.Vm_cluster_defined_tags),
    			FreeformTags: pulumi.Map{
    				"Department": pulumi.Any("Finance"),
    			},
    			IsLocalBackupEnabled:     pulumi.Any(_var.Vm_cluster_is_local_backup_enabled),
    			IsSparseDiskgroupEnabled: pulumi.Any(_var.Vm_cluster_is_sparse_diskgroup_enabled),
    			LicenseModel:             pulumi.Any(_var.Vm_cluster_license_model),
    			MemorySizeInGbs:          pulumi.Any(_var.Vm_cluster_memory_size_in_gbs),
    			SystemVersion:            pulumi.Any(_var.Vm_cluster_system_version),
    			TimeZone:                 pulumi.Any(_var.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 testVmCluster = new Oci.Database.VmCluster("testVmCluster", new()
        {
            CompartmentId = @var.Compartment_id,
            CpuCoreCount = @var.Vm_cluster_cpu_core_count,
            DisplayName = @var.Vm_cluster_display_name,
            ExadataInfrastructureId = oci_database_exadata_infrastructure.Test_exadata_infrastructure.Id,
            GiVersion = @var.Vm_cluster_gi_version,
            SshPublicKeys = @var.Vm_cluster_ssh_public_keys,
            VmClusterNetworkId = oci_database_vm_cluster_network.Test_vm_cluster_network.Id,
            DataCollectionOptions = new Oci.Database.Inputs.VmClusterDataCollectionOptionsArgs
            {
                IsDiagnosticsEventsEnabled = @var.Vm_cluster_data_collection_options_is_diagnostics_events_enabled,
                IsHealthMonitoringEnabled = @var.Vm_cluster_data_collection_options_is_health_monitoring_enabled,
                IsIncidentLogsEnabled = @var.Vm_cluster_data_collection_options_is_incident_logs_enabled,
            },
            DataStorageSizeInTbs = @var.Vm_cluster_data_storage_size_in_tbs,
            DbNodeStorageSizeInGbs = @var.Vm_cluster_db_node_storage_size_in_gbs,
            DbServers = @var.Vm_cluster_db_servers,
            DefinedTags = @var.Vm_cluster_defined_tags,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
            IsLocalBackupEnabled = @var.Vm_cluster_is_local_backup_enabled,
            IsSparseDiskgroupEnabled = @var.Vm_cluster_is_sparse_diskgroup_enabled,
            LicenseModel = @var.Vm_cluster_license_model,
            MemorySizeInGbs = @var.Vm_cluster_memory_size_in_gbs,
            SystemVersion = @var.Vm_cluster_system_version,
            TimeZone = @var.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.VmCluster;
    import com.pulumi.oci.Database.VmClusterArgs;
    import com.pulumi.oci.Database.inputs.VmClusterDataCollectionOptionsArgs;
    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 testVmCluster = new VmCluster("testVmCluster", VmClusterArgs.builder()        
                .compartmentId(var_.compartment_id())
                .cpuCoreCount(var_.vm_cluster_cpu_core_count())
                .displayName(var_.vm_cluster_display_name())
                .exadataInfrastructureId(oci_database_exadata_infrastructure.test_exadata_infrastructure().id())
                .giVersion(var_.vm_cluster_gi_version())
                .sshPublicKeys(var_.vm_cluster_ssh_public_keys())
                .vmClusterNetworkId(oci_database_vm_cluster_network.test_vm_cluster_network().id())
                .dataCollectionOptions(VmClusterDataCollectionOptionsArgs.builder()
                    .isDiagnosticsEventsEnabled(var_.vm_cluster_data_collection_options_is_diagnostics_events_enabled())
                    .isHealthMonitoringEnabled(var_.vm_cluster_data_collection_options_is_health_monitoring_enabled())
                    .isIncidentLogsEnabled(var_.vm_cluster_data_collection_options_is_incident_logs_enabled())
                    .build())
                .dataStorageSizeInTbs(var_.vm_cluster_data_storage_size_in_tbs())
                .dbNodeStorageSizeInGbs(var_.vm_cluster_db_node_storage_size_in_gbs())
                .dbServers(var_.vm_cluster_db_servers())
                .definedTags(var_.vm_cluster_defined_tags())
                .freeformTags(Map.of("Department", "Finance"))
                .isLocalBackupEnabled(var_.vm_cluster_is_local_backup_enabled())
                .isSparseDiskgroupEnabled(var_.vm_cluster_is_sparse_diskgroup_enabled())
                .licenseModel(var_.vm_cluster_license_model())
                .memorySizeInGbs(var_.vm_cluster_memory_size_in_gbs())
                .systemVersion(var_.vm_cluster_system_version())
                .timeZone(var_.vm_cluster_time_zone())
                .build());
    
        }
    }
    
    resources:
      testVmCluster:
        type: oci:Database:VmCluster
        properties:
          #Required
          compartmentId: ${var.compartment_id}
          cpuCoreCount: ${var.vm_cluster_cpu_core_count}
          displayName: ${var.vm_cluster_display_name}
          exadataInfrastructureId: ${oci_database_exadata_infrastructure.test_exadata_infrastructure.id}
          giVersion: ${var.vm_cluster_gi_version}
          sshPublicKeys: ${var.vm_cluster_ssh_public_keys}
          vmClusterNetworkId: ${oci_database_vm_cluster_network.test_vm_cluster_network.id}
          dataCollectionOptions:
            isDiagnosticsEventsEnabled: ${var.vm_cluster_data_collection_options_is_diagnostics_events_enabled}
            isHealthMonitoringEnabled: ${var.vm_cluster_data_collection_options_is_health_monitoring_enabled}
            isIncidentLogsEnabled: ${var.vm_cluster_data_collection_options_is_incident_logs_enabled}
          dataStorageSizeInTbs: ${var.vm_cluster_data_storage_size_in_tbs}
          dbNodeStorageSizeInGbs: ${var.vm_cluster_db_node_storage_size_in_gbs}
          dbServers: ${var.vm_cluster_db_servers}
          definedTags: ${var.vm_cluster_defined_tags}
          freeformTags:
            Department: Finance
          isLocalBackupEnabled: ${var.vm_cluster_is_local_backup_enabled}
          isSparseDiskgroupEnabled: ${var.vm_cluster_is_sparse_diskgroup_enabled}
          licenseModel: ${var.vm_cluster_license_model}
          memorySizeInGbs: ${var.vm_cluster_memory_size_in_gbs}
          systemVersion: ${var.vm_cluster_system_version}
          timeZone: ${var.vm_cluster_time_zone}
    

    Create VmCluster Resource

    new VmCluster(name: string, args: VmClusterArgs, opts?: CustomResourceOptions);
    @overload
    def VmCluster(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  compartment_id: Optional[str] = None,
                  cpu_core_count: Optional[int] = None,
                  data_collection_options: Optional[_database.VmClusterDataCollectionOptionsArgs] = None,
                  data_storage_size_in_gb: Optional[float] = None,
                  data_storage_size_in_tbs: Optional[float] = None,
                  db_node_storage_size_in_gbs: Optional[int] = None,
                  db_servers: Optional[Sequence[str]] = None,
                  defined_tags: Optional[Mapping[str, Any]] = None,
                  display_name: Optional[str] = None,
                  exadata_infrastructure_id: Optional[str] = None,
                  freeform_tags: Optional[Mapping[str, Any]] = None,
                  gi_version: Optional[str] = None,
                  is_local_backup_enabled: Optional[bool] = None,
                  is_sparse_diskgroup_enabled: Optional[bool] = None,
                  license_model: Optional[str] = None,
                  memory_size_in_gbs: Optional[int] = None,
                  ocpu_count: Optional[float] = None,
                  ssh_public_keys: Optional[Sequence[str]] = None,
                  system_version: Optional[str] = None,
                  time_zone: Optional[str] = None,
                  vm_cluster_network_id: Optional[str] = None)
    @overload
    def VmCluster(resource_name: str,
                  args: VmClusterArgs,
                  opts: Optional[ResourceOptions] = None)
    func NewVmCluster(ctx *Context, name string, args VmClusterArgs, opts ...ResourceOption) (*VmCluster, error)
    public VmCluster(string name, VmClusterArgs args, CustomResourceOptions? opts = null)
    public VmCluster(String name, VmClusterArgs args)
    public VmCluster(String name, VmClusterArgs args, CustomResourceOptions options)
    
    type: oci:Database:VmCluster
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args VmClusterArgs
    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 VmClusterArgs
    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 VmClusterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VmClusterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VmClusterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

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

    CompartmentId string
    (Updatable) The OCID of the compartment.
    CpuCoreCount int
    DisplayName string
    The user-friendly name for the VM cluster. The name does not need to be unique.
    ExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    GiVersion string
    The Oracle Grid Infrastructure software version for the VM cluster.
    SshPublicKeys List<string>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
    VmClusterNetworkId string

    The OCID of the VM cluster network.

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

    DataCollectionOptions VmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DataStorageSizeInGb double
    (Updatable) The data disk group size to be allocated in GBs.
    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 server.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    FreeformTags Dictionary<string, object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsLocalBackupEnabled bool
    If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
    IsSparseDiskgroupEnabled bool
    If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
    LicenseModel string
    (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    MemorySizeInGbs int
    (Updatable) The memory to be allocated in GBs.
    OcpuCount double
    SystemVersion string
    Operating system version of the image.
    TimeZone string
    The time zone to use for the VM cluster. For details, see DB System Time Zones.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    CpuCoreCount int
    DisplayName string
    The user-friendly name for the VM cluster. The name does not need to be unique.
    ExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    GiVersion string
    The Oracle Grid Infrastructure software version for the VM cluster.
    SshPublicKeys []string
    (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
    VmClusterNetworkId string

    The OCID of the VM cluster network.

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

    DataCollectionOptions VmClusterDataCollectionOptionsArgs
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DataStorageSizeInGb float64
    (Updatable) The data disk group size to be allocated in GBs.
    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 server.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    FreeformTags map[string]interface{}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    IsLocalBackupEnabled bool
    If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
    IsSparseDiskgroupEnabled bool
    If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
    LicenseModel string
    (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    MemorySizeInGbs int
    (Updatable) The memory to be allocated in GBs.
    OcpuCount float64
    SystemVersion string
    Operating system version of the image.
    TimeZone string
    The time zone to use for the VM cluster. For details, see DB System Time Zones.
    compartmentId String
    (Updatable) The OCID of the compartment.
    cpuCoreCount Integer
    displayName String
    The user-friendly name for the VM cluster. The name does not need to be unique.
    exadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    giVersion String
    The Oracle Grid Infrastructure software version for the VM cluster.
    sshPublicKeys List<String>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
    vmClusterNetworkId String

    The OCID of the VM cluster network.

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

    dataCollectionOptions VmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStorageSizeInGb Double
    (Updatable) The data disk group size to be allocated in GBs.
    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 server.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags Map<String,Object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isLocalBackupEnabled Boolean
    If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
    isSparseDiskgroupEnabled Boolean
    If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
    licenseModel String
    (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    memorySizeInGbs Integer
    (Updatable) The memory to be allocated in GBs.
    ocpuCount Double
    systemVersion String
    Operating system version of the image.
    timeZone String
    The time zone to use for the VM cluster. For details, see DB System Time Zones.
    compartmentId string
    (Updatable) The OCID of the compartment.
    cpuCoreCount number
    displayName string
    The user-friendly name for the VM cluster. The name does not need to be unique.
    exadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    giVersion string
    The Oracle Grid Infrastructure software version for the VM cluster.
    sshPublicKeys string[]
    (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
    vmClusterNetworkId string

    The OCID of the VM cluster network.

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

    dataCollectionOptions VmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStorageSizeInGb number
    (Updatable) The data disk group size to be allocated in GBs.
    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 server.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags {[key: string]: any}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isLocalBackupEnabled boolean
    If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
    isSparseDiskgroupEnabled boolean
    If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
    licenseModel string
    (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    memorySizeInGbs number
    (Updatable) The memory to be allocated in GBs.
    ocpuCount number
    systemVersion string
    Operating system version of the image.
    timeZone string
    The time zone to use for the VM cluster. For details, see DB System Time Zones.
    compartment_id str
    (Updatable) The OCID of the compartment.
    cpu_core_count int
    display_name str
    The user-friendly name for the VM cluster. The name does not need to be unique.
    exadata_infrastructure_id str
    The OCID of the Exadata infrastructure.
    gi_version str
    The Oracle Grid Infrastructure software version for the VM cluster.
    ssh_public_keys Sequence[str]
    (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
    vm_cluster_network_id str

    The OCID of the VM cluster network.

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

    data_collection_options VmClusterDataCollectionOptionsArgs
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    data_storage_size_in_gb float
    (Updatable) The data disk group size to be allocated in GBs.
    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 server.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeform_tags Mapping[str, Any]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    is_local_backup_enabled bool
    If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
    is_sparse_diskgroup_enabled bool
    If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
    license_model str
    (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    memory_size_in_gbs int
    (Updatable) The memory to be allocated in GBs.
    ocpu_count float
    system_version str
    Operating system version of the image.
    time_zone str
    The time zone to use for the VM cluster. For details, see DB System Time Zones.
    compartmentId String
    (Updatable) The OCID of the compartment.
    cpuCoreCount Number
    displayName String
    The user-friendly name for the VM cluster. The name does not need to be unique.
    exadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    giVersion String
    The Oracle Grid Infrastructure software version for the VM cluster.
    sshPublicKeys List<String>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
    vmClusterNetworkId String

    The OCID of the VM cluster network.

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

    dataCollectionOptions Property Map
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStorageSizeInGb Number
    (Updatable) The data disk group size to be allocated in GBs.
    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 server.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags Map<Any>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    isLocalBackupEnabled Boolean
    If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
    isSparseDiskgroupEnabled Boolean
    If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
    licenseModel String
    (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    memorySizeInGbs Number
    (Updatable) The memory to be allocated in GBs.
    ocpuCount Number
    systemVersion String
    Operating system version of the image.
    timeZone String
    The time zone to use for the VM cluster. For details, see DB System Time Zones.

    Outputs

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

    AvailabilityDomain string
    The name of the availability domain that the VM cluster is located in.
    CpusEnabled int
    The number of enabled CPU cores.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastPatchHistoryEntryId string
    The OCID of the last patch history. This value is updated as soon as a patch operation starts.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    OcpusEnabled double
    Shape string
    The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
    State string
    The current state of the VM cluster.
    TimeCreated string
    The date and time that the VM cluster was created.
    AvailabilityDomain string
    The name of the availability domain that the VM cluster is located in.
    CpusEnabled int
    The number of enabled CPU cores.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastPatchHistoryEntryId string
    The OCID of the last patch history. This value is updated as soon as a patch operation starts.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    OcpusEnabled float64
    Shape string
    The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
    State string
    The current state of the VM cluster.
    TimeCreated string
    The date and time that the VM cluster was created.
    availabilityDomain String
    The name of the availability domain that the VM cluster is located in.
    cpusEnabled Integer
    The number of enabled CPU cores.
    id String
    The provider-assigned unique ID for this managed resource.
    lastPatchHistoryEntryId String
    The OCID of the last patch history. This value is updated as soon as a patch operation starts.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    ocpusEnabled Double
    shape String
    The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
    state String
    The current state of the VM cluster.
    timeCreated String
    The date and time that the VM cluster was created.
    availabilityDomain string
    The name of the availability domain that the VM cluster is located in.
    cpusEnabled number
    The number of enabled CPU cores.
    id string
    The provider-assigned unique ID for this managed resource.
    lastPatchHistoryEntryId string
    The OCID of the last patch history. This value is updated as soon as a patch operation starts.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    ocpusEnabled number
    shape string
    The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
    state string
    The current state of the VM cluster.
    timeCreated string
    The date and time that the VM cluster was created.
    availability_domain str
    The name of the availability domain that the VM cluster is located in.
    cpus_enabled int
    The number of enabled CPU cores.
    id str
    The provider-assigned unique ID for this managed resource.
    last_patch_history_entry_id str
    The OCID of the last patch history. This value is updated as soon as a patch operation starts.
    lifecycle_details str
    Additional information about the current lifecycle state.
    ocpus_enabled float
    shape str
    The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
    state str
    The current state of the VM cluster.
    time_created str
    The date and time that the VM cluster was created.
    availabilityDomain String
    The name of the availability domain that the VM cluster is located in.
    cpusEnabled Number
    The number of enabled CPU cores.
    id String
    The provider-assigned unique ID for this managed resource.
    lastPatchHistoryEntryId String
    The OCID of the last patch history. This value is updated as soon as a patch operation starts.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    ocpusEnabled Number
    shape String
    The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
    state String
    The current state of the VM cluster.
    timeCreated String
    The date and time that the VM cluster was created.

    Look up Existing VmCluster Resource

    Get an existing VmCluster 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?: VmClusterState, opts?: CustomResourceOptions): VmCluster
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            availability_domain: Optional[str] = None,
            compartment_id: Optional[str] = None,
            cpu_core_count: Optional[int] = None,
            cpus_enabled: Optional[int] = None,
            data_collection_options: Optional[_database.VmClusterDataCollectionOptionsArgs] = None,
            data_storage_size_in_gb: Optional[float] = None,
            data_storage_size_in_tbs: Optional[float] = None,
            db_node_storage_size_in_gbs: Optional[int] = None,
            db_servers: Optional[Sequence[str]] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            display_name: Optional[str] = None,
            exadata_infrastructure_id: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            gi_version: Optional[str] = None,
            is_local_backup_enabled: Optional[bool] = None,
            is_sparse_diskgroup_enabled: Optional[bool] = None,
            last_patch_history_entry_id: Optional[str] = None,
            license_model: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            memory_size_in_gbs: Optional[int] = None,
            ocpu_count: Optional[float] = None,
            ocpus_enabled: Optional[float] = None,
            shape: Optional[str] = None,
            ssh_public_keys: Optional[Sequence[str]] = None,
            state: Optional[str] = None,
            system_version: Optional[str] = None,
            time_created: Optional[str] = None,
            time_zone: Optional[str] = None,
            vm_cluster_network_id: Optional[str] = None) -> VmCluster
    func GetVmCluster(ctx *Context, name string, id IDInput, state *VmClusterState, opts ...ResourceOption) (*VmCluster, error)
    public static VmCluster Get(string name, Input<string> id, VmClusterState? state, CustomResourceOptions? opts = null)
    public static VmCluster get(String name, Output<String> id, VmClusterState 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 VM cluster is located in.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    CpuCoreCount int
    CpusEnabled int
    The number of enabled CPU cores.
    DataCollectionOptions VmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DataStorageSizeInGb double
    (Updatable) The data disk group size to be allocated in GBs.
    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 server.
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    The user-friendly name for the VM cluster. The name does not need to be unique.
    ExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    FreeformTags Dictionary<string, object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    GiVersion string
    The Oracle Grid Infrastructure software version for the VM cluster.
    IsLocalBackupEnabled bool
    If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
    IsSparseDiskgroupEnabled bool
    If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
    LastPatchHistoryEntryId string
    The OCID of the last patch history. This value is updated as soon as a patch operation starts.
    LicenseModel string
    (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MemorySizeInGbs int
    (Updatable) The memory to be allocated in GBs.
    OcpuCount double
    OcpusEnabled double
    Shape string
    The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
    SshPublicKeys List<string>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
    State string
    The current state of the VM cluster.
    SystemVersion string
    Operating system version of the image.
    TimeCreated string
    The date and time that the VM cluster was created.
    TimeZone string
    The time zone to use for the VM cluster. For details, see DB System Time Zones.
    VmClusterNetworkId string

    The OCID of the VM cluster network.

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

    AvailabilityDomain string
    The name of the availability domain that the VM cluster is located in.
    CompartmentId string
    (Updatable) The OCID of the compartment.
    CpuCoreCount int
    CpusEnabled int
    The number of enabled CPU cores.
    DataCollectionOptions VmClusterDataCollectionOptionsArgs
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    DataStorageSizeInGb float64
    (Updatable) The data disk group size to be allocated in GBs.
    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 server.
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    DisplayName string
    The user-friendly name for the VM cluster. The name does not need to be unique.
    ExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    FreeformTags map[string]interface{}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    GiVersion string
    The Oracle Grid Infrastructure software version for the VM cluster.
    IsLocalBackupEnabled bool
    If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
    IsSparseDiskgroupEnabled bool
    If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
    LastPatchHistoryEntryId string
    The OCID of the last patch history. This value is updated as soon as a patch operation starts.
    LicenseModel string
    (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    MemorySizeInGbs int
    (Updatable) The memory to be allocated in GBs.
    OcpuCount float64
    OcpusEnabled float64
    Shape string
    The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
    SshPublicKeys []string
    (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
    State string
    The current state of the VM cluster.
    SystemVersion string
    Operating system version of the image.
    TimeCreated string
    The date and time that the VM cluster was created.
    TimeZone string
    The time zone to use for the VM cluster. For details, see DB System Time Zones.
    VmClusterNetworkId string

    The OCID of the VM cluster network.

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

    availabilityDomain String
    The name of the availability domain that the VM cluster is located in.
    compartmentId String
    (Updatable) The OCID of the compartment.
    cpuCoreCount Integer
    cpusEnabled Integer
    The number of enabled CPU cores.
    dataCollectionOptions VmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStorageSizeInGb Double
    (Updatable) The data disk group size to be allocated in GBs.
    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 server.
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    The user-friendly name for the VM cluster. The name does not need to be unique.
    exadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    freeformTags Map<String,Object>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    giVersion String
    The Oracle Grid Infrastructure software version for the VM cluster.
    isLocalBackupEnabled Boolean
    If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
    isSparseDiskgroupEnabled Boolean
    If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
    lastPatchHistoryEntryId String
    The OCID of the last patch history. This value is updated as soon as a patch operation starts.
    licenseModel String
    (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    memorySizeInGbs Integer
    (Updatable) The memory to be allocated in GBs.
    ocpuCount Double
    ocpusEnabled Double
    shape String
    The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
    sshPublicKeys List<String>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
    state String
    The current state of the VM cluster.
    systemVersion String
    Operating system version of the image.
    timeCreated String
    The date and time that the VM cluster was created.
    timeZone String
    The time zone to use for the VM cluster. For details, see DB System Time Zones.
    vmClusterNetworkId String

    The OCID of the VM cluster network.

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

    availabilityDomain string
    The name of the availability domain that the VM cluster is located in.
    compartmentId string
    (Updatable) The OCID of the compartment.
    cpuCoreCount number
    cpusEnabled number
    The number of enabled CPU cores.
    dataCollectionOptions VmClusterDataCollectionOptions
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStorageSizeInGb number
    (Updatable) The data disk group size to be allocated in GBs.
    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 server.
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName string
    The user-friendly name for the VM cluster. The name does not need to be unique.
    exadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    freeformTags {[key: string]: any}
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    giVersion string
    The Oracle Grid Infrastructure software version for the VM cluster.
    isLocalBackupEnabled boolean
    If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
    isSparseDiskgroupEnabled boolean
    If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
    lastPatchHistoryEntryId string
    The OCID of the last patch history. This value is updated as soon as a patch operation starts.
    licenseModel string
    (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    memorySizeInGbs number
    (Updatable) The memory to be allocated in GBs.
    ocpuCount number
    ocpusEnabled number
    shape string
    The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
    sshPublicKeys string[]
    (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
    state string
    The current state of the VM cluster.
    systemVersion string
    Operating system version of the image.
    timeCreated string
    The date and time that the VM cluster was created.
    timeZone string
    The time zone to use for the VM cluster. For details, see DB System Time Zones.
    vmClusterNetworkId string

    The OCID of the VM cluster network.

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

    availability_domain str
    The name of the availability domain that the VM cluster is located in.
    compartment_id str
    (Updatable) The OCID of the compartment.
    cpu_core_count int
    cpus_enabled int
    The number of enabled CPU cores.
    data_collection_options VmClusterDataCollectionOptionsArgs
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    data_storage_size_in_gb float
    (Updatable) The data disk group size to be allocated in GBs.
    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 server.
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    display_name str
    The user-friendly name for the VM cluster. The name does not need to be unique.
    exadata_infrastructure_id str
    The OCID of the Exadata infrastructure.
    freeform_tags Mapping[str, Any]
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    gi_version str
    The Oracle Grid Infrastructure software version for the VM cluster.
    is_local_backup_enabled bool
    If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
    is_sparse_diskgroup_enabled bool
    If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
    last_patch_history_entry_id str
    The OCID of the last patch history. This value is updated as soon as a patch operation starts.
    license_model str
    (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    lifecycle_details str
    Additional information about the current lifecycle state.
    memory_size_in_gbs int
    (Updatable) The memory to be allocated in GBs.
    ocpu_count float
    ocpus_enabled float
    shape str
    The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
    ssh_public_keys Sequence[str]
    (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
    state str
    The current state of the VM cluster.
    system_version str
    Operating system version of the image.
    time_created str
    The date and time that the VM cluster was created.
    time_zone str
    The time zone to use for the VM cluster. For details, see DB System Time Zones.
    vm_cluster_network_id str

    The OCID of the VM cluster network.

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

    availabilityDomain String
    The name of the availability domain that the VM cluster is located in.
    compartmentId String
    (Updatable) The OCID of the compartment.
    cpuCoreCount Number
    cpusEnabled Number
    The number of enabled CPU cores.
    dataCollectionOptions Property Map
    (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
    dataStorageSizeInGb Number
    (Updatable) The data disk group size to be allocated in GBs.
    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 server.
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    displayName String
    The user-friendly name for the VM cluster. The name does not need to be unique.
    exadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    freeformTags Map<Any>
    (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    giVersion String
    The Oracle Grid Infrastructure software version for the VM cluster.
    isLocalBackupEnabled Boolean
    If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
    isSparseDiskgroupEnabled Boolean
    If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
    lastPatchHistoryEntryId String
    The OCID of the last patch history. This value is updated as soon as a patch operation starts.
    licenseModel String
    (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    memorySizeInGbs Number
    (Updatable) The memory to be allocated in GBs.
    ocpuCount Number
    ocpusEnabled Number
    shape String
    The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
    sshPublicKeys List<String>
    (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
    state String
    The current state of the VM cluster.
    systemVersion String
    Operating system version of the image.
    timeCreated String
    The date and time that the VM cluster was created.
    timeZone String
    The time zone to use for the VM cluster. For details, see DB System Time Zones.
    vmClusterNetworkId String

    The OCID of the VM cluster network.

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

    Supporting Types

    VmClusterDataCollectionOptions, VmClusterDataCollectionOptionsArgs

    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.

    Import

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

    $ pulumi import oci:Database/vmCluster:VmCluster test_vm_cluster "id"
    

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.27.0 published on Friday, Mar 15, 2024 by Pulumi