import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * 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 * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterNetworks = oci.database.getVmClusterNetworks({ * compartmentId: compartmentId, * exadataInfrastructureId: testExadataInfrastructure.id, * displayName: vmClusterNetworkDisplayName, * state: vmClusterNetworkState, * }); * ``` */ export declare function getVmClusterNetworks(args: GetVmClusterNetworksArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVmClusterNetworks. */ export interface GetVmClusterNetworksArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: string; /** * The Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ exadataInfrastructureId: string; filters?: inputs.Database.GetVmClusterNetworksFilter[]; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: string; } /** * A collection of values returned by getVmClusterNetworks. */ export interface GetVmClusterNetworksResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The user-friendly name for the VM cluster network. The name does not need to be unique. */ readonly displayName?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure. */ readonly exadataInfrastructureId: string; readonly filters?: outputs.Database.GetVmClusterNetworksFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: 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. */ readonly state?: string; /** * The list of vm_cluster_networks. */ readonly vmClusterNetworks: outputs.Database.GetVmClusterNetworksVmClusterNetwork[]; } /** * 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 * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVmClusterNetworks = oci.database.getVmClusterNetworks({ * compartmentId: compartmentId, * exadataInfrastructureId: testExadataInfrastructure.id, * displayName: vmClusterNetworkDisplayName, * state: vmClusterNetworkState, * }); * ``` */ export declare function getVmClusterNetworksOutput(args: GetVmClusterNetworksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVmClusterNetworks. */ export interface GetVmClusterNetworksOutputArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: pulumi.Input; /** * The Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ exadataInfrastructureId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: pulumi.Input; } //# sourceMappingURL=getVmClusterNetworks.d.ts.map