1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. VmClusterAddVirtualNetwork
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.Database.VmClusterAddVirtualNetwork

Explore with Pulumi AI

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

Add Virtual Machines to the VM cluster. Applies to Exadata Cloud@Customer instances only.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testVmClusterAddVirtualMachine = new oci.database.VmClusterAddVirtualNetwork("test_vm_cluster_add_virtual_machine", {
    dbServers: [{
        dbServerId: testDbServer.id,
    }],
    vmClusterId: testVmCluster.id,
});
Copy
import pulumi
import pulumi_oci as oci

test_vm_cluster_add_virtual_machine = oci.database.VmClusterAddVirtualNetwork("test_vm_cluster_add_virtual_machine",
    db_servers=[{
        "db_server_id": test_db_server["id"],
    }],
    vm_cluster_id=test_vm_cluster["id"])
Copy
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.NewVmClusterAddVirtualNetwork(ctx, "test_vm_cluster_add_virtual_machine", &database.VmClusterAddVirtualNetworkArgs{
			DbServers: database.VmClusterAddVirtualNetworkDbServerArray{
				&database.VmClusterAddVirtualNetworkDbServerArgs{
					DbServerId: pulumi.Any(testDbServer.Id),
				},
			},
			VmClusterId: pulumi.Any(testVmCluster.Id),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testVmClusterAddVirtualMachine = new Oci.Database.VmClusterAddVirtualNetwork("test_vm_cluster_add_virtual_machine", new()
    {
        DbServers = new[]
        {
            new Oci.Database.Inputs.VmClusterAddVirtualNetworkDbServerArgs
            {
                DbServerId = testDbServer.Id,
            },
        },
        VmClusterId = testVmCluster.Id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Database.VmClusterAddVirtualNetwork;
import com.pulumi.oci.Database.VmClusterAddVirtualNetworkArgs;
import com.pulumi.oci.Database.inputs.VmClusterAddVirtualNetworkDbServerArgs;
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 testVmClusterAddVirtualMachine = new VmClusterAddVirtualNetwork("testVmClusterAddVirtualMachine", VmClusterAddVirtualNetworkArgs.builder()
            .dbServers(VmClusterAddVirtualNetworkDbServerArgs.builder()
                .dbServerId(testDbServer.id())
                .build())
            .vmClusterId(testVmCluster.id())
            .build());

    }
}
Copy
resources:
  testVmClusterAddVirtualMachine:
    type: oci:Database:VmClusterAddVirtualNetwork
    name: test_vm_cluster_add_virtual_machine
    properties:
      dbServers:
        - dbServerId: ${testDbServer.id}
      vmClusterId: ${testVmCluster.id}
Copy
Note: You may also need to add db_servers and cpu_core_count to the ignore_changes for the resource oci.Database.VmCluster list if you see a diff on a subsequent apply

Create VmClusterAddVirtualNetwork Resource

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

Constructor syntax

new VmClusterAddVirtualNetwork(name: string, args: VmClusterAddVirtualNetworkArgs, opts?: CustomResourceOptions);
@overload
def VmClusterAddVirtualNetwork(resource_name: str,
                               args: VmClusterAddVirtualNetworkArgs,
                               opts: Optional[ResourceOptions] = None)

@overload
def VmClusterAddVirtualNetwork(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               db_servers: Optional[Sequence[_database.VmClusterAddVirtualNetworkDbServerArgs]] = None,
                               vm_cluster_id: Optional[str] = None)
func NewVmClusterAddVirtualNetwork(ctx *Context, name string, args VmClusterAddVirtualNetworkArgs, opts ...ResourceOption) (*VmClusterAddVirtualNetwork, error)
public VmClusterAddVirtualNetwork(string name, VmClusterAddVirtualNetworkArgs args, CustomResourceOptions? opts = null)
public VmClusterAddVirtualNetwork(String name, VmClusterAddVirtualNetworkArgs args)
public VmClusterAddVirtualNetwork(String name, VmClusterAddVirtualNetworkArgs args, CustomResourceOptions options)
type: oci:Database:VmClusterAddVirtualNetwork
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. VmClusterAddVirtualNetworkArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. VmClusterAddVirtualNetworkArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. VmClusterAddVirtualNetworkArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. VmClusterAddVirtualNetworkArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. VmClusterAddVirtualNetworkArgs
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 vmClusterAddVirtualNetworkResource = new Oci.Database.VmClusterAddVirtualNetwork("vmClusterAddVirtualNetworkResource", new()
{
    DbServers = new[]
    {
        new Oci.Database.Inputs.VmClusterAddVirtualNetworkDbServerArgs
        {
            DbServerId = "string",
        },
    },
    VmClusterId = "string",
});
Copy
example, err := Database.NewVmClusterAddVirtualNetwork(ctx, "vmClusterAddVirtualNetworkResource", &Database.VmClusterAddVirtualNetworkArgs{
	DbServers: database.VmClusterAddVirtualNetworkDbServerArray{
		&database.VmClusterAddVirtualNetworkDbServerArgs{
			DbServerId: pulumi.String("string"),
		},
	},
	VmClusterId: pulumi.String("string"),
})
Copy
var vmClusterAddVirtualNetworkResource = new VmClusterAddVirtualNetwork("vmClusterAddVirtualNetworkResource", VmClusterAddVirtualNetworkArgs.builder()
    .dbServers(VmClusterAddVirtualNetworkDbServerArgs.builder()
        .dbServerId("string")
        .build())
    .vmClusterId("string")
    .build());
Copy
vm_cluster_add_virtual_network_resource = oci.database.VmClusterAddVirtualNetwork("vmClusterAddVirtualNetworkResource",
    db_servers=[{
        "db_server_id": "string",
    }],
    vm_cluster_id="string")
Copy
const vmClusterAddVirtualNetworkResource = new oci.database.VmClusterAddVirtualNetwork("vmClusterAddVirtualNetworkResource", {
    dbServers: [{
        dbServerId: "string",
    }],
    vmClusterId: "string",
});
Copy
type: oci:Database:VmClusterAddVirtualNetwork
properties:
    dbServers:
        - dbServerId: string
    vmClusterId: string
Copy

VmClusterAddVirtualNetwork Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The VmClusterAddVirtualNetwork resource accepts the following input properties:

DbServers
This property is required.
Changes to this property will trigger replacement.
List<VmClusterAddVirtualNetworkDbServer>
The list of Exacc DB servers for the cluster to be added.
VmClusterId
This property is required.
Changes to this property will trigger replacement.
string

The VM cluster OCID.

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

DbServers
This property is required.
Changes to this property will trigger replacement.
[]VmClusterAddVirtualNetworkDbServerArgs
The list of Exacc DB servers for the cluster to be added.
VmClusterId
This property is required.
Changes to this property will trigger replacement.
string

The VM cluster OCID.

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

dbServers
This property is required.
Changes to this property will trigger replacement.
List<VmClusterAddVirtualNetworkDbServer>
The list of Exacc DB servers for the cluster to be added.
vmClusterId
This property is required.
Changes to this property will trigger replacement.
String

The VM cluster OCID.

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

dbServers
This property is required.
Changes to this property will trigger replacement.
VmClusterAddVirtualNetworkDbServer[]
The list of Exacc DB servers for the cluster to be added.
vmClusterId
This property is required.
Changes to this property will trigger replacement.
string

The VM cluster OCID.

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

db_servers
This property is required.
Changes to this property will trigger replacement.
Sequence[database.VmClusterAddVirtualNetworkDbServerArgs]
The list of Exacc DB servers for the cluster to be added.
vm_cluster_id
This property is required.
Changes to this property will trigger replacement.
str

The VM cluster OCID.

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

dbServers
This property is required.
Changes to this property will trigger replacement.
List<Property Map>
The list of Exacc DB servers for the cluster to be added.
vmClusterId
This property is required.
Changes to this property will trigger replacement.
String

The VM cluster OCID.

** 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 VmClusterAddVirtualNetwork resource produces the following output properties:

AvailabilityDomain string
The name of the availability domain that the VM cluster is located in.
CloudAutomationUpdateDetails List<VmClusterAddVirtualNetworkCloudAutomationUpdateDetail>
Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
CompartmentId string
The OCID of the compartment.
ComputeModel string
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
CpusEnabled int
The number of enabled CPU cores.
DataCollectionOptions List<VmClusterAddVirtualNetworkDataCollectionOption>
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
DataStorageSizeInGb double
Size of the DATA disk group in GBs.
DataStorageSizeInTbs double
Size, in terabytes, of the DATA disk group.
DbNodeStorageSizeInGbs int
The local node storage allocated in GBs.
DefinedTags Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
ExadataInfrastructureId string
The OCID of the Exadata infrastructure.
ExascaleDbStorageVaultId string
The OCID of the Exadata Database Storage Vault.
FileSystemConfigurationDetails List<VmClusterAddVirtualNetworkFileSystemConfigurationDetail>
Details of the file system configuration of the VM cluster.
FreeformTags Dictionary<string, string>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
GiVersion string
The Oracle Grid Infrastructure software version for the VM cluster.
Id string
The provider-assigned unique ID for this managed resource.
IsLocalBackupEnabled bool
If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
IsSparseDiskgroupEnabled bool
If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
LastPatchHistoryEntryId string
The OCID of the last patch history. This value is updated as soon as a patch operation starts.
LicenseModel string
The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
LifecycleDetails string
Additional information about the current lifecycle state.
MemorySizeInGbs int
The memory allocated in GBs.
OcpusEnabled double
Shape string
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
SshPublicKeys List<string>
The public key portion of one or more key pairs used for SSH access to the VM cluster.
State string
The current state of the VM cluster.
StorageManagementType string
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
SystemVersion string
Operating system version of the image.
TimeCreated string
The date and time that the VM cluster was created.
TimeZone string
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
VmClusterNetworkId string
The OCID of the VM cluster network.
VmClusterType string
The vmcluster type for the VM cluster/Cloud VM cluster.
AvailabilityDomain string
The name of the availability domain that the VM cluster is located in.
CloudAutomationUpdateDetails []VmClusterAddVirtualNetworkCloudAutomationUpdateDetail
Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
CompartmentId string
The OCID of the compartment.
ComputeModel string
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
CpusEnabled int
The number of enabled CPU cores.
DataCollectionOptions []VmClusterAddVirtualNetworkDataCollectionOption
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
DataStorageSizeInGb float64
Size of the DATA disk group in GBs.
DataStorageSizeInTbs float64
Size, in terabytes, of the DATA disk group.
DbNodeStorageSizeInGbs int
The local node storage allocated in GBs.
DefinedTags map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
ExadataInfrastructureId string
The OCID of the Exadata infrastructure.
ExascaleDbStorageVaultId string
The OCID of the Exadata Database Storage Vault.
FileSystemConfigurationDetails []VmClusterAddVirtualNetworkFileSystemConfigurationDetail
Details of the file system configuration of the VM cluster.
FreeformTags map[string]string
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
GiVersion string
The Oracle Grid Infrastructure software version for the VM cluster.
Id string
The provider-assigned unique ID for this managed resource.
IsLocalBackupEnabled bool
If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
IsSparseDiskgroupEnabled bool
If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
LastPatchHistoryEntryId string
The OCID of the last patch history. This value is updated as soon as a patch operation starts.
LicenseModel string
The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
LifecycleDetails string
Additional information about the current lifecycle state.
MemorySizeInGbs int
The memory allocated in GBs.
OcpusEnabled float64
Shape string
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
SshPublicKeys []string
The public key portion of one or more key pairs used for SSH access to the VM cluster.
State string
The current state of the VM cluster.
StorageManagementType string
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
SystemVersion string
Operating system version of the image.
TimeCreated string
The date and time that the VM cluster was created.
TimeZone string
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
VmClusterNetworkId string
The OCID of the VM cluster network.
VmClusterType string
The vmcluster type for the VM cluster/Cloud VM cluster.
availabilityDomain String
The name of the availability domain that the VM cluster is located in.
cloudAutomationUpdateDetails List<VmClusterAddVirtualNetworkCloudAutomationUpdateDetail>
Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
compartmentId String
The OCID of the compartment.
computeModel String
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
cpusEnabled Integer
The number of enabled CPU cores.
dataCollectionOptions List<VmClusterAddVirtualNetworkDataCollectionOption>
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
dataStorageSizeInGb Double
Size of the DATA disk group in GBs.
dataStorageSizeInTbs Double
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs Integer
The local node storage allocated in GBs.
definedTags Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
exadataInfrastructureId String
The OCID of the Exadata infrastructure.
exascaleDbStorageVaultId String
The OCID of the Exadata Database Storage Vault.
fileSystemConfigurationDetails List<VmClusterAddVirtualNetworkFileSystemConfigurationDetail>
Details of the file system configuration of the VM cluster.
freeformTags Map<String,String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
giVersion String
The Oracle Grid Infrastructure software version for the VM cluster.
id String
The provider-assigned unique ID for this managed resource.
isLocalBackupEnabled Boolean
If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
isSparseDiskgroupEnabled Boolean
If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
lastPatchHistoryEntryId String
The OCID of the last patch history. This value is updated as soon as a patch operation starts.
licenseModel String
The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
lifecycleDetails String
Additional information about the current lifecycle state.
memorySizeInGbs Integer
The memory allocated in GBs.
ocpusEnabled Double
shape String
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
sshPublicKeys List<String>
The public key portion of one or more key pairs used for SSH access to the VM cluster.
state String
The current state of the VM cluster.
storageManagementType String
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
systemVersion String
Operating system version of the image.
timeCreated String
The date and time that the VM cluster was created.
timeZone String
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
vmClusterNetworkId String
The OCID of the VM cluster network.
vmClusterType String
The vmcluster type for the VM cluster/Cloud VM cluster.
availabilityDomain string
The name of the availability domain that the VM cluster is located in.
cloudAutomationUpdateDetails VmClusterAddVirtualNetworkCloudAutomationUpdateDetail[]
Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
compartmentId string
The OCID of the compartment.
computeModel string
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
cpusEnabled number
The number of enabled CPU cores.
dataCollectionOptions VmClusterAddVirtualNetworkDataCollectionOption[]
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
dataStorageSizeInGb number
Size of the DATA disk group in GBs.
dataStorageSizeInTbs number
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs number
The local node storage allocated in GBs.
definedTags {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName string
The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
exadataInfrastructureId string
The OCID of the Exadata infrastructure.
exascaleDbStorageVaultId string
The OCID of the Exadata Database Storage Vault.
fileSystemConfigurationDetails VmClusterAddVirtualNetworkFileSystemConfigurationDetail[]
Details of the file system configuration of the VM cluster.
freeformTags {[key: string]: string}
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
giVersion string
The Oracle Grid Infrastructure software version for the VM cluster.
id string
The provider-assigned unique ID for this managed resource.
isLocalBackupEnabled boolean
If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
isSparseDiskgroupEnabled boolean
If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
lastPatchHistoryEntryId string
The OCID of the last patch history. This value is updated as soon as a patch operation starts.
licenseModel string
The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
lifecycleDetails string
Additional information about the current lifecycle state.
memorySizeInGbs number
The memory allocated in GBs.
ocpusEnabled number
shape string
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
sshPublicKeys string[]
The public key portion of one or more key pairs used for SSH access to the VM cluster.
state string
The current state of the VM cluster.
storageManagementType string
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
systemVersion string
Operating system version of the image.
timeCreated string
The date and time that the VM cluster was created.
timeZone string
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
vmClusterNetworkId string
The OCID of the VM cluster network.
vmClusterType string
The vmcluster type for the VM cluster/Cloud VM cluster.
availability_domain str
The name of the availability domain that the VM cluster is located in.
cloud_automation_update_details Sequence[database.VmClusterAddVirtualNetworkCloudAutomationUpdateDetail]
Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
compartment_id str
The OCID of the compartment.
compute_model str
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
cpus_enabled int
The number of enabled CPU cores.
data_collection_options Sequence[database.VmClusterAddVirtualNetworkDataCollectionOption]
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
data_storage_size_in_gb float
Size of the DATA disk group in GBs.
data_storage_size_in_tbs float
Size, in terabytes, of the DATA disk group.
db_node_storage_size_in_gbs int
The local node storage allocated in GBs.
defined_tags Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
display_name str
The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
exadata_infrastructure_id str
The OCID of the Exadata infrastructure.
exascale_db_storage_vault_id str
The OCID of the Exadata Database Storage Vault.
file_system_configuration_details Sequence[database.VmClusterAddVirtualNetworkFileSystemConfigurationDetail]
Details of the file system configuration of the VM cluster.
freeform_tags Mapping[str, str]
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
gi_version str
The Oracle Grid Infrastructure software version for the VM cluster.
id str
The provider-assigned unique ID for this managed resource.
is_local_backup_enabled bool
If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
is_sparse_diskgroup_enabled bool
If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
last_patch_history_entry_id str
The OCID of the last patch history. This value is updated as soon as a patch operation starts.
license_model str
The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
lifecycle_details str
Additional information about the current lifecycle state.
memory_size_in_gbs int
The memory allocated in GBs.
ocpus_enabled float
shape str
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
ssh_public_keys Sequence[str]
The public key portion of one or more key pairs used for SSH access to the VM cluster.
state str
The current state of the VM cluster.
storage_management_type str
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
system_version str
Operating system version of the image.
time_created str
The date and time that the VM cluster was created.
time_zone str
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
vm_cluster_network_id str
The OCID of the VM cluster network.
vm_cluster_type str
The vmcluster type for the VM cluster/Cloud VM cluster.
availabilityDomain String
The name of the availability domain that the VM cluster is located in.
cloudAutomationUpdateDetails List<Property Map>
Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
compartmentId String
The OCID of the compartment.
computeModel String
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
cpusEnabled Number
The number of enabled CPU cores.
dataCollectionOptions List<Property Map>
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
dataStorageSizeInGb Number
Size of the DATA disk group in GBs.
dataStorageSizeInTbs Number
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs Number
The local node storage allocated in GBs.
definedTags Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
exadataInfrastructureId String
The OCID of the Exadata infrastructure.
exascaleDbStorageVaultId String
The OCID of the Exadata Database Storage Vault.
fileSystemConfigurationDetails List<Property Map>
Details of the file system configuration of the VM cluster.
freeformTags Map<String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
giVersion String
The Oracle Grid Infrastructure software version for the VM cluster.
id String
The provider-assigned unique ID for this managed resource.
isLocalBackupEnabled Boolean
If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
isSparseDiskgroupEnabled Boolean
If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
lastPatchHistoryEntryId String
The OCID of the last patch history. This value is updated as soon as a patch operation starts.
licenseModel String
The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
lifecycleDetails String
Additional information about the current lifecycle state.
memorySizeInGbs Number
The memory allocated in GBs.
ocpusEnabled Number
shape String
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
sshPublicKeys List<String>
The public key portion of one or more key pairs used for SSH access to the VM cluster.
state String
The current state of the VM cluster.
storageManagementType String
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
systemVersion String
Operating system version of the image.
timeCreated String
The date and time that the VM cluster was created.
timeZone String
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
vmClusterNetworkId String
The OCID of the VM cluster network.
vmClusterType String
The vmcluster type for the VM cluster/Cloud VM cluster.

Look up Existing VmClusterAddVirtualNetwork Resource

Get an existing VmClusterAddVirtualNetwork 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?: VmClusterAddVirtualNetworkState, opts?: CustomResourceOptions): VmClusterAddVirtualNetwork
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        availability_domain: Optional[str] = None,
        cloud_automation_update_details: Optional[Sequence[_database.VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgs]] = None,
        compartment_id: Optional[str] = None,
        compute_model: Optional[str] = None,
        cpus_enabled: Optional[int] = None,
        data_collection_options: Optional[Sequence[_database.VmClusterAddVirtualNetworkDataCollectionOptionArgs]] = None,
        data_storage_size_in_gb: Optional[float] = None,
        data_storage_size_in_tbs: Optional[float] = None,
        db_node_storage_size_in_gbs: Optional[int] = None,
        db_servers: Optional[Sequence[_database.VmClusterAddVirtualNetworkDbServerArgs]] = None,
        defined_tags: Optional[Mapping[str, str]] = None,
        display_name: Optional[str] = None,
        exadata_infrastructure_id: Optional[str] = None,
        exascale_db_storage_vault_id: Optional[str] = None,
        file_system_configuration_details: Optional[Sequence[_database.VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgs]] = None,
        freeform_tags: Optional[Mapping[str, str]] = None,
        gi_version: Optional[str] = None,
        is_local_backup_enabled: Optional[bool] = None,
        is_sparse_diskgroup_enabled: Optional[bool] = None,
        last_patch_history_entry_id: Optional[str] = None,
        license_model: Optional[str] = None,
        lifecycle_details: Optional[str] = None,
        memory_size_in_gbs: Optional[int] = None,
        ocpus_enabled: Optional[float] = None,
        shape: Optional[str] = None,
        ssh_public_keys: Optional[Sequence[str]] = None,
        state: Optional[str] = None,
        storage_management_type: Optional[str] = None,
        system_version: Optional[str] = None,
        time_created: Optional[str] = None,
        time_zone: Optional[str] = None,
        vm_cluster_id: Optional[str] = None,
        vm_cluster_network_id: Optional[str] = None,
        vm_cluster_type: Optional[str] = None) -> VmClusterAddVirtualNetwork
func GetVmClusterAddVirtualNetwork(ctx *Context, name string, id IDInput, state *VmClusterAddVirtualNetworkState, opts ...ResourceOption) (*VmClusterAddVirtualNetwork, error)
public static VmClusterAddVirtualNetwork Get(string name, Input<string> id, VmClusterAddVirtualNetworkState? state, CustomResourceOptions? opts = null)
public static VmClusterAddVirtualNetwork get(String name, Output<String> id, VmClusterAddVirtualNetworkState state, CustomResourceOptions options)
resources:  _:    type: oci:Database:VmClusterAddVirtualNetwork    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AvailabilityDomain string
The name of the availability domain that the VM cluster is located in.
CloudAutomationUpdateDetails List<VmClusterAddVirtualNetworkCloudAutomationUpdateDetail>
Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
CompartmentId string
The OCID of the compartment.
ComputeModel string
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
CpusEnabled int
The number of enabled CPU cores.
DataCollectionOptions List<VmClusterAddVirtualNetworkDataCollectionOption>
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
DataStorageSizeInGb double
Size of the DATA disk group in GBs.
DataStorageSizeInTbs double
Size, in terabytes, of the DATA disk group.
DbNodeStorageSizeInGbs int
The local node storage allocated in GBs.
DbServers Changes to this property will trigger replacement. List<VmClusterAddVirtualNetworkDbServer>
The list of Exacc DB servers for the cluster to be added.
DefinedTags Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
ExadataInfrastructureId string
The OCID of the Exadata infrastructure.
ExascaleDbStorageVaultId string
The OCID of the Exadata Database Storage Vault.
FileSystemConfigurationDetails List<VmClusterAddVirtualNetworkFileSystemConfigurationDetail>
Details of the file system configuration of the VM cluster.
FreeformTags Dictionary<string, string>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
GiVersion string
The Oracle Grid Infrastructure software version for the VM cluster.
IsLocalBackupEnabled bool
If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
IsSparseDiskgroupEnabled bool
If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
LastPatchHistoryEntryId string
The OCID of the last patch history. This value is updated as soon as a patch operation starts.
LicenseModel string
The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
LifecycleDetails string
Additional information about the current lifecycle state.
MemorySizeInGbs int
The memory allocated in GBs.
OcpusEnabled double
Shape string
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
SshPublicKeys List<string>
The public key portion of one or more key pairs used for SSH access to the VM cluster.
State string
The current state of the VM cluster.
StorageManagementType string
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
SystemVersion string
Operating system version of the image.
TimeCreated string
The date and time that the VM cluster was created.
TimeZone string
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
VmClusterId Changes to this property will trigger replacement. string

The VM cluster OCID.

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

VmClusterNetworkId string
The OCID of the VM cluster network.
VmClusterType string
The vmcluster type for the VM cluster/Cloud VM cluster.
AvailabilityDomain string
The name of the availability domain that the VM cluster is located in.
CloudAutomationUpdateDetails []VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgs
Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
CompartmentId string
The OCID of the compartment.
ComputeModel string
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
CpusEnabled int
The number of enabled CPU cores.
DataCollectionOptions []VmClusterAddVirtualNetworkDataCollectionOptionArgs
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
DataStorageSizeInGb float64
Size of the DATA disk group in GBs.
DataStorageSizeInTbs float64
Size, in terabytes, of the DATA disk group.
DbNodeStorageSizeInGbs int
The local node storage allocated in GBs.
DbServers Changes to this property will trigger replacement. []VmClusterAddVirtualNetworkDbServerArgs
The list of Exacc DB servers for the cluster to be added.
DefinedTags map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
DisplayName string
The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
ExadataInfrastructureId string
The OCID of the Exadata infrastructure.
ExascaleDbStorageVaultId string
The OCID of the Exadata Database Storage Vault.
FileSystemConfigurationDetails []VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgs
Details of the file system configuration of the VM cluster.
FreeformTags map[string]string
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
GiVersion string
The Oracle Grid Infrastructure software version for the VM cluster.
IsLocalBackupEnabled bool
If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
IsSparseDiskgroupEnabled bool
If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
LastPatchHistoryEntryId string
The OCID of the last patch history. This value is updated as soon as a patch operation starts.
LicenseModel string
The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
LifecycleDetails string
Additional information about the current lifecycle state.
MemorySizeInGbs int
The memory allocated in GBs.
OcpusEnabled float64
Shape string
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
SshPublicKeys []string
The public key portion of one or more key pairs used for SSH access to the VM cluster.
State string
The current state of the VM cluster.
StorageManagementType string
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
SystemVersion string
Operating system version of the image.
TimeCreated string
The date and time that the VM cluster was created.
TimeZone string
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
VmClusterId Changes to this property will trigger replacement. string

The VM cluster OCID.

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

VmClusterNetworkId string
The OCID of the VM cluster network.
VmClusterType string
The vmcluster type for the VM cluster/Cloud VM cluster.
availabilityDomain String
The name of the availability domain that the VM cluster is located in.
cloudAutomationUpdateDetails List<VmClusterAddVirtualNetworkCloudAutomationUpdateDetail>
Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
compartmentId String
The OCID of the compartment.
computeModel String
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
cpusEnabled Integer
The number of enabled CPU cores.
dataCollectionOptions List<VmClusterAddVirtualNetworkDataCollectionOption>
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
dataStorageSizeInGb Double
Size of the DATA disk group in GBs.
dataStorageSizeInTbs Double
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs Integer
The local node storage allocated in GBs.
dbServers Changes to this property will trigger replacement. List<VmClusterAddVirtualNetworkDbServer>
The list of Exacc DB servers for the cluster to be added.
definedTags Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
exadataInfrastructureId String
The OCID of the Exadata infrastructure.
exascaleDbStorageVaultId String
The OCID of the Exadata Database Storage Vault.
fileSystemConfigurationDetails List<VmClusterAddVirtualNetworkFileSystemConfigurationDetail>
Details of the file system configuration of the VM cluster.
freeformTags Map<String,String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
giVersion String
The Oracle Grid Infrastructure software version for the VM cluster.
isLocalBackupEnabled Boolean
If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
isSparseDiskgroupEnabled Boolean
If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
lastPatchHistoryEntryId String
The OCID of the last patch history. This value is updated as soon as a patch operation starts.
licenseModel String
The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
lifecycleDetails String
Additional information about the current lifecycle state.
memorySizeInGbs Integer
The memory allocated in GBs.
ocpusEnabled Double
shape String
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
sshPublicKeys List<String>
The public key portion of one or more key pairs used for SSH access to the VM cluster.
state String
The current state of the VM cluster.
storageManagementType String
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
systemVersion String
Operating system version of the image.
timeCreated String
The date and time that the VM cluster was created.
timeZone String
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
vmClusterId Changes to this property will trigger replacement. String

The VM cluster OCID.

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

vmClusterNetworkId String
The OCID of the VM cluster network.
vmClusterType String
The vmcluster type for the VM cluster/Cloud VM cluster.
availabilityDomain string
The name of the availability domain that the VM cluster is located in.
cloudAutomationUpdateDetails VmClusterAddVirtualNetworkCloudAutomationUpdateDetail[]
Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
compartmentId string
The OCID of the compartment.
computeModel string
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
cpusEnabled number
The number of enabled CPU cores.
dataCollectionOptions VmClusterAddVirtualNetworkDataCollectionOption[]
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
dataStorageSizeInGb number
Size of the DATA disk group in GBs.
dataStorageSizeInTbs number
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs number
The local node storage allocated in GBs.
dbServers Changes to this property will trigger replacement. VmClusterAddVirtualNetworkDbServer[]
The list of Exacc DB servers for the cluster to be added.
definedTags {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName string
The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
exadataInfrastructureId string
The OCID of the Exadata infrastructure.
exascaleDbStorageVaultId string
The OCID of the Exadata Database Storage Vault.
fileSystemConfigurationDetails VmClusterAddVirtualNetworkFileSystemConfigurationDetail[]
Details of the file system configuration of the VM cluster.
freeformTags {[key: string]: string}
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
giVersion string
The Oracle Grid Infrastructure software version for the VM cluster.
isLocalBackupEnabled boolean
If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
isSparseDiskgroupEnabled boolean
If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
lastPatchHistoryEntryId string
The OCID of the last patch history. This value is updated as soon as a patch operation starts.
licenseModel string
The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
lifecycleDetails string
Additional information about the current lifecycle state.
memorySizeInGbs number
The memory allocated in GBs.
ocpusEnabled number
shape string
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
sshPublicKeys string[]
The public key portion of one or more key pairs used for SSH access to the VM cluster.
state string
The current state of the VM cluster.
storageManagementType string
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
systemVersion string
Operating system version of the image.
timeCreated string
The date and time that the VM cluster was created.
timeZone string
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
vmClusterId Changes to this property will trigger replacement. string

The VM cluster OCID.

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

vmClusterNetworkId string
The OCID of the VM cluster network.
vmClusterType string
The vmcluster type for the VM cluster/Cloud VM cluster.
availability_domain str
The name of the availability domain that the VM cluster is located in.
cloud_automation_update_details Sequence[database.VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgs]
Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
compartment_id str
The OCID of the compartment.
compute_model str
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
cpus_enabled int
The number of enabled CPU cores.
data_collection_options Sequence[database.VmClusterAddVirtualNetworkDataCollectionOptionArgs]
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
data_storage_size_in_gb float
Size of the DATA disk group in GBs.
data_storage_size_in_tbs float
Size, in terabytes, of the DATA disk group.
db_node_storage_size_in_gbs int
The local node storage allocated in GBs.
db_servers Changes to this property will trigger replacement. Sequence[database.VmClusterAddVirtualNetworkDbServerArgs]
The list of Exacc DB servers for the cluster to be added.
defined_tags Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
display_name str
The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
exadata_infrastructure_id str
The OCID of the Exadata infrastructure.
exascale_db_storage_vault_id str
The OCID of the Exadata Database Storage Vault.
file_system_configuration_details Sequence[database.VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgs]
Details of the file system configuration of the VM cluster.
freeform_tags Mapping[str, str]
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
gi_version str
The Oracle Grid Infrastructure software version for the VM cluster.
is_local_backup_enabled bool
If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
is_sparse_diskgroup_enabled bool
If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
last_patch_history_entry_id str
The OCID of the last patch history. This value is updated as soon as a patch operation starts.
license_model str
The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
lifecycle_details str
Additional information about the current lifecycle state.
memory_size_in_gbs int
The memory allocated in GBs.
ocpus_enabled float
shape str
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
ssh_public_keys Sequence[str]
The public key portion of one or more key pairs used for SSH access to the VM cluster.
state str
The current state of the VM cluster.
storage_management_type str
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
system_version str
Operating system version of the image.
time_created str
The date and time that the VM cluster was created.
time_zone str
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
vm_cluster_id Changes to this property will trigger replacement. str

The VM cluster OCID.

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

vm_cluster_network_id str
The OCID of the VM cluster network.
vm_cluster_type str
The vmcluster type for the VM cluster/Cloud VM cluster.
availabilityDomain String
The name of the availability domain that the VM cluster is located in.
cloudAutomationUpdateDetails List<Property Map>
Specifies the properties necessary for cloud automation updates. This includes modifying the apply update time preference, enabling or disabling early adoption, and enabling, modifying, or disabling the update freeze period.
compartmentId String
The OCID of the compartment.
computeModel String
The compute model of the Autonomous Database. This is required if using the computeCount parameter. If using cpuCoreCount then it is an error to specify computeModel to a non-null value. ECPU compute model is the recommended model and OCPU compute model is legacy.
cpusEnabled Number
The number of enabled CPU cores.
dataCollectionOptions List<Property Map>
Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
dataStorageSizeInGb Number
Size of the DATA disk group in GBs.
dataStorageSizeInTbs Number
Size, in terabytes, of the DATA disk group.
dbNodeStorageSizeInGbs Number
The local node storage allocated in GBs.
dbServers Changes to this property will trigger replacement. List<Property Map>
The list of Exacc DB servers for the cluster to be added.
definedTags Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
displayName String
The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
exadataInfrastructureId String
The OCID of the Exadata infrastructure.
exascaleDbStorageVaultId String
The OCID of the Exadata Database Storage Vault.
fileSystemConfigurationDetails List<Property Map>
Details of the file system configuration of the VM cluster.
freeformTags Map<String>
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
giVersion String
The Oracle Grid Infrastructure software version for the VM cluster.
isLocalBackupEnabled Boolean
If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
isSparseDiskgroupEnabled Boolean
If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
lastPatchHistoryEntryId String
The OCID of the last patch history. This value is updated as soon as a patch operation starts.
licenseModel String
The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
lifecycleDetails String
Additional information about the current lifecycle state.
memorySizeInGbs Number
The memory allocated in GBs.
ocpusEnabled Number
shape String
The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
sshPublicKeys List<String>
The public key portion of one or more key pairs used for SSH access to the VM cluster.
state String
The current state of the VM cluster.
storageManagementType String
Specifies whether the type of storage management for the VM cluster is ASM or Exascale.
systemVersion String
Operating system version of the image.
timeCreated String
The date and time that the VM cluster was created.
timeZone String
The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
vmClusterId Changes to this property will trigger replacement. String

The VM cluster OCID.

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

vmClusterNetworkId String
The OCID of the VM cluster network.
vmClusterType String
The vmcluster type for the VM cluster/Cloud VM cluster.

Supporting Types

VmClusterAddVirtualNetworkCloudAutomationUpdateDetail
, VmClusterAddVirtualNetworkCloudAutomationUpdateDetailArgs

ApplyUpdateTimePreferences List<VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreference>
Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
FreezePeriods List<VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriod>
Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
IsEarlyAdoptionEnabled bool
Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
IsFreezePeriodEnabled bool
Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
ApplyUpdateTimePreferences []VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreference
Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
FreezePeriods []VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriod
Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
IsEarlyAdoptionEnabled bool
Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
IsFreezePeriodEnabled bool
Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
applyUpdateTimePreferences List<VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreference>
Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
freezePeriods List<VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriod>
Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
isEarlyAdoptionEnabled Boolean
Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
isFreezePeriodEnabled Boolean
Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
applyUpdateTimePreferences VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreference[]
Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
freezePeriods VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriod[]
Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
isEarlyAdoptionEnabled boolean
Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
isFreezePeriodEnabled boolean
Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
apply_update_time_preferences Sequence[database.VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreference]
Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
freeze_periods Sequence[database.VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriod]
Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
is_early_adoption_enabled bool
Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
is_freeze_period_enabled bool
Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.
applyUpdateTimePreferences List<Property Map>
Configure the time slot for applying VM cloud automation software updates to the cluster. When nothing is selected, the default time slot is 12 AM to 2 AM UTC. Any 2-hour slot is available starting at 12 AM.
freezePeriods List<Property Map>
Enables a freeze period for the VM cluster prohibiting the VMs from getting cloud automation software updates during critical business cycles. Freeze period start date. Starts at 12:00 AM UTC on the selected date and ends at 11:59:59 PM UTC on the selected date. Validates to ensure the freeze period does not exceed 45 days.
isEarlyAdoptionEnabled Boolean
Annotates whether the cluster should be part of early access to apply VM cloud automation software updates. Those clusters annotated as early access will download the software bits for cloud automation in the first week after the update is available, while other clusters will have to wait until the following week.
isFreezePeriodEnabled Boolean
Specifies if the freeze period is enabled for the VM cluster to prevent the VMs from receiving cloud automation software updates during critical business cycles. Freeze period starts at 12:00 AM UTC and ends at 11:59:59 PM UTC on the selected date. Ensure that the freezing period does not exceed 45 days.

VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreference
, VmClusterAddVirtualNetworkCloudAutomationUpdateDetailApplyUpdateTimePreferenceArgs

ApplyUpdatePreferredEndTime string
End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
ApplyUpdatePreferredStartTime string
Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
ApplyUpdatePreferredEndTime string
End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
ApplyUpdatePreferredStartTime string
Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
applyUpdatePreferredEndTime String
End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
applyUpdatePreferredStartTime String
Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
applyUpdatePreferredEndTime string
End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
applyUpdatePreferredStartTime string
Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
apply_update_preferred_end_time str
End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
apply_update_preferred_start_time str
Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.
applyUpdatePreferredEndTime String
End time for polling VM cloud automation software updates for the cluster. If the endTime is not specified, 2 AM UTC is used by default.
applyUpdatePreferredStartTime String
Start time for polling VM cloud automation software updates for the cluster. If the startTime is not specified, 12 AM UTC is used by default.

VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriod
, VmClusterAddVirtualNetworkCloudAutomationUpdateDetailFreezePeriodArgs

FreezePeriodEndTime string
End time of the freeze period cycle.
FreezePeriodStartTime string
Start time of the freeze period cycle.
FreezePeriodEndTime string
End time of the freeze period cycle.
FreezePeriodStartTime string
Start time of the freeze period cycle.
freezePeriodEndTime String
End time of the freeze period cycle.
freezePeriodStartTime String
Start time of the freeze period cycle.
freezePeriodEndTime string
End time of the freeze period cycle.
freezePeriodStartTime string
Start time of the freeze period cycle.
freeze_period_end_time str
End time of the freeze period cycle.
freeze_period_start_time str
Start time of the freeze period cycle.
freezePeriodEndTime String
End time of the freeze period cycle.
freezePeriodStartTime String
Start time of the freeze period cycle.

VmClusterAddVirtualNetworkDataCollectionOption
, VmClusterAddVirtualNetworkDataCollectionOptionArgs

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

VmClusterAddVirtualNetworkDbServer
, VmClusterAddVirtualNetworkDbServerArgs

DbServerId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of Exacc Db server.
DbServerId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of Exacc Db server.
dbServerId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of Exacc Db server.
dbServerId
This property is required.
Changes to this property will trigger replacement.
string
The OCID of Exacc Db server.
db_server_id
This property is required.
Changes to this property will trigger replacement.
str
The OCID of Exacc Db server.
dbServerId
This property is required.
Changes to this property will trigger replacement.
String
The OCID of Exacc Db server.

VmClusterAddVirtualNetworkFileSystemConfigurationDetail
, VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgs

FileSystemSizeGb int
The file system size to be allocated in GBs.
MountPoint string
The mount point of file system.
FileSystemSizeGb int
The file system size to be allocated in GBs.
MountPoint string
The mount point of file system.
fileSystemSizeGb Integer
The file system size to be allocated in GBs.
mountPoint String
The mount point of file system.
fileSystemSizeGb number
The file system size to be allocated in GBs.
mountPoint string
The mount point of file system.
file_system_size_gb int
The file system size to be allocated in GBs.
mount_point str
The mount point of file system.
fileSystemSizeGb Number
The file system size to be allocated in GBs.
mountPoint String
The mount point of file system.

Import

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

$ pulumi import oci:Database/vmClusterAddVirtualNetwork:VmClusterAddVirtualNetwork test_vm_cluster_add_virtual_machine "id"
Copy

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.