oci.Database.CloudVmCluster
Explore with Pulumi AI
This resource provides the Cloud Vm Cluster resource in Oracle Cloud Infrastructure Database service.
Creates a cloud VM cluster.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testCloudVmCluster = new oci.database.CloudVmCluster("test_cloud_vm_cluster", {
backupSubnetId: testSubnet.id,
cloudExadataInfrastructureId: testCloudExadataInfrastructure.id,
compartmentId: compartmentId,
cpuCoreCount: cloudVmClusterCpuCoreCount,
displayName: cloudVmClusterDisplayName,
giVersion: cloudVmClusterGiVersion,
hostname: cloudVmClusterHostname,
sshPublicKeys: cloudVmClusterSshPublicKeys,
subnetId: testSubnet.id,
backupNetworkNsgIds: cloudVmClusterBackupNetworkNsgIds,
clusterName: cloudVmClusterClusterName,
dataCollectionOptions: {
isDiagnosticsEventsEnabled: cloudVmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled,
isHealthMonitoringEnabled: cloudVmClusterDataCollectionOptionsIsHealthMonitoringEnabled,
isIncidentLogsEnabled: cloudVmClusterDataCollectionOptionsIsIncidentLogsEnabled,
},
dataStoragePercentage: cloudVmClusterDataStoragePercentage,
dataStorageSizeInTbs: cloudVmClusterDataStorageSizeInTbs,
dbNodeStorageSizeInGbs: cloudVmClusterDbNodeStorageSizeInGbs,
dbServers: cloudVmClusterDbServers,
definedTags: cloudVmClusterDefinedTags,
domain: cloudVmClusterDomain,
fileSystemConfigurationDetails: [{
fileSystemSizeGb: cloudVmClusterFileSystemConfigurationDetailsFileSystemSizeGb,
mountPoint: cloudVmClusterFileSystemConfigurationDetailsMountPoint,
}],
freeformTags: {
Department: "Finance",
},
isLocalBackupEnabled: cloudVmClusterIsLocalBackupEnabled,
isSparseDiskgroupEnabled: cloudVmClusterIsSparseDiskgroupEnabled,
licenseModel: cloudVmClusterLicenseModel,
memorySizeInGbs: cloudVmClusterMemorySizeInGbs,
nsgIds: cloudVmClusterNsgIds,
ocpuCount: cloudVmClusterOcpuCount,
privateZoneId: testZone.id,
scanListenerPortTcp: cloudVmClusterScanListenerPortTcp,
scanListenerPortTcpSsl: cloudVmClusterScanListenerPortTcpSsl,
subscriptionId: tenantSubscriptionId,
systemVersion: cloudVmClusterSystemVersion,
timeZone: cloudVmClusterTimeZone,
});
import pulumi
import pulumi_oci as oci
test_cloud_vm_cluster = oci.database.CloudVmCluster("test_cloud_vm_cluster",
backup_subnet_id=test_subnet["id"],
cloud_exadata_infrastructure_id=test_cloud_exadata_infrastructure["id"],
compartment_id=compartment_id,
cpu_core_count=cloud_vm_cluster_cpu_core_count,
display_name=cloud_vm_cluster_display_name,
gi_version=cloud_vm_cluster_gi_version,
hostname=cloud_vm_cluster_hostname,
ssh_public_keys=cloud_vm_cluster_ssh_public_keys,
subnet_id=test_subnet["id"],
backup_network_nsg_ids=cloud_vm_cluster_backup_network_nsg_ids,
cluster_name=cloud_vm_cluster_cluster_name,
data_collection_options={
"is_diagnostics_events_enabled": cloud_vm_cluster_data_collection_options_is_diagnostics_events_enabled,
"is_health_monitoring_enabled": cloud_vm_cluster_data_collection_options_is_health_monitoring_enabled,
"is_incident_logs_enabled": cloud_vm_cluster_data_collection_options_is_incident_logs_enabled,
},
data_storage_percentage=cloud_vm_cluster_data_storage_percentage,
data_storage_size_in_tbs=cloud_vm_cluster_data_storage_size_in_tbs,
db_node_storage_size_in_gbs=cloud_vm_cluster_db_node_storage_size_in_gbs,
db_servers=cloud_vm_cluster_db_servers,
defined_tags=cloud_vm_cluster_defined_tags,
domain=cloud_vm_cluster_domain,
file_system_configuration_details=[{
"file_system_size_gb": cloud_vm_cluster_file_system_configuration_details_file_system_size_gb,
"mount_point": cloud_vm_cluster_file_system_configuration_details_mount_point,
}],
freeform_tags={
"Department": "Finance",
},
is_local_backup_enabled=cloud_vm_cluster_is_local_backup_enabled,
is_sparse_diskgroup_enabled=cloud_vm_cluster_is_sparse_diskgroup_enabled,
license_model=cloud_vm_cluster_license_model,
memory_size_in_gbs=cloud_vm_cluster_memory_size_in_gbs,
nsg_ids=cloud_vm_cluster_nsg_ids,
ocpu_count=cloud_vm_cluster_ocpu_count,
private_zone_id=test_zone["id"],
scan_listener_port_tcp=cloud_vm_cluster_scan_listener_port_tcp,
scan_listener_port_tcp_ssl=cloud_vm_cluster_scan_listener_port_tcp_ssl,
subscription_id=tenant_subscription_id,
system_version=cloud_vm_cluster_system_version,
time_zone=cloud_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.NewCloudVmCluster(ctx, "test_cloud_vm_cluster", &Database.CloudVmClusterArgs{
BackupSubnetId: pulumi.Any(testSubnet.Id),
CloudExadataInfrastructureId: pulumi.Any(testCloudExadataInfrastructure.Id),
CompartmentId: pulumi.Any(compartmentId),
CpuCoreCount: pulumi.Any(cloudVmClusterCpuCoreCount),
DisplayName: pulumi.Any(cloudVmClusterDisplayName),
GiVersion: pulumi.Any(cloudVmClusterGiVersion),
Hostname: pulumi.Any(cloudVmClusterHostname),
SshPublicKeys: pulumi.Any(cloudVmClusterSshPublicKeys),
SubnetId: pulumi.Any(testSubnet.Id),
BackupNetworkNsgIds: pulumi.Any(cloudVmClusterBackupNetworkNsgIds),
ClusterName: pulumi.Any(cloudVmClusterClusterName),
DataCollectionOptions: &database.CloudVmClusterDataCollectionOptionsArgs{
IsDiagnosticsEventsEnabled: pulumi.Any(cloudVmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled),
IsHealthMonitoringEnabled: pulumi.Any(cloudVmClusterDataCollectionOptionsIsHealthMonitoringEnabled),
IsIncidentLogsEnabled: pulumi.Any(cloudVmClusterDataCollectionOptionsIsIncidentLogsEnabled),
},
DataStoragePercentage: pulumi.Any(cloudVmClusterDataStoragePercentage),
DataStorageSizeInTbs: pulumi.Any(cloudVmClusterDataStorageSizeInTbs),
DbNodeStorageSizeInGbs: pulumi.Any(cloudVmClusterDbNodeStorageSizeInGbs),
DbServers: pulumi.Any(cloudVmClusterDbServers),
DefinedTags: pulumi.Any(cloudVmClusterDefinedTags),
Domain: pulumi.Any(cloudVmClusterDomain),
FileSystemConfigurationDetails: database.CloudVmClusterFileSystemConfigurationDetailArray{
&database.CloudVmClusterFileSystemConfigurationDetailArgs{
FileSystemSizeGb: pulumi.Any(cloudVmClusterFileSystemConfigurationDetailsFileSystemSizeGb),
MountPoint: pulumi.Any(cloudVmClusterFileSystemConfigurationDetailsMountPoint),
},
},
FreeformTags: pulumi.StringMap{
"Department": pulumi.String("Finance"),
},
IsLocalBackupEnabled: pulumi.Any(cloudVmClusterIsLocalBackupEnabled),
IsSparseDiskgroupEnabled: pulumi.Any(cloudVmClusterIsSparseDiskgroupEnabled),
LicenseModel: pulumi.Any(cloudVmClusterLicenseModel),
MemorySizeInGbs: pulumi.Any(cloudVmClusterMemorySizeInGbs),
NsgIds: pulumi.Any(cloudVmClusterNsgIds),
OcpuCount: pulumi.Any(cloudVmClusterOcpuCount),
PrivateZoneId: pulumi.Any(testZone.Id),
ScanListenerPortTcp: pulumi.Any(cloudVmClusterScanListenerPortTcp),
ScanListenerPortTcpSsl: pulumi.Any(cloudVmClusterScanListenerPortTcpSsl),
SubscriptionId: pulumi.Any(tenantSubscriptionId),
SystemVersion: pulumi.Any(cloudVmClusterSystemVersion),
TimeZone: pulumi.Any(cloudVmClusterTimeZone),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testCloudVmCluster = new Oci.Database.CloudVmCluster("test_cloud_vm_cluster", new()
{
BackupSubnetId = testSubnet.Id,
CloudExadataInfrastructureId = testCloudExadataInfrastructure.Id,
CompartmentId = compartmentId,
CpuCoreCount = cloudVmClusterCpuCoreCount,
DisplayName = cloudVmClusterDisplayName,
GiVersion = cloudVmClusterGiVersion,
Hostname = cloudVmClusterHostname,
SshPublicKeys = cloudVmClusterSshPublicKeys,
SubnetId = testSubnet.Id,
BackupNetworkNsgIds = cloudVmClusterBackupNetworkNsgIds,
ClusterName = cloudVmClusterClusterName,
DataCollectionOptions = new Oci.Database.Inputs.CloudVmClusterDataCollectionOptionsArgs
{
IsDiagnosticsEventsEnabled = cloudVmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled,
IsHealthMonitoringEnabled = cloudVmClusterDataCollectionOptionsIsHealthMonitoringEnabled,
IsIncidentLogsEnabled = cloudVmClusterDataCollectionOptionsIsIncidentLogsEnabled,
},
DataStoragePercentage = cloudVmClusterDataStoragePercentage,
DataStorageSizeInTbs = cloudVmClusterDataStorageSizeInTbs,
DbNodeStorageSizeInGbs = cloudVmClusterDbNodeStorageSizeInGbs,
DbServers = cloudVmClusterDbServers,
DefinedTags = cloudVmClusterDefinedTags,
Domain = cloudVmClusterDomain,
FileSystemConfigurationDetails = new[]
{
new Oci.Database.Inputs.CloudVmClusterFileSystemConfigurationDetailArgs
{
FileSystemSizeGb = cloudVmClusterFileSystemConfigurationDetailsFileSystemSizeGb,
MountPoint = cloudVmClusterFileSystemConfigurationDetailsMountPoint,
},
},
FreeformTags =
{
{ "Department", "Finance" },
},
IsLocalBackupEnabled = cloudVmClusterIsLocalBackupEnabled,
IsSparseDiskgroupEnabled = cloudVmClusterIsSparseDiskgroupEnabled,
LicenseModel = cloudVmClusterLicenseModel,
MemorySizeInGbs = cloudVmClusterMemorySizeInGbs,
NsgIds = cloudVmClusterNsgIds,
OcpuCount = cloudVmClusterOcpuCount,
PrivateZoneId = testZone.Id,
ScanListenerPortTcp = cloudVmClusterScanListenerPortTcp,
ScanListenerPortTcpSsl = cloudVmClusterScanListenerPortTcpSsl,
SubscriptionId = tenantSubscriptionId,
SystemVersion = cloudVmClusterSystemVersion,
TimeZone = cloudVmClusterTimeZone,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.CloudVmCluster;
import com.pulumi.oci.Database.CloudVmClusterArgs;
import com.pulumi.oci.Database.inputs.CloudVmClusterDataCollectionOptionsArgs;
import com.pulumi.oci.Database.inputs.CloudVmClusterFileSystemConfigurationDetailArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testCloudVmCluster = new CloudVmCluster("testCloudVmCluster", CloudVmClusterArgs.builder()
.backupSubnetId(testSubnet.id())
.cloudExadataInfrastructureId(testCloudExadataInfrastructure.id())
.compartmentId(compartmentId)
.cpuCoreCount(cloudVmClusterCpuCoreCount)
.displayName(cloudVmClusterDisplayName)
.giVersion(cloudVmClusterGiVersion)
.hostname(cloudVmClusterHostname)
.sshPublicKeys(cloudVmClusterSshPublicKeys)
.subnetId(testSubnet.id())
.backupNetworkNsgIds(cloudVmClusterBackupNetworkNsgIds)
.clusterName(cloudVmClusterClusterName)
.dataCollectionOptions(CloudVmClusterDataCollectionOptionsArgs.builder()
.isDiagnosticsEventsEnabled(cloudVmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled)
.isHealthMonitoringEnabled(cloudVmClusterDataCollectionOptionsIsHealthMonitoringEnabled)
.isIncidentLogsEnabled(cloudVmClusterDataCollectionOptionsIsIncidentLogsEnabled)
.build())
.dataStoragePercentage(cloudVmClusterDataStoragePercentage)
.dataStorageSizeInTbs(cloudVmClusterDataStorageSizeInTbs)
.dbNodeStorageSizeInGbs(cloudVmClusterDbNodeStorageSizeInGbs)
.dbServers(cloudVmClusterDbServers)
.definedTags(cloudVmClusterDefinedTags)
.domain(cloudVmClusterDomain)
.fileSystemConfigurationDetails(CloudVmClusterFileSystemConfigurationDetailArgs.builder()
.fileSystemSizeGb(cloudVmClusterFileSystemConfigurationDetailsFileSystemSizeGb)
.mountPoint(cloudVmClusterFileSystemConfigurationDetailsMountPoint)
.build())
.freeformTags(Map.of("Department", "Finance"))
.isLocalBackupEnabled(cloudVmClusterIsLocalBackupEnabled)
.isSparseDiskgroupEnabled(cloudVmClusterIsSparseDiskgroupEnabled)
.licenseModel(cloudVmClusterLicenseModel)
.memorySizeInGbs(cloudVmClusterMemorySizeInGbs)
.nsgIds(cloudVmClusterNsgIds)
.ocpuCount(cloudVmClusterOcpuCount)
.privateZoneId(testZone.id())
.scanListenerPortTcp(cloudVmClusterScanListenerPortTcp)
.scanListenerPortTcpSsl(cloudVmClusterScanListenerPortTcpSsl)
.subscriptionId(tenantSubscriptionId)
.systemVersion(cloudVmClusterSystemVersion)
.timeZone(cloudVmClusterTimeZone)
.build());
}
}
resources:
testCloudVmCluster:
type: oci:Database:CloudVmCluster
name: test_cloud_vm_cluster
properties:
backupSubnetId: ${testSubnet.id}
cloudExadataInfrastructureId: ${testCloudExadataInfrastructure.id}
compartmentId: ${compartmentId}
cpuCoreCount: ${cloudVmClusterCpuCoreCount}
displayName: ${cloudVmClusterDisplayName}
giVersion: ${cloudVmClusterGiVersion}
hostname: ${cloudVmClusterHostname}
sshPublicKeys: ${cloudVmClusterSshPublicKeys}
subnetId: ${testSubnet.id}
backupNetworkNsgIds: ${cloudVmClusterBackupNetworkNsgIds}
clusterName: ${cloudVmClusterClusterName}
dataCollectionOptions:
isDiagnosticsEventsEnabled: ${cloudVmClusterDataCollectionOptionsIsDiagnosticsEventsEnabled}
isHealthMonitoringEnabled: ${cloudVmClusterDataCollectionOptionsIsHealthMonitoringEnabled}
isIncidentLogsEnabled: ${cloudVmClusterDataCollectionOptionsIsIncidentLogsEnabled}
dataStoragePercentage: ${cloudVmClusterDataStoragePercentage}
dataStorageSizeInTbs: ${cloudVmClusterDataStorageSizeInTbs}
dbNodeStorageSizeInGbs: ${cloudVmClusterDbNodeStorageSizeInGbs}
dbServers: ${cloudVmClusterDbServers}
definedTags: ${cloudVmClusterDefinedTags}
domain: ${cloudVmClusterDomain}
fileSystemConfigurationDetails:
- fileSystemSizeGb: ${cloudVmClusterFileSystemConfigurationDetailsFileSystemSizeGb}
mountPoint: ${cloudVmClusterFileSystemConfigurationDetailsMountPoint}
freeformTags:
Department: Finance
isLocalBackupEnabled: ${cloudVmClusterIsLocalBackupEnabled}
isSparseDiskgroupEnabled: ${cloudVmClusterIsSparseDiskgroupEnabled}
licenseModel: ${cloudVmClusterLicenseModel}
memorySizeInGbs: ${cloudVmClusterMemorySizeInGbs}
nsgIds: ${cloudVmClusterNsgIds}
ocpuCount: ${cloudVmClusterOcpuCount}
privateZoneId: ${testZone.id}
scanListenerPortTcp: ${cloudVmClusterScanListenerPortTcp}
scanListenerPortTcpSsl: ${cloudVmClusterScanListenerPortTcpSsl}
subscriptionId: ${tenantSubscriptionId}
systemVersion: ${cloudVmClusterSystemVersion}
timeZone: ${cloudVmClusterTimeZone}
Create CloudVmCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudVmCluster(name: string, args: CloudVmClusterArgs, opts?: CustomResourceOptions);
@overload
def CloudVmCluster(resource_name: str,
args: CloudVmClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudVmCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
backup_subnet_id: Optional[str] = None,
cloud_exadata_infrastructure_id: Optional[str] = None,
subnet_id: Optional[str] = None,
compartment_id: Optional[str] = None,
cpu_core_count: Optional[int] = None,
ssh_public_keys: Optional[Sequence[str]] = None,
hostname: Optional[str] = None,
gi_version: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
is_sparse_diskgroup_enabled: Optional[bool] = None,
db_servers: Optional[Sequence[str]] = None,
defined_tags: Optional[Mapping[str, str]] = None,
data_storage_size_in_tbs: Optional[float] = None,
domain: Optional[str] = None,
file_system_configuration_details: Optional[Sequence[_database.CloudVmClusterFileSystemConfigurationDetailArgs]] = None,
backup_network_nsg_ids: Optional[Sequence[str]] = None,
data_storage_percentage: Optional[int] = None,
data_collection_options: Optional[_database.CloudVmClusterDataCollectionOptionsArgs] = None,
is_local_backup_enabled: Optional[bool] = None,
db_node_storage_size_in_gbs: Optional[int] = None,
license_model: Optional[str] = None,
memory_size_in_gbs: Optional[int] = None,
nsg_ids: Optional[Sequence[str]] = None,
ocpu_count: Optional[float] = None,
private_zone_id: Optional[str] = None,
scan_listener_port_tcp: Optional[int] = None,
scan_listener_port_tcp_ssl: Optional[int] = None,
create_async: Optional[bool] = None,
cluster_name: Optional[str] = None,
subscription_id: Optional[str] = None,
system_version: Optional[str] = None,
time_zone: Optional[str] = None)
func NewCloudVmCluster(ctx *Context, name string, args CloudVmClusterArgs, opts ...ResourceOption) (*CloudVmCluster, error)
public CloudVmCluster(string name, CloudVmClusterArgs args, CustomResourceOptions? opts = null)
public CloudVmCluster(String name, CloudVmClusterArgs args)
public CloudVmCluster(String name, CloudVmClusterArgs args, CustomResourceOptions options)
type: oci:Database:CloudVmCluster
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args CloudVmClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args CloudVmClusterArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args CloudVmClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudVmClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudVmClusterArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var cloudVmClusterResource = new Oci.Database.CloudVmCluster("cloudVmClusterResource", new()
{
DisplayName = "string",
BackupSubnetId = "string",
CloudExadataInfrastructureId = "string",
SubnetId = "string",
CompartmentId = "string",
CpuCoreCount = 0,
SshPublicKeys = new[]
{
"string",
},
Hostname = "string",
GiVersion = "string",
FreeformTags =
{
{ "string", "string" },
},
IsSparseDiskgroupEnabled = false,
DbServers = new[]
{
"string",
},
DefinedTags =
{
{ "string", "string" },
},
DataStorageSizeInTbs = 0,
Domain = "string",
FileSystemConfigurationDetails = new[]
{
new Oci.Database.Inputs.CloudVmClusterFileSystemConfigurationDetailArgs
{
FileSystemSizeGb = 0,
MountPoint = "string",
},
},
BackupNetworkNsgIds = new[]
{
"string",
},
DataStoragePercentage = 0,
DataCollectionOptions = new Oci.Database.Inputs.CloudVmClusterDataCollectionOptionsArgs
{
IsDiagnosticsEventsEnabled = false,
IsHealthMonitoringEnabled = false,
IsIncidentLogsEnabled = false,
},
IsLocalBackupEnabled = false,
DbNodeStorageSizeInGbs = 0,
LicenseModel = "string",
MemorySizeInGbs = 0,
NsgIds = new[]
{
"string",
},
OcpuCount = 0,
PrivateZoneId = "string",
ScanListenerPortTcp = 0,
ScanListenerPortTcpSsl = 0,
CreateAsync = false,
ClusterName = "string",
SubscriptionId = "string",
SystemVersion = "string",
TimeZone = "string",
});
example, err := Database.NewCloudVmCluster(ctx, "cloudVmClusterResource", &Database.CloudVmClusterArgs{
DisplayName: pulumi.String("string"),
BackupSubnetId: pulumi.String("string"),
CloudExadataInfrastructureId: pulumi.String("string"),
SubnetId: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
CpuCoreCount: pulumi.Int(0),
SshPublicKeys: pulumi.StringArray{
pulumi.String("string"),
},
Hostname: pulumi.String("string"),
GiVersion: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
IsSparseDiskgroupEnabled: pulumi.Bool(false),
DbServers: pulumi.StringArray{
pulumi.String("string"),
},
DefinedTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
DataStorageSizeInTbs: pulumi.Float64(0),
Domain: pulumi.String("string"),
FileSystemConfigurationDetails: database.CloudVmClusterFileSystemConfigurationDetailArray{
&database.CloudVmClusterFileSystemConfigurationDetailArgs{
FileSystemSizeGb: pulumi.Int(0),
MountPoint: pulumi.String("string"),
},
},
BackupNetworkNsgIds: pulumi.StringArray{
pulumi.String("string"),
},
DataStoragePercentage: pulumi.Int(0),
DataCollectionOptions: &database.CloudVmClusterDataCollectionOptionsArgs{
IsDiagnosticsEventsEnabled: pulumi.Bool(false),
IsHealthMonitoringEnabled: pulumi.Bool(false),
IsIncidentLogsEnabled: pulumi.Bool(false),
},
IsLocalBackupEnabled: pulumi.Bool(false),
DbNodeStorageSizeInGbs: pulumi.Int(0),
LicenseModel: pulumi.String("string"),
MemorySizeInGbs: pulumi.Int(0),
NsgIds: pulumi.StringArray{
pulumi.String("string"),
},
OcpuCount: pulumi.Float64(0),
PrivateZoneId: pulumi.String("string"),
ScanListenerPortTcp: pulumi.Int(0),
ScanListenerPortTcpSsl: pulumi.Int(0),
CreateAsync: pulumi.Bool(false),
ClusterName: pulumi.String("string"),
SubscriptionId: pulumi.String("string"),
SystemVersion: pulumi.String("string"),
TimeZone: pulumi.String("string"),
})
var cloudVmClusterResource = new CloudVmCluster("cloudVmClusterResource", CloudVmClusterArgs.builder()
.displayName("string")
.backupSubnetId("string")
.cloudExadataInfrastructureId("string")
.subnetId("string")
.compartmentId("string")
.cpuCoreCount(0)
.sshPublicKeys("string")
.hostname("string")
.giVersion("string")
.freeformTags(Map.of("string", "string"))
.isSparseDiskgroupEnabled(false)
.dbServers("string")
.definedTags(Map.of("string", "string"))
.dataStorageSizeInTbs(0)
.domain("string")
.fileSystemConfigurationDetails(CloudVmClusterFileSystemConfigurationDetailArgs.builder()
.fileSystemSizeGb(0)
.mountPoint("string")
.build())
.backupNetworkNsgIds("string")
.dataStoragePercentage(0)
.dataCollectionOptions(CloudVmClusterDataCollectionOptionsArgs.builder()
.isDiagnosticsEventsEnabled(false)
.isHealthMonitoringEnabled(false)
.isIncidentLogsEnabled(false)
.build())
.isLocalBackupEnabled(false)
.dbNodeStorageSizeInGbs(0)
.licenseModel("string")
.memorySizeInGbs(0)
.nsgIds("string")
.ocpuCount(0)
.privateZoneId("string")
.scanListenerPortTcp(0)
.scanListenerPortTcpSsl(0)
.createAsync(false)
.clusterName("string")
.subscriptionId("string")
.systemVersion("string")
.timeZone("string")
.build());
cloud_vm_cluster_resource = oci.database.CloudVmCluster("cloudVmClusterResource",
display_name="string",
backup_subnet_id="string",
cloud_exadata_infrastructure_id="string",
subnet_id="string",
compartment_id="string",
cpu_core_count=0,
ssh_public_keys=["string"],
hostname="string",
gi_version="string",
freeform_tags={
"string": "string",
},
is_sparse_diskgroup_enabled=False,
db_servers=["string"],
defined_tags={
"string": "string",
},
data_storage_size_in_tbs=0,
domain="string",
file_system_configuration_details=[oci.database.CloudVmClusterFileSystemConfigurationDetailArgs(
file_system_size_gb=0,
mount_point="string",
)],
backup_network_nsg_ids=["string"],
data_storage_percentage=0,
data_collection_options=oci.database.CloudVmClusterDataCollectionOptionsArgs(
is_diagnostics_events_enabled=False,
is_health_monitoring_enabled=False,
is_incident_logs_enabled=False,
),
is_local_backup_enabled=False,
db_node_storage_size_in_gbs=0,
license_model="string",
memory_size_in_gbs=0,
nsg_ids=["string"],
ocpu_count=0,
private_zone_id="string",
scan_listener_port_tcp=0,
scan_listener_port_tcp_ssl=0,
create_async=False,
cluster_name="string",
subscription_id="string",
system_version="string",
time_zone="string")
const cloudVmClusterResource = new oci.database.CloudVmCluster("cloudVmClusterResource", {
displayName: "string",
backupSubnetId: "string",
cloudExadataInfrastructureId: "string",
subnetId: "string",
compartmentId: "string",
cpuCoreCount: 0,
sshPublicKeys: ["string"],
hostname: "string",
giVersion: "string",
freeformTags: {
string: "string",
},
isSparseDiskgroupEnabled: false,
dbServers: ["string"],
definedTags: {
string: "string",
},
dataStorageSizeInTbs: 0,
domain: "string",
fileSystemConfigurationDetails: [{
fileSystemSizeGb: 0,
mountPoint: "string",
}],
backupNetworkNsgIds: ["string"],
dataStoragePercentage: 0,
dataCollectionOptions: {
isDiagnosticsEventsEnabled: false,
isHealthMonitoringEnabled: false,
isIncidentLogsEnabled: false,
},
isLocalBackupEnabled: false,
dbNodeStorageSizeInGbs: 0,
licenseModel: "string",
memorySizeInGbs: 0,
nsgIds: ["string"],
ocpuCount: 0,
privateZoneId: "string",
scanListenerPortTcp: 0,
scanListenerPortTcpSsl: 0,
createAsync: false,
clusterName: "string",
subscriptionId: "string",
systemVersion: "string",
timeZone: "string",
});
type: oci:Database:CloudVmCluster
properties:
backupNetworkNsgIds:
- string
backupSubnetId: string
cloudExadataInfrastructureId: string
clusterName: string
compartmentId: string
cpuCoreCount: 0
createAsync: false
dataCollectionOptions:
isDiagnosticsEventsEnabled: false
isHealthMonitoringEnabled: false
isIncidentLogsEnabled: false
dataStoragePercentage: 0
dataStorageSizeInTbs: 0
dbNodeStorageSizeInGbs: 0
dbServers:
- string
definedTags:
string: string
displayName: string
domain: string
fileSystemConfigurationDetails:
- fileSystemSizeGb: 0
mountPoint: string
freeformTags:
string: string
giVersion: string
hostname: string
isLocalBackupEnabled: false
isSparseDiskgroupEnabled: false
licenseModel: string
memorySizeInGbs: 0
nsgIds:
- string
ocpuCount: 0
privateZoneId: string
scanListenerPortTcp: 0
scanListenerPortTcpSsl: 0
sshPublicKeys:
- string
subnetId: string
subscriptionId: string
systemVersion: string
timeZone: string
CloudVmCluster Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The CloudVmCluster resource accepts the following input properties:
- Backup
Subnet stringId - The OCID of the backup network subnet associated with the cloud VM cluster.
- Cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure resource.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Cpu
Core intCount - (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:
- Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
- Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
- Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
- Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
- Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
- Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
- Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
- Display
Name string - (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
- Gi
Version string - A valid Oracle Grid Infrastructure (GI) software version.
- Hostname string
The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
The maximum length of the combined hostname and domain is 63 characters.
Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.
- Ssh
Public List<string>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
- Subnet
Id string - The OCID of the subnet associated with the cloud VM cluster.
- Backup
Network List<string>Nsg Ids - (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- Cluster
Name string - The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- Create
Async bool - Data
Collection CloudOptions Vm 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 intPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
- Data
Storage 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 servers.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Domain string
- A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
- File
System List<CloudConfiguration Details Vm 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 cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
- Is
Sparse boolDiskgroup Enabled - If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
- License
Model string - (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- Memory
Size intIn Gbs - (Updatable) The memory to be allocated in GBs.
- Nsg
Ids List<string> - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Ocpu
Count double - (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
- Private
Zone stringId - The private zone id in which DNS records need to be created.
- Scan
Listener intPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- Scan
Listener intPort Tcp Ssl - The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
- Subscription
Id string - The OCID of the subscription with which resource needs to be associated with.
- System
Version string - Operating system version of the image.
- Time
Zone string The time zone to use for the cloud VM cluster. For details, see Time Zones.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Backup
Subnet stringId - The OCID of the backup network subnet associated with the cloud VM cluster.
- Cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure resource.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Cpu
Core intCount - (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:
- Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
- Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
- Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
- Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
- Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
- Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
- Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
- Display
Name string - (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
- Gi
Version string - A valid Oracle Grid Infrastructure (GI) software version.
- Hostname string
The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
The maximum length of the combined hostname and domain is 63 characters.
Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.
- Ssh
Public []stringKeys - (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
- Subnet
Id string - The OCID of the subnet associated with the cloud VM cluster.
- Backup
Network []stringNsg Ids - (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- Cluster
Name string - The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- Create
Async bool - Data
Collection CloudOptions 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 intPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
- Data
Storage 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 servers.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Domain string
- A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
- File
System []CloudConfiguration Details Vm 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 cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
- Is
Sparse boolDiskgroup Enabled - If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
- License
Model string - (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- Memory
Size intIn Gbs - (Updatable) The memory to be allocated in GBs.
- Nsg
Ids []string - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Ocpu
Count float64 - (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
- Private
Zone stringId - The private zone id in which DNS records need to be created.
- Scan
Listener intPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- Scan
Listener intPort Tcp Ssl - The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
- Subscription
Id string - The OCID of the subscription with which resource needs to be associated with.
- System
Version string - Operating system version of the image.
- Time
Zone string The time zone to use for the cloud VM cluster. For details, see Time Zones.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- backup
Subnet StringId - The OCID of the backup network subnet associated with the cloud VM cluster.
- cloud
Exadata StringInfrastructure Id - The OCID of the cloud Exadata infrastructure resource.
- compartment
Id String - (Updatable) The OCID of the compartment.
- cpu
Core IntegerCount - (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:
- Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
- Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
- Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
- Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
- Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
- Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
- Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
- display
Name String - (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
- gi
Version String - A valid Oracle Grid Infrastructure (GI) software version.
- hostname String
The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
The maximum length of the combined hostname and domain is 63 characters.
Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.
- ssh
Public List<String>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
- subnet
Id String - The OCID of the subnet associated with the cloud VM cluster.
- backup
Network List<String>Nsg Ids - (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- cluster
Name String - The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- create
Async Boolean - data
Collection CloudOptions Vm 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 IntegerPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
- data
Storage 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 servers.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- domain String
- A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
- file
System List<CloudConfiguration Details Vm 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 cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
- is
Sparse BooleanDiskgroup Enabled - If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
- license
Model String - (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- memory
Size IntegerIn Gbs - (Updatable) The memory to be allocated in GBs.
- nsg
Ids List<String> - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- ocpu
Count Double - (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
- private
Zone StringId - The private zone id in which DNS records need to be created.
- scan
Listener IntegerPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan
Listener IntegerPort Tcp Ssl - The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
- subscription
Id String - The OCID of the subscription with which resource needs to be associated with.
- system
Version String - Operating system version of the image.
- time
Zone String The time zone to use for the cloud VM cluster. For details, see Time Zones.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- backup
Subnet stringId - The OCID of the backup network subnet associated with the cloud VM cluster.
- cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure resource.
- compartment
Id string - (Updatable) The OCID of the compartment.
- cpu
Core numberCount - (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:
- Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
- Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
- Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
- Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
- Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
- Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
- Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
- display
Name string - (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
- gi
Version string - A valid Oracle Grid Infrastructure (GI) software version.
- hostname string
The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
The maximum length of the combined hostname and domain is 63 characters.
Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.
- ssh
Public string[]Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
- subnet
Id string - The OCID of the subnet associated with the cloud VM cluster.
- backup
Network string[]Nsg Ids - (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- cluster
Name string - The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- create
Async boolean - data
Collection CloudOptions Vm 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 numberPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
- data
Storage 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 servers.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- domain string
- A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
- file
System CloudConfiguration Details Vm 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 cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
- is
Sparse booleanDiskgroup Enabled - If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
- license
Model string - (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- memory
Size numberIn Gbs - (Updatable) The memory to be allocated in GBs.
- nsg
Ids string[] - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- ocpu
Count number - (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
- private
Zone stringId - The private zone id in which DNS records need to be created.
- scan
Listener numberPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan
Listener numberPort Tcp Ssl - The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
- subscription
Id string - The OCID of the subscription with which resource needs to be associated with.
- system
Version string - Operating system version of the image.
- time
Zone string The time zone to use for the cloud VM cluster. For details, see Time Zones.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- backup_
subnet_ strid - The OCID of the backup network subnet associated with the cloud VM cluster.
- cloud_
exadata_ strinfrastructure_ id - The OCID of the cloud Exadata infrastructure resource.
- compartment_
id str - (Updatable) The OCID of the compartment.
- cpu_
core_ intcount - (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:
- Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
- Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
- Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
- Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
- Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
- Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
- Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
- display_
name str - (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
- gi_
version str - A valid Oracle Grid Infrastructure (GI) software version.
- hostname str
The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
The maximum length of the combined hostname and domain is 63 characters.
Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.
- ssh_
public_ Sequence[str]keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
- subnet_
id str - The OCID of the subnet associated with the cloud VM cluster.
- backup_
network_ Sequence[str]nsg_ ids - (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- cluster_
name str - The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- create_
async bool - data_
collection_ database.options Cloud 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_ intpercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
- data_
storage_ 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 servers.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- domain str
- A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
- file_
system_ Sequence[database.configuration_ details Cloud 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 cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
- is_
sparse_ booldiskgroup_ enabled - If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
- license_
model str - (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- memory_
size_ intin_ gbs - (Updatable) The memory to be allocated in GBs.
- nsg_
ids Sequence[str] - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- ocpu_
count float - (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
- private_
zone_ strid - The private zone id in which DNS records need to be created.
- scan_
listener_ intport_ tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan_
listener_ intport_ tcp_ ssl - The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
- subscription_
id str - The OCID of the subscription with which resource needs to be associated with.
- system_
version str - Operating system version of the image.
- time_
zone str The time zone to use for the cloud VM cluster. For details, see Time Zones.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- backup
Subnet StringId - The OCID of the backup network subnet associated with the cloud VM cluster.
- cloud
Exadata StringInfrastructure Id - The OCID of the cloud Exadata infrastructure resource.
- compartment
Id String - (Updatable) The OCID of the compartment.
- cpu
Core NumberCount - (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:
- Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
- Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
- Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
- Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
- Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
- Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
- Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
- display
Name String - (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
- gi
Version String - A valid Oracle Grid Infrastructure (GI) software version.
- hostname String
The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
The maximum length of the combined hostname and domain is 63 characters.
Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.
- ssh
Public List<String>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
- subnet
Id String - The OCID of the subnet associated with the cloud VM cluster.
- backup
Network List<String>Nsg Ids - (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- cluster
Name String - The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- create
Async Boolean - 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 NumberPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
- data
Storage 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 servers.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- domain String
- A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
- 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 cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
- is
Sparse BooleanDiskgroup Enabled - If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
- license
Model String - (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- memory
Size NumberIn Gbs - (Updatable) The memory to be allocated in GBs.
- nsg
Ids List<String> - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- ocpu
Count Number - (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
- private
Zone StringId - The private zone id in which DNS records need to be created.
- scan
Listener NumberPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan
Listener NumberPort Tcp Ssl - The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
- subscription
Id String - The OCID of the subscription with which resource needs to be associated with.
- system
Version String - Operating system version of the image.
- time
Zone String The time zone to use for the cloud VM cluster. For details, see Time Zones.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudVmCluster resource produces the following output properties:
- Availability
Domain string - The name of the availability domain that the cloud Exadata infrastructure resource is located in.
- Disk
Redundancy string - The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- Id string
- The provider-assigned unique ID for this managed resource.
- Iorm
Config List<CloudCaches Vm Cluster Iorm Config Cach> - The IORM settings of the Exadata DB system.
- Last
Update stringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Listener
Port string - The port number configured for the listener on the cloud VM cluster.
- Node
Count int - The number of nodes in the cloud VM cluster.
- Scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- Scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- Scan
Ip List<string>Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- Shape string
- The model name of the Exadata hardware running the cloud VM cluster.
- State string
- The current state of the cloud VM cluster.
- Storage
Size intIn Gbs - The storage allocation for the disk group, in gigabytes (GB).
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time that the cloud VM cluster was created.
- Vip
Ids List<string> - The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- Zone
Id string - The OCID of the zone the cloud VM cluster is associated with.
- Availability
Domain string - The name of the availability domain that the cloud Exadata infrastructure resource is located in.
- Disk
Redundancy string - The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- Id string
- The provider-assigned unique ID for this managed resource.
- Iorm
Config []CloudCaches Vm Cluster Iorm Config Cach - The IORM settings of the Exadata DB system.
- Last
Update stringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Listener
Port string - The port number configured for the listener on the cloud VM cluster.
- Node
Count int - The number of nodes in the cloud VM cluster.
- Scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- Scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- Scan
Ip []stringIds - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- Shape string
- The model name of the Exadata hardware running the cloud VM cluster.
- State string
- The current state of the cloud VM cluster.
- Storage
Size intIn Gbs - The storage allocation for the disk group, in gigabytes (GB).
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Time
Created string - The date and time that the cloud VM cluster was created.
- Vip
Ids []string - The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- Zone
Id string - The OCID of the zone the cloud VM cluster is associated with.
- availability
Domain String - The name of the availability domain that the cloud Exadata infrastructure resource is located in.
- disk
Redundancy String - The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- id String
- The provider-assigned unique ID for this managed resource.
- iorm
Config List<CloudCaches Vm Cluster Iorm Config Cach> - The IORM settings of the Exadata DB system.
- last
Update StringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- lifecycle
Details String - Additional information about the current lifecycle state.
- listener
Port String - The port number configured for the listener on the cloud VM cluster.
- node
Count Integer - The number of nodes in the cloud VM cluster.
- scan
Dns StringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan
Dns StringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan
Ip List<String>Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- shape String
- The model name of the Exadata hardware running the cloud VM cluster.
- state String
- The current state of the cloud VM cluster.
- storage
Size IntegerIn Gbs - The storage allocation for the disk group, in gigabytes (GB).
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time that the cloud VM cluster was created.
- vip
Ids List<String> - The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- zone
Id String - The OCID of the zone the cloud VM cluster is associated with.
- availability
Domain string - The name of the availability domain that the cloud Exadata infrastructure resource is located in.
- disk
Redundancy string - The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- id string
- The provider-assigned unique ID for this managed resource.
- iorm
Config CloudCaches Vm Cluster Iorm Config Cach[] - The IORM settings of the Exadata DB system.
- last
Update stringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- lifecycle
Details string - Additional information about the current lifecycle state.
- listener
Port string - The port number configured for the listener on the cloud VM cluster.
- node
Count number - The number of nodes in the cloud VM cluster.
- scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan
Ip string[]Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- shape string
- The model name of the Exadata hardware running the cloud VM cluster.
- state string
- The current state of the cloud VM cluster.
- storage
Size numberIn Gbs - The storage allocation for the disk group, in gigabytes (GB).
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created string - The date and time that the cloud VM cluster was created.
- vip
Ids string[] - The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- zone
Id string - The OCID of the zone the cloud VM cluster is associated with.
- availability_
domain str - The name of the availability domain that the cloud Exadata infrastructure resource is located in.
- disk_
redundancy str - The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- id str
- The provider-assigned unique ID for this managed resource.
- iorm_
config_ Sequence[database.caches Cloud Vm Cluster Iorm Config Cach] - The IORM settings of the Exadata DB system.
- last_
update_ strhistory_ entry_ id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- lifecycle_
details str - Additional information about the current lifecycle state.
- listener_
port str - The port number configured for the listener on the cloud VM cluster.
- node_
count int - The number of nodes in the cloud VM cluster.
- scan_
dns_ strname - The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan_
dns_ strrecord_ id - The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan_
ip_ Sequence[str]ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- shape str
- The model name of the Exadata hardware running the cloud VM cluster.
- state str
- The current state of the cloud VM cluster.
- storage_
size_ intin_ gbs - The storage allocation for the disk group, in gigabytes (GB).
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time_
created str - The date and time that the cloud VM cluster was created.
- vip_
ids Sequence[str] - The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- zone_
id str - The OCID of the zone the cloud VM cluster is associated with.
- availability
Domain String - The name of the availability domain that the cloud Exadata infrastructure resource is located in.
- disk
Redundancy String - The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- id String
- The provider-assigned unique ID for this managed resource.
- iorm
Config List<Property Map>Caches - The IORM settings of the Exadata DB system.
- last
Update StringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- lifecycle
Details String - Additional information about the current lifecycle state.
- listener
Port String - The port number configured for the listener on the cloud VM cluster.
- node
Count Number - The number of nodes in the cloud VM cluster.
- scan
Dns StringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan
Dns StringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan
Ip List<String>Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- shape String
- The model name of the Exadata hardware running the cloud VM cluster.
- state String
- The current state of the cloud VM cluster.
- storage
Size NumberIn Gbs - The storage allocation for the disk group, in gigabytes (GB).
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- time
Created String - The date and time that the cloud VM cluster was created.
- vip
Ids List<String> - The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- zone
Id String - The OCID of the zone the cloud VM cluster is associated with.
Look up Existing CloudVmCluster Resource
Get an existing CloudVmCluster resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: CloudVmClusterState, opts?: CustomResourceOptions): CloudVmCluster
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
availability_domain: Optional[str] = None,
backup_network_nsg_ids: Optional[Sequence[str]] = None,
backup_subnet_id: Optional[str] = None,
cloud_exadata_infrastructure_id: Optional[str] = None,
cluster_name: Optional[str] = None,
compartment_id: Optional[str] = None,
cpu_core_count: Optional[int] = None,
create_async: Optional[bool] = None,
data_collection_options: Optional[_database.CloudVmClusterDataCollectionOptionsArgs] = None,
data_storage_percentage: Optional[int] = None,
data_storage_size_in_tbs: Optional[float] = None,
db_node_storage_size_in_gbs: Optional[int] = None,
db_servers: Optional[Sequence[str]] = None,
defined_tags: Optional[Mapping[str, str]] = None,
disk_redundancy: Optional[str] = None,
display_name: Optional[str] = None,
domain: Optional[str] = None,
file_system_configuration_details: Optional[Sequence[_database.CloudVmClusterFileSystemConfigurationDetailArgs]] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
gi_version: Optional[str] = None,
hostname: Optional[str] = None,
iorm_config_caches: Optional[Sequence[_database.CloudVmClusterIormConfigCachArgs]] = None,
is_local_backup_enabled: Optional[bool] = None,
is_sparse_diskgroup_enabled: Optional[bool] = None,
last_update_history_entry_id: Optional[str] = None,
license_model: Optional[str] = None,
lifecycle_details: Optional[str] = None,
listener_port: Optional[str] = None,
memory_size_in_gbs: Optional[int] = None,
node_count: Optional[int] = None,
nsg_ids: Optional[Sequence[str]] = None,
ocpu_count: Optional[float] = None,
private_zone_id: Optional[str] = None,
scan_dns_name: Optional[str] = None,
scan_dns_record_id: Optional[str] = None,
scan_ip_ids: Optional[Sequence[str]] = None,
scan_listener_port_tcp: Optional[int] = None,
scan_listener_port_tcp_ssl: Optional[int] = None,
shape: Optional[str] = None,
ssh_public_keys: Optional[Sequence[str]] = None,
state: Optional[str] = None,
storage_size_in_gbs: Optional[int] = None,
subnet_id: Optional[str] = None,
subscription_id: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
system_version: Optional[str] = None,
time_created: Optional[str] = None,
time_zone: Optional[str] = None,
vip_ids: Optional[Sequence[str]] = None,
zone_id: Optional[str] = None) -> CloudVmCluster
func GetCloudVmCluster(ctx *Context, name string, id IDInput, state *CloudVmClusterState, opts ...ResourceOption) (*CloudVmCluster, error)
public static CloudVmCluster Get(string name, Input<string> id, CloudVmClusterState? state, CustomResourceOptions? opts = null)
public static CloudVmCluster get(String name, Output<String> id, CloudVmClusterState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Availability
Domain string - The name of the availability domain that the cloud Exadata infrastructure resource is located in.
- Backup
Network List<string>Nsg Ids - (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- Backup
Subnet stringId - The OCID of the backup network subnet associated with the cloud VM cluster.
- Cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure resource.
- Cluster
Name string - The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Cpu
Core intCount - (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:
- Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
- Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
- Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
- Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
- Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
- Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
- Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
- Create
Async bool - Data
Collection CloudOptions Vm 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 intPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
- Data
Storage 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 servers.
- Dictionary<string, string>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Disk
Redundancy string - The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- Display
Name string - (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
- Domain string
- A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
- File
System List<CloudConfiguration Details Vm 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 - A valid Oracle Grid Infrastructure (GI) software version.
- Hostname string
The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
The maximum length of the combined hostname and domain is 63 characters.
Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.
- Iorm
Config List<CloudCaches Vm Cluster Iorm Config Cach> - The IORM settings of the Exadata DB system.
- Is
Local boolBackup Enabled - If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
- Is
Sparse boolDiskgroup Enabled - If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
- Last
Update stringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- License
Model string - (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Listener
Port string - The port number configured for the listener on the cloud VM cluster.
- Memory
Size intIn Gbs - (Updatable) The memory to be allocated in GBs.
- Node
Count int - The number of nodes in the cloud VM cluster.
- Nsg
Ids List<string> - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Ocpu
Count double - (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
- Private
Zone stringId - The private zone id in which DNS records need to be created.
- Scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- Scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- Scan
Ip List<string>Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- Scan
Listener intPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- Scan
Listener intPort Tcp Ssl - The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
- Shape string
- The model name of the Exadata hardware running the cloud VM cluster.
- Ssh
Public List<string>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
- State string
- The current state of the cloud VM cluster.
- Storage
Size intIn Gbs - The storage allocation for the disk group, in gigabytes (GB).
- Subnet
Id string - The OCID of the subnet associated with the cloud VM cluster.
- Subscription
Id string - The OCID of the subscription with which resource needs to be associated with.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- System
Version string - Operating system version of the image.
- Time
Created string - The date and time that the cloud VM cluster was created.
- Time
Zone string The time zone to use for the cloud VM cluster. For details, see Time Zones.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Vip
Ids List<string> - The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- Zone
Id string - The OCID of the zone the cloud VM cluster is associated with.
- Availability
Domain string - The name of the availability domain that the cloud Exadata infrastructure resource is located in.
- Backup
Network []stringNsg Ids - (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- Backup
Subnet stringId - The OCID of the backup network subnet associated with the cloud VM cluster.
- Cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure resource.
- Cluster
Name string - The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- Compartment
Id string - (Updatable) The OCID of the compartment.
- Cpu
Core intCount - (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:
- Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
- Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
- Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
- Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
- Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
- Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
- Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
- Create
Async bool - Data
Collection CloudOptions 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 intPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
- Data
Storage 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 servers.
- map[string]string
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Disk
Redundancy string - The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- Display
Name string - (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
- Domain string
- A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
- File
System []CloudConfiguration Details Vm 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 - A valid Oracle Grid Infrastructure (GI) software version.
- Hostname string
The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
The maximum length of the combined hostname and domain is 63 characters.
Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.
- Iorm
Config []CloudCaches Vm Cluster Iorm Config Cach Args - The IORM settings of the Exadata DB system.
- Is
Local boolBackup Enabled - If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
- Is
Sparse boolDiskgroup Enabled - If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
- Last
Update stringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- License
Model string - (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Listener
Port string - The port number configured for the listener on the cloud VM cluster.
- Memory
Size intIn Gbs - (Updatable) The memory to be allocated in GBs.
- Node
Count int - The number of nodes in the cloud VM cluster.
- Nsg
Ids []string - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- Ocpu
Count float64 - (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
- Private
Zone stringId - The private zone id in which DNS records need to be created.
- Scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- Scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- Scan
Ip []stringIds - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- Scan
Listener intPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- Scan
Listener intPort Tcp Ssl - The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
- Shape string
- The model name of the Exadata hardware running the cloud VM cluster.
- Ssh
Public []stringKeys - (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
- State string
- The current state of the cloud VM cluster.
- Storage
Size intIn Gbs - The storage allocation for the disk group, in gigabytes (GB).
- Subnet
Id string - The OCID of the subnet associated with the cloud VM cluster.
- Subscription
Id string - The OCID of the subscription with which resource needs to be associated with.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- System
Version string - Operating system version of the image.
- Time
Created string - The date and time that the cloud VM cluster was created.
- Time
Zone string The time zone to use for the cloud VM cluster. For details, see Time Zones.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Vip
Ids []string - The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- Zone
Id string - The OCID of the zone the cloud VM cluster is associated with.
- availability
Domain String - The name of the availability domain that the cloud Exadata infrastructure resource is located in.
- backup
Network List<String>Nsg Ids - (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backup
Subnet StringId - The OCID of the backup network subnet associated with the cloud VM cluster.
- cloud
Exadata StringInfrastructure Id - The OCID of the cloud Exadata infrastructure resource.
- cluster
Name String - The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartment
Id String - (Updatable) The OCID of the compartment.
- cpu
Core IntegerCount - (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:
- Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
- Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
- Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
- Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
- Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
- Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
- Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
- create
Async Boolean - data
Collection CloudOptions Vm 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 IntegerPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
- data
Storage 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 servers.
- Map<String,String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- disk
Redundancy String - The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- display
Name String - (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
- domain String
- A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
- file
System List<CloudConfiguration Details Vm 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 - A valid Oracle Grid Infrastructure (GI) software version.
- hostname String
The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
The maximum length of the combined hostname and domain is 63 characters.
Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.
- iorm
Config List<CloudCaches Vm Cluster Iorm Config Cach> - The IORM settings of the Exadata DB system.
- is
Local BooleanBackup Enabled - If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
- is
Sparse BooleanDiskgroup Enabled - If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
- last
Update StringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- license
Model String - (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details String - Additional information about the current lifecycle state.
- listener
Port String - The port number configured for the listener on the cloud VM cluster.
- memory
Size IntegerIn Gbs - (Updatable) The memory to be allocated in GBs.
- node
Count Integer - The number of nodes in the cloud VM cluster.
- nsg
Ids List<String> - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- ocpu
Count Double - (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
- private
Zone StringId - The private zone id in which DNS records need to be created.
- scan
Dns StringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan
Dns StringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan
Ip List<String>Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scan
Listener IntegerPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan
Listener IntegerPort Tcp Ssl - The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
- shape String
- The model name of the Exadata hardware running the cloud VM cluster.
- ssh
Public List<String>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
- state String
- The current state of the cloud VM cluster.
- storage
Size IntegerIn Gbs - The storage allocation for the disk group, in gigabytes (GB).
- subnet
Id String - The OCID of the subnet associated with the cloud VM cluster.
- subscription
Id String - The OCID of the subscription with which resource needs to be associated with.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- system
Version String - Operating system version of the image.
- time
Created String - The date and time that the cloud VM cluster was created.
- time
Zone String The time zone to use for the cloud VM cluster. For details, see Time Zones.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- vip
Ids List<String> - The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- zone
Id String - The OCID of the zone the cloud VM cluster is associated with.
- availability
Domain string - The name of the availability domain that the cloud Exadata infrastructure resource is located in.
- backup
Network string[]Nsg Ids - (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backup
Subnet stringId - The OCID of the backup network subnet associated with the cloud VM cluster.
- cloud
Exadata stringInfrastructure Id - The OCID of the cloud Exadata infrastructure resource.
- cluster
Name string - The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartment
Id string - (Updatable) The OCID of the compartment.
- cpu
Core numberCount - (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:
- Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
- Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
- Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
- Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
- Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
- Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
- Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
- create
Async boolean - data
Collection CloudOptions Vm 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 numberPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
- data
Storage 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 servers.
- {[key: string]: string}
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- disk
Redundancy string - The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- display
Name string - (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
- domain string
- A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
- file
System CloudConfiguration Details Vm 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 - A valid Oracle Grid Infrastructure (GI) software version.
- hostname string
The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
The maximum length of the combined hostname and domain is 63 characters.
Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.
- iorm
Config CloudCaches Vm Cluster Iorm Config Cach[] - The IORM settings of the Exadata DB system.
- is
Local booleanBackup Enabled - If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
- is
Sparse booleanDiskgroup Enabled - If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
- last
Update stringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- license
Model string - (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details string - Additional information about the current lifecycle state.
- listener
Port string - The port number configured for the listener on the cloud VM cluster.
- memory
Size numberIn Gbs - (Updatable) The memory to be allocated in GBs.
- node
Count number - The number of nodes in the cloud VM cluster.
- nsg
Ids string[] - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- ocpu
Count number - (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
- private
Zone stringId - The private zone id in which DNS records need to be created.
- scan
Dns stringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan
Dns stringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan
Ip string[]Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scan
Listener numberPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan
Listener numberPort Tcp Ssl - The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
- shape string
- The model name of the Exadata hardware running the cloud VM cluster.
- ssh
Public string[]Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
- state string
- The current state of the cloud VM cluster.
- storage
Size numberIn Gbs - The storage allocation for the disk group, in gigabytes (GB).
- subnet
Id string - The OCID of the subnet associated with the cloud VM cluster.
- subscription
Id string - The OCID of the subscription with which resource needs to be associated with.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- system
Version string - Operating system version of the image.
- time
Created string - The date and time that the cloud VM cluster was created.
- time
Zone string The time zone to use for the cloud VM cluster. For details, see Time Zones.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- vip
Ids string[] - The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- zone
Id string - The OCID of the zone the cloud VM cluster is associated with.
- availability_
domain str - The name of the availability domain that the cloud Exadata infrastructure resource is located in.
- backup_
network_ Sequence[str]nsg_ ids - (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backup_
subnet_ strid - The OCID of the backup network subnet associated with the cloud VM cluster.
- cloud_
exadata_ strinfrastructure_ id - The OCID of the cloud Exadata infrastructure resource.
- cluster_
name str - The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartment_
id str - (Updatable) The OCID of the compartment.
- cpu_
core_ intcount - (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:
- Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
- Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
- Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
- Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
- Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
- Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
- Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
- create_
async bool - data_
collection_ database.options Cloud 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_ intpercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
- data_
storage_ 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 servers.
- Mapping[str, str]
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- disk_
redundancy str - The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- display_
name str - (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
- domain str
- A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
- file_
system_ Sequence[database.configuration_ details Cloud 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 - A valid Oracle Grid Infrastructure (GI) software version.
- hostname str
The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
The maximum length of the combined hostname and domain is 63 characters.
Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.
- iorm_
config_ Sequence[database.caches Cloud Vm Cluster Iorm Config Cach Args] - The IORM settings of the Exadata DB system.
- is_
local_ boolbackup_ enabled - If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
- is_
sparse_ booldiskgroup_ enabled - If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
- last_
update_ strhistory_ entry_ id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- license_
model str - (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle_
details str - Additional information about the current lifecycle state.
- listener_
port str - The port number configured for the listener on the cloud VM cluster.
- memory_
size_ intin_ gbs - (Updatable) The memory to be allocated in GBs.
- node_
count int - The number of nodes in the cloud VM cluster.
- nsg_
ids Sequence[str] - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- ocpu_
count float - (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
- private_
zone_ strid - The private zone id in which DNS records need to be created.
- scan_
dns_ strname - The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan_
dns_ strrecord_ id - The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan_
ip_ Sequence[str]ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scan_
listener_ intport_ tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan_
listener_ intport_ tcp_ ssl - The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
- shape str
- The model name of the Exadata hardware running the cloud VM cluster.
- ssh_
public_ Sequence[str]keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
- state str
- The current state of the cloud VM cluster.
- storage_
size_ intin_ gbs - The storage allocation for the disk group, in gigabytes (GB).
- subnet_
id str - The OCID of the subnet associated with the cloud VM cluster.
- subscription_
id str - The OCID of the subscription with which resource needs to be associated with.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- system_
version str - Operating system version of the image.
- time_
created str - The date and time that the cloud VM cluster was created.
- time_
zone str The time zone to use for the cloud VM cluster. For details, see Time Zones.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- vip_
ids Sequence[str] - The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- zone_
id str - The OCID of the zone the cloud VM cluster is associated with.
- availability
Domain String - The name of the availability domain that the cloud Exadata infrastructure resource is located in.
- backup
Network List<String>Nsg Ids - (Updatable) A list of the OCIDs of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see Security Rules. Applicable only to Exadata systems.
- backup
Subnet StringId - The OCID of the backup network subnet associated with the cloud VM cluster.
- cloud
Exadata StringInfrastructure Id - The OCID of the cloud Exadata infrastructure resource.
- cluster
Name String - The cluster name for cloud VM cluster. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
- compartment
Id String - (Updatable) The OCID of the compartment.
- cpu
Core NumberCount - (Updatable) The number of CPU cores to enable for a cloud VM cluster. Valid values depend on the specified shape:
- Exadata.Base.48 - Specify a multiple of 2, from 0 to 48.
- Exadata.Quarter1.84 - Specify a multiple of 2, from 22 to 84.
- Exadata.Half1.168 - Specify a multiple of 4, from 44 to 168.
- Exadata.Full1.336 - Specify a multiple of 8, from 88 to 336.
- Exadata.Quarter2.92 - Specify a multiple of 2, from 0 to 92.
- Exadata.Half2.184 - Specify a multiple of 4, from 0 to 184.
- Exadata.Full2.368 - Specify a multiple of 8, from 0 to 368.
- create
Async Boolean - 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 NumberPercentage - The percentage assigned to DATA storage (user data and database files). The remaining percentage is assigned to RECO storage (database redo logs, archive logs, and recovery manager backups). Accepted values are 35, 40, 60 and 80. The default is 80 percent assigned to DATA storage. See Storage Configuration in the Exadata documentation for details on the impact of the configuration settings on storage.
- data
Storage 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 servers.
- Map<String>
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- disk
Redundancy String - The type of redundancy configured for the cloud Vm cluster. NORMAL is 2-way redundancy. HIGH is 3-way redundancy.
- display
Name String - (Updatable) The user-friendly name for the cloud VM cluster. The name does not need to be unique.
- domain String
- A domain name used for the cloud VM cluster. If the Oracle-provided internet and VCN resolver is enabled for the specified subnet, the domain name for the subnet is used (do not provide one). Otherwise, provide a valid DNS domain name. Hyphens (-) are not permitted. Applies to Exadata Cloud Service instances only.
- 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 - A valid Oracle Grid Infrastructure (GI) software version.
- hostname String
The hostname for the cloud VM cluster. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). The maximum length of the hostname is 16 characters for bare metal and virtual machine DB systems, and 12 characters for Exadata systems.
The maximum length of the combined hostname and domain is 63 characters.
Note: The hostname must be unique within the subnet. If it is not unique, the cloud VM Cluster will fail to provision.
- iorm
Config List<Property Map>Caches - The IORM settings of the Exadata DB system.
- is
Local BooleanBackup Enabled - If true, database backup on local Exadata storage is configured for the cloud VM cluster. If false, database backup on local Exadata storage is not available in the cloud VM cluster.
- is
Sparse BooleanDiskgroup Enabled - If true, the sparse disk group is configured for the cloud VM cluster. If false, the sparse disk group is not created.
- last
Update StringHistory Entry Id - The OCID of the last maintenance update history entry. This value is updated when a maintenance update starts.
- license
Model String - (Updatable) The Oracle license model that applies to the cloud VM cluster. The default is BRING_YOUR_OWN_LICENSE.
- lifecycle
Details String - Additional information about the current lifecycle state.
- listener
Port String - The port number configured for the listener on the cloud VM cluster.
- memory
Size NumberIn Gbs - (Updatable) The memory to be allocated in GBs.
- node
Count Number - The number of nodes in the cloud VM cluster.
- nsg
Ids List<String> - (Updatable) The list of OCIDs for the network security groups (NSGs) to which this resource belongs. Setting this to an empty list removes all resources from all NSGs. For more information about NSGs, see Security Rules. NsgIds restrictions:
- A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
- ocpu
Count Number - (Updatable) The number of OCPU cores to enable for a cloud VM cluster. Only 1 decimal place is allowed for the fractional part.
- private
Zone StringId - The private zone id in which DNS records need to be created.
- scan
Dns StringName - The FQDN of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan
Dns StringRecord Id - The OCID of the DNS record for the SCAN IP addresses that are associated with the cloud VM cluster.
- scan
Ip List<String>Ids - The OCID of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
- scan
Listener NumberPort Tcp - The TCP Single Client Access Name (SCAN) port. The default port is 1521.
- scan
Listener NumberPort Tcp Ssl - The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
- shape String
- The model name of the Exadata hardware running the cloud VM cluster.
- ssh
Public List<String>Keys - (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
- state String
- The current state of the cloud VM cluster.
- storage
Size NumberIn Gbs - The storage allocation for the disk group, in gigabytes (GB).
- subnet
Id String - The OCID of the subnet associated with the cloud VM cluster.
- subscription
Id String - The OCID of the subscription with which resource needs to be associated with.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- system
Version String - Operating system version of the image.
- time
Created String - The date and time that the cloud VM cluster was created.
- time
Zone String The time zone to use for the cloud VM cluster. For details, see Time Zones.
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- vip
Ids List<String> - The OCID of the virtual IP (VIP) addresses associated with the cloud VM cluster. The Cluster Ready Services (CRS) creates and maintains one VIP address for each node in the Exadata Cloud Service instance to enable failover. If one node fails, the VIP is reassigned to another active node in the cluster.
- zone
Id String - The OCID of the zone the cloud VM cluster is associated with.
Supporting Types
CloudVmClusterDataCollectionOptions, CloudVmClusterDataCollectionOptionsArgs
- 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 - 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 - 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 - 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 - 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 - 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 - 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.
CloudVmClusterFileSystemConfigurationDetail, CloudVmClusterFileSystemConfigurationDetailArgs
- 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.
CloudVmClusterIormConfigCach, CloudVmClusterIormConfigCachArgs
- Db
Plans List<CloudVm Cluster Iorm Config Cach Db Plan> - An array of IORM settings for all the database in the Exadata DB system.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Objective string
- The current value for the IORM objective. The default is
AUTO
. - State string
- The current state of the cloud VM cluster.
- Db
Plans []CloudVm Cluster Iorm Config Cach Db Plan - An array of IORM settings for all the database in the Exadata DB system.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Objective string
- The current value for the IORM objective. The default is
AUTO
. - State string
- The current state of the cloud VM cluster.
- db
Plans List<CloudVm Cluster Iorm Config Cach Db Plan> - An array of IORM settings for all the database in the Exadata DB system.
- lifecycle
Details String - Additional information about the current lifecycle state.
- objective String
- The current value for the IORM objective. The default is
AUTO
. - state String
- The current state of the cloud VM cluster.
- db
Plans CloudVm Cluster Iorm Config Cach Db Plan[] - An array of IORM settings for all the database in the Exadata DB system.
- lifecycle
Details string - Additional information about the current lifecycle state.
- objective string
- The current value for the IORM objective. The default is
AUTO
. - state string
- The current state of the cloud VM cluster.
- db_
plans Sequence[database.Cloud Vm Cluster Iorm Config Cach Db Plan] - An array of IORM settings for all the database in the Exadata DB system.
- lifecycle_
details str - Additional information about the current lifecycle state.
- objective str
- The current value for the IORM objective. The default is
AUTO
. - state str
- The current state of the cloud VM cluster.
- db
Plans List<Property Map> - An array of IORM settings for all the database in the Exadata DB system.
- lifecycle
Details String - Additional information about the current lifecycle state.
- objective String
- The current value for the IORM objective. The default is
AUTO
. - state String
- The current state of the cloud VM cluster.
CloudVmClusterIormConfigCachDbPlan, CloudVmClusterIormConfigCachDbPlanArgs
- Db
Name string - The database name. For the default
DbPlan
, thedbName
isdefault
. - Flash
Cache stringLimit - The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- Db
Name string - The database name. For the default
DbPlan
, thedbName
isdefault
. - Flash
Cache stringLimit - The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- db
Name String - The database name. For the default
DbPlan
, thedbName
isdefault
. - flash
Cache StringLimit - The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- Integer
- The relative priority of this database.
- db
Name string - The database name. For the default
DbPlan
, thedbName
isdefault
. - flash
Cache stringLimit - The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- number
- The relative priority of this database.
- db_
name str - The database name. For the default
DbPlan
, thedbName
isdefault
. - flash_
cache_ strlimit - The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- int
- The relative priority of this database.
- db
Name String - The database name. For the default
DbPlan
, thedbName
isdefault
. - flash
Cache StringLimit - The flash cache limit for this database. This value is internally configured based on the share value assigned to the database.
- Number
- The relative priority of this database.
Import
CloudVmClusters can be imported using the id
, e.g.
$ pulumi import oci:Database/cloudVmCluster:CloudVmCluster test_cloud_vm_cluster "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.