import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Bds Instance Api Key resource in Oracle Cloud Infrastructure Big Data Service service. * * Returns the user's API key information for the given ID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBdsInstanceApiKey = oci.bigdataservice.getBdsInstanceApiKey({ * apiKeyId: testApiKey.id, * bdsInstanceId: testBdsInstance.id, * }); * ``` */ export declare function getBdsInstanceApiKeys(args: GetBdsInstanceApiKeysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBdsInstanceApiKeys. */ export interface GetBdsInstanceApiKeysArgs { /** * The OCID of the cluster. */ bdsInstanceId: string; displayName?: string; filters?: inputs.BigDataService.GetBdsInstanceApiKeysFilter[]; /** * The current status of the API key. */ state?: string; /** * The user OCID for which this API key was created. */ userId?: string; } /** * A collection of values returned by getBdsInstanceApiKeys. */ export interface GetBdsInstanceApiKeysResult { /** * The list of bds_api_keys. */ readonly bdsApiKeys: outputs.BigDataService.GetBdsInstanceApiKeysBdsApiKey[]; readonly bdsInstanceId: string; readonly displayName?: string; readonly filters?: outputs.BigDataService.GetBdsInstanceApiKeysFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current status of the API key. */ readonly state?: string; /** * The user OCID for which this API key was created. */ readonly userId?: string; } /** * This data source provides details about a specific Bds Instance Api Key resource in Oracle Cloud Infrastructure Big Data Service service. * * Returns the user's API key information for the given ID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBdsInstanceApiKey = oci.bigdataservice.getBdsInstanceApiKey({ * apiKeyId: testApiKey.id, * bdsInstanceId: testBdsInstance.id, * }); * ``` */ export declare function getBdsInstanceApiKeysOutput(args: GetBdsInstanceApiKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBdsInstanceApiKeys. */ export interface GetBdsInstanceApiKeysOutputArgs { /** * The OCID of the cluster. */ bdsInstanceId: pulumi.Input; displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The current status of the API key. */ state?: pulumi.Input; /** * The user OCID for which this API key was created. */ userId?: pulumi.Input; } //# sourceMappingURL=getBdsInstanceApiKeys.d.ts.map