oci.Database.VmCluster
Explore with Pulumi AI
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("test_vm_cluster", {
    compartmentId: compartmentId,
    cpuCoreCount: vmClusterCpuCoreCount,
    displayName: vmClusterDisplayName,
    exadataInfrastructureId: testExadataInfrastructure.id,
    giVersion: vmClusterGiVersion,
    sshPublicKeys: vmClusterSshPublicKeys,
    vmClusterNetworkId: testVmClusterNetwork.id,
    cloudAutomationUpdateDetails: {
        applyUpdateTimePreference: {
            applyUpdatePreferredEndTime: vmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceApplyUpdatePreferredEndTime,
            applyUpdatePreferredStartTime: vmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceApplyUpdatePreferredStartTime,
        },
        freezePeriod: {
            freezePeriodEndTime: vmClusterCloudAutomationUpdateDetailsFreezePeriodFreezePeriodEndTime,
            freezePeriodStartTime: vmClusterCloudAutomationUpdateDetailsFreezePeriodFreezePeriodStartTime,
        },
        isEarlyAdoptionEnabled: vmClusterCloudAutomationUpdateDetailsIsEarlyAdoptionEnabled,
        isFreezePeriodEnabled: vmClusterCloudAutomationUpdateDetailsIsFreezePeriodEnabled,
    },
    dataCollectionOptions: {
        isDiagnosticsEventsEnabled: vmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled,
        isHealthMonitoringEnabled: vmClusterDataCollectionOptionsIsHealthMonitoringEnabled,
        isIncidentLogsEnabled: vmClusterDataCollectionOptionsIsIncidentLogsEnabled,
    },
    dataStorageSizeInTbs: vmClusterDataStorageSizeInTbs,
    dbNodeStorageSizeInGbs: vmClusterDbNodeStorageSizeInGbs,
    dbServers: vmClusterDbServers,
    definedTags: vmClusterDefinedTags,
    exascaleDbStorageVaultId: testExascaleDbStorageVault.id,
    fileSystemConfigurationDetails: [{
        fileSystemSizeGb: vmClusterFileSystemConfigurationDetailsFileSystemSizeGb,
        mountPoint: vmClusterFileSystemConfigurationDetailsMountPoint,
    }],
    freeformTags: {
        Department: "Finance",
    },
    isLocalBackupEnabled: vmClusterIsLocalBackupEnabled,
    isSparseDiskgroupEnabled: vmClusterIsSparseDiskgroupEnabled,
    licenseModel: vmClusterLicenseModel,
    memorySizeInGbs: vmClusterMemorySizeInGbs,
    systemVersion: vmClusterSystemVersion,
    timeZone: vmClusterTimeZone,
    vmClusterType: vmClusterVmClusterType,
});
import pulumi
import pulumi_oci as oci
test_vm_cluster = oci.database.VmCluster("test_vm_cluster",
    compartment_id=compartment_id,
    cpu_core_count=vm_cluster_cpu_core_count,
    display_name=vm_cluster_display_name,
    exadata_infrastructure_id=test_exadata_infrastructure["id"],
    gi_version=vm_cluster_gi_version,
    ssh_public_keys=vm_cluster_ssh_public_keys,
    vm_cluster_network_id=test_vm_cluster_network["id"],
    cloud_automation_update_details={
        "apply_update_time_preference": {
            "apply_update_preferred_end_time": vm_cluster_cloud_automation_update_details_apply_update_time_preference_apply_update_preferred_end_time,
            "apply_update_preferred_start_time": vm_cluster_cloud_automation_update_details_apply_update_time_preference_apply_update_preferred_start_time,
        },
        "freeze_period": {
            "freeze_period_end_time": vm_cluster_cloud_automation_update_details_freeze_period_freeze_period_end_time,
            "freeze_period_start_time": vm_cluster_cloud_automation_update_details_freeze_period_freeze_period_start_time,
        },
        "is_early_adoption_enabled": vm_cluster_cloud_automation_update_details_is_early_adoption_enabled,
        "is_freeze_period_enabled": vm_cluster_cloud_automation_update_details_is_freeze_period_enabled,
    },
    data_collection_options={
        "is_diagnostics_events_enabled": vm_cluster_data_collection_options_is_diagnostics_events_enabled,
        "is_health_monitoring_enabled": vm_cluster_data_collection_options_is_health_monitoring_enabled,
        "is_incident_logs_enabled": vm_cluster_data_collection_options_is_incident_logs_enabled,
    },
    data_storage_size_in_tbs=vm_cluster_data_storage_size_in_tbs,
    db_node_storage_size_in_gbs=vm_cluster_db_node_storage_size_in_gbs,
    db_servers=vm_cluster_db_servers,
    defined_tags=vm_cluster_defined_tags,
    exascale_db_storage_vault_id=test_exascale_db_storage_vault["id"],
    file_system_configuration_details=[{
        "file_system_size_gb": vm_cluster_file_system_configuration_details_file_system_size_gb,
        "mount_point": vm_cluster_file_system_configuration_details_mount_point,
    }],
    freeform_tags={
        "Department": "Finance",
    },
    is_local_backup_enabled=vm_cluster_is_local_backup_enabled,
    is_sparse_diskgroup_enabled=vm_cluster_is_sparse_diskgroup_enabled,
    license_model=vm_cluster_license_model,
    memory_size_in_gbs=vm_cluster_memory_size_in_gbs,
    system_version=vm_cluster_system_version,
    time_zone=vm_cluster_time_zone,
    vm_cluster_type=vm_cluster_vm_cluster_type)
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := database.NewVmCluster(ctx, "test_vm_cluster", &database.VmClusterArgs{
			CompartmentId:           pulumi.Any(compartmentId),
			CpuCoreCount:            pulumi.Any(vmClusterCpuCoreCount),
			DisplayName:             pulumi.Any(vmClusterDisplayName),
			ExadataInfrastructureId: pulumi.Any(testExadataInfrastructure.Id),
			GiVersion:               pulumi.Any(vmClusterGiVersion),
			SshPublicKeys:           pulumi.Any(vmClusterSshPublicKeys),
			VmClusterNetworkId:      pulumi.Any(testVmClusterNetwork.Id),
			CloudAutomationUpdateDetails: &database.VmClusterCloudAutomationUpdateDetailsArgs{
				ApplyUpdateTimePreference: &database.VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs{
					ApplyUpdatePreferredEndTime:   pulumi.Any(vmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceApplyUpdatePreferredEndTime),
					ApplyUpdatePreferredStartTime: pulumi.Any(vmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceApplyUpdatePreferredStartTime),
				},
				FreezePeriod: &database.VmClusterCloudAutomationUpdateDetailsFreezePeriodArgs{
					FreezePeriodEndTime:   pulumi.Any(vmClusterCloudAutomationUpdateDetailsFreezePeriodFreezePeriodEndTime),
					FreezePeriodStartTime: pulumi.Any(vmClusterCloudAutomationUpdateDetailsFreezePeriodFreezePeriodStartTime),
				},
				IsEarlyAdoptionEnabled: pulumi.Any(vmClusterCloudAutomationUpdateDetailsIsEarlyAdoptionEnabled),
				IsFreezePeriodEnabled:  pulumi.Any(vmClusterCloudAutomationUpdateDetailsIsFreezePeriodEnabled),
			},
			DataCollectionOptions: &database.VmClusterDataCollectionOptionsArgs{
				IsDiagnosticsEventsEnabled: pulumi.Any(vmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled),
				IsHealthMonitoringEnabled:  pulumi.Any(vmClusterDataCollectionOptionsIsHealthMonitoringEnabled),
				IsIncidentLogsEnabled:      pulumi.Any(vmClusterDataCollectionOptionsIsIncidentLogsEnabled),
			},
			DataStorageSizeInTbs:     pulumi.Any(vmClusterDataStorageSizeInTbs),
			DbNodeStorageSizeInGbs:   pulumi.Any(vmClusterDbNodeStorageSizeInGbs),
			DbServers:                pulumi.Any(vmClusterDbServers),
			DefinedTags:              pulumi.Any(vmClusterDefinedTags),
			ExascaleDbStorageVaultId: pulumi.Any(testExascaleDbStorageVault.Id),
			FileSystemConfigurationDetails: database.VmClusterFileSystemConfigurationDetailArray{
				&database.VmClusterFileSystemConfigurationDetailArgs{
					FileSystemSizeGb: pulumi.Any(vmClusterFileSystemConfigurationDetailsFileSystemSizeGb),
					MountPoint:       pulumi.Any(vmClusterFileSystemConfigurationDetailsMountPoint),
				},
			},
			FreeformTags: pulumi.StringMap{
				"Department": pulumi.String("Finance"),
			},
			IsLocalBackupEnabled:     pulumi.Any(vmClusterIsLocalBackupEnabled),
			IsSparseDiskgroupEnabled: pulumi.Any(vmClusterIsSparseDiskgroupEnabled),
			LicenseModel:             pulumi.Any(vmClusterLicenseModel),
			MemorySizeInGbs:          pulumi.Any(vmClusterMemorySizeInGbs),
			SystemVersion:            pulumi.Any(vmClusterSystemVersion),
			TimeZone:                 pulumi.Any(vmClusterTimeZone),
			VmClusterType:            pulumi.Any(vmClusterVmClusterType),
		})
		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("test_vm_cluster", new()
    {
        CompartmentId = compartmentId,
        CpuCoreCount = vmClusterCpuCoreCount,
        DisplayName = vmClusterDisplayName,
        ExadataInfrastructureId = testExadataInfrastructure.Id,
        GiVersion = vmClusterGiVersion,
        SshPublicKeys = vmClusterSshPublicKeys,
        VmClusterNetworkId = testVmClusterNetwork.Id,
        CloudAutomationUpdateDetails = new Oci.Database.Inputs.VmClusterCloudAutomationUpdateDetailsArgs
        {
            ApplyUpdateTimePreference = new Oci.Database.Inputs.VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs
            {
                ApplyUpdatePreferredEndTime = vmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceApplyUpdatePreferredEndTime,
                ApplyUpdatePreferredStartTime = vmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceApplyUpdatePreferredStartTime,
            },
            FreezePeriod = new Oci.Database.Inputs.VmClusterCloudAutomationUpdateDetailsFreezePeriodArgs
            {
                FreezePeriodEndTime = vmClusterCloudAutomationUpdateDetailsFreezePeriodFreezePeriodEndTime,
                FreezePeriodStartTime = vmClusterCloudAutomationUpdateDetailsFreezePeriodFreezePeriodStartTime,
            },
            IsEarlyAdoptionEnabled = vmClusterCloudAutomationUpdateDetailsIsEarlyAdoptionEnabled,
            IsFreezePeriodEnabled = vmClusterCloudAutomationUpdateDetailsIsFreezePeriodEnabled,
        },
        DataCollectionOptions = new Oci.Database.Inputs.VmClusterDataCollectionOptionsArgs
        {
            IsDiagnosticsEventsEnabled = vmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled,
            IsHealthMonitoringEnabled = vmClusterDataCollectionOptionsIsHealthMonitoringEnabled,
            IsIncidentLogsEnabled = vmClusterDataCollectionOptionsIsIncidentLogsEnabled,
        },
        DataStorageSizeInTbs = vmClusterDataStorageSizeInTbs,
        DbNodeStorageSizeInGbs = vmClusterDbNodeStorageSizeInGbs,
        DbServers = vmClusterDbServers,
        DefinedTags = vmClusterDefinedTags,
        ExascaleDbStorageVaultId = testExascaleDbStorageVault.Id,
        FileSystemConfigurationDetails = new[]
        {
            new Oci.Database.Inputs.VmClusterFileSystemConfigurationDetailArgs
            {
                FileSystemSizeGb = vmClusterFileSystemConfigurationDetailsFileSystemSizeGb,
                MountPoint = vmClusterFileSystemConfigurationDetailsMountPoint,
            },
        },
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        IsLocalBackupEnabled = vmClusterIsLocalBackupEnabled,
        IsSparseDiskgroupEnabled = vmClusterIsSparseDiskgroupEnabled,
        LicenseModel = vmClusterLicenseModel,
        MemorySizeInGbs = vmClusterMemorySizeInGbs,
        SystemVersion = vmClusterSystemVersion,
        TimeZone = vmClusterTimeZone,
        VmClusterType = vmClusterVmClusterType,
    });
});
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.VmClusterCloudAutomationUpdateDetailsArgs;
import com.pulumi.oci.Database.inputs.VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs;
import com.pulumi.oci.Database.inputs.VmClusterCloudAutomationUpdateDetailsFreezePeriodArgs;
import com.pulumi.oci.Database.inputs.VmClusterDataCollectionOptionsArgs;
import com.pulumi.oci.Database.inputs.VmClusterFileSystemConfigurationDetailArgs;
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(compartmentId)
            .cpuCoreCount(vmClusterCpuCoreCount)
            .displayName(vmClusterDisplayName)
            .exadataInfrastructureId(testExadataInfrastructure.id())
            .giVersion(vmClusterGiVersion)
            .sshPublicKeys(vmClusterSshPublicKeys)
            .vmClusterNetworkId(testVmClusterNetwork.id())
            .cloudAutomationUpdateDetails(VmClusterCloudAutomationUpdateDetailsArgs.builder()
                .applyUpdateTimePreference(VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs.builder()
                    .applyUpdatePreferredEndTime(vmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceApplyUpdatePreferredEndTime)
                    .applyUpdatePreferredStartTime(vmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceApplyUpdatePreferredStartTime)
                    .build())
                .freezePeriod(VmClusterCloudAutomationUpdateDetailsFreezePeriodArgs.builder()
                    .freezePeriodEndTime(vmClusterCloudAutomationUpdateDetailsFreezePeriodFreezePeriodEndTime)
                    .freezePeriodStartTime(vmClusterCloudAutomationUpdateDetailsFreezePeriodFreezePeriodStartTime)
                    .build())
                .isEarlyAdoptionEnabled(vmClusterCloudAutomationUpdateDetailsIsEarlyAdoptionEnabled)
                .isFreezePeriodEnabled(vmClusterCloudAutomationUpdateDetailsIsFreezePeriodEnabled)
                .build())
            .dataCollectionOptions(VmClusterDataCollectionOptionsArgs.builder()
                .isDiagnosticsEventsEnabled(vmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled)
                .isHealthMonitoringEnabled(vmClusterDataCollectionOptionsIsHealthMonitoringEnabled)
                .isIncidentLogsEnabled(vmClusterDataCollectionOptionsIsIncidentLogsEnabled)
                .build())
            .dataStorageSizeInTbs(vmClusterDataStorageSizeInTbs)
            .dbNodeStorageSizeInGbs(vmClusterDbNodeStorageSizeInGbs)
            .dbServers(vmClusterDbServers)
            .definedTags(vmClusterDefinedTags)
            .exascaleDbStorageVaultId(testExascaleDbStorageVault.id())
            .fileSystemConfigurationDetails(VmClusterFileSystemConfigurationDetailArgs.builder()
                .fileSystemSizeGb(vmClusterFileSystemConfigurationDetailsFileSystemSizeGb)
                .mountPoint(vmClusterFileSystemConfigurationDetailsMountPoint)
                .build())
            .freeformTags(Map.of("Department", "Finance"))
            .isLocalBackupEnabled(vmClusterIsLocalBackupEnabled)
            .isSparseDiskgroupEnabled(vmClusterIsSparseDiskgroupEnabled)
            .licenseModel(vmClusterLicenseModel)
            .memorySizeInGbs(vmClusterMemorySizeInGbs)
            .systemVersion(vmClusterSystemVersion)
            .timeZone(vmClusterTimeZone)
            .vmClusterType(vmClusterVmClusterType)
            .build());
    }
}
resources:
  testVmCluster:
    type: oci:Database:VmCluster
    name: test_vm_cluster
    properties:
      compartmentId: ${compartmentId}
      cpuCoreCount: ${vmClusterCpuCoreCount}
      displayName: ${vmClusterDisplayName}
      exadataInfrastructureId: ${testExadataInfrastructure.id}
      giVersion: ${vmClusterGiVersion}
      sshPublicKeys: ${vmClusterSshPublicKeys}
      vmClusterNetworkId: ${testVmClusterNetwork.id}
      cloudAutomationUpdateDetails:
        applyUpdateTimePreference:
          applyUpdatePreferredEndTime: ${vmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceApplyUpdatePreferredEndTime}
          applyUpdatePreferredStartTime: ${vmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceApplyUpdatePreferredStartTime}
        freezePeriod:
          freezePeriodEndTime: ${vmClusterCloudAutomationUpdateDetailsFreezePeriodFreezePeriodEndTime}
          freezePeriodStartTime: ${vmClusterCloudAutomationUpdateDetailsFreezePeriodFreezePeriodStartTime}
        isEarlyAdoptionEnabled: ${vmClusterCloudAutomationUpdateDetailsIsEarlyAdoptionEnabled}
        isFreezePeriodEnabled: ${vmClusterCloudAutomationUpdateDetailsIsFreezePeriodEnabled}
      dataCollectionOptions:
        isDiagnosticsEventsEnabled: ${vmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled}
        isHealthMonitoringEnabled: ${vmClusterDataCollectionOptionsIsHealthMonitoringEnabled}
        isIncidentLogsEnabled: ${vmClusterDataCollectionOptionsIsIncidentLogsEnabled}
      dataStorageSizeInTbs: ${vmClusterDataStorageSizeInTbs}
      dbNodeStorageSizeInGbs: ${vmClusterDbNodeStorageSizeInGbs}
      dbServers: ${vmClusterDbServers}
      definedTags: ${vmClusterDefinedTags}
      exascaleDbStorageVaultId: ${testExascaleDbStorageVault.id}
      fileSystemConfigurationDetails:
        - fileSystemSizeGb: ${vmClusterFileSystemConfigurationDetailsFileSystemSizeGb}
          mountPoint: ${vmClusterFileSystemConfigurationDetailsMountPoint}
      freeformTags:
        Department: Finance
      isLocalBackupEnabled: ${vmClusterIsLocalBackupEnabled}
      isSparseDiskgroupEnabled: ${vmClusterIsSparseDiskgroupEnabled}
      licenseModel: ${vmClusterLicenseModel}
      memorySizeInGbs: ${vmClusterMemorySizeInGbs}
      systemVersion: ${vmClusterSystemVersion}
      timeZone: ${vmClusterTimeZone}
      vmClusterType: ${vmClusterVmClusterType}
Create VmCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VmCluster(name: string, args: VmClusterArgs, opts?: CustomResourceOptions);@overload
def VmCluster(resource_name: str,
              args: VmClusterArgs,
              opts: Optional[ResourceOptions] = None)
@overload
def VmCluster(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              display_name: Optional[str] = None,
              compartment_id: Optional[str] = None,
              cpu_core_count: Optional[int] = None,
              vm_cluster_network_id: Optional[str] = None,
              ssh_public_keys: Optional[Sequence[str]] = None,
              gi_version: Optional[str] = None,
              exadata_infrastructure_id: Optional[str] = None,
              file_system_configuration_details: Optional[Sequence[VmClusterFileSystemConfigurationDetailArgs]] = None,
              is_sparse_diskgroup_enabled: Optional[bool] = None,
              db_servers: Optional[Sequence[str]] = None,
              db_node_storage_size_in_gbs: Optional[int] = None,
              exascale_db_storage_vault_id: Optional[str] = None,
              cloud_automation_update_details: Optional[VmClusterCloudAutomationUpdateDetailsArgs] = None,
              freeform_tags: Optional[Mapping[str, str]] = None,
              data_storage_size_in_tbs: Optional[float] = None,
              is_local_backup_enabled: Optional[bool] = None,
              defined_tags: Optional[Mapping[str, str]] = None,
              license_model: Optional[str] = None,
              memory_size_in_gbs: Optional[int] = None,
              ocpu_count: Optional[float] = None,
              data_storage_size_in_gb: Optional[float] = None,
              system_version: Optional[str] = None,
              time_zone: Optional[str] = None,
              data_collection_options: Optional[VmClusterDataCollectionOptionsArgs] = None,
              vm_cluster_type: Optional[str] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var vmClusterResource = new Oci.Database.VmCluster("vmClusterResource", new()
{
    DisplayName = "string",
    CompartmentId = "string",
    CpuCoreCount = 0,
    VmClusterNetworkId = "string",
    SshPublicKeys = new[]
    {
        "string",
    },
    GiVersion = "string",
    ExadataInfrastructureId = "string",
    FileSystemConfigurationDetails = new[]
    {
        new Oci.Database.Inputs.VmClusterFileSystemConfigurationDetailArgs
        {
            FileSystemSizeGb = 0,
            MountPoint = "string",
        },
    },
    IsSparseDiskgroupEnabled = false,
    DbServers = new[]
    {
        "string",
    },
    DbNodeStorageSizeInGbs = 0,
    ExascaleDbStorageVaultId = "string",
    CloudAutomationUpdateDetails = new Oci.Database.Inputs.VmClusterCloudAutomationUpdateDetailsArgs
    {
        ApplyUpdateTimePreference = new Oci.Database.Inputs.VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs
        {
            ApplyUpdatePreferredEndTime = "string",
            ApplyUpdatePreferredStartTime = "string",
        },
        FreezePeriod = new Oci.Database.Inputs.VmClusterCloudAutomationUpdateDetailsFreezePeriodArgs
        {
            FreezePeriodEndTime = "string",
            FreezePeriodStartTime = "string",
        },
        IsEarlyAdoptionEnabled = false,
        IsFreezePeriodEnabled = false,
    },
    FreeformTags = 
    {
        { "string", "string" },
    },
    DataStorageSizeInTbs = 0,
    IsLocalBackupEnabled = false,
    DefinedTags = 
    {
        { "string", "string" },
    },
    LicenseModel = "string",
    MemorySizeInGbs = 0,
    OcpuCount = 0,
    DataStorageSizeInGb = 0,
    SystemVersion = "string",
    TimeZone = "string",
    DataCollectionOptions = new Oci.Database.Inputs.VmClusterDataCollectionOptionsArgs
    {
        IsDiagnosticsEventsEnabled = false,
        IsHealthMonitoringEnabled = false,
        IsIncidentLogsEnabled = false,
    },
    VmClusterType = "string",
});
example, err := database.NewVmCluster(ctx, "vmClusterResource", &database.VmClusterArgs{
	DisplayName:        pulumi.String("string"),
	CompartmentId:      pulumi.String("string"),
	CpuCoreCount:       pulumi.Int(0),
	VmClusterNetworkId: pulumi.String("string"),
	SshPublicKeys: pulumi.StringArray{
		pulumi.String("string"),
	},
	GiVersion:               pulumi.String("string"),
	ExadataInfrastructureId: pulumi.String("string"),
	FileSystemConfigurationDetails: database.VmClusterFileSystemConfigurationDetailArray{
		&database.VmClusterFileSystemConfigurationDetailArgs{
			FileSystemSizeGb: pulumi.Int(0),
			MountPoint:       pulumi.String("string"),
		},
	},
	IsSparseDiskgroupEnabled: pulumi.Bool(false),
	DbServers: pulumi.StringArray{
		pulumi.String("string"),
	},
	DbNodeStorageSizeInGbs:   pulumi.Int(0),
	ExascaleDbStorageVaultId: pulumi.String("string"),
	CloudAutomationUpdateDetails: &database.VmClusterCloudAutomationUpdateDetailsArgs{
		ApplyUpdateTimePreference: &database.VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs{
			ApplyUpdatePreferredEndTime:   pulumi.String("string"),
			ApplyUpdatePreferredStartTime: pulumi.String("string"),
		},
		FreezePeriod: &database.VmClusterCloudAutomationUpdateDetailsFreezePeriodArgs{
			FreezePeriodEndTime:   pulumi.String("string"),
			FreezePeriodStartTime: pulumi.String("string"),
		},
		IsEarlyAdoptionEnabled: pulumi.Bool(false),
		IsFreezePeriodEnabled:  pulumi.Bool(false),
	},
	FreeformTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	DataStorageSizeInTbs: pulumi.Float64(0),
	IsLocalBackupEnabled: pulumi.Bool(false),
	DefinedTags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	LicenseModel:        pulumi.String("string"),
	MemorySizeInGbs:     pulumi.Int(0),
	OcpuCount:           pulumi.Float64(0),
	DataStorageSizeInGb: pulumi.Float64(0),
	SystemVersion:       pulumi.String("string"),
	TimeZone:            pulumi.String("string"),
	DataCollectionOptions: &database.VmClusterDataCollectionOptionsArgs{
		IsDiagnosticsEventsEnabled: pulumi.Bool(false),
		IsHealthMonitoringEnabled:  pulumi.Bool(false),
		IsIncidentLogsEnabled:      pulumi.Bool(false),
	},
	VmClusterType: pulumi.String("string"),
})
var vmClusterResource = new VmCluster("vmClusterResource", VmClusterArgs.builder()
    .displayName("string")
    .compartmentId("string")
    .cpuCoreCount(0)
    .vmClusterNetworkId("string")
    .sshPublicKeys("string")
    .giVersion("string")
    .exadataInfrastructureId("string")
    .fileSystemConfigurationDetails(VmClusterFileSystemConfigurationDetailArgs.builder()
        .fileSystemSizeGb(0)
        .mountPoint("string")
        .build())
    .isSparseDiskgroupEnabled(false)
    .dbServers("string")
    .dbNodeStorageSizeInGbs(0)
    .exascaleDbStorageVaultId("string")
    .cloudAutomationUpdateDetails(VmClusterCloudAutomationUpdateDetailsArgs.builder()
        .applyUpdateTimePreference(VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs.builder()
            .applyUpdatePreferredEndTime("string")
            .applyUpdatePreferredStartTime("string")
            .build())
        .freezePeriod(VmClusterCloudAutomationUpdateDetailsFreezePeriodArgs.builder()
            .freezePeriodEndTime("string")
            .freezePeriodStartTime("string")
            .build())
        .isEarlyAdoptionEnabled(false)
        .isFreezePeriodEnabled(false)
        .build())
    .freeformTags(Map.of("string", "string"))
    .dataStorageSizeInTbs(0.0)
    .isLocalBackupEnabled(false)
    .definedTags(Map.of("string", "string"))
    .licenseModel("string")
    .memorySizeInGbs(0)
    .ocpuCount(0.0)
    .dataStorageSizeInGb(0.0)
    .systemVersion("string")
    .timeZone("string")
    .dataCollectionOptions(VmClusterDataCollectionOptionsArgs.builder()
        .isDiagnosticsEventsEnabled(false)
        .isHealthMonitoringEnabled(false)
        .isIncidentLogsEnabled(false)
        .build())
    .vmClusterType("string")
    .build());
vm_cluster_resource = oci.database.VmCluster("vmClusterResource",
    display_name="string",
    compartment_id="string",
    cpu_core_count=0,
    vm_cluster_network_id="string",
    ssh_public_keys=["string"],
    gi_version="string",
    exadata_infrastructure_id="string",
    file_system_configuration_details=[{
        "file_system_size_gb": 0,
        "mount_point": "string",
    }],
    is_sparse_diskgroup_enabled=False,
    db_servers=["string"],
    db_node_storage_size_in_gbs=0,
    exascale_db_storage_vault_id="string",
    cloud_automation_update_details={
        "apply_update_time_preference": {
            "apply_update_preferred_end_time": "string",
            "apply_update_preferred_start_time": "string",
        },
        "freeze_period": {
            "freeze_period_end_time": "string",
            "freeze_period_start_time": "string",
        },
        "is_early_adoption_enabled": False,
        "is_freeze_period_enabled": False,
    },
    freeform_tags={
        "string": "string",
    },
    data_storage_size_in_tbs=0,
    is_local_backup_enabled=False,
    defined_tags={
        "string": "string",
    },
    license_model="string",
    memory_size_in_gbs=0,
    ocpu_count=0,
    data_storage_size_in_gb=0,
    system_version="string",
    time_zone="string",
    data_collection_options={
        "is_diagnostics_events_enabled": False,
        "is_health_monitoring_enabled": False,
        "is_incident_logs_enabled": False,
    },
    vm_cluster_type="string")
const vmClusterResource = new oci.database.VmCluster("vmClusterResource", {
    displayName: "string",
    compartmentId: "string",
    cpuCoreCount: 0,
    vmClusterNetworkId: "string",
    sshPublicKeys: ["string"],
    giVersion: "string",
    exadataInfrastructureId: "string",
    fileSystemConfigurationDetails: [{
        fileSystemSizeGb: 0,
        mountPoint: "string",
    }],
    isSparseDiskgroupEnabled: false,
    dbServers: ["string"],
    dbNodeStorageSizeInGbs: 0,
    exascaleDbStorageVaultId: "string",
    cloudAutomationUpdateDetails: {
        applyUpdateTimePreference: {
            applyUpdatePreferredEndTime: "string",
            applyUpdatePreferredStartTime: "string",
        },
        freezePeriod: {
            freezePeriodEndTime: "string",
            freezePeriodStartTime: "string",
        },
        isEarlyAdoptionEnabled: false,
        isFreezePeriodEnabled: false,
    },
    freeformTags: {
        string: "string",
    },
    dataStorageSizeInTbs: 0,
    isLocalBackupEnabled: false,
    definedTags: {
        string: "string",
    },
    licenseModel: "string",
    memorySizeInGbs: 0,
    ocpuCount: 0,
    dataStorageSizeInGb: 0,
    systemVersion: "string",
    timeZone: "string",
    dataCollectionOptions: {
        isDiagnosticsEventsEnabled: false,
        isHealthMonitoringEnabled: false,
        isIncidentLogsEnabled: false,
    },
    vmClusterType: "string",
});
type: oci:Database:VmCluster
properties:
    cloudAutomationUpdateDetails:
        applyUpdateTimePreference:
            applyUpdatePreferredEndTime: string
            applyUpdatePreferredStartTime: string
        freezePeriod:
            freezePeriodEndTime: string
            freezePeriodStartTime: string
        isEarlyAdoptionEnabled: false
        isFreezePeriodEnabled: false
    compartmentId: string
    cpuCoreCount: 0
    dataCollectionOptions:
        isDiagnosticsEventsEnabled: false
        isHealthMonitoringEnabled: false
        isIncidentLogsEnabled: false
    dataStorageSizeInGb: 0
    dataStorageSizeInTbs: 0
    dbNodeStorageSizeInGbs: 0
    dbServers:
        - string
    definedTags:
        string: string
    displayName: string
    exadataInfrastructureId: string
    exascaleDbStorageVaultId: string
    fileSystemConfigurationDetails:
        - fileSystemSizeGb: 0
          mountPoint: string
    freeformTags:
        string: string
    giVersion: string
    isLocalBackupEnabled: false
    isSparseDiskgroupEnabled: false
    licenseModel: string
    memorySizeInGbs: 0
    ocpuCount: 0
    sshPublicKeys:
        - string
    systemVersion: string
    timeZone: string
    vmClusterNetworkId: string
    vmClusterType: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The VmCluster resource accepts the following input properties:
- CompartmentId string
- (Updatable) The OCID of the compartment.
- CpuCore intCount 
- DisplayName string
- The user-friendly name for the VM cluster. The name does not need to be unique.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- GiVersion string
- The Oracle Grid Infrastructure software version for the VM cluster.
- SshPublic List<string>Keys 
- (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
- VmCluster stringNetwork Id 
- The OCID of the VM cluster network.
- CloudAutomation VmUpdate Details Cluster Cloud Automation Update Details 
- (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- DataCollection VmOptions Cluster Data Collection Options 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- DataStorage doubleSize In Gb 
- (Updatable) The data disk group size to be allocated in GBs.
- DataStorage doubleSize In Tbs 
- (Updatable) The data disk group size to be allocated in TBs.
- DbNode intStorage Size In Gbs 
- (Updatable) The local node storage to be allocated in GBs.
- DbServers List<string>
- The list of Db server.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- ExascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- FileSystem List<VmConfiguration Details Cluster File System Configuration Detail> 
- (Updatable) Details of the file system configuration of the VM cluster.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- IsLocal boolBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- IsSparse boolDiskgroup Enabled 
- 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.
- MemorySize intIn Gbs 
- (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.
- VmCluster stringType 
- The vmcluster type for the VM cluster/Cloud VM cluster. - ** 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 
- CompartmentId string
- (Updatable) The OCID of the compartment.
- CpuCore intCount 
- DisplayName string
- The user-friendly name for the VM cluster. The name does not need to be unique.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- GiVersion string
- The Oracle Grid Infrastructure software version for the VM cluster.
- SshPublic []stringKeys 
- (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
- VmCluster stringNetwork Id 
- The OCID of the VM cluster network.
- CloudAutomation VmUpdate Details Cluster Cloud Automation Update Details Args 
- (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- DataCollection VmOptions Cluster Data Collection Options Args 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- DataStorage float64Size In Gb 
- (Updatable) The data disk group size to be allocated in GBs.
- DataStorage float64Size In Tbs 
- (Updatable) The data disk group size to be allocated in TBs.
- DbNode intStorage Size In Gbs 
- (Updatable) The local node storage to be allocated in GBs.
- DbServers []string
- The list of Db server.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- ExascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- FileSystem []VmConfiguration Details Cluster File System Configuration Detail Args 
- (Updatable) Details of the file system configuration of the VM cluster.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- IsLocal boolBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- IsSparse boolDiskgroup Enabled 
- 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.
- MemorySize intIn Gbs 
- (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.
- VmCluster stringType 
- The vmcluster type for the VM cluster/Cloud VM cluster. - ** 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 
- compartmentId String
- (Updatable) The OCID of the compartment.
- cpuCore IntegerCount 
- displayName String
- The user-friendly name for the VM cluster. The name does not need to be unique.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- giVersion String
- The Oracle Grid Infrastructure software version for the VM cluster.
- sshPublic List<String>Keys 
- (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
- vmCluster StringNetwork Id 
- The OCID of the VM cluster network.
- cloudAutomation VmUpdate Details Cluster Cloud Automation Update Details 
- (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- dataCollection VmOptions Cluster Data Collection Options 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage DoubleSize In Gb 
- (Updatable) The data disk group size to be allocated in GBs.
- dataStorage DoubleSize In Tbs 
- (Updatable) The data disk group size to be allocated in TBs.
- dbNode IntegerStorage Size In Gbs 
- (Updatable) The local node storage to be allocated in GBs.
- dbServers List<String>
- The list of Db server.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- exascaleDb StringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- fileSystem List<VmConfiguration Details Cluster File System Configuration Detail> 
- (Updatable) Details of the file system configuration of the VM cluster.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- isLocal BooleanBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- isSparse BooleanDiskgroup Enabled 
- 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.
- memorySize IntegerIn Gbs 
- (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.
- vmCluster StringType 
- The vmcluster type for the VM cluster/Cloud VM cluster. - ** 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 
- compartmentId string
- (Updatable) The OCID of the compartment.
- cpuCore numberCount 
- displayName string
- The user-friendly name for the VM cluster. The name does not need to be unique.
- exadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- giVersion string
- The Oracle Grid Infrastructure software version for the VM cluster.
- sshPublic string[]Keys 
- (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
- vmCluster stringNetwork Id 
- The OCID of the VM cluster network.
- cloudAutomation VmUpdate Details Cluster Cloud Automation Update Details 
- (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- dataCollection VmOptions Cluster Data Collection Options 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage numberSize In Gb 
- (Updatable) The data disk group size to be allocated in GBs.
- dataStorage numberSize In Tbs 
- (Updatable) The data disk group size to be allocated in TBs.
- dbNode numberStorage Size In Gbs 
- (Updatable) The local node storage to be allocated in GBs.
- dbServers string[]
- The list of Db server.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- exascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- fileSystem VmConfiguration Details Cluster File System Configuration Detail[] 
- (Updatable) Details of the file system configuration of the VM cluster.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- isLocal booleanBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- isSparse booleanDiskgroup Enabled 
- 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.
- memorySize numberIn Gbs 
- (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.
- vmCluster stringType 
- The vmcluster type for the VM cluster/Cloud VM cluster. - ** 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 
- compartment_id str
- (Updatable) The OCID of the compartment.
- cpu_core_ intcount 
- display_name str
- The user-friendly name for the VM cluster. The name does not need to be unique.
- exadata_infrastructure_ strid 
- The OCID of the Exadata infrastructure.
- gi_version str
- The Oracle Grid Infrastructure software version for the VM cluster.
- ssh_public_ Sequence[str]keys 
- (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
- vm_cluster_ strnetwork_ id 
- The OCID of the VM cluster network.
- cloud_automation_ Vmupdate_ details Cluster Cloud Automation Update Details Args 
- (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- data_collection_ Vmoptions Cluster Data Collection Options Args 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data_storage_ floatsize_ in_ gb 
- (Updatable) The data disk group size to be allocated in GBs.
- data_storage_ floatsize_ in_ tbs 
- (Updatable) The data disk group size to be allocated in TBs.
- db_node_ intstorage_ size_ in_ gbs 
- (Updatable) The local node storage to be allocated in GBs.
- db_servers Sequence[str]
- The list of Db server.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- exascale_db_ strstorage_ vault_ id 
- The OCID of the Exadata Database Storage Vault.
- file_system_ Sequence[Vmconfiguration_ details Cluster File System Configuration Detail Args] 
- (Updatable) Details of the file system configuration of the VM cluster.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- is_local_ boolbackup_ enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- is_sparse_ booldiskgroup_ enabled 
- 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_ intin_ gbs 
- (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.
- vm_cluster_ strtype 
- The vmcluster type for the VM cluster/Cloud VM cluster. - ** 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 
- compartmentId String
- (Updatable) The OCID of the compartment.
- cpuCore NumberCount 
- displayName String
- The user-friendly name for the VM cluster. The name does not need to be unique.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- giVersion String
- The Oracle Grid Infrastructure software version for the VM cluster.
- sshPublic List<String>Keys 
- (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
- vmCluster StringNetwork Id 
- The OCID of the VM cluster network.
- cloudAutomation Property MapUpdate Details 
- (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- dataCollection Property MapOptions 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage NumberSize In Gb 
- (Updatable) The data disk group size to be allocated in GBs.
- dataStorage NumberSize In Tbs 
- (Updatable) The data disk group size to be allocated in TBs.
- dbNode NumberStorage Size In Gbs 
- (Updatable) The local node storage to be allocated in GBs.
- dbServers List<String>
- The list of Db server.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- exascaleDb StringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- fileSystem List<Property Map>Configuration Details 
- (Updatable) Details of the file system configuration of the VM cluster.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- isLocal BooleanBackup Enabled 
- If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- isSparse BooleanDiskgroup Enabled 
- 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.
- memorySize NumberIn Gbs 
- (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.
- vmCluster StringType 
- The vmcluster type for the VM cluster/Cloud VM cluster. - ** 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 VmCluster resource produces the following output properties:
- AvailabilityDomain string
- The name of the availability domain that the VM cluster is located in.
- ComputeModel string
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- CpusEnabled int
- The number of enabled CPU cores.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastPatch stringHistory Entry Id 
- 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.
- StorageManagement stringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- 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.
- ComputeModel string
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- CpusEnabled int
- The number of enabled CPU cores.
- Id string
- The provider-assigned unique ID for this managed resource.
- LastPatch stringHistory Entry Id 
- 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.
- StorageManagement stringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- 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.
- computeModel String
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpusEnabled Integer
- The number of enabled CPU cores.
- id String
- The provider-assigned unique ID for this managed resource.
- lastPatch StringHistory Entry Id 
- 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.
- storageManagement StringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- 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.
- computeModel string
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpusEnabled number
- The number of enabled CPU cores.
- id string
- The provider-assigned unique ID for this managed resource.
- lastPatch stringHistory Entry Id 
- 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.
- storageManagement stringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- 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.
- compute_model str
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpus_enabled int
- The number of enabled CPU cores.
- id str
- The provider-assigned unique ID for this managed resource.
- last_patch_ strhistory_ entry_ id 
- 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.
- storage_management_ strtype 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- 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.
- computeModel String
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpusEnabled Number
- The number of enabled CPU cores.
- id String
- The provider-assigned unique ID for this managed resource.
- lastPatch StringHistory Entry Id 
- 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.
- storageManagement StringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- 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,
        cloud_automation_update_details: Optional[VmClusterCloudAutomationUpdateDetailsArgs] = None,
        compartment_id: Optional[str] = None,
        compute_model: Optional[str] = None,
        cpu_core_count: Optional[int] = None,
        cpus_enabled: Optional[int] = None,
        data_collection_options: Optional[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, str]] = None,
        display_name: Optional[str] = None,
        exadata_infrastructure_id: Optional[str] = None,
        exascale_db_storage_vault_id: Optional[str] = None,
        file_system_configuration_details: Optional[Sequence[VmClusterFileSystemConfigurationDetailArgs]] = None,
        freeform_tags: Optional[Mapping[str, str]] = 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,
        storage_management_type: 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,
        vm_cluster_type: Optional[str] = None) -> VmClusterfunc 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)resources:  _:    type: oci:Database:VmCluster    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- AvailabilityDomain string
- The name of the availability domain that the VM cluster is located in.
- CloudAutomation VmUpdate Details Cluster Cloud Automation Update Details 
- (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- CompartmentId string
- (Updatable) The OCID of the compartment.
- ComputeModel string
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- CpuCore intCount 
- CpusEnabled int
- The number of enabled CPU cores.
- DataCollection VmOptions Cluster Data Collection Options 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- DataStorage doubleSize In Gb 
- (Updatable) The data disk group size to be allocated in GBs.
- DataStorage doubleSize In Tbs 
- (Updatable) The data disk group size to be allocated in TBs.
- DbNode intStorage Size In Gbs 
- (Updatable) The local node storage to be allocated in GBs.
- DbServers List<string>
- The list of Db server.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DisplayName string
- The user-friendly name for the VM cluster. The name does not need to be unique.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- ExascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- FileSystem List<VmConfiguration Details Cluster File System Configuration Detail> 
- (Updatable) Details of the file system configuration of the VM cluster.
- Dictionary<string, string>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- GiVersion string
- The Oracle Grid Infrastructure software version for the VM cluster.
- IsLocal boolBackup Enabled 
- 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.
- IsSparse boolDiskgroup Enabled 
- If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
- LastPatch stringHistory Entry Id 
- 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.
- MemorySize intIn Gbs 
- (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.
- SshPublic List<string>Keys 
- (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.
- StorageManagement stringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- 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.
- VmCluster stringNetwork Id 
- The OCID of the VM cluster network.
- VmCluster stringType 
- The vmcluster type for the VM cluster/Cloud VM cluster. - ** 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.
- CloudAutomation VmUpdate Details Cluster Cloud Automation Update Details Args 
- (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- CompartmentId string
- (Updatable) The OCID of the compartment.
- ComputeModel string
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- CpuCore intCount 
- CpusEnabled int
- The number of enabled CPU cores.
- DataCollection VmOptions Cluster Data Collection Options Args 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- DataStorage float64Size In Gb 
- (Updatable) The data disk group size to be allocated in GBs.
- DataStorage float64Size In Tbs 
- (Updatable) The data disk group size to be allocated in TBs.
- DbNode intStorage Size In Gbs 
- (Updatable) The local node storage to be allocated in GBs.
- DbServers []string
- The list of Db server.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- DisplayName string
- The user-friendly name for the VM cluster. The name does not need to be unique.
- ExadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- ExascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- FileSystem []VmConfiguration Details Cluster File System Configuration Detail Args 
- (Updatable) Details of the file system configuration of the VM cluster.
- map[string]string
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- GiVersion string
- The Oracle Grid Infrastructure software version for the VM cluster.
- IsLocal boolBackup Enabled 
- 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.
- IsSparse boolDiskgroup Enabled 
- If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
- LastPatch stringHistory Entry Id 
- 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.
- MemorySize intIn Gbs 
- (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.
- SshPublic []stringKeys 
- (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.
- StorageManagement stringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- 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.
- VmCluster stringNetwork Id 
- The OCID of the VM cluster network.
- VmCluster stringType 
- The vmcluster type for the VM cluster/Cloud VM cluster. - ** 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.
- cloudAutomation VmUpdate Details Cluster Cloud Automation Update Details 
- (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- compartmentId String
- (Updatable) The OCID of the compartment.
- computeModel String
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpuCore IntegerCount 
- cpusEnabled Integer
- The number of enabled CPU cores.
- dataCollection VmOptions Cluster Data Collection Options 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage DoubleSize In Gb 
- (Updatable) The data disk group size to be allocated in GBs.
- dataStorage DoubleSize In Tbs 
- (Updatable) The data disk group size to be allocated in TBs.
- dbNode IntegerStorage Size In Gbs 
- (Updatable) The local node storage to be allocated in GBs.
- dbServers List<String>
- The list of Db server.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName String
- The user-friendly name for the VM cluster. The name does not need to be unique.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- exascaleDb StringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- fileSystem List<VmConfiguration Details Cluster File System Configuration Detail> 
- (Updatable) Details of the file system configuration of the VM cluster.
- Map<String,String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- giVersion String
- The Oracle Grid Infrastructure software version for the VM cluster.
- isLocal BooleanBackup Enabled 
- 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.
- isSparse BooleanDiskgroup Enabled 
- If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
- lastPatch StringHistory Entry Id 
- 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.
- memorySize IntegerIn Gbs 
- (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.
- sshPublic List<String>Keys 
- (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.
- storageManagement StringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- 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.
- vmCluster StringNetwork Id 
- The OCID of the VM cluster network.
- vmCluster StringType 
- The vmcluster type for the VM cluster/Cloud VM cluster. - ** 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.
- cloudAutomation VmUpdate Details Cluster Cloud Automation Update Details 
- (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- compartmentId string
- (Updatable) The OCID of the compartment.
- computeModel string
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpuCore numberCount 
- cpusEnabled number
- The number of enabled CPU cores.
- dataCollection VmOptions Cluster Data Collection Options 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage numberSize In Gb 
- (Updatable) The data disk group size to be allocated in GBs.
- dataStorage numberSize In Tbs 
- (Updatable) The data disk group size to be allocated in TBs.
- dbNode numberStorage Size In Gbs 
- (Updatable) The local node storage to be allocated in GBs.
- dbServers string[]
- The list of Db server.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName string
- The user-friendly name for the VM cluster. The name does not need to be unique.
- exadataInfrastructure stringId 
- The OCID of the Exadata infrastructure.
- exascaleDb stringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- fileSystem VmConfiguration Details Cluster File System Configuration Detail[] 
- (Updatable) Details of the file system configuration of the VM cluster.
- {[key: string]: string}
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- giVersion string
- The Oracle Grid Infrastructure software version for the VM cluster.
- isLocal booleanBackup Enabled 
- 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.
- isSparse booleanDiskgroup Enabled 
- If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
- lastPatch stringHistory Entry Id 
- 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.
- memorySize numberIn Gbs 
- (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.
- sshPublic string[]Keys 
- (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.
- storageManagement stringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- 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.
- vmCluster stringNetwork Id 
- The OCID of the VM cluster network.
- vmCluster stringType 
- The vmcluster type for the VM cluster/Cloud VM cluster. - ** 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.
- cloud_automation_ Vmupdate_ details Cluster Cloud Automation Update Details Args 
- (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- compartment_id str
- (Updatable) The OCID of the compartment.
- compute_model str
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpu_core_ intcount 
- cpus_enabled int
- The number of enabled CPU cores.
- data_collection_ Vmoptions Cluster Data Collection Options Args 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data_storage_ floatsize_ in_ gb 
- (Updatable) The data disk group size to be allocated in GBs.
- data_storage_ floatsize_ in_ tbs 
- (Updatable) The data disk group size to be allocated in TBs.
- db_node_ intstorage_ size_ in_ gbs 
- (Updatable) The local node storage to be allocated in GBs.
- db_servers Sequence[str]
- The list of Db server.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display_name str
- The user-friendly name for the VM cluster. The name does not need to be unique.
- exadata_infrastructure_ strid 
- The OCID of the Exadata infrastructure.
- exascale_db_ strstorage_ vault_ id 
- The OCID of the Exadata Database Storage Vault.
- file_system_ Sequence[Vmconfiguration_ details Cluster File System Configuration Detail Args] 
- (Updatable) Details of the file system configuration of the VM cluster.
- Mapping[str, str]
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- gi_version str
- The Oracle Grid Infrastructure software version for the VM cluster.
- is_local_ boolbackup_ enabled 
- 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_ booldiskgroup_ enabled 
- If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
- last_patch_ strhistory_ entry_ id 
- 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_ intin_ gbs 
- (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_ Sequence[str]keys 
- (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.
- storage_management_ strtype 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- 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_ strnetwork_ id 
- The OCID of the VM cluster network.
- vm_cluster_ strtype 
- The vmcluster type for the VM cluster/Cloud VM cluster. - ** 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.
- cloudAutomation Property MapUpdate Details 
- (Updatable) Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
- compartmentId String
- (Updatable) The OCID of the compartment.
- computeModel String
- The compute model of the Autonomous Database. This is required if using the computeCountparameter. If usingcpuCoreCountthen it is an error to specifycomputeModelto a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
- cpuCore NumberCount 
- cpusEnabled Number
- The number of enabled CPU cores.
- dataCollection Property MapOptions 
- (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- dataStorage NumberSize In Gb 
- (Updatable) The data disk group size to be allocated in GBs.
- dataStorage NumberSize In Tbs 
- (Updatable) The data disk group size to be allocated in TBs.
- dbNode NumberStorage Size In Gbs 
- (Updatable) The local node storage to be allocated in GBs.
- dbServers List<String>
- The list of Db server.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- displayName String
- The user-friendly name for the VM cluster. The name does not need to be unique.
- exadataInfrastructure StringId 
- The OCID of the Exadata infrastructure.
- exascaleDb StringStorage Vault Id 
- The OCID of the Exadata Database Storage Vault.
- fileSystem List<Property Map>Configuration Details 
- (Updatable) Details of the file system configuration of the VM cluster.
- Map<String>
- (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
- giVersion String
- The Oracle Grid Infrastructure software version for the VM cluster.
- isLocal BooleanBackup Enabled 
- 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.
- isSparse BooleanDiskgroup Enabled 
- If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
- lastPatch StringHistory Entry Id 
- 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.
- memorySize NumberIn Gbs 
- (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.
- sshPublic List<String>Keys 
- (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.
- storageManagement StringType 
- Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
- 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.
- vmCluster StringNetwork Id 
- The OCID of the VM cluster network.
- vmCluster StringType 
- The vmcluster type for the VM cluster/Cloud VM cluster. - ** 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
VmClusterCloudAutomationUpdateDetails, VmClusterCloudAutomationUpdateDetailsArgs            
- ApplyUpdate VmTime Preference Cluster Cloud Automation Update Details Apply Update Time Preference 
- (Updatable) Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
- FreezePeriod VmCluster Cloud Automation Update Details Freeze Period 
- (Updatable) Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
- IsEarly boolAdoption Enabled 
- (Updatable) Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
- IsFreeze boolPeriod Enabled 
- (Updatable) Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
- ApplyUpdate VmTime Preference Cluster Cloud Automation Update Details Apply Update Time Preference 
- (Updatable) Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
- FreezePeriod VmCluster Cloud Automation Update Details Freeze Period 
- (Updatable) Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
- IsEarly boolAdoption Enabled 
- (Updatable) Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
- IsFreeze boolPeriod Enabled 
- (Updatable) Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
- applyUpdate VmTime Preference Cluster Cloud Automation Update Details Apply Update Time Preference 
- (Updatable) Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
- freezePeriod VmCluster Cloud Automation Update Details Freeze Period 
- (Updatable) Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
- isEarly BooleanAdoption Enabled 
- (Updatable) Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
- isFreeze BooleanPeriod Enabled 
- (Updatable) Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
- applyUpdate VmTime Preference Cluster Cloud Automation Update Details Apply Update Time Preference 
- (Updatable) Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
- freezePeriod VmCluster Cloud Automation Update Details Freeze Period 
- (Updatable) Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
- isEarly booleanAdoption Enabled 
- (Updatable) Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
- isFreeze booleanPeriod Enabled 
- (Updatable) Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
- apply_update_ Vmtime_ preference Cluster Cloud Automation Update Details Apply Update Time Preference 
- (Updatable) Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
- freeze_period VmCluster Cloud Automation Update Details Freeze Period 
- (Updatable) Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
- is_early_ booladoption_ enabled 
- (Updatable) Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
- is_freeze_ boolperiod_ enabled 
- (Updatable) Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
- applyUpdate Property MapTime Preference 
- (Updatable) Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
- freezePeriod Property Map
- (Updatable) Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
- isEarly BooleanAdoption Enabled 
- (Updatable) Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
- isFreeze BooleanPeriod Enabled 
- (Updatable) Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreference, VmClusterCloudAutomationUpdateDetailsApplyUpdateTimePreferenceArgs                    
- ApplyUpdate stringPreferred End Time 
- (Updatable) End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
- ApplyUpdate stringPreferred Start Time 
- (Updatable) Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
- ApplyUpdate stringPreferred End Time 
- (Updatable) End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
- ApplyUpdate stringPreferred Start Time 
- (Updatable) Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
- applyUpdate StringPreferred End Time 
- (Updatable) End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
- applyUpdate StringPreferred Start Time 
- (Updatable) Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
- applyUpdate stringPreferred End Time 
- (Updatable) End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
- applyUpdate stringPreferred Start Time 
- (Updatable) Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
- apply_update_ strpreferred_ end_ time 
- (Updatable) End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
- apply_update_ strpreferred_ start_ time 
- (Updatable) Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
- applyUpdate StringPreferred End Time 
- (Updatable) End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
- applyUpdate StringPreferred Start Time 
- (Updatable) Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
VmClusterCloudAutomationUpdateDetailsFreezePeriod, VmClusterCloudAutomationUpdateDetailsFreezePeriodArgs                
- FreezePeriod stringEnd Time 
- (Updatable) End time of the freeze period cycle.
- FreezePeriod stringStart Time 
- (Updatable) Start time of the freeze period cycle.
- FreezePeriod stringEnd Time 
- (Updatable) End time of the freeze period cycle.
- FreezePeriod stringStart Time 
- (Updatable) Start time of the freeze period cycle.
- freezePeriod StringEnd Time 
- (Updatable) End time of the freeze period cycle.
- freezePeriod StringStart Time 
- (Updatable) Start time of the freeze period cycle.
- freezePeriod stringEnd Time 
- (Updatable) End time of the freeze period cycle.
- freezePeriod stringStart Time 
- (Updatable) Start time of the freeze period cycle.
- freeze_period_ strend_ time 
- (Updatable) End time of the freeze period cycle.
- freeze_period_ strstart_ time 
- (Updatable) Start time of the freeze period cycle.
- freezePeriod StringEnd Time 
- (Updatable) End time of the freeze period cycle.
- freezePeriod StringStart Time 
- (Updatable) Start time of the freeze period cycle.
VmClusterDataCollectionOptions, VmClusterDataCollectionOptionsArgs          
- IsDiagnostics boolEvents Enabled 
- (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 UpdateVmClusterorupdateCloudVmClusterAPI.
- IsHealth boolMonitoring Enabled 
- (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,UpdateCloudVmClusterorupdateDbsystemAPI.
- IsIncident boolLogs Enabled 
- (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,updateCloudVmClusterorupdateDbsystemAPI.
- IsDiagnostics boolEvents Enabled 
- (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 UpdateVmClusterorupdateCloudVmClusterAPI.
- IsHealth boolMonitoring Enabled 
- (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,UpdateCloudVmClusterorupdateDbsystemAPI.
- IsIncident boolLogs Enabled 
- (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,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics BooleanEvents Enabled 
- (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 UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth BooleanMonitoring Enabled 
- (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,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident BooleanLogs Enabled 
- (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,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics booleanEvents Enabled 
- (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 UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth booleanMonitoring Enabled 
- (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,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident booleanLogs Enabled 
- (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,updateCloudVmClusterorupdateDbsystemAPI.
- is_diagnostics_ boolevents_ enabled 
- (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 UpdateVmClusterorupdateCloudVmClusterAPI.
- is_health_ boolmonitoring_ enabled 
- (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,UpdateCloudVmClusterorupdateDbsystemAPI.
- is_incident_ boollogs_ enabled 
- (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,updateCloudVmClusterorupdateDbsystemAPI.
- isDiagnostics BooleanEvents Enabled 
- (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 UpdateVmClusterorupdateCloudVmClusterAPI.
- isHealth BooleanMonitoring Enabled 
- (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,UpdateCloudVmClusterorupdateDbsystemAPI.
- isIncident BooleanLogs Enabled 
- (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,updateCloudVmClusterorupdateDbsystemAPI.
VmClusterFileSystemConfigurationDetail, VmClusterFileSystemConfigurationDetailArgs            
- FileSystem intSize Gb 
- (Updatable) The file system size to be allocated in GBs.
- MountPoint string
- (Updatable) The mount point of file system.
- FileSystem intSize Gb 
- (Updatable) The file system size to be allocated in GBs.
- MountPoint string
- (Updatable) The mount point of file system.
- fileSystem IntegerSize Gb 
- (Updatable) The file system size to be allocated in GBs.
- mountPoint String
- (Updatable) The mount point of file system.
- fileSystem numberSize Gb 
- (Updatable) The file system size to be allocated in GBs.
- mountPoint string
- (Updatable) The mount point of file system.
- file_system_ intsize_ gb 
- (Updatable) The file system size to be allocated in GBs.
- mount_point str
- (Updatable) The mount point of file system.
- fileSystem NumberSize Gb 
- (Updatable) The file system size to be allocated in GBs.
- mountPoint String
- (Updatable) The mount point of file system.
Import
VmClusters can be imported using the id, e.g.
$ pulumi import oci:Database/vmCluster:VmCluster test_vm_cluster "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.