1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getVmClusterNetworks
Oracle Cloud Infrastructure v1.16.0 published on Thursday, Nov 2, 2023 by Pulumi

oci.Database.getVmClusterNetworks

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.16.0 published on Thursday, Nov 2, 2023 by Pulumi

    This data source provides the list of Vm Cluster Networks in Oracle Cloud Infrastructure Database service.

    Gets a list of the VM cluster networks in the specified compartment. Applies to Exadata Cloud@Customer instances only.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testVmClusterNetworks = Oci.Database.GetVmClusterNetworks.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            ExadataInfrastructureId = oci_database_exadata_infrastructure.Test_exadata_infrastructure.Id,
            DisplayName = @var.Vm_cluster_network_display_name,
            State = @var.Vm_cluster_network_state,
        });
    
    });
    
    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.GetVmClusterNetworks(ctx, &database.GetVmClusterNetworksArgs{
    			CompartmentId:           _var.Compartment_id,
    			ExadataInfrastructureId: oci_database_exadata_infrastructure.Test_exadata_infrastructure.Id,
    			DisplayName:             pulumi.StringRef(_var.Vm_cluster_network_display_name),
    			State:                   pulumi.StringRef(_var.Vm_cluster_network_state),
    		}, nil)
    		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.DatabaseFunctions;
    import com.pulumi.oci.Database.inputs.GetVmClusterNetworksArgs;
    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) {
            final var testVmClusterNetworks = DatabaseFunctions.getVmClusterNetworks(GetVmClusterNetworksArgs.builder()
                .compartmentId(var_.compartment_id())
                .exadataInfrastructureId(oci_database_exadata_infrastructure.test_exadata_infrastructure().id())
                .displayName(var_.vm_cluster_network_display_name())
                .state(var_.vm_cluster_network_state())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_oci as oci
    
    test_vm_cluster_networks = oci.Database.get_vm_cluster_networks(compartment_id=var["compartment_id"],
        exadata_infrastructure_id=oci_database_exadata_infrastructure["test_exadata_infrastructure"]["id"],
        display_name=var["vm_cluster_network_display_name"],
        state=var["vm_cluster_network_state"])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testVmClusterNetworks = oci.Database.getVmClusterNetworks({
        compartmentId: _var.compartment_id,
        exadataInfrastructureId: oci_database_exadata_infrastructure.test_exadata_infrastructure.id,
        displayName: _var.vm_cluster_network_display_name,
        state: _var.vm_cluster_network_state,
    });
    
    variables:
      testVmClusterNetworks:
        fn::invoke:
          Function: oci:Database:getVmClusterNetworks
          Arguments:
            compartmentId: ${var.compartment_id}
            exadataInfrastructureId: ${oci_database_exadata_infrastructure.test_exadata_infrastructure.id}
            displayName: ${var.vm_cluster_network_display_name}
            state: ${var.vm_cluster_network_state}
    

    Using getVmClusterNetworks

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getVmClusterNetworks(args: GetVmClusterNetworksArgs, opts?: InvokeOptions): Promise<GetVmClusterNetworksResult>
    function getVmClusterNetworksOutput(args: GetVmClusterNetworksOutputArgs, opts?: InvokeOptions): Output<GetVmClusterNetworksResult>
    def get_vm_cluster_networks(compartment_id: Optional[str] = None,
                                display_name: Optional[str] = None,
                                exadata_infrastructure_id: Optional[str] = None,
                                filters: Optional[Sequence[_database.GetVmClusterNetworksFilter]] = None,
                                state: Optional[str] = None,
                                opts: Optional[InvokeOptions] = None) -> GetVmClusterNetworksResult
    def get_vm_cluster_networks_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                display_name: Optional[pulumi.Input[str]] = None,
                                exadata_infrastructure_id: Optional[pulumi.Input[str]] = None,
                                filters: Optional[pulumi.Input[Sequence[pulumi.Input[_database.GetVmClusterNetworksFilterArgs]]]] = None,
                                state: Optional[pulumi.Input[str]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetVmClusterNetworksResult]
    func GetVmClusterNetworks(ctx *Context, args *GetVmClusterNetworksArgs, opts ...InvokeOption) (*GetVmClusterNetworksResult, error)
    func GetVmClusterNetworksOutput(ctx *Context, args *GetVmClusterNetworksOutputArgs, opts ...InvokeOption) GetVmClusterNetworksResultOutput

    > Note: This function is named GetVmClusterNetworks in the Go SDK.

    public static class GetVmClusterNetworks 
    {
        public static Task<GetVmClusterNetworksResult> InvokeAsync(GetVmClusterNetworksArgs args, InvokeOptions? opts = null)
        public static Output<GetVmClusterNetworksResult> Invoke(GetVmClusterNetworksInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetVmClusterNetworksResult> getVmClusterNetworks(GetVmClusterNetworksArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Database/getVmClusterNetworks:getVmClusterNetworks
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string

    The compartment OCID.

    ExadataInfrastructureId string

    The Exadata infrastructure OCID.

    DisplayName string

    A filter to return only resources that match the entire display name given. The match is not case sensitive.

    Filters List<GetVmClusterNetworksFilter>
    State string

    A filter to return only resources that match the given lifecycle state exactly.

    CompartmentId string

    The compartment OCID.

    ExadataInfrastructureId string

    The Exadata infrastructure OCID.

    DisplayName string

    A filter to return only resources that match the entire display name given. The match is not case sensitive.

    Filters []GetVmClusterNetworksFilter
    State string

    A filter to return only resources that match the given lifecycle state exactly.

    compartmentId String

    The compartment OCID.

    exadataInfrastructureId String

    The Exadata infrastructure OCID.

    displayName String

    A filter to return only resources that match the entire display name given. The match is not case sensitive.

    filters List<GetVmClusterNetworksFilter>
    state String

    A filter to return only resources that match the given lifecycle state exactly.

    compartmentId string

    The compartment OCID.

    exadataInfrastructureId string

    The Exadata infrastructure OCID.

    displayName string

    A filter to return only resources that match the entire display name given. The match is not case sensitive.

    filters GetVmClusterNetworksFilter[]
    state string

    A filter to return only resources that match the given lifecycle state exactly.

    compartment_id str

    The compartment OCID.

    exadata_infrastructure_id str

    The Exadata infrastructure OCID.

    display_name str

    A filter to return only resources that match the entire display name given. The match is not case sensitive.

    filters GetVmClusterNetworksFilter]
    state str

    A filter to return only resources that match the given lifecycle state exactly.

    compartmentId String

    The compartment OCID.

    exadataInfrastructureId String

    The Exadata infrastructure OCID.

    displayName String

    A filter to return only resources that match the entire display name given. The match is not case sensitive.

    filters List<Property Map>
    state String

    A filter to return only resources that match the given lifecycle state exactly.

    getVmClusterNetworks Result

    The following output properties are available:

    CompartmentId string

    The OCID of the compartment.

    ExadataInfrastructureId string

    The OCID of the Exadata infrastructure.

    Id string

    The provider-assigned unique ID for this managed resource.

    VmClusterNetworks List<GetVmClusterNetworksVmClusterNetwork>

    The list of vm_cluster_networks.

    DisplayName string

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

    Filters List<GetVmClusterNetworksFilter>
    State string

    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.

    CompartmentId string

    The OCID of the compartment.

    ExadataInfrastructureId string

    The OCID of the Exadata infrastructure.

    Id string

    The provider-assigned unique ID for this managed resource.

    VmClusterNetworks []GetVmClusterNetworksVmClusterNetwork

    The list of vm_cluster_networks.

    DisplayName string

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

    Filters []GetVmClusterNetworksFilter
    State string

    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.

    compartmentId String

    The OCID of the compartment.

    exadataInfrastructureId String

    The OCID of the Exadata infrastructure.

    id String

    The provider-assigned unique ID for this managed resource.

    vmClusterNetworks List<GetVmClusterNetworksVmClusterNetwork>

    The list of vm_cluster_networks.

    displayName String

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

    filters List<GetVmClusterNetworksFilter>
    state String

    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.

    compartmentId string

    The OCID of the compartment.

    exadataInfrastructureId string

    The OCID of the Exadata infrastructure.

    id string

    The provider-assigned unique ID for this managed resource.

    vmClusterNetworks GetVmClusterNetworksVmClusterNetwork[]

    The list of vm_cluster_networks.

    displayName string

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

    filters GetVmClusterNetworksFilter[]
    state string

    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.

    compartment_id str

    The OCID of the compartment.

    exadata_infrastructure_id str

    The OCID of the Exadata infrastructure.

    id str

    The provider-assigned unique ID for this managed resource.

    vm_cluster_networks GetVmClusterNetworksVmClusterNetwork]

    The list of vm_cluster_networks.

    display_name str

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

    filters GetVmClusterNetworksFilter]
    state str

    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.

    compartmentId String

    The OCID of the compartment.

    exadataInfrastructureId String

    The OCID of the Exadata infrastructure.

    id String

    The provider-assigned unique ID for this managed resource.

    vmClusterNetworks List<Property Map>

    The list of vm_cluster_networks.

    displayName String

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

    filters List<Property Map>
    state String

    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.

    Supporting Types

    GetVmClusterNetworksFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetVmClusterNetworksVmClusterNetwork

    Action string
    CompartmentId string

    The compartment OCID.

    DefinedTags Dictionary<string, object>

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

    DisplayName string

    A filter to return only resources that match the entire display name given. The match is not case sensitive.

    Dns List<string>

    The list of DNS server IP addresses. Maximum of 3 allowed.

    DrScans List<GetVmClusterNetworksVmClusterNetworkDrScan>

    The SCAN details for DR network

    ExadataInfrastructureId string

    The Exadata infrastructure OCID.

    FreeformTags Dictionary<string, object>

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

    Id string

    The OCID of the VM cluster network.

    LifecycleDetails string

    Additional information about the current lifecycle state.

    Ntps List<string>

    The list of NTP server IP addresses. Maximum of 3 allowed.

    Scans List<GetVmClusterNetworksVmClusterNetworkScan>

    The SCAN details.

    State string

    A filter to return only resources that match the given lifecycle state exactly.

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

    Details of the client and backup networks.

    Action string
    CompartmentId string

    The compartment OCID.

    DefinedTags map[string]interface{}

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

    DisplayName string

    A filter to return only resources that match the entire display name given. The match is not case sensitive.

    Dns []string

    The list of DNS server IP addresses. Maximum of 3 allowed.

    DrScans []GetVmClusterNetworksVmClusterNetworkDrScan

    The SCAN details for DR network

    ExadataInfrastructureId string

    The Exadata infrastructure OCID.

    FreeformTags map[string]interface{}

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

    Id string

    The OCID of the VM cluster network.

    LifecycleDetails string

    Additional information about the current lifecycle state.

    Ntps []string

    The list of NTP server IP addresses. Maximum of 3 allowed.

    Scans []GetVmClusterNetworksVmClusterNetworkScan

    The SCAN details.

    State string

    A filter to return only resources that match the given lifecycle state exactly.

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

    Details of the client and backup networks.

    action String
    compartmentId String

    The compartment OCID.

    definedTags Map<String,Object>

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

    displayName String

    A filter to return only resources that match the entire display name given. The match is not case sensitive.

    dns List<String>

    The list of DNS server IP addresses. Maximum of 3 allowed.

    drScans List<GetVmClusterNetworksVmClusterNetworkDrScan>

    The SCAN details for DR network

    exadataInfrastructureId String

    The Exadata infrastructure OCID.

    freeformTags Map<String,Object>

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

    id String

    The OCID of the VM cluster network.

    lifecycleDetails String

    Additional information about the current lifecycle state.

    ntps List<String>

    The list of NTP server IP addresses. Maximum of 3 allowed.

    scans List<GetVmClusterNetworksVmClusterNetworkScan>

    The SCAN details.

    state String

    A filter to return only resources that match the given lifecycle state exactly.

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

    Details of the client and backup networks.

    action string
    compartmentId string

    The compartment OCID.

    definedTags {[key: string]: any}

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

    displayName string

    A filter to return only resources that match the entire display name given. The match is not case sensitive.

    dns string[]

    The list of DNS server IP addresses. Maximum of 3 allowed.

    drScans GetVmClusterNetworksVmClusterNetworkDrScan[]

    The SCAN details for DR network

    exadataInfrastructureId string

    The Exadata infrastructure OCID.

    freeformTags {[key: string]: any}

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

    id string

    The OCID of the VM cluster network.

    lifecycleDetails string

    Additional information about the current lifecycle state.

    ntps string[]

    The list of NTP server IP addresses. Maximum of 3 allowed.

    scans GetVmClusterNetworksVmClusterNetworkScan[]

    The SCAN details.

    state string

    A filter to return only resources that match the given lifecycle state exactly.

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

    Details of the client and backup networks.

    action str
    compartment_id str

    The compartment OCID.

    defined_tags Mapping[str, Any]

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

    display_name str

    A filter to return only resources that match the entire display name given. The match is not case sensitive.

    dns Sequence[str]

    The list of DNS server IP addresses. Maximum of 3 allowed.

    dr_scans GetVmClusterNetworksVmClusterNetworkDrScan]

    The SCAN details for DR network

    exadata_infrastructure_id str

    The Exadata infrastructure OCID.

    freeform_tags Mapping[str, Any]

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

    id str

    The OCID of the VM cluster network.

    lifecycle_details str

    Additional information about the current lifecycle state.

    ntps Sequence[str]

    The list of NTP server IP addresses. Maximum of 3 allowed.

    scans GetVmClusterNetworksVmClusterNetworkScan]

    The SCAN details.

    state str

    A filter to return only resources that match the given lifecycle state exactly.

    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 GetVmClusterNetworksVmClusterNetworkVmNetwork]

    Details of the client and backup networks.

    action String
    compartmentId String

    The compartment OCID.

    definedTags Map<Any>

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

    displayName String

    A filter to return only resources that match the entire display name given. The match is not case sensitive.

    dns List<String>

    The list of DNS server IP addresses. Maximum of 3 allowed.

    drScans List<Property Map>

    The SCAN details for DR network

    exadataInfrastructureId String

    The Exadata infrastructure OCID.

    freeformTags Map<Any>

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

    id String

    The OCID of the VM cluster network.

    lifecycleDetails String

    Additional information about the current lifecycle state.

    ntps List<String>

    The list of NTP server IP addresses. Maximum of 3 allowed.

    scans List<Property Map>

    The SCAN details.

    state String

    A filter to return only resources that match the given lifecycle state exactly.

    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>

    Details of the client and backup networks.

    GetVmClusterNetworksVmClusterNetworkDrScan

    Hostname string

    The node host name.

    Ips List<string>

    The list of SCAN IP addresses. Three addresses should be provided.

    ScanListenerPortTcp int

    The SCAN TCPIP port. Default is 1521.

    Hostname string

    The node host name.

    Ips []string

    The list of SCAN IP addresses. Three addresses should be provided.

    ScanListenerPortTcp int

    The SCAN TCPIP port. Default is 1521.

    hostname String

    The node host name.

    ips List<String>

    The list of SCAN IP addresses. Three addresses should be provided.

    scanListenerPortTcp Integer

    The SCAN TCPIP port. Default is 1521.

    hostname string

    The node host name.

    ips string[]

    The list of SCAN IP addresses. Three addresses should be provided.

    scanListenerPortTcp number

    The SCAN TCPIP port. Default is 1521.

    hostname str

    The node host name.

    ips Sequence[str]

    The list of SCAN IP addresses. Three addresses should be provided.

    scan_listener_port_tcp int

    The SCAN TCPIP port. Default is 1521.

    hostname String

    The node host name.

    ips List<String>

    The list of SCAN IP addresses. Three addresses should be provided.

    scanListenerPortTcp Number

    The SCAN TCPIP port. Default is 1521.

    GetVmClusterNetworksVmClusterNetworkScan

    Hostname string

    The node host name.

    Ips List<string>

    The list of SCAN IP addresses. Three addresses should be provided.

    Port int

    Deprecated. This field is deprecated. You may use 'scanListenerPortTcp' to specify the port. The SCAN TCPIP port. Default is 1521.

    ScanListenerPortTcp int

    The SCAN TCPIP port. Default is 1521.

    ScanListenerPortTcpSsl int

    The SCAN TCPIP SSL port. Default is 2484.

    Hostname string

    The node host name.

    Ips []string

    The list of SCAN IP addresses. Three addresses should be provided.

    Port int

    Deprecated. This field is deprecated. You may use 'scanListenerPortTcp' to specify the port. The SCAN TCPIP port. Default is 1521.

    ScanListenerPortTcp int

    The SCAN TCPIP port. Default is 1521.

    ScanListenerPortTcpSsl int

    The SCAN TCPIP SSL port. Default is 2484.

    hostname String

    The node host name.

    ips List<String>

    The list of SCAN IP addresses. Three addresses should be provided.

    port Integer

    Deprecated. This field is deprecated. You may use 'scanListenerPortTcp' to specify the port. The SCAN TCPIP port. Default is 1521.

    scanListenerPortTcp Integer

    The SCAN TCPIP port. Default is 1521.

    scanListenerPortTcpSsl Integer

    The SCAN TCPIP SSL port. Default is 2484.

    hostname string

    The node host name.

    ips string[]

    The list of SCAN IP addresses. Three addresses should be provided.

    port number

    Deprecated. This field is deprecated. You may use 'scanListenerPortTcp' to specify the port. The SCAN TCPIP port. Default is 1521.

    scanListenerPortTcp number

    The SCAN TCPIP port. Default is 1521.

    scanListenerPortTcpSsl number

    The SCAN TCPIP SSL port. Default is 2484.

    hostname str

    The node host name.

    ips Sequence[str]

    The list of SCAN IP addresses. Three addresses should be provided.

    port int

    Deprecated. This field is deprecated. You may use 'scanListenerPortTcp' to specify the port. The SCAN TCPIP port. Default is 1521.

    scan_listener_port_tcp int

    The SCAN TCPIP port. Default is 1521.

    scan_listener_port_tcp_ssl int

    The SCAN TCPIP SSL port. Default is 2484.

    hostname String

    The node host name.

    ips List<String>

    The list of SCAN IP addresses. Three addresses should be provided.

    port Number

    Deprecated. This field is deprecated. You may use 'scanListenerPortTcp' to specify the port. The SCAN TCPIP port. Default is 1521.

    scanListenerPortTcp Number

    The SCAN TCPIP port. Default is 1521.

    scanListenerPortTcpSsl Number

    The SCAN TCPIP SSL port. Default is 2484.

    GetVmClusterNetworksVmClusterNetworkVmNetwork

    DomainName string

    The network domain name.

    Gateway string

    The network gateway.

    Netmask string

    The network netmask.

    NetworkType string

    The network type.

    Nodes List<GetVmClusterNetworksVmClusterNetworkVmNetworkNode>

    The list of node details.

    VlanId string

    The network VLAN ID.

    DomainName string

    The network domain name.

    Gateway string

    The network gateway.

    Netmask string

    The network netmask.

    NetworkType string

    The network type.

    Nodes []GetVmClusterNetworksVmClusterNetworkVmNetworkNode

    The list of node details.

    VlanId string

    The network VLAN ID.

    domainName String

    The network domain name.

    gateway String

    The network gateway.

    netmask String

    The network netmask.

    networkType String

    The network type.

    nodes List<GetVmClusterNetworksVmClusterNetworkVmNetworkNode>

    The list of node details.

    vlanId String

    The network VLAN ID.

    domainName string

    The network domain name.

    gateway string

    The network gateway.

    netmask string

    The network netmask.

    networkType string

    The network type.

    nodes GetVmClusterNetworksVmClusterNetworkVmNetworkNode[]

    The list of node details.

    vlanId string

    The network VLAN ID.

    domain_name str

    The network domain name.

    gateway str

    The network gateway.

    netmask str

    The network netmask.

    network_type str

    The network type.

    nodes GetVmClusterNetworksVmClusterNetworkVmNetworkNode]

    The list of node details.

    vlan_id str

    The network VLAN ID.

    domainName String

    The network domain name.

    gateway String

    The network gateway.

    netmask String

    The network netmask.

    networkType String

    The network type.

    nodes List<Property Map>

    The list of node details.

    vlanId String

    The network VLAN ID.

    GetVmClusterNetworksVmClusterNetworkVmNetworkNode

    DbServerId string

    The Db server associated with the node.

    Hostname string

    The node host name.

    Ip string

    The node IP address.

    State string

    A filter to return only resources that match the given lifecycle state exactly.

    Vip string

    The node virtual IP (VIP) address.

    VipHostname string

    The node virtual IP (VIP) host name.

    DbServerId string

    The Db server associated with the node.

    Hostname string

    The node host name.

    Ip string

    The node IP address.

    State string

    A filter to return only resources that match the given lifecycle state exactly.

    Vip string

    The node virtual IP (VIP) address.

    VipHostname string

    The node virtual IP (VIP) host name.

    dbServerId String

    The Db server associated with the node.

    hostname String

    The node host name.

    ip String

    The node IP address.

    state String

    A filter to return only resources that match the given lifecycle state exactly.

    vip String

    The node virtual IP (VIP) address.

    vipHostname String

    The node virtual IP (VIP) host name.

    dbServerId string

    The Db server associated with the node.

    hostname string

    The node host name.

    ip string

    The node IP address.

    state string

    A filter to return only resources that match the given lifecycle state exactly.

    vip string

    The node virtual IP (VIP) address.

    vipHostname string

    The node virtual IP (VIP) host name.

    db_server_id str

    The Db server associated with the node.

    hostname str

    The node host name.

    ip str

    The node IP address.

    state str

    A filter to return only resources that match the given lifecycle state exactly.

    vip str

    The node virtual IP (VIP) address.

    vip_hostname str

    The node virtual IP (VIP) host name.

    dbServerId String

    The Db server associated with the node.

    hostname String

    The node host name.

    ip String

    The node IP address.

    state String

    A filter to return only resources that match the given lifecycle state exactly.

    vip String

    The node virtual IP (VIP) address.

    vipHostname String

    The node virtual IP (VIP) host name.

    Package Details

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

    This Pulumi package is based on the oci Terraform Provider.

    oci logo
    Oracle Cloud Infrastructure v1.16.0 published on Thursday, Nov 2, 2023 by Pulumi