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 Instance Pool Instances in Oracle Cloud Infrastructure Core service. * * List the instances in the specified instance pool. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInstancePoolInstances = oci.core.getInstancePoolInstances({ * compartmentId: compartmentId, * instancePoolId: testInstancePool.id, * displayName: instancePoolInstanceDisplayName, * }); * ``` */ export declare function getInstancePoolInstances(args: GetInstancePoolInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getInstancePoolInstances. */ export interface GetInstancePoolInstancesArgs { /** * 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.GetInstancePoolInstancesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance pool. */ instancePoolId: string; } /** * A collection of values returned by getInstancePoolInstances. */ export interface GetInstancePoolInstancesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) 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.GetInstancePoolInstancesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly instancePoolId: string; /** * The list of instances. */ readonly instances: outputs.Core.GetInstancePoolInstancesInstance[]; } /** * This data source provides the list of Instance Pool Instances in Oracle Cloud Infrastructure Core service. * * List the instances in the specified instance pool. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInstancePoolInstances = oci.core.getInstancePoolInstances({ * compartmentId: compartmentId, * instancePoolId: testInstancePool.id, * displayName: instancePoolInstanceDisplayName, * }); * ``` */ export declare function getInstancePoolInstancesOutput(args: GetInstancePoolInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getInstancePoolInstances. */ export interface GetInstancePoolInstancesOutputArgs { /** * 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>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance pool. */ instancePoolId: pulumi.Input; } //# sourceMappingURL=getInstancePoolInstances.d.ts.map