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 Network Instances in Oracle Cloud Infrastructure Core service. * * Lists the instances in a [cluster network with instance pools](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/managingclusternetworks.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testClusterNetworkInstances = oci.core.getClusterNetworkInstances({ * clusterNetworkId: testClusterNetwork.id, * compartmentId: compartmentId, * displayName: clusterNetworkInstanceDisplayName, * }); * ``` */ export declare function getClusterNetworkInstances(args: GetClusterNetworkInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getClusterNetworkInstances. */ export interface GetClusterNetworkInstancesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster network. */ clusterNetworkId: string; /** * 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.GetClusterNetworkInstancesFilter[]; } /** * A collection of values returned by getClusterNetworkInstances. */ export interface GetClusterNetworkInstancesResult { readonly clusterNetworkId: string; /** * The OCID of the compartment that contains the instance. */ readonly compartmentId: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.Core.GetClusterNetworkInstancesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of instances. */ readonly instances: outputs.Core.GetClusterNetworkInstancesInstance[]; } /** * This data source provides the list of Cluster Network Instances in Oracle Cloud Infrastructure Core service. * * Lists the instances in a [cluster network with instance pools](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/managingclusternetworks.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testClusterNetworkInstances = oci.core.getClusterNetworkInstances({ * clusterNetworkId: testClusterNetwork.id, * compartmentId: compartmentId, * displayName: clusterNetworkInstanceDisplayName, * }); * ``` */ export declare function getClusterNetworkInstancesOutput(args: GetClusterNetworkInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getClusterNetworkInstances. */ export interface GetClusterNetworkInstancesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster network. */ clusterNetworkId: pulumi.Input; /** * 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>; } //# sourceMappingURL=getClusterNetworkInstances.d.ts.map