import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Vm Cluster Network resource in Oracle Cloud Infrastructure Datacc service. * * Obtain the VM cluster network on Database Infrastructure that has the specified * [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterNetwork = oci.oci.getDataccVmClusterNetwork({ * vmClusterNetworkId: testVmClusterNetworkOciDataccVmClusterNetwork.id, * }); * ``` */ export declare function getDataccVmClusterNetwork(args: GetDataccVmClusterNetworkArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDataccVmClusterNetwork. */ export interface GetDataccVmClusterNetworkArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster network. */ vmClusterNetworkId: string; } /** * A collection of values returned by getDataccVmClusterNetwork. */ export interface GetDataccVmClusterNetworkResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated resource. */ readonly associatedResourceId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated VM cluster. */ readonly baseVmClusterId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the VM cluster network. */ readonly compartmentId: string; /** * Consumer type for the VM cluster network. */ readonly consumerType: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * The user-friendly name for the VM cluster network. The name does not need to be unique. */ readonly displayName: string; /** * The list of DNS server IP addresses. Maximum of 3 allowed. */ readonly dnsServers: string[]; /** * Simple key-value pair that is applied without any predefined name, type or scope. This tag option exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster network. */ readonly id: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Infrastructure. */ readonly infrastructureId: string; /** * Indicates whether Single Client Access Name (SCAN) is enabled on the VM cluster. */ readonly isScanEnabled: boolean; /** * Lifecycle state details of the VM cluster network. */ readonly lifecycleDetails: string; /** * The listener TCP/IP port. */ readonly listenerPort: number; /** * The listener TCP/IP SSL port. */ readonly listenerPortSsl: number; /** * Count of virtual machines in this VM cluster. */ readonly nodeCount: number; /** * The list of NTP server IP addresses. Maximum of 3 allowed. */ readonly ntpServers: string[]; /** * The SCAN details. */ readonly scans: outputs.oci.GetDataccVmClusterNetworkScan[]; /** * The current state of the virtual machine cluster network. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time that the VM cluster network was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time that the VM cluster network was last updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; readonly vmClusterNetworkId: string; /** * Details of the client and backup networks. */ readonly vmNetworks: outputs.oci.GetDataccVmClusterNetworkVmNetwork[]; } /** * This data source provides details about a specific Vm Cluster Network resource in Oracle Cloud Infrastructure Datacc service. * * Obtain the VM cluster network on Database Infrastructure that has the specified * [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterNetwork = oci.oci.getDataccVmClusterNetwork({ * vmClusterNetworkId: testVmClusterNetworkOciDataccVmClusterNetwork.id, * }); * ``` */ export declare function getDataccVmClusterNetworkOutput(args: GetDataccVmClusterNetworkOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDataccVmClusterNetwork. */ export interface GetDataccVmClusterNetworkOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VM cluster network. */ vmClusterNetworkId: pulumi.Input; } //# sourceMappingURL=getDataccVmClusterNetwork.d.ts.map