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 Instances in Oracle Cloud Infrastructure Ddfs service. * * Gets a list of Instances. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInstances = oci.oci.getDdfsInstances({ * compartmentId: compartmentId, * displayName: instanceDisplayName, * id: instanceId, * state: instanceState, * }); * ``` */ export declare function getDdfsInstances(args?: GetDdfsInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDdfsInstances. */ export interface GetDdfsInstancesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.oci.GetDdfsInstancesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Instance. */ id?: string; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getDdfsInstances. */ export interface GetDdfsInstancesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName?: string; readonly filters?: outputs.oci.GetDdfsInstancesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Instance. */ readonly id?: string; /** * The list of instance_collection. */ readonly instanceCollections: outputs.oci.GetDdfsInstancesInstanceCollection[]; /** * The current state of the Instance. */ readonly state?: string; } /** * This data source provides the list of Instances in Oracle Cloud Infrastructure Ddfs service. * * Gets a list of Instances. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testInstances = oci.oci.getDdfsInstances({ * compartmentId: compartmentId, * displayName: instanceDisplayName, * id: instanceId, * state: instanceState, * }); * ``` */ export declare function getDdfsInstancesOutput(args?: GetDdfsInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDdfsInstances. */ export interface GetDdfsInstancesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ 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. */ id?: pulumi.Input; /** * A filter to return only resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getDdfsInstances.d.ts.map