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

oci.Database.VmClusterNetwork

This resource provides the Vm Cluster Network resource in Oracle Cloud Infrastructure Database service.

Creates the VM cluster network. Applies to Exadata Cloud@Customer instances only. To create a cloud VM cluster in an Exadata Cloud Service instance, use the CreateCloudVmCluster operation.

Example Usage

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

return await Deployment.RunAsync(() => 
{
    var testVmClusterNetwork = new Oci.Database.VmClusterNetwork("testVmClusterNetwork", new()
    {
        CompartmentId = @var.Compartment_id,
        DisplayName = @var.Vm_cluster_network_display_name,
        ExadataInfrastructureId = oci_database_exadata_infrastructure.Test_exadata_infrastructure.Id,
        Scans = new[]
        {
            new Oci.Database.Inputs.VmClusterNetworkScanArgs
            {
                Hostname = @var.Vm_cluster_network_scans_hostname,
                Ips = @var.Vm_cluster_network_scans_ips,
                Port = @var.Vm_cluster_network_scans_port,
                ScanListenerPortTcp = @var.Vm_cluster_network_scans_scan_listener_port_tcp,
                ScanListenerPortTcpSsl = @var.Vm_cluster_network_scans_scan_listener_port_tcp_ssl,
            },
        },
        VmNetworks = new[]
        {
            new Oci.Database.Inputs.VmClusterNetworkVmNetworkArgs
            {
                NetworkType = @var.Vm_cluster_network_vm_networks_network_type,
                Nodes = new[]
                {
                    new Oci.Database.Inputs.VmClusterNetworkVmNetworkNodeArgs
                    {
                        Hostname = @var.Vm_cluster_network_vm_networks_nodes_hostname,
                        Ip = @var.Vm_cluster_network_vm_networks_nodes_ip,
                        DbServerId = oci_database_db_server.Test_db_server.Id,
                        State = @var.Vm_cluster_network_vm_networks_nodes_state,
                        Vip = @var.Vm_cluster_network_vm_networks_nodes_vip,
                        VipHostname = @var.Vm_cluster_network_vm_networks_nodes_vip_hostname,
                    },
                },
                DomainName = oci_identity_domain.Test_domain.Name,
                Gateway = @var.Vm_cluster_network_vm_networks_gateway,
                Netmask = @var.Vm_cluster_network_vm_networks_netmask,
                VlanId = @var.Vm_cluster_network_vm_networks_vlan_id,
            },
        },
        DefinedTags = @var.Vm_cluster_network_defined_tags,
        Dns = @var.Vm_cluster_network_dns,
        FreeformTags = 
        {
            { "Department", "Finance" },
        },
        Ntps = @var.Vm_cluster_network_ntp,
        ValidateVmClusterNetwork = @var.Vm_cluster_network_validate_vm_cluster_network,
    });

});
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.NewVmClusterNetwork(ctx, "testVmClusterNetwork", &Database.VmClusterNetworkArgs{
			CompartmentId:           pulumi.Any(_var.Compartment_id),
			DisplayName:             pulumi.Any(_var.Vm_cluster_network_display_name),
			ExadataInfrastructureId: pulumi.Any(oci_database_exadata_infrastructure.Test_exadata_infrastructure.Id),
			Scans: database.VmClusterNetworkScanArray{
				&database.VmClusterNetworkScanArgs{
					Hostname:               pulumi.Any(_var.Vm_cluster_network_scans_hostname),
					Ips:                    pulumi.Any(_var.Vm_cluster_network_scans_ips),
					Port:                   pulumi.Any(_var.Vm_cluster_network_scans_port),
					ScanListenerPortTcp:    pulumi.Any(_var.Vm_cluster_network_scans_scan_listener_port_tcp),
					ScanListenerPortTcpSsl: pulumi.Any(_var.Vm_cluster_network_scans_scan_listener_port_tcp_ssl),
				},
			},
			VmNetworks: database.VmClusterNetworkVmNetworkArray{
				&database.VmClusterNetworkVmNetworkArgs{
					NetworkType: pulumi.Any(_var.Vm_cluster_network_vm_networks_network_type),
					Nodes: database.VmClusterNetworkVmNetworkNodeArray{
						&database.VmClusterNetworkVmNetworkNodeArgs{
							Hostname:    pulumi.Any(_var.Vm_cluster_network_vm_networks_nodes_hostname),
							Ip:          pulumi.Any(_var.Vm_cluster_network_vm_networks_nodes_ip),
							DbServerId:  pulumi.Any(oci_database_db_server.Test_db_server.Id),
							State:       pulumi.Any(_var.Vm_cluster_network_vm_networks_nodes_state),
							Vip:         pulumi.Any(_var.Vm_cluster_network_vm_networks_nodes_vip),
							VipHostname: pulumi.Any(_var.Vm_cluster_network_vm_networks_nodes_vip_hostname),
						},
					},
					DomainName: pulumi.Any(oci_identity_domain.Test_domain.Name),
					Gateway:    pulumi.Any(_var.Vm_cluster_network_vm_networks_gateway),
					Netmask:    pulumi.Any(_var.Vm_cluster_network_vm_networks_netmask),
					VlanId:     pulumi.Any(_var.Vm_cluster_network_vm_networks_vlan_id),
				},
			},
			DefinedTags: pulumi.Any(_var.Vm_cluster_network_defined_tags),
			Dns:         pulumi.Any(_var.Vm_cluster_network_dns),
			FreeformTags: pulumi.AnyMap{
				"Department": pulumi.Any("Finance"),
			},
			Ntps:                     pulumi.Any(_var.Vm_cluster_network_ntp),
			ValidateVmClusterNetwork: pulumi.Any(_var.Vm_cluster_network_validate_vm_cluster_network),
		})
		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.VmClusterNetwork;
import com.pulumi.oci.Database.VmClusterNetworkArgs;
import com.pulumi.oci.Database.inputs.VmClusterNetworkScanArgs;
import com.pulumi.oci.Database.inputs.VmClusterNetworkVmNetworkArgs;
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 testVmClusterNetwork = new VmClusterNetwork("testVmClusterNetwork", VmClusterNetworkArgs.builder()        
            .compartmentId(var_.compartment_id())
            .displayName(var_.vm_cluster_network_display_name())
            .exadataInfrastructureId(oci_database_exadata_infrastructure.test_exadata_infrastructure().id())
            .scans(VmClusterNetworkScanArgs.builder()
                .hostname(var_.vm_cluster_network_scans_hostname())
                .ips(var_.vm_cluster_network_scans_ips())
                .port(var_.vm_cluster_network_scans_port())
                .scanListenerPortTcp(var_.vm_cluster_network_scans_scan_listener_port_tcp())
                .scanListenerPortTcpSsl(var_.vm_cluster_network_scans_scan_listener_port_tcp_ssl())
                .build())
            .vmNetworks(VmClusterNetworkVmNetworkArgs.builder()
                .networkType(var_.vm_cluster_network_vm_networks_network_type())
                .nodes(VmClusterNetworkVmNetworkNodeArgs.builder()
                    .hostname(var_.vm_cluster_network_vm_networks_nodes_hostname())
                    .ip(var_.vm_cluster_network_vm_networks_nodes_ip())
                    .dbServerId(oci_database_db_server.test_db_server().id())
                    .state(var_.vm_cluster_network_vm_networks_nodes_state())
                    .vip(var_.vm_cluster_network_vm_networks_nodes_vip())
                    .vipHostname(var_.vm_cluster_network_vm_networks_nodes_vip_hostname())
                    .build())
                .domainName(oci_identity_domain.test_domain().name())
                .gateway(var_.vm_cluster_network_vm_networks_gateway())
                .netmask(var_.vm_cluster_network_vm_networks_netmask())
                .vlanId(var_.vm_cluster_network_vm_networks_vlan_id())
                .build())
            .definedTags(var_.vm_cluster_network_defined_tags())
            .dns(var_.vm_cluster_network_dns())
            .freeformTags(Map.of("Department", "Finance"))
            .ntps(var_.vm_cluster_network_ntp())
            .validateVmClusterNetwork(var_.vm_cluster_network_validate_vm_cluster_network())
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_vm_cluster_network = oci.database.VmClusterNetwork("testVmClusterNetwork",
    compartment_id=var["compartment_id"],
    display_name=var["vm_cluster_network_display_name"],
    exadata_infrastructure_id=oci_database_exadata_infrastructure["test_exadata_infrastructure"]["id"],
    scans=[oci.database.VmClusterNetworkScanArgs(
        hostname=var["vm_cluster_network_scans_hostname"],
        ips=var["vm_cluster_network_scans_ips"],
        port=var["vm_cluster_network_scans_port"],
        scan_listener_port_tcp=var["vm_cluster_network_scans_scan_listener_port_tcp"],
        scan_listener_port_tcp_ssl=var["vm_cluster_network_scans_scan_listener_port_tcp_ssl"],
    )],
    vm_networks=[oci.database.VmClusterNetworkVmNetworkArgs(
        network_type=var["vm_cluster_network_vm_networks_network_type"],
        nodes=[oci.database.VmClusterNetworkVmNetworkNodeArgs(
            hostname=var["vm_cluster_network_vm_networks_nodes_hostname"],
            ip=var["vm_cluster_network_vm_networks_nodes_ip"],
            db_server_id=oci_database_db_server["test_db_server"]["id"],
            state=var["vm_cluster_network_vm_networks_nodes_state"],
            vip=var["vm_cluster_network_vm_networks_nodes_vip"],
            vip_hostname=var["vm_cluster_network_vm_networks_nodes_vip_hostname"],
        )],
        domain_name=oci_identity_domain["test_domain"]["name"],
        gateway=var["vm_cluster_network_vm_networks_gateway"],
        netmask=var["vm_cluster_network_vm_networks_netmask"],
        vlan_id=var["vm_cluster_network_vm_networks_vlan_id"],
    )],
    defined_tags=var["vm_cluster_network_defined_tags"],
    dns=var["vm_cluster_network_dns"],
    freeform_tags={
        "Department": "Finance",
    },
    ntps=var["vm_cluster_network_ntp"],
    validate_vm_cluster_network=var["vm_cluster_network_validate_vm_cluster_network"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testVmClusterNetwork = new oci.database.VmClusterNetwork("testVmClusterNetwork", {
    compartmentId: _var.compartment_id,
    displayName: _var.vm_cluster_network_display_name,
    exadataInfrastructureId: oci_database_exadata_infrastructure.test_exadata_infrastructure.id,
    scans: [{
        hostname: _var.vm_cluster_network_scans_hostname,
        ips: _var.vm_cluster_network_scans_ips,
        port: _var.vm_cluster_network_scans_port,
        scanListenerPortTcp: _var.vm_cluster_network_scans_scan_listener_port_tcp,
        scanListenerPortTcpSsl: _var.vm_cluster_network_scans_scan_listener_port_tcp_ssl,
    }],
    vmNetworks: [{
        networkType: _var.vm_cluster_network_vm_networks_network_type,
        nodes: [{
            hostname: _var.vm_cluster_network_vm_networks_nodes_hostname,
            ip: _var.vm_cluster_network_vm_networks_nodes_ip,
            dbServerId: oci_database_db_server.test_db_server.id,
            state: _var.vm_cluster_network_vm_networks_nodes_state,
            vip: _var.vm_cluster_network_vm_networks_nodes_vip,
            vipHostname: _var.vm_cluster_network_vm_networks_nodes_vip_hostname,
        }],
        domainName: oci_identity_domain.test_domain.name,
        gateway: _var.vm_cluster_network_vm_networks_gateway,
        netmask: _var.vm_cluster_network_vm_networks_netmask,
        vlanId: _var.vm_cluster_network_vm_networks_vlan_id,
    }],
    definedTags: _var.vm_cluster_network_defined_tags,
    dns: _var.vm_cluster_network_dns,
    freeformTags: {
        Department: "Finance",
    },
    ntps: _var.vm_cluster_network_ntp,
    validateVmClusterNetwork: _var.vm_cluster_network_validate_vm_cluster_network,
});
resources:
  testVmClusterNetwork:
    type: oci:Database:VmClusterNetwork
    properties:
      #Required
      compartmentId: ${var.compartment_id}
      displayName: ${var.vm_cluster_network_display_name}
      exadataInfrastructureId: ${oci_database_exadata_infrastructure.test_exadata_infrastructure.id}
      scans:
        - hostname: ${var.vm_cluster_network_scans_hostname}
          ips: ${var.vm_cluster_network_scans_ips}
          port: ${var.vm_cluster_network_scans_port}
          scanListenerPortTcp: ${var.vm_cluster_network_scans_scan_listener_port_tcp}
          scanListenerPortTcpSsl: ${var.vm_cluster_network_scans_scan_listener_port_tcp_ssl}
      vmNetworks:
        - networkType: ${var.vm_cluster_network_vm_networks_network_type}
          nodes:
            - hostname: ${var.vm_cluster_network_vm_networks_nodes_hostname}
              ip: ${var.vm_cluster_network_vm_networks_nodes_ip}
              dbServerId: ${oci_database_db_server.test_db_server.id}
              state: ${var.vm_cluster_network_vm_networks_nodes_state}
              vip: ${var.vm_cluster_network_vm_networks_nodes_vip}
              vipHostname: ${var.vm_cluster_network_vm_networks_nodes_vip_hostname}
          domainName: ${oci_identity_domain.test_domain.name}
          gateway: ${var.vm_cluster_network_vm_networks_gateway}
          netmask: ${var.vm_cluster_network_vm_networks_netmask}
          vlanId: ${var.vm_cluster_network_vm_networks_vlan_id}
      #Optional
      definedTags: ${var.vm_cluster_network_defined_tags}
      dns: ${var.vm_cluster_network_dns}
      freeformTags:
        Department: Finance
      ntps: ${var.vm_cluster_network_ntp}
      validateVmClusterNetwork: ${var.vm_cluster_network_validate_vm_cluster_network}

Create VmClusterNetwork Resource

new VmClusterNetwork(name: string, args: VmClusterNetworkArgs, opts?: CustomResourceOptions);
@overload
def VmClusterNetwork(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     action: Optional[str] = None,
                     compartment_id: Optional[str] = None,
                     defined_tags: Optional[Mapping[str, Any]] = None,
                     display_name: Optional[str] = None,
                     dns: Optional[Sequence[str]] = None,
                     exadata_infrastructure_id: Optional[str] = None,
                     freeform_tags: Optional[Mapping[str, Any]] = None,
                     ntps: Optional[Sequence[str]] = None,
                     scans: Optional[Sequence[_database.VmClusterNetworkScanArgs]] = None,
                     validate_vm_cluster_network: Optional[bool] = None,
                     vm_networks: Optional[Sequence[_database.VmClusterNetworkVmNetworkArgs]] = None)
@overload
def VmClusterNetwork(resource_name: str,
                     args: VmClusterNetworkArgs,
                     opts: Optional[ResourceOptions] = None)
func NewVmClusterNetwork(ctx *Context, name string, args VmClusterNetworkArgs, opts ...ResourceOption) (*VmClusterNetwork, error)
public VmClusterNetwork(string name, VmClusterNetworkArgs args, CustomResourceOptions? opts = null)
public VmClusterNetwork(String name, VmClusterNetworkArgs args)
public VmClusterNetwork(String name, VmClusterNetworkArgs args, CustomResourceOptions options)
type: oci:Database:VmClusterNetwork
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

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

VmClusterNetwork 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 VmClusterNetwork resource accepts the following input properties:

CompartmentId string

The OCID of the compartment.

DisplayName string

The user-friendly name for the Exadata Cloud@Customer VM cluster network. The name does not need to be unique.

ExadataInfrastructureId string

The Exadata infrastructure OCID.

Scans List<VmClusterNetworkScanArgs>

(Updatable) The SCAN details.

VmNetworks List<VmClusterNetworkVmNetworkArgs>

(Updatable) Details of the client and backup networks.

Action string
DefinedTags Dictionary<string, object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

Dns List<string>

(Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.

FreeformTags Dictionary<string, object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

Ntps List<string>

(Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.

ValidateVmClusterNetwork bool
CompartmentId string

The OCID of the compartment.

DisplayName string

The user-friendly name for the Exadata Cloud@Customer VM cluster network. The name does not need to be unique.

ExadataInfrastructureId string

The Exadata infrastructure OCID.

Scans []VmClusterNetworkScanArgs

(Updatable) The SCAN details.

VmNetworks []VmClusterNetworkVmNetworkArgs

(Updatable) Details of the client and backup networks.

Action string
DefinedTags map[string]interface{}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

Dns []string

(Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.

FreeformTags map[string]interface{}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

Ntps []string

(Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.

ValidateVmClusterNetwork bool
compartmentId String

The OCID of the compartment.

displayName String

The user-friendly name for the Exadata Cloud@Customer VM cluster network. The name does not need to be unique.

exadataInfrastructureId String

The Exadata infrastructure OCID.

scans List<VmClusterNetworkScanArgs>

(Updatable) The SCAN details.

vmNetworks List<VmClusterNetworkVmNetworkArgs>

(Updatable) Details of the client and backup networks.

action String
definedTags Map<String,Object>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

dns List<String>

(Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.

freeformTags Map<String,Object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

ntps List<String>

(Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.

validateVmClusterNetwork Boolean
compartmentId string

The OCID of the compartment.

displayName string

The user-friendly name for the Exadata Cloud@Customer VM cluster network. The name does not need to be unique.

exadataInfrastructureId string

The Exadata infrastructure OCID.

scans VmClusterNetworkScanArgs[]

(Updatable) The SCAN details.

vmNetworks VmClusterNetworkVmNetworkArgs[]

(Updatable) Details of the client and backup networks.

action string
definedTags {[key: string]: any}

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

dns string[]

(Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.

freeformTags {[key: string]: any}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

ntps string[]

(Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.

validateVmClusterNetwork boolean
compartment_id str

The OCID of the compartment.

display_name str

The user-friendly name for the Exadata Cloud@Customer VM cluster network. The name does not need to be unique.

exadata_infrastructure_id str

The Exadata infrastructure OCID.

scans VmClusterNetworkScanArgs]

(Updatable) The SCAN details.

vm_networks VmClusterNetworkVmNetworkArgs]

(Updatable) Details of the client and backup networks.

action str
defined_tags Mapping[str, Any]

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

dns Sequence[str]

(Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.

freeform_tags Mapping[str, Any]

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

ntps Sequence[str]

(Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.

validate_vm_cluster_network bool
compartmentId String

The OCID of the compartment.

displayName String

The user-friendly name for the Exadata Cloud@Customer VM cluster network. The name does not need to be unique.

exadataInfrastructureId String

The Exadata infrastructure OCID.

scans List<Property Map>

(Updatable) The SCAN details.

vmNetworks List<Property Map>

(Updatable) Details of the client and backup networks.

action String
definedTags Map<Any>

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

dns List<String>

(Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.

freeformTags Map<Any>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

ntps List<String>

(Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.

validateVmClusterNetwork Boolean

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

LifecycleDetails string

Additional information about the current lifecycle state.

State string

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

TimeCreated string

The date and time when the VM cluster network was created.

VmClusterId string

The OCID of the associated VM Cluster.

Id string

The provider-assigned unique ID for this managed resource.

LifecycleDetails string

Additional information about the current lifecycle state.

State string

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

TimeCreated string

The date and time when the VM cluster network was created.

VmClusterId string

The OCID of the associated VM Cluster.

id String

The provider-assigned unique ID for this managed resource.

lifecycleDetails String

Additional information about the current lifecycle state.

state String

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

timeCreated String

The date and time when the VM cluster network was created.

vmClusterId String

The OCID of the associated VM Cluster.

id string

The provider-assigned unique ID for this managed resource.

lifecycleDetails string

Additional information about the current lifecycle state.

state string

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

timeCreated string

The date and time when the VM cluster network was created.

vmClusterId string

The OCID of the associated VM Cluster.

id str

The provider-assigned unique ID for this managed resource.

lifecycle_details str

Additional information about the current lifecycle state.

state str

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

time_created str

The date and time when the VM cluster network was created.

vm_cluster_id str

The OCID of the associated VM Cluster.

id String

The provider-assigned unique ID for this managed resource.

lifecycleDetails String

Additional information about the current lifecycle state.

state String

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

timeCreated String

The date and time when the VM cluster network was created.

vmClusterId String

The OCID of the associated VM Cluster.

Look up Existing VmClusterNetwork Resource

Get an existing VmClusterNetwork 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?: VmClusterNetworkState, opts?: CustomResourceOptions): VmClusterNetwork
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        action: Optional[str] = None,
        compartment_id: Optional[str] = None,
        defined_tags: Optional[Mapping[str, Any]] = None,
        display_name: Optional[str] = None,
        dns: Optional[Sequence[str]] = None,
        exadata_infrastructure_id: Optional[str] = None,
        freeform_tags: Optional[Mapping[str, Any]] = None,
        lifecycle_details: Optional[str] = None,
        ntps: Optional[Sequence[str]] = None,
        scans: Optional[Sequence[_database.VmClusterNetworkScanArgs]] = None,
        state: Optional[str] = None,
        time_created: Optional[str] = None,
        validate_vm_cluster_network: Optional[bool] = None,
        vm_cluster_id: Optional[str] = None,
        vm_networks: Optional[Sequence[_database.VmClusterNetworkVmNetworkArgs]] = None) -> VmClusterNetwork
func GetVmClusterNetwork(ctx *Context, name string, id IDInput, state *VmClusterNetworkState, opts ...ResourceOption) (*VmClusterNetwork, error)
public static VmClusterNetwork Get(string name, Input<string> id, VmClusterNetworkState? state, CustomResourceOptions? opts = null)
public static VmClusterNetwork get(String name, Output<String> id, VmClusterNetworkState 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:
Action string
CompartmentId string

The OCID of the compartment.

DefinedTags Dictionary<string, object>

(Updatable) 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 network. The name does not need to be unique.

Dns List<string>

(Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.

ExadataInfrastructureId string

The Exadata infrastructure OCID.

FreeformTags Dictionary<string, object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

LifecycleDetails string

Additional information about the current lifecycle state.

Ntps List<string>

(Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.

Scans List<VmClusterNetworkScanArgs>

(Updatable) The SCAN details.

State string

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

TimeCreated string

The date and time when the VM cluster network was created.

ValidateVmClusterNetwork bool
VmClusterId string

The OCID of the associated VM Cluster.

VmNetworks List<VmClusterNetworkVmNetworkArgs>

(Updatable) Details of the client and backup networks.

Action string
CompartmentId string

The OCID of the compartment.

DefinedTags map[string]interface{}

(Updatable) 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 network. The name does not need to be unique.

Dns []string

(Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.

ExadataInfrastructureId string

The Exadata infrastructure OCID.

FreeformTags map[string]interface{}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

LifecycleDetails string

Additional information about the current lifecycle state.

Ntps []string

(Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.

Scans []VmClusterNetworkScanArgs

(Updatable) The SCAN details.

State string

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

TimeCreated string

The date and time when the VM cluster network was created.

ValidateVmClusterNetwork bool
VmClusterId string

The OCID of the associated VM Cluster.

VmNetworks []VmClusterNetworkVmNetworkArgs

(Updatable) Details of the client and backup networks.

action String
compartmentId String

The OCID of the compartment.

definedTags Map<String,Object>

(Updatable) 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 network. The name does not need to be unique.

dns List<String>

(Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.

exadataInfrastructureId String

The Exadata infrastructure OCID.

freeformTags Map<String,Object>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

lifecycleDetails String

Additional information about the current lifecycle state.

ntps List<String>

(Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.

scans List<VmClusterNetworkScanArgs>

(Updatable) The SCAN details.

state String

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

timeCreated String

The date and time when the VM cluster network was created.

validateVmClusterNetwork Boolean
vmClusterId String

The OCID of the associated VM Cluster.

vmNetworks List<VmClusterNetworkVmNetworkArgs>

(Updatable) Details of the client and backup networks.

action string
compartmentId string

The OCID of the compartment.

definedTags {[key: string]: any}

(Updatable) 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 network. The name does not need to be unique.

dns string[]

(Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.

exadataInfrastructureId string

The Exadata infrastructure OCID.

freeformTags {[key: string]: any}

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

lifecycleDetails string

Additional information about the current lifecycle state.

ntps string[]

(Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.

scans VmClusterNetworkScanArgs[]

(Updatable) The SCAN details.

state string

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

timeCreated string

The date and time when the VM cluster network was created.

validateVmClusterNetwork boolean
vmClusterId string

The OCID of the associated VM Cluster.

vmNetworks VmClusterNetworkVmNetworkArgs[]

(Updatable) Details of the client and backup networks.

action str
compartment_id str

The OCID of the compartment.

defined_tags Mapping[str, Any]

(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.

display_name str

The user-friendly name for the Exadata Cloud@Customer VM cluster network. The name does not need to be unique.

dns Sequence[str]

(Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.

exadata_infrastructure_id str

The Exadata infrastructure OCID.

freeform_tags Mapping[str, Any]

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

lifecycle_details str

Additional information about the current lifecycle state.

ntps Sequence[str]

(Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.

scans VmClusterNetworkScanArgs]

(Updatable) The SCAN details.

state str

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

time_created str

The date and time when the VM cluster network was created.

validate_vm_cluster_network bool
vm_cluster_id str

The OCID of the associated VM Cluster.

vm_networks VmClusterNetworkVmNetworkArgs]

(Updatable) Details of the client and backup networks.

action String
compartmentId String

The OCID of the compartment.

definedTags Map<Any>

(Updatable) 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 network. The name does not need to be unique.

dns List<String>

(Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.

exadataInfrastructureId String

The Exadata infrastructure OCID.

freeformTags Map<Any>

(Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}

lifecycleDetails String

Additional information about the current lifecycle state.

ntps List<String>

(Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.

scans List<Property Map>

(Updatable) The SCAN details.

state String

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

timeCreated String

The date and time when the VM cluster network was created.

validateVmClusterNetwork Boolean
vmClusterId String

The OCID of the associated VM Cluster.

vmNetworks List<Property Map>

(Updatable) Details of the client and backup networks.

Supporting Types

VmClusterNetworkScan

Hostname string

(Updatable) The node host name.

Ips List<string>

(Updatable) The list of SCAN IP addresses. Three addresses should be provided.

Port int

(Updatable) The SCAN TCPIP port. Default is 1521.

ScanListenerPortTcp int

(Updatable) The SCAN TCPIP port. Default is 1521.

ScanListenerPortTcpSsl int

(Updatable) The SCAN TCPIP SSL port. Default is 2484.

Hostname string

(Updatable) The node host name.

Ips []string

(Updatable) The list of SCAN IP addresses. Three addresses should be provided.

Port int

(Updatable) The SCAN TCPIP port. Default is 1521.

ScanListenerPortTcp int

(Updatable) The SCAN TCPIP port. Default is 1521.

ScanListenerPortTcpSsl int

(Updatable) The SCAN TCPIP SSL port. Default is 2484.

hostname String

(Updatable) The node host name.

ips List<String>

(Updatable) The list of SCAN IP addresses. Three addresses should be provided.

port Integer

(Updatable) The SCAN TCPIP port. Default is 1521.

scanListenerPortTcp Integer

(Updatable) The SCAN TCPIP port. Default is 1521.

scanListenerPortTcpSsl Integer

(Updatable) The SCAN TCPIP SSL port. Default is 2484.

hostname string

(Updatable) The node host name.

ips string[]

(Updatable) The list of SCAN IP addresses. Three addresses should be provided.

port number

(Updatable) The SCAN TCPIP port. Default is 1521.

scanListenerPortTcp number

(Updatable) The SCAN TCPIP port. Default is 1521.

scanListenerPortTcpSsl number

(Updatable) The SCAN TCPIP SSL port. Default is 2484.

hostname str

(Updatable) The node host name.

ips Sequence[str]

(Updatable) The list of SCAN IP addresses. Three addresses should be provided.

port int

(Updatable) The SCAN TCPIP port. Default is 1521.

scan_listener_port_tcp int

(Updatable) The SCAN TCPIP port. Default is 1521.

scan_listener_port_tcp_ssl int

(Updatable) The SCAN TCPIP SSL port. Default is 2484.

hostname String

(Updatable) The node host name.

ips List<String>

(Updatable) The list of SCAN IP addresses. Three addresses should be provided.

port Number

(Updatable) The SCAN TCPIP port. Default is 1521.

scanListenerPortTcp Number

(Updatable) The SCAN TCPIP port. Default is 1521.

scanListenerPortTcpSsl Number

(Updatable) The SCAN TCPIP SSL port. Default is 2484.

VmClusterNetworkVmNetwork

NetworkType string

(Updatable) The network type.

Nodes List<VmClusterNetworkVmNetworkNode>

(Updatable) The list of node details.

DomainName string

(Updatable) The network domain name.

Gateway string

(Updatable) The network gateway.

Netmask string

(Updatable) The network netmask.

VlanId string

(Updatable) The network VLAN ID.

NetworkType string

(Updatable) The network type.

Nodes []VmClusterNetworkVmNetworkNode

(Updatable) The list of node details.

DomainName string

(Updatable) The network domain name.

Gateway string

(Updatable) The network gateway.

Netmask string

(Updatable) The network netmask.

VlanId string

(Updatable) The network VLAN ID.

networkType String

(Updatable) The network type.

nodes List<VmClusterNetworkVmNetworkNode>

(Updatable) The list of node details.

domainName String

(Updatable) The network domain name.

gateway String

(Updatable) The network gateway.

netmask String

(Updatable) The network netmask.

vlanId String

(Updatable) The network VLAN ID.

networkType string

(Updatable) The network type.

nodes VmClusterNetworkVmNetworkNode[]

(Updatable) The list of node details.

domainName string

(Updatable) The network domain name.

gateway string

(Updatable) The network gateway.

netmask string

(Updatable) The network netmask.

vlanId string

(Updatable) The network VLAN ID.

network_type str

(Updatable) The network type.

nodes VmClusterNetworkVmNetworkNode]

(Updatable) The list of node details.

domain_name str

(Updatable) The network domain name.

gateway str

(Updatable) The network gateway.

netmask str

(Updatable) The network netmask.

vlan_id str

(Updatable) The network VLAN ID.

networkType String

(Updatable) The network type.

nodes List<Property Map>

(Updatable) The list of node details.

domainName String

(Updatable) The network domain name.

gateway String

(Updatable) The network gateway.

netmask String

(Updatable) The network netmask.

vlanId String

(Updatable) The network VLAN ID.

VmClusterNetworkVmNetworkNode

Hostname string

(Updatable) The node host name.

Ip string

(Updatable) The node IP address.

DbServerId string

(Updatable) The Db server associated with the node.

State string

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

Vip string

(Updatable) The node virtual IP (VIP) address.

VipHostname string

(Updatable) The node virtual IP (VIP) host name.

Hostname string

(Updatable) The node host name.

Ip string

(Updatable) The node IP address.

DbServerId string

(Updatable) The Db server associated with the node.

State string

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

Vip string

(Updatable) The node virtual IP (VIP) address.

VipHostname string

(Updatable) The node virtual IP (VIP) host name.

hostname String

(Updatable) The node host name.

ip String

(Updatable) The node IP address.

dbServerId String

(Updatable) The Db server associated with the node.

state String

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

vip String

(Updatable) The node virtual IP (VIP) address.

vipHostname String

(Updatable) The node virtual IP (VIP) host name.

hostname string

(Updatable) The node host name.

ip string

(Updatable) The node IP address.

dbServerId string

(Updatable) The Db server associated with the node.

state string

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

vip string

(Updatable) The node virtual IP (VIP) address.

vipHostname string

(Updatable) The node virtual IP (VIP) host name.

hostname str

(Updatable) The node host name.

ip str

(Updatable) The node IP address.

db_server_id str

(Updatable) The Db server associated with the node.

state str

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

vip str

(Updatable) The node virtual IP (VIP) address.

vip_hostname str

(Updatable) The node virtual IP (VIP) host name.

hostname String

(Updatable) The node host name.

ip String

(Updatable) The node IP address.

dbServerId String

(Updatable) The Db server associated with the node.

state String

(Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.

vip String

(Updatable) The node virtual IP (VIP) address.

vipHostname String

(Updatable) The node virtual IP (VIP) host name.

Import

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

 $ pulumi import oci:Database/vmClusterNetwork:VmClusterNetwork test_vm_cluster_network "exadataInfrastructures/{exadataInfrastructureId}/vmClusterNetworks/{vmClusterNetworkId}"

Package Details

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

This Pulumi package is based on the oci Terraform Provider.