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 Cluster Networks in Oracle Cloud Infrastructure Core service. * * Lists the [cluster networks with instance pools](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/managingclusternetworks.htm) * in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testClusterNetworks = oci.core.getClusterNetworks({ * compartmentId: compartmentId, * displayName: clusterNetworkDisplayName, * state: clusterNetworkState, * }); * ``` */ export declare function getClusterNetworks(args: GetClusterNetworksArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getClusterNetworks. */ export interface GetClusterNetworksArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.Core.GetClusterNetworksFilter[]; /** * A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getClusterNetworks. */ export interface GetClusterNetworksResult { /** * The list of cluster_networks. */ readonly clusterNetworks: outputs.Core.GetClusterNetworksClusterNetwork[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the instance pool. */ readonly compartmentId: string; /** * The display name of the VNIC. This is also used to match against the instance configuration defined secondary VNIC. */ readonly displayName?: string; readonly filters?: outputs.Core.GetClusterNetworksFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the cluster network. */ readonly state?: string; } /** * This data source provides the list of Cluster Networks in Oracle Cloud Infrastructure Core service. * * Lists the [cluster networks with instance pools](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/managingclusternetworks.htm) * in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testClusterNetworks = oci.core.getClusterNetworks({ * compartmentId: compartmentId, * displayName: clusterNetworkDisplayName, * state: clusterNetworkState, * }); * ``` */ export declare function getClusterNetworksOutput(args: GetClusterNetworksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getClusterNetworks. */ export interface GetClusterNetworksOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getClusterNetworks.d.ts.map