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,
});
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"])
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
})
}
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,
});
});
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());
}
}
resources:
testVmClusterAddVirtualMachine:
type: oci:Database:VmClusterAddVirtualNetwork
name: test_vm_cluster_add_virtual_machine
properties:
dbServers:
- dbServerId: ${testDbServer.id}
vmClusterId: ${testVmCluster.id}
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 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.
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",
});
example, err := Database.NewVmClusterAddVirtualNetwork(ctx, "vmClusterAddVirtualNetworkResource", &Database.VmClusterAddVirtualNetworkArgs{
DbServers: database.VmClusterAddVirtualNetworkDbServerArray{
&database.VmClusterAddVirtualNetworkDbServerArgs{
DbServerId: pulumi.String("string"),
},
},
VmClusterId: pulumi.String("string"),
})
var vmClusterAddVirtualNetworkResource = new VmClusterAddVirtualNetwork("vmClusterAddVirtualNetworkResource", VmClusterAddVirtualNetworkArgs.builder()
.dbServers(VmClusterAddVirtualNetworkDbServerArgs.builder()
.dbServerId("string")
.build())
.vmClusterId("string")
.build());
vm_cluster_add_virtual_network_resource = oci.database.VmClusterAddVirtualNetwork("vmClusterAddVirtualNetworkResource",
db_servers=[oci.database.VmClusterAddVirtualNetworkDbServerArgs(
db_server_id="string",
)],
vm_cluster_id="string")
const vmClusterAddVirtualNetworkResource = new oci.database.VmClusterAddVirtualNetwork("vmClusterAddVirtualNetworkResource", {
dbServers: [{
dbServerId: "string",
}],
vmClusterId: "string",
});
type: oci:Database:VmClusterAddVirtualNetwork
properties:
dbServers:
- dbServerId: string
vmClusterId: string
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:
- Db
Servers List<VmCluster Add Virtual Network Db Server> - The list of Exacc DB servers for the cluster to be added.
- Vm
Cluster stringId 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 []VmCluster Add Virtual Network Db Server Args - The list of Exacc DB servers for the cluster to be added.
- Vm
Cluster stringId 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 List<VmCluster Add Virtual Network Db Server> - The list of Exacc DB servers for the cluster to be added.
- vm
Cluster StringId 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 VmCluster Add Virtual Network Db Server[] - The list of Exacc DB servers for the cluster to be added.
- vm
Cluster stringId 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 Sequence[database.Vm Cluster Add Virtual Network Db Server Args] - The list of Exacc DB servers for the cluster to be added.
- vm_
cluster_ strid 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 List<Property Map> - The list of Exacc DB servers for the cluster to be added.
- vm
Cluster StringId 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:
- Availability
Domain string - The name of the availability domain that the VM cluster is located in.
- Compartment
Id string - The OCID of the compartment.
- Cpus
Enabled int - The number of enabled CPU cores.
- Data
Collection List<VmOptions Cluster Add Virtual Network Data Collection Option> - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Data
Storage doubleSize In Gb - Size of the DATA disk group in GBs.
- Data
Storage doubleSize In Tbs - Size, in terabytes, of the DATA disk group.
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- File
System List<VmConfiguration Details Cluster Add Virtual Network File System Configuration Detail> - Details of the file system configuration of the VM cluster.
- 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"}
- Gi
Version string - The Oracle Grid Infrastructure software version for the VM cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Local boolBackup Enabled - If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- Is
Sparse boolDiskgroup Enabled - If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- Last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- License
Model string - The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Memory
Size intIn Gbs - The memory allocated in GBs.
- Ocpus
Enabled double - Shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- Ssh
Public List<string>Keys - The public key portion of one or more key pairs used for SSH access to the VM cluster.
- State string
- The current state of the VM cluster.
- System
Version string - Operating system version of the image.
- Time
Created string - The date and time that the VM cluster was created.
- Time
Zone string - The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- Vm
Cluster stringNetwork Id - The OCID of the VM cluster network.
- Availability
Domain string - The name of the availability domain that the VM cluster is located in.
- Compartment
Id string - The OCID of the compartment.
- Cpus
Enabled int - The number of enabled CPU cores.
- Data
Collection []VmOptions Cluster Add Virtual Network Data Collection Option - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Data
Storage float64Size In Gb - Size of the DATA disk group in GBs.
- Data
Storage float64Size In Tbs - Size, in terabytes, of the DATA disk group.
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- File
System []VmConfiguration Details Cluster Add Virtual Network File System Configuration Detail - Details of the file system configuration of the VM cluster.
- 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"}
- Gi
Version string - The Oracle Grid Infrastructure software version for the VM cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Local boolBackup Enabled - If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- Is
Sparse boolDiskgroup Enabled - If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- Last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- License
Model string - The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Memory
Size intIn Gbs - The memory allocated in GBs.
- Ocpus
Enabled float64 - Shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- Ssh
Public []stringKeys - The public key portion of one or more key pairs used for SSH access to the VM cluster.
- State string
- The current state of the VM cluster.
- System
Version string - Operating system version of the image.
- Time
Created string - The date and time that the VM cluster was created.
- Time
Zone string - The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- Vm
Cluster stringNetwork Id - The OCID of the VM cluster network.
- availability
Domain String - The name of the availability domain that the VM cluster is located in.
- compartment
Id String - The OCID of the compartment.
- cpus
Enabled Integer - The number of enabled CPU cores.
- data
Collection List<VmOptions Cluster Add Virtual Network Data Collection Option> - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage DoubleSize In Gb - Size of the DATA disk group in GBs.
- data
Storage DoubleSize In Tbs - Size, in terabytes, of the DATA disk group.
- db
Node IntegerStorage Size In Gbs - The local node storage allocated in GBs.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- file
System List<VmConfiguration Details Cluster Add Virtual Network File System Configuration Detail> - Details of the file system configuration of the VM cluster.
- 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"}
- gi
Version String - The Oracle Grid Infrastructure software version for the VM cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Local BooleanBackup Enabled - If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- is
Sparse BooleanDiskgroup Enabled - If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- last
Patch StringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license
Model String - The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- lifecycle
Details String - Additional information about the current lifecycle state.
- memory
Size IntegerIn Gbs - The memory allocated in GBs.
- ocpus
Enabled Double - shape String
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssh
Public List<String>Keys - The public key portion of one or more key pairs used for SSH access to the VM cluster.
- state String
- The current state of the VM cluster.
- system
Version String - Operating system version of the image.
- time
Created String - The date and time that the VM cluster was created.
- time
Zone String - The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- vm
Cluster StringNetwork Id - The OCID of the VM cluster network.
- availability
Domain string - The name of the availability domain that the VM cluster is located in.
- compartment
Id string - The OCID of the compartment.
- cpus
Enabled number - The number of enabled CPU cores.
- data
Collection VmOptions Cluster Add Virtual Network Data Collection Option[] - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage numberSize In Gb - Size of the DATA disk group in GBs.
- data
Storage numberSize In Tbs - Size, in terabytes, of the DATA disk group.
- db
Node numberStorage Size In Gbs - The local node storage allocated in GBs.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name string - The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- file
System VmConfiguration Details Cluster Add Virtual Network File System Configuration Detail[] - Details of the file system configuration of the VM cluster.
- {[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"}
- gi
Version string - The Oracle Grid Infrastructure software version for the VM cluster.
- id string
- The provider-assigned unique ID for this managed resource.
- is
Local booleanBackup Enabled - If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- is
Sparse booleanDiskgroup Enabled - If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license
Model string - The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- lifecycle
Details string - Additional information about the current lifecycle state.
- memory
Size numberIn Gbs - The memory allocated in GBs.
- ocpus
Enabled number - shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssh
Public string[]Keys - The public key portion of one or more key pairs used for SSH access to the VM cluster.
- state string
- The current state of the VM cluster.
- system
Version string - Operating system version of the image.
- time
Created string - The date and time that the VM cluster was created.
- time
Zone string - The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- vm
Cluster stringNetwork Id - The OCID of the VM cluster network.
- availability_
domain str - The name of the availability domain that the VM cluster is located in.
- compartment_
id str - The OCID of the compartment.
- cpus_
enabled int - The number of enabled CPU cores.
- data_
collection_ Sequence[database.options Vm Cluster Add Virtual Network Data Collection Option] - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data_
storage_ floatsize_ in_ gb - Size of the DATA disk group in GBs.
- data_
storage_ floatsize_ in_ tbs - Size, in terabytes, of the DATA disk group.
- db_
node_ intstorage_ size_ in_ gbs - The local node storage allocated in GBs.
- 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_ strid - The OCID of the Exadata infrastructure.
- file_
system_ Sequence[database.configuration_ details Vm Cluster Add Virtual Network File System Configuration Detail] - Details of the file system configuration of the VM cluster.
- 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_ boolbackup_ enabled - If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- is_
sparse_ booldiskgroup_ enabled - If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- last_
patch_ strhistory_ entry_ id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license_
model str - 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_ intin_ gbs - 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_ Sequence[str]keys - 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_ strnetwork_ id - The OCID of the VM cluster network.
- availability
Domain String - The name of the availability domain that the VM cluster is located in.
- compartment
Id String - The OCID of the compartment.
- cpus
Enabled Number - The number of enabled CPU cores.
- data
Collection List<Property Map>Options - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage NumberSize In Gb - Size of the DATA disk group in GBs.
- data
Storage NumberSize In Tbs - Size, in terabytes, of the DATA disk group.
- db
Node NumberStorage Size In Gbs - The local node storage allocated in GBs.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- file
System List<Property Map>Configuration Details - Details of the file system configuration of the VM cluster.
- 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"}
- gi
Version String - The Oracle Grid Infrastructure software version for the VM cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- is
Local BooleanBackup Enabled - If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- is
Sparse BooleanDiskgroup Enabled - If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- last
Patch StringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license
Model String - The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- lifecycle
Details String - Additional information about the current lifecycle state.
- memory
Size NumberIn Gbs - The memory allocated in GBs.
- ocpus
Enabled Number - shape String
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssh
Public List<String>Keys - The public key portion of one or more key pairs used for SSH access to the VM cluster.
- state String
- The current state of the VM cluster.
- system
Version String - Operating system version of the image.
- time
Created String - The date and time that the VM cluster was created.
- time
Zone String - The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- vm
Cluster StringNetwork Id - 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,
availability_domain: Optional[str] = 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, str]] = None,
display_name: Optional[str] = None,
exadata_infrastructure_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,
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.
- Availability
Domain string - The name of the availability domain that the VM cluster is located in.
- Compartment
Id string - The OCID of the compartment.
- Cpus
Enabled int - The number of enabled CPU cores.
- Data
Collection List<VmOptions Cluster Add Virtual Network Data Collection Option> - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Data
Storage doubleSize In Gb - Size of the DATA disk group in GBs.
- Data
Storage doubleSize In Tbs - Size, in terabytes, of the DATA disk group.
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Db
Servers List<VmCluster Add Virtual Network Db Server> - The list of Exacc DB servers for the cluster to be added.
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- File
System List<VmConfiguration Details Cluster Add Virtual Network File System Configuration Detail> - Details of the file system configuration of the VM cluster.
- 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"}
- Gi
Version string - The Oracle Grid Infrastructure software version for the VM cluster.
- Is
Local boolBackup Enabled - If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- Is
Sparse boolDiskgroup Enabled - If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- Last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- License
Model string - The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Memory
Size intIn Gbs - The memory allocated in GBs.
- Ocpus
Enabled double - Shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- Ssh
Public List<string>Keys - The public key portion of one or more key pairs used for SSH access to the VM cluster.
- State string
- The current state of the VM cluster.
- System
Version string - Operating system version of the image.
- Time
Created string - The date and time that the VM cluster was created.
- Time
Zone string - The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- Vm
Cluster stringId 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 stringNetwork Id - The OCID of the VM cluster network.
- Availability
Domain string - The name of the availability domain that the VM cluster is located in.
- Compartment
Id string - The OCID of the compartment.
- Cpus
Enabled int - The number of enabled CPU cores.
- Data
Collection []VmOptions Cluster Add Virtual Network Data Collection Option Args - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- Data
Storage float64Size In Gb - Size of the DATA disk group in GBs.
- Data
Storage float64Size In Tbs - Size, in terabytes, of the DATA disk group.
- Db
Node intStorage Size In Gbs - The local node storage allocated in GBs.
- Db
Servers []VmCluster Add Virtual Network Db Server Args - The list of Exacc DB servers for the cluster to be added.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- Display
Name string - The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- File
System []VmConfiguration Details Cluster Add Virtual Network File System Configuration Detail Args - Details of the file system configuration of the VM cluster.
- 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"}
- Gi
Version string - The Oracle Grid Infrastructure software version for the VM cluster.
- Is
Local boolBackup Enabled - If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- Is
Sparse boolDiskgroup Enabled - If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- Last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- License
Model string - The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- Lifecycle
Details string - Additional information about the current lifecycle state.
- Memory
Size intIn Gbs - The memory allocated in GBs.
- Ocpus
Enabled float64 - Shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- Ssh
Public []stringKeys - The public key portion of one or more key pairs used for SSH access to the VM cluster.
- State string
- The current state of the VM cluster.
- System
Version string - Operating system version of the image.
- Time
Created string - The date and time that the VM cluster was created.
- Time
Zone string - The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- Vm
Cluster stringId 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 stringNetwork Id - The OCID of the VM cluster network.
- availability
Domain String - The name of the availability domain that the VM cluster is located in.
- compartment
Id String - The OCID of the compartment.
- cpus
Enabled Integer - The number of enabled CPU cores.
- data
Collection List<VmOptions Cluster Add Virtual Network Data Collection Option> - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage DoubleSize In Gb - Size of the DATA disk group in GBs.
- data
Storage DoubleSize In Tbs - Size, in terabytes, of the DATA disk group.
- db
Node IntegerStorage Size In Gbs - The local node storage allocated in GBs.
- db
Servers List<VmCluster Add Virtual Network Db Server> - The list of Exacc DB servers for the cluster to be added.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- file
System List<VmConfiguration Details Cluster Add Virtual Network File System Configuration Detail> - Details of the file system configuration of the VM cluster.
- 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"}
- gi
Version String - The Oracle Grid Infrastructure software version for the VM cluster.
- is
Local BooleanBackup Enabled - If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- is
Sparse BooleanDiskgroup Enabled - If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- last
Patch StringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license
Model String - The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- lifecycle
Details String - Additional information about the current lifecycle state.
- memory
Size IntegerIn Gbs - The memory allocated in GBs.
- ocpus
Enabled Double - shape String
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssh
Public List<String>Keys - The public key portion of one or more key pairs used for SSH access to the VM cluster.
- state String
- The current state of the VM cluster.
- system
Version String - Operating system version of the image.
- time
Created String - The date and time that the VM cluster was created.
- time
Zone String - The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- vm
Cluster StringId 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 StringNetwork Id - The OCID of the VM cluster network.
- availability
Domain string - The name of the availability domain that the VM cluster is located in.
- compartment
Id string - The OCID of the compartment.
- cpus
Enabled number - The number of enabled CPU cores.
- data
Collection VmOptions Cluster Add Virtual Network Data Collection Option[] - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage numberSize In Gb - Size of the DATA disk group in GBs.
- data
Storage numberSize In Tbs - Size, in terabytes, of the DATA disk group.
- db
Node numberStorage Size In Gbs - The local node storage allocated in GBs.
- db
Servers VmCluster Add Virtual Network Db Server[] - The list of Exacc DB servers for the cluster to be added.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name string - The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- file
System VmConfiguration Details Cluster Add Virtual Network File System Configuration Detail[] - Details of the file system configuration of the VM cluster.
- {[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"}
- gi
Version string - The Oracle Grid Infrastructure software version for the VM cluster.
- is
Local booleanBackup Enabled - If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- is
Sparse booleanDiskgroup Enabled - If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- last
Patch stringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license
Model string - The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- lifecycle
Details string - Additional information about the current lifecycle state.
- memory
Size numberIn Gbs - The memory allocated in GBs.
- ocpus
Enabled number - shape string
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssh
Public string[]Keys - The public key portion of one or more key pairs used for SSH access to the VM cluster.
- state string
- The current state of the VM cluster.
- system
Version string - Operating system version of the image.
- time
Created string - The date and time that the VM cluster was created.
- time
Zone string - The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- vm
Cluster stringId 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 stringNetwork Id - The OCID of the VM cluster network.
- availability_
domain str - The name of the availability domain that the VM cluster is located in.
- compartment_
id str - The OCID of the compartment.
- cpus_
enabled int - The number of enabled CPU cores.
- data_
collection_ Sequence[database.options Vm Cluster Add Virtual Network Data Collection Option Args] - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data_
storage_ floatsize_ in_ gb - Size of the DATA disk group in GBs.
- data_
storage_ floatsize_ in_ tbs - Size, in terabytes, of the DATA disk group.
- db_
node_ intstorage_ size_ in_ gbs - The local node storage allocated in GBs.
- db_
servers Sequence[database.Vm Cluster Add Virtual Network Db Server Args] - The list of Exacc DB servers for the cluster to be added.
- 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_ strid - The OCID of the Exadata infrastructure.
- file_
system_ Sequence[database.configuration_ details Vm Cluster Add Virtual Network File System Configuration Detail Args] - Details of the file system configuration of the VM cluster.
- 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_ boolbackup_ enabled - If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- is_
sparse_ booldiskgroup_ enabled - If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- last_
patch_ strhistory_ entry_ id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license_
model str - 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_ intin_ gbs - 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_ Sequence[str]keys - 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_ strid 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_ strnetwork_ id - The OCID of the VM cluster network.
- availability
Domain String - The name of the availability domain that the VM cluster is located in.
- compartment
Id String - The OCID of the compartment.
- cpus
Enabled Number - The number of enabled CPU cores.
- data
Collection List<Property Map>Options - Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
- data
Storage NumberSize In Gb - Size of the DATA disk group in GBs.
- data
Storage NumberSize In Tbs - Size, in terabytes, of the DATA disk group.
- db
Node NumberStorage Size In Gbs - The local node storage allocated in GBs.
- db
Servers List<Property Map> - The list of Exacc DB servers for the cluster to be added.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
- display
Name String - The user-friendly name for the Exadata Cloud@Customer VM cluster. The name does not need to be unique.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- file
System List<Property Map>Configuration Details - Details of the file system configuration of the VM cluster.
- 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"}
- gi
Version String - The Oracle Grid Infrastructure software version for the VM cluster.
- is
Local BooleanBackup Enabled - If true, database backup on local Exadata storage is configured for the VM cluster. If false, database backup on local Exadata storage is not available in the VM cluster.
- is
Sparse BooleanDiskgroup Enabled - If true, sparse disk group is configured for the VM cluster. If false, sparse disk group is not created.
- last
Patch StringHistory Entry Id - The OCID of the last patch history. This value is updated as soon as a patch operation starts.
- license
Model String - The Oracle license model that applies to the VM cluster. The default is LICENSE_INCLUDED.
- lifecycle
Details String - Additional information about the current lifecycle state.
- memory
Size NumberIn Gbs - The memory allocated in GBs.
- ocpus
Enabled Number - shape String
- The shape of the Exadata infrastructure. The shape determines the amount of CPU, storage, and memory resources allocated to the instance.
- ssh
Public List<String>Keys - The public key portion of one or more key pairs used for SSH access to the VM cluster.
- state String
- The current state of the VM cluster.
- system
Version String - Operating system version of the image.
- time
Created String - The date and time that the VM cluster was created.
- time
Zone String - The time zone of the Exadata infrastructure. For details, see Exadata Infrastructure Time Zones.
- vm
Cluster StringId 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 StringNetwork Id - The OCID of the VM cluster network.
Supporting Types
VmClusterAddVirtualNetworkDataCollectionOption, VmClusterAddVirtualNetworkDataCollectionOptionArgs
- Is
Diagnostics boolEvents Enabled - Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - Is
Health boolMonitoring Enabled - Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - Is
Incident boolLogs Enabled - Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- Is
Diagnostics boolEvents Enabled - Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - Is
Health boolMonitoring Enabled - Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - Is
Incident boolLogs Enabled - Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- is
Diagnostics BooleanEvents Enabled - Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - is
Health BooleanMonitoring Enabled - Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - is
Incident BooleanLogs Enabled - Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- is
Diagnostics booleanEvents Enabled - Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - is
Health booleanMonitoring Enabled - Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - is
Incident booleanLogs Enabled - Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- is_
diagnostics_ boolevents_ enabled - Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - is_
health_ boolmonitoring_ enabled - Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - is_
incident_ boollogs_ enabled - Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
- is
Diagnostics BooleanEvents Enabled - Indicates whether diagnostic collection is enabled for the VM cluster/Cloud VM cluster/VMBM DBCS. Enabling diagnostic collection allows you to receive Events service notifications for guest VM issues. Diagnostic collection also allows Oracle to provide enhanced service and proactive support for your Exadata system. You can enable diagnostic collection during VM cluster/Cloud VM cluster provisioning. You can also disable or enable it at any time using the
UpdateVmCluster
orupdateCloudVmCluster
API. - is
Health BooleanMonitoring Enabled - Indicates whether health monitoring is enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling health monitoring allows Oracle to collect diagnostic data and share it with its operations and support personnel. You may also receive notifications for some events. Collecting health diagnostics enables Oracle to provide proactive support and enhanced service for your system. Optionally enable health monitoring while provisioning a system. You can also disable or enable health monitoring anytime using the
UpdateVmCluster
,UpdateCloudVmCluster
orupdateDbsystem
API. - is
Incident BooleanLogs Enabled - Indicates whether incident logs and trace collection are enabled for the VM cluster / Cloud VM cluster / VMBM DBCS. Enabling incident logs collection allows Oracle to receive Events service notifications for guest VM issues, collect incident logs and traces, and use them to diagnose issues and resolve them. Optionally enable incident logs collection while provisioning a system. You can also disable or enable incident logs collection anytime using the
UpdateVmCluster
,updateCloudVmCluster
orupdateDbsystem
API.
VmClusterAddVirtualNetworkDbServer, VmClusterAddVirtualNetworkDbServerArgs
- Db
Server stringId - The OCID of Exacc Db server.
- Db
Server stringId - The OCID of Exacc Db server.
- db
Server StringId - The OCID of Exacc Db server.
- db
Server stringId - The OCID of Exacc Db server.
- db_
server_ strid - The OCID of Exacc Db server.
- db
Server StringId - The OCID of Exacc Db server.
VmClusterAddVirtualNetworkFileSystemConfigurationDetail, VmClusterAddVirtualNetworkFileSystemConfigurationDetailArgs
- File
System intSize Gb - The file system size to be allocated in GBs.
- Mount
Point string - The mount point of file system.
- File
System intSize Gb - The file system size to be allocated in GBs.
- Mount
Point string - The mount point of file system.
- file
System IntegerSize Gb - The file system size to be allocated in GBs.
- mount
Point String - The mount point of file system.
- file
System numberSize Gb - The file system size to be allocated in GBs.
- mount
Point string - The mount point of file system.
- file_
system_ intsize_ gb - The file system size to be allocated in GBs.
- mount_
point str - The mount point of file system.
- file
System NumberSize Gb - The file system size to be allocated in GBs.
- mount
Point 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"
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.