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,
fileSystemConfigurationDetails: [{
fileSystemSizeGb: vmClusterFileSystemConfigurationDetailsFileSystemSizeGb,
mountPoint: vmClusterFileSystemConfigurationDetailsMountPoint,
}],
freeformTags: {
Department: "Finance",
},
isLocalBackupEnabled: vmClusterIsLocalBackupEnabled,
isSparseDiskgroupEnabled: vmClusterIsSparseDiskgroupEnabled,
licenseModel: vmClusterLicenseModel,
memorySizeInGbs: vmClusterMemorySizeInGbs,
systemVersion: vmClusterSystemVersion,
timeZone: vmClusterTimeZone,
});
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,
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)
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),
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),
})
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,
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,
});
});
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)
.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)
.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}
fileSystemConfigurationDetails:
- fileSystemSizeGb: ${vmClusterFileSystemConfigurationDetailsFileSystemSizeGb}
mountPoint: ${vmClusterFileSystemConfigurationDetailsMountPoint}
freeformTags:
Department: Finance
isLocalBackupEnabled: ${vmClusterIsLocalBackupEnabled}
isSparseDiskgroupEnabled: ${vmClusterIsSparseDiskgroupEnabled}
licenseModel: ${vmClusterLicenseModel}
memorySizeInGbs: ${vmClusterMemorySizeInGbs}
systemVersion: ${vmClusterSystemVersion}
timeZone: ${vmClusterTimeZone}
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,
data_storage_size_in_tbs: Optional[float] = None,
is_local_backup_enabled: Optional[bool] = None,
db_servers: Optional[Sequence[str]] = None,
db_node_storage_size_in_gbs: Optional[int] = None,
file_system_configuration_details: Optional[Sequence[_database.VmClusterFileSystemConfigurationDetailArgs]] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
cloud_automation_update_details: Optional[_database.VmClusterCloudAutomationUpdateDetailsArgs] = None,
defined_tags: Optional[Mapping[str, str]] = None,
is_sparse_diskgroup_enabled: Optional[bool] = None,
license_model: Optional[str] = None,
memory_size_in_gbs: Optional[int] = None,
ocpu_count: Optional[float] = None,
data_storage_size_in_gb: Optional[float] = None,
system_version: Optional[str] = None,
time_zone: Optional[str] = None,
data_collection_options: Optional[_database.VmClusterDataCollectionOptionsArgs] = 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",
DataStorageSizeInTbs = 0,
IsLocalBackupEnabled = false,
DbServers = new[]
{
"string",
},
DbNodeStorageSizeInGbs = 0,
FileSystemConfigurationDetails = new[]
{
new Oci.Database.Inputs.VmClusterFileSystemConfigurationDetailArgs
{
FileSystemSizeGb = 0,
MountPoint = "string",
},
},
FreeformTags =
{
{ "string", "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,
},
DefinedTags =
{
{ "string", "string" },
},
IsSparseDiskgroupEnabled = false,
LicenseModel = "string",
MemorySizeInGbs = 0,
OcpuCount = 0,
DataStorageSizeInGb = 0,
SystemVersion = "string",
TimeZone = "string",
DataCollectionOptions = new Oci.Database.Inputs.VmClusterDataCollectionOptionsArgs
{
IsDiagnosticsEventsEnabled = false,
IsHealthMonitoringEnabled = false,
IsIncidentLogsEnabled = false,
},
});
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"),
DataStorageSizeInTbs: pulumi.Float64(0),
IsLocalBackupEnabled: pulumi.Bool(false),
DbServers: pulumi.StringArray{
pulumi.String("string"),
},
DbNodeStorageSizeInGbs: pulumi.Int(0),
FileSystemConfigurationDetails: database.VmClusterFileSystemConfigurationDetailArray{
&database.VmClusterFileSystemConfigurationDetailArgs{
FileSystemSizeGb: pulumi.Int(0),
MountPoint: pulumi.String("string"),
},
},
FreeformTags: pulumi.StringMap{
"string": 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),
},
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
IsSparseDiskgroupEnabled: pulumi.Bool(false),
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),
},
})
var vmClusterResource = new VmCluster("vmClusterResource", VmClusterArgs.builder()
.displayName("string")
.compartmentId("string")
.cpuCoreCount(0)
.vmClusterNetworkId("string")
.sshPublicKeys("string")
.giVersion("string")
.exadataInfrastructureId("string")
.dataStorageSizeInTbs(0)
.isLocalBackupEnabled(false)
.dbServers("string")
.dbNodeStorageSizeInGbs(0)
.fileSystemConfigurationDetails(VmClusterFileSystemConfigurationDetailArgs.builder()
.fileSystemSizeGb(0)
.mountPoint("string")
.build())
.freeformTags(Map.of("string", "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())
.definedTags(Map.of("string", "string"))
.isSparseDiskgroupEnabled(false)
.licenseModel("string")
.memorySizeInGbs(0)
.ocpuCount(0)
.dataStorageSizeInGb(0)
.systemVersion("string")
.timeZone("string")
.dataCollectionOptions(VmClusterDataCollectionOptionsArgs.builder()
.isDiagnosticsEventsEnabled(false)
.isHealthMonitoringEnabled(false)
.isIncidentLogsEnabled(false)
.build())
.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",
data_storage_size_in_tbs=0,
is_local_backup_enabled=False,
db_servers=["string"],
db_node_storage_size_in_gbs=0,
file_system_configuration_details=[{
"file_system_size_gb": 0,
"mount_point": "string",
}],
freeform_tags={
"string": "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,
},
defined_tags={
"string": "string",
},
is_sparse_diskgroup_enabled=False,
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,
})
const vmClusterResource = new oci.database.VmCluster("vmClusterResource", {
displayName: "string",
compartmentId: "string",
cpuCoreCount: 0,
vmClusterNetworkId: "string",
sshPublicKeys: ["string"],
giVersion: "string",
exadataInfrastructureId: "string",
dataStorageSizeInTbs: 0,
isLocalBackupEnabled: false,
dbServers: ["string"],
dbNodeStorageSizeInGbs: 0,
fileSystemConfigurationDetails: [{
fileSystemSizeGb: 0,
mountPoint: "string",
}],
freeformTags: {
string: "string",
},
cloudAutomationUpdateDetails: {
applyUpdateTimePreference: {
applyUpdatePreferredEndTime: "string",
applyUpdatePreferredStartTime: "string",
},
freezePeriod: {
freezePeriodEndTime: "string",
freezePeriodStartTime: "string",
},
isEarlyAdoptionEnabled: false,
isFreezePeriodEnabled: false,
},
definedTags: {
string: "string",
},
isSparseDiskgroupEnabled: false,
licenseModel: "string",
memorySizeInGbs: 0,
ocpuCount: 0,
dataStorageSizeInGb: 0,
systemVersion: "string",
timeZone: "string",
dataCollectionOptions: {
isDiagnosticsEventsEnabled: false,
isHealthMonitoringEnabled: false,
isIncidentLogsEnabled: false,
},
});
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
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
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:
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Cpu
Core intCount - Display
Name string - The user-friendly name for the VM cluster. The name does not need to be unique.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- Gi
Version string - The Oracle Grid Infrastructure software version for the VM cluster.
- Ssh
Public List<string>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
- Vm
Cluster stringNetwork Id The OCID of the VM cluster network.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Cloud
Automation 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.
- Data
Collection VmOptions Cluster Data Collection Options - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Data
Storage doubleSize In Gb - (Updatable) The data disk group size to be allocated in GBs.
- Data
Storage doubleSize 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 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.
- File
System 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"}
- 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 string - (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 double - System
Version string - Operating system version of the image.
- Time
Zone string - The time zone to use for the VM cluster. For details, see DB System Time Zones.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Cpu
Core intCount - Display
Name string - The user-friendly name for the VM cluster. The name does not need to be unique.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- Gi
Version string - The Oracle Grid Infrastructure software version for the VM cluster.
- Ssh
Public []stringKeys - (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
- Vm
Cluster stringNetwork Id The OCID of the VM cluster network.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- 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 float64Size In Gb - (Updatable) The data disk group size to be allocated in GBs.
- Data
Storage float64Size 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 []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.
- File
System []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"}
- 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 string - (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 float64 - System
Version string - Operating system version of the image.
- Time
Zone string - The time zone to use for the VM cluster. For details, see DB System Time Zones.
- compartment
Id String - (Updatable) The OCID of the compartment.
- cpu
Core IntegerCount - display
Name String - The user-friendly name for the VM cluster. The name does not need to be unique.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- gi
Version String - The Oracle Grid Infrastructure software version for the VM cluster.
- ssh
Public List<String>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
- vm
Cluster StringNetwork Id The OCID of the VM cluster network.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- cloud
Automation 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.
- data
Collection VmOptions Cluster Data Collection Options - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage DoubleSize In Gb - (Updatable) The data disk group size to be allocated in GBs.
- data
Storage DoubleSize In Tbs - (Updatable) The data disk group size to be allocated in TBs.
- db
Node IntegerStorage Size In Gbs - (Updatable) The local node storage to be allocated in GBs.
- db
Servers 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.
- file
System 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"}
- is
Local 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.
- is
Sparse BooleanDiskgroup Enabled - If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
- license
Model String - (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- memory
Size IntegerIn Gbs - (Updatable) The memory to be allocated in GBs.
- ocpu
Count Double - system
Version String - Operating system version of the image.
- time
Zone String - The time zone to use for the VM cluster. For details, see DB System Time Zones.
- compartment
Id string - (Updatable) The OCID of the compartment.
- cpu
Core numberCount - display
Name string - The user-friendly name for the VM cluster. The name does not need to be unique.
- exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- gi
Version string - The Oracle Grid Infrastructure software version for the VM cluster.
- ssh
Public string[]Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
- vm
Cluster stringNetwork Id The OCID of the VM cluster network.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- cloud
Automation 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.
- data
Collection VmOptions Cluster Data Collection Options - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage numberSize In Gb - (Updatable) The data disk group size to be allocated in GBs.
- data
Storage numberSize In Tbs - (Updatable) The data disk group size to be allocated in TBs.
- db
Node numberStorage Size In Gbs - (Updatable) The local node storage to be allocated in GBs.
- db
Servers 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.
- file
System 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"}
- is
Local 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.
- is
Sparse booleanDiskgroup Enabled - If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
- license
Model string - (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- memory
Size numberIn Gbs - (Updatable) The memory to be allocated in GBs.
- ocpu
Count number - system
Version string - Operating system version of the image.
- time
Zone string - The time zone to use for the VM cluster. For details, see DB System Time Zones.
- compartment_
id str - (Updatable) The OCID of the compartment.
- cpu_
core_ 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.
** 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
- cloud_
automation_ database.update_ details Vm 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_ database.options Vm 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.
- file_
system_ Sequence[database.configuration_ details Vm 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.
- compartment
Id String - (Updatable) The OCID of the compartment.
- cpu
Core NumberCount - display
Name String - The user-friendly name for the VM cluster. The name does not need to be unique.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- gi
Version String - The Oracle Grid Infrastructure software version for the VM cluster.
- ssh
Public List<String>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the VM cluster.
- vm
Cluster StringNetwork Id The OCID of the VM cluster network.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- cloud
Automation 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.
- data
Collection Property MapOptions - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage NumberSize In Gb - (Updatable) The data disk group size to be allocated in GBs.
- data
Storage NumberSize In Tbs - (Updatable) The data disk group size to be allocated in TBs.
- db
Node NumberStorage Size In Gbs - (Updatable) The local node storage to be allocated in GBs.
- db
Servers 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.
- file
System 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"}
- is
Local 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.
- is
Sparse BooleanDiskgroup Enabled - If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
- license
Model String - (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- memory
Size NumberIn Gbs - (Updatable) The memory to be allocated in GBs.
- ocpu
Count Number - system
Version String - Operating system version of the image.
- time
Zone String - The time zone to use for the VM cluster. For details, see DB System Time Zones.
Outputs
All input properties are implicitly available as output properties. Additionally, the VmCluster resource produces the following output properties:
- Availability
Domain string - The name of the availability domain that the VM cluster is located in.
- Cpus
Enabled int - The number of enabled CPU cores.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Ocpus
Enabled 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.
- Time
Created string - The date and time that the VM cluster was created.
- Availability
Domain string - The name of the availability domain that the VM cluster is located in.
- Cpus
Enabled int - The number of enabled CPU cores.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Ocpus
Enabled 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.
- Time
Created string - The date and time that the VM cluster was created.
- availability
Domain String - The name of the availability domain that the VM cluster is located in.
- cpus
Enabled Integer - The number of enabled CPU cores.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Patch StringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- lifecycle
Details String - Additional information about the current lifecycle state.
- ocpus
Enabled 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.
- time
Created String - The date and time that the VM cluster was created.
- availability
Domain string - The name of the availability domain that the VM cluster is located in.
- cpus
Enabled number - The number of enabled CPU cores.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- lifecycle
Details string - Additional information about the current lifecycle state.
- ocpus
Enabled 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.
- time
Created string - The date and time that the VM cluster was created.
- availability_
domain str - The name of the availability domain that the VM cluster is located in.
- cpus_
enabled int - The number of enabled CPU cores.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
patch_ 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.
- time_
created str - The date and time that the VM cluster was created.
- availability
Domain String - The name of the availability domain that the VM cluster is located in.
- cpus
Enabled Number - The number of enabled CPU cores.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Patch StringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- lifecycle
Details String - Additional information about the current lifecycle state.
- ocpus
Enabled 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.
- time
Created 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[_database.VmClusterCloudAutomationUpdateDetailsArgs] = None,
compartment_id: Optional[str] = None,
cpu_core_count: Optional[int] = None,
cpus_enabled: Optional[int] = None,
data_collection_options: Optional[_database.VmClusterDataCollectionOptionsArgs] = None,
data_storage_size_in_gb: Optional[float] = None,
data_storage_size_in_tbs: Optional[float] = None,
db_node_storage_size_in_gbs: Optional[int] = None,
db_servers: Optional[Sequence[str]] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
exadata_infrastructure_id: Optional[str] = None,
file_system_configuration_details: Optional[Sequence[_database.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,
system_version: Optional[str] = None,
time_created: Optional[str] = None,
time_zone: Optional[str] = None,
vm_cluster_network_id: Optional[str] = None) -> VmCluster
func GetVmCluster(ctx *Context, name string, id IDInput, state *VmClusterState, opts ...ResourceOption) (*VmCluster, error)
public static VmCluster Get(string name, Input<string> id, VmClusterState? state, CustomResourceOptions? opts = null)
public static VmCluster get(String name, Output<String> id, VmClusterState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Availability
Domain string - The name of the availability domain that the VM cluster is located in.
- Cloud
Automation 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.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Cpu
Core intCount - Cpus
Enabled int - The number of enabled CPU cores.
- Data
Collection VmOptions Cluster Data Collection Options - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Data
Storage doubleSize In Gb - (Updatable) The data disk group size to be allocated in GBs.
- Data
Storage doubleSize 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 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.
- Display
Name string - The user-friendly name for the VM cluster. The name does not need to be unique.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- File
System 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"}
- Gi
Version string - 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 stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- License
Model string - (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Memory
Size intIn Gbs - (Updatable) The memory to be allocated in GBs.
- Ocpu
Count double - Ocpus
Enabled double - Shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- Ssh
Public 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.
- System
Version string - Operating system version of the image.
- Time
Created string - The date and time that the VM cluster was created.
- Time
Zone string - The time zone to use for the VM cluster. For details, see DB System Time Zones.
- Vm
Cluster stringNetwork Id The OCID of the VM cluster network.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Availability
Domain string - 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 string - (Updatable) The OCID of the compartment.
- 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 float64Size In Gb - (Updatable) The data disk group size to be allocated in GBs.
- Data
Storage float64Size 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 []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.
- Display
Name string - The user-friendly name for the VM cluster. The name does not need to be unique.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- File
System []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"}
- Gi
Version string - 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 stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- License
Model string - (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Memory
Size intIn Gbs - (Updatable) The memory to be allocated in GBs.
- Ocpu
Count float64 - Ocpus
Enabled float64 - Shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- Ssh
Public []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.
- System
Version string - Operating system version of the image.
- Time
Created string - The date and time that the VM cluster was created.
- Time
Zone string - The time zone to use for the VM cluster. For details, see DB System Time Zones.
- Vm
Cluster stringNetwork Id The OCID of the VM cluster network.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- availability
Domain String - The name of the availability domain that the VM cluster is located in.
- cloud
Automation 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.
- compartment
Id String - (Updatable) The OCID of the compartment.
- cpu
Core IntegerCount - cpus
Enabled Integer - The number of enabled CPU cores.
- data
Collection VmOptions Cluster Data Collection Options - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage DoubleSize In Gb - (Updatable) The data disk group size to be allocated in GBs.
- data
Storage DoubleSize In Tbs - (Updatable) The data disk group size to be allocated in TBs.
- db
Node IntegerStorage Size In Gbs - (Updatable) The local node storage to be allocated in GBs.
- db
Servers 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.
- display
Name String - The user-friendly name for the VM cluster. The name does not need to be unique.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- file
System 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"}
- gi
Version String - The Oracle Grid Infrastructure software version for the VM cluster.
- is
Local 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.
- is
Sparse BooleanDiskgroup Enabled - If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
- last
Patch StringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license
Model String - (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details String - Additional information about the current lifecycle state.
- memory
Size IntegerIn Gbs - (Updatable) The memory to be allocated in GBs.
- ocpu
Count Double - ocpus
Enabled Double - shape String
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssh
Public 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.
- system
Version String - Operating system version of the image.
- time
Created String - The date and time that the VM cluster was created.
- time
Zone String - The time zone to use for the VM cluster. For details, see DB System Time Zones.
- vm
Cluster StringNetwork Id The OCID of the VM cluster network.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- availability
Domain string - The name of the availability domain that the VM cluster is located in.
- cloud
Automation 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.
- compartment
Id string - (Updatable) The OCID of the compartment.
- cpu
Core numberCount - cpus
Enabled number - The number of enabled CPU cores.
- data
Collection VmOptions Cluster Data Collection Options - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage numberSize In Gb - (Updatable) The data disk group size to be allocated in GBs.
- data
Storage numberSize In Tbs - (Updatable) The data disk group size to be allocated in TBs.
- db
Node numberStorage Size In Gbs - (Updatable) The local node storage to be allocated in GBs.
- db
Servers 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.
- display
Name string - The user-friendly name for the VM cluster. The name does not need to be unique.
- exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- file
System 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"}
- gi
Version string - The Oracle Grid Infrastructure software version for the VM cluster.
- is
Local 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.
- is
Sparse booleanDiskgroup Enabled - If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
- last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license
Model string - (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details string - Additional information about the current lifecycle state.
- memory
Size numberIn Gbs - (Updatable) The memory to be allocated in GBs.
- ocpu
Count number - ocpus
Enabled number - shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssh
Public 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.
- system
Version string - Operating system version of the image.
- time
Created string - The date and time that the VM cluster was created.
- time
Zone string - The time zone to use for the VM cluster. For details, see DB System Time Zones.
- vm
Cluster stringNetwork Id The OCID of the VM cluster network.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- availability_
domain str - The name of the availability domain that the VM cluster is located in.
- cloud_
automation_ database.update_ details Vm 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.
- cpu_
core_ intcount - cpus_
enabled int - The number of enabled CPU cores.
- data_
collection_ database.options Vm 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.
- file_
system_ Sequence[database.configuration_ details Vm 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.
- 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.
** 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 String - The name of the availability domain that the VM cluster is located in.
- cloud
Automation 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.
- compartment
Id String - (Updatable) The OCID of the compartment.
- cpu
Core NumberCount - cpus
Enabled Number - The number of enabled CPU cores.
- data
Collection Property MapOptions - (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage NumberSize In Gb - (Updatable) The data disk group size to be allocated in GBs.
- data
Storage NumberSize In Tbs - (Updatable) The data disk group size to be allocated in TBs.
- db
Node NumberStorage Size In Gbs - (Updatable) The local node storage to be allocated in GBs.
- db
Servers 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.
- display
Name String - The user-friendly name for the VM cluster. The name does not need to be unique.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- file
System 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"}
- gi
Version String - The Oracle Grid Infrastructure software version for the VM cluster.
- is
Local 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.
- is
Sparse BooleanDiskgroup Enabled - If true, the sparse disk group is configured for the VM cluster. If false, the sparse disk group is not created.
- last
Patch StringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license
Model String - (Updatable) The Oracle license model that applies to the VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details String - Additional information about the current lifecycle state.
- memory
Size NumberIn Gbs - (Updatable) The memory to be allocated in GBs.
- ocpu
Count Number - ocpus
Enabled Number - shape String
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssh
Public 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.
- system
Version String - Operating system version of the image.
- time
Created String - The date and time that the VM cluster was created.
- time
Zone String - The time zone to use for the VM cluster. For details, see DB System Time Zones.
- vm
Cluster StringNetwork Id The OCID of the VM cluster network.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Supporting Types
VmClusterCloudAutomationUpdateDetails, VmClusterCloudAutomationUpdateDetailsArgs
- 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.
- 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.
- 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 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.
- is
Freeze 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 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.
- is
Freeze 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_ database.time_ preference Vm 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 database.Vm Cluster 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.
- apply
Update 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.
- freeze
Period 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.
- is
Early 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.
- is
Freeze 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
- Apply
Update 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.
- Apply
Update 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 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.
- Apply
Update 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 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.
- apply
Update 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 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.
- apply
Update 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.
- apply
Update 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.
- apply
Update 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
- Freeze
Period stringEnd Time - (Updatable) End time of the freeze period cycle.
- Freeze
Period stringStart Time - (Updatable) Start time of the freeze period cycle.
- Freeze
Period stringEnd Time - (Updatable) End time of the freeze period cycle.
- Freeze
Period stringStart Time - (Updatable) Start time of the freeze period cycle.
- freeze
Period StringEnd Time - (Updatable) End time of the freeze period cycle.
- freeze
Period StringStart Time - (Updatable) Start time of the freeze period cycle.
- freeze
Period stringEnd Time - (Updatable) End time of the freeze period cycle.
- freeze
Period 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.
- freeze
Period StringEnd Time - (Updatable) End time of the freeze period cycle.
- freeze
Period StringStart Time - (Updatable) Start time of the freeze period cycle.
VmClusterDataCollectionOptions, VmClusterDataCollectionOptionsArgs
- 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
UpdateVmCluster
orupdateCloudVmCluster
API. - 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
,UpdateCloudVmCluster
orupdateDbsystem
API. - 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
,updateCloudVmCluster
orupdateDbsystem
API.
- 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
UpdateVmCluster
orupdateCloudVmCluster
API. - 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
,UpdateCloudVmCluster
orupdateDbsystem
API. - 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
,updateCloudVmCluster
orupdateDbsystem
API.
- is
Diagnostics 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
UpdateVmCluster
orupdateCloudVmCluster
API. - is
Health 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
,UpdateCloudVmCluster
orupdateDbsystem
API. - is
Incident 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
,updateCloudVmCluster
orupdateDbsystem
API.
- is
Diagnostics 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
UpdateVmCluster
orupdateCloudVmCluster
API. - is
Health 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
,UpdateCloudVmCluster
orupdateDbsystem
API. - is
Incident 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
,updateCloudVmCluster
orupdateDbsystem
API.
- 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
UpdateVmCluster
orupdateCloudVmCluster
API. - 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
,UpdateCloudVmCluster
orupdateDbsystem
API. - 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
,updateCloudVmCluster
orupdateDbsystem
API.
- is
Diagnostics 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
UpdateVmCluster
orupdateCloudVmCluster
API. - is
Health 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
,UpdateCloudVmCluster
orupdateDbsystem
API. - is
Incident 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
,updateCloudVmCluster
orupdateDbsystem
API.
VmClusterFileSystemConfigurationDetail, VmClusterFileSystemConfigurationDetailArgs
- File
System intSize Gb - (Updatable) The file system size to be allocated in GBs.
- Mount
Point string - (Updatable) The mount point of file system.
- File
System intSize Gb - (Updatable) The file system size to be allocated in GBs.
- Mount
Point string - (Updatable) The mount point of file system.
- file
System IntegerSize Gb - (Updatable) The file system size to be allocated in GBs.
- mount
Point String - (Updatable) The mount point of file system.
- file
System numberSize Gb - (Updatable) The file system size to be allocated in GBs.
- mount
Point 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.
- file
System NumberSize Gb - (Updatable) The file system size to be allocated in GBs.
- mount
Point 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
oci
Terraform Provider.