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 Customer Secret Keys in Oracle Cloud Infrastructure Identity service. * * Lists the secret keys for the specified user. The returned object contains the secret key's OCID, but not * the secret key itself. The actual secret key is returned only upon creation. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCustomerSecretKeys = oci.identity.getCustomerSecretKeys({ * userId: testUser.id, * }); * ``` */ export declare function getCustomerSecretKeys(args: GetCustomerSecretKeysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCustomerSecretKeys. */ export interface GetCustomerSecretKeysArgs { filters?: inputs.Identity.GetCustomerSecretKeysFilter[]; /** * The OCID of the user. */ userId: string; } /** * A collection of values returned by getCustomerSecretKeys. */ export interface GetCustomerSecretKeysResult { /** * The list of customer_secret_keys. */ readonly customerSecretKeys: outputs.Identity.GetCustomerSecretKeysCustomerSecretKey[]; readonly filters?: outputs.Identity.GetCustomerSecretKeysFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The OCID of the user the password belongs to. */ readonly userId: string; } /** * This data source provides the list of Customer Secret Keys in Oracle Cloud Infrastructure Identity service. * * Lists the secret keys for the specified user. The returned object contains the secret key's OCID, but not * the secret key itself. The actual secret key is returned only upon creation. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCustomerSecretKeys = oci.identity.getCustomerSecretKeys({ * userId: testUser.id, * }); * ``` */ export declare function getCustomerSecretKeysOutput(args: GetCustomerSecretKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCustomerSecretKeys. */ export interface GetCustomerSecretKeysOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The OCID of the user. */ userId: pulumi.Input; } //# sourceMappingURL=getCustomerSecretKeys.d.ts.map