oci logo
Oracle Cloud Infrastructure v0.13.0, Mar 28 23

oci.Database.VmClusterAddVirtualNetwork

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

using System.Collections.Generic;
using Pulumi;
using Oci = Pulumi.Oci;

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

});
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/go/oci/Database"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := Database.NewVmClusterAddVirtualNetwork(ctx, "testVmClusterAddVirtualMachine", &Database.VmClusterAddVirtualNetworkArgs{
			DbServers: database.VmClusterAddVirtualNetworkDbServerArray{
				&database.VmClusterAddVirtualNetworkDbServerArgs{
					DbServerId: pulumi.Any(oci_database_db_server.Test_db_server.Id),
				},
			},
			VmClusterId: pulumi.Any(oci_database_vm_cluster.Test_vm_cluster.Id),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
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(oci_database_db_server.test_db_server().id())
                .build())
            .vmClusterId(oci_database_vm_cluster.test_vm_cluster().id())
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_vm_cluster_add_virtual_machine = oci.database.VmClusterAddVirtualNetwork("testVmClusterAddVirtualMachine",
    db_servers=[oci.database.VmClusterAddVirtualNetworkDbServerArgs(
        db_server_id=oci_database_db_server["test_db_server"]["id"],
    )],
    vm_cluster_id=oci_database_vm_cluster["test_vm_cluster"]["id"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testVmClusterAddVirtualMachine = new oci.database.VmClusterAddVirtualNetwork("testVmClusterAddVirtualMachine", {
    dbServers: [{
        dbServerId: oci_database_db_server.test_db_server.id,
    }],
    vmClusterId: oci_database_vm_cluster.test_vm_cluster.id,
});
resources:
  testVmClusterAddVirtualMachine:
    type: oci:Database:VmClusterAddVirtualNetwork
    properties:
      #Required
      dbServers:
        - dbServerId: ${oci_database_db_server.test_db_server.id}
      vmClusterId: ${oci_database_vm_cluster.test_vm_cluster.id}

Create VmClusterAddVirtualNetwork Resource

new VmClusterAddVirtualNetwork(name: string, args: VmClusterAddVirtualNetworkArgs, opts?: CustomResourceOptions);
@overload
def VmClusterAddVirtualNetwork(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               db_servers: Optional[Sequence[_database.VmClusterAddVirtualNetworkDbServerArgs]] = None,
                               vm_cluster_id: Optional[str] = None)
@overload
def VmClusterAddVirtualNetwork(resource_name: str,
                               args: VmClusterAddVirtualNetworkArgs,
                               opts: Optional[ResourceOptions] = 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.

name string
The unique name of the resource.
args VmClusterAddVirtualNetworkArgs
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 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 string
The unique name of the resource.
args VmClusterAddVirtualNetworkArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args VmClusterAddVirtualNetworkArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args VmClusterAddVirtualNetworkArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

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

The VmClusterAddVirtualNetwork resource accepts the following input properties:

DbServers List<VmClusterAddVirtualNetworkDbServerArgs>

The list of Exacc DB servers for the cluster to be added.

VmClusterId string

The VM cluster OCID.

DbServers []VmClusterAddVirtualNetworkDbServerArgs

The list of Exacc DB servers for the cluster to be added.

VmClusterId string

The VM cluster OCID.

dbServers List<VmClusterAddVirtualNetworkDbServerArgs>

The list of Exacc DB servers for the cluster to be added.

vmClusterId String

The VM cluster OCID.

dbServers VmClusterAddVirtualNetworkDbServerArgs[]

The list of Exacc DB servers for the cluster to be added.

vmClusterId string

The VM cluster OCID.

db_servers VmClusterAddVirtualNetworkDbServerArgs]

The list of Exacc DB servers for the cluster to be added.

vm_cluster_id str

The VM cluster OCID.

dbServers List<Property Map>

The list of Exacc DB servers for the cluster to be added.

vmClusterId String

The VM cluster OCID.

Outputs

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

CompartmentId string

The OCID of the compartment.

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, object>

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.

FreeformTags Dictionary<string, object>

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.

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.

CompartmentId string

The OCID of the compartment.

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]interface{}

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.

FreeformTags map[string]interface{}

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.

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.

compartmentId String

The OCID of the compartment.

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,Object>

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.

freeformTags Map<String,Object>

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.

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.

compartmentId string

The OCID of the compartment.

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]: any}

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.

freeformTags {[key: string]: any}

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.

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.

compartment_id str

The OCID of the compartment.

cpus_enabled int

The number of enabled CPU cores.

data_collection_options 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, Any]

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.

freeform_tags Mapping[str, Any]

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.

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.

compartmentId String

The OCID of the compartment.

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

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.

freeformTags Map<Any>

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.

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.

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,
        compartment_id: 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, Any]] = None,
        display_name: Optional[str] = None,
        exadata_infrastructure_id: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, Any]] = None,
        gi_version: Optional[str] = None,
        is_local_backup_enabled: Optional[bool] = None,
        is_sparse_diskgroup_enabled: Optional[bool] = None,
        last_patch_history_entry_id: Optional[str] = None,
        license_model: Optional[str] = None,
        lifecycle_details: Optional[str] = None,
        memory_size_in_gbs: Optional[int] = None,
        ocpus_enabled: Optional[float] = None,
        shape: Optional[str] = None,
        ssh_public_keys: Optional[Sequence[str]] = None,
        state: Optional[str] = None,
        system_version: Optional[str] = None,
        time_created: Optional[str] = None,
        time_zone: Optional[str] = None,
        vm_cluster_id: Optional[str] = None,
        vm_cluster_network_id: 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)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
CompartmentId string

The OCID of the compartment.

CpusEnabled int

The number of enabled CPU cores.

DataCollectionOptions List<VmClusterAddVirtualNetworkDataCollectionOptionArgs>

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 List<VmClusterAddVirtualNetworkDbServerArgs>

The list of Exacc DB servers for the cluster to be added.

DefinedTags Dictionary<string, object>

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.

FreeformTags Dictionary<string, object>

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.

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 string

The VM cluster OCID.

VmClusterNetworkId string

The OCID of the VM cluster network.

CompartmentId string

The OCID of the compartment.

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 []VmClusterAddVirtualNetworkDbServerArgs

The list of Exacc DB servers for the cluster to be added.

DefinedTags map[string]interface{}

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.

FreeformTags map[string]interface{}

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.

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 string

The VM cluster OCID.

VmClusterNetworkId string

The OCID of the VM cluster network.

compartmentId String

The OCID of the compartment.

cpusEnabled Integer

The number of enabled CPU cores.

dataCollectionOptions List<VmClusterAddVirtualNetworkDataCollectionOptionArgs>

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 List<VmClusterAddVirtualNetworkDbServerArgs>

The list of Exacc DB servers for the cluster to be added.

definedTags Map<String,Object>

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.

freeformTags Map<String,Object>

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.

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 String

The VM cluster OCID.

vmClusterNetworkId String

The OCID of the VM cluster network.

compartmentId string

The OCID of the compartment.

cpusEnabled number

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 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 VmClusterAddVirtualNetworkDbServerArgs[]

The list of Exacc DB servers for the cluster to be added.

definedTags {[key: string]: any}

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.

freeformTags {[key: string]: any}

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.

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 string

The VM cluster OCID.

vmClusterNetworkId string

The OCID of the VM cluster network.

compartment_id str

The OCID of the compartment.

cpus_enabled int

The number of enabled CPU cores.

data_collection_options 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 VmClusterAddVirtualNetworkDbServerArgs]

The list of Exacc DB servers for the cluster to be added.

defined_tags Mapping[str, Any]

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.

freeform_tags Mapping[str, Any]

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.

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 str

The VM cluster OCID.

vm_cluster_network_id str

The OCID of the VM cluster network.

compartmentId String

The OCID of the compartment.

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 List<Property Map>

The list of Exacc DB servers for the cluster to be added.

definedTags Map<Any>

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.

freeformTags Map<Any>

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.

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 String

The VM cluster OCID.

vmClusterNetworkId String

The OCID of the VM cluster network.

Supporting Types

VmClusterAddVirtualNetworkDataCollectionOption

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

DbServerId string

The OCID of Exacc Db server.

DbServerId string

The OCID of Exacc Db server.

dbServerId String

The OCID of Exacc Db server.

dbServerId string

The OCID of Exacc Db server.

db_server_id str

The OCID of Exacc Db server.

dbServerId String

The OCID of Exacc Db server.

Import

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

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

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.