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 Bds Instances in Oracle Cloud Infrastructure Big Data Service service. * * Returns a list of all Big Data Service clusters in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBdsInstances = oci.bigdataservice.getBdsInstances({ * compartmentId: compartmentId, * displayName: bdsInstanceDisplayName, * state: bdsInstanceState, * }); * ``` */ export declare function getBdsInstances(args: GetBdsInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBdsInstances. */ export interface GetBdsInstancesArgs { /** * The OCID of the compartment. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.BigDataService.GetBdsInstancesFilter[]; /** * The state of the cluster. */ state?: string; } /** * A collection of values returned by getBdsInstances. */ export interface GetBdsInstancesResult { /** * The list of bds_instances. */ readonly bdsInstances: outputs.BigDataService.GetBdsInstancesBdsInstance[]; /** * The OCID of the compartment. */ readonly compartmentId: string; /** * The name of the node. */ readonly displayName?: string; readonly filters?: outputs.BigDataService.GetBdsInstancesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The state of the cluster. */ readonly state?: string; } /** * This data source provides the list of Bds Instances in Oracle Cloud Infrastructure Big Data Service service. * * Returns a list of all Big Data Service clusters in a compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBdsInstances = oci.bigdataservice.getBdsInstances({ * compartmentId: compartmentId, * displayName: bdsInstanceDisplayName, * state: bdsInstanceState, * }); * ``` */ export declare function getBdsInstancesOutput(args: GetBdsInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBdsInstances. */ export interface GetBdsInstancesOutputArgs { /** * The OCID of the compartment. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The state of the cluster. */ state?: pulumi.Input; } //# sourceMappingURL=getBdsInstances.d.ts.map