import * as pulumi from "@pulumi/pulumi"; export declare function getApiKey(args?: GetApiKeyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getApiKey. */ export interface GetApiKeyArgs { /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: { [key: string]: string; }; /** * Filter by date range using 'lt' and 'gt'. */ expiresAt?: { [key: string]: string; }; kind?: string; /** * Filter by date range using 'lt' and 'gt'. */ lastUsedAt?: { [key: string]: string; }; name?: string; roleId?: string; } /** * A collection of values returned by getApiKey. */ export interface GetApiKeyResult { /** * Filter by date range using 'lt' and 'gt'. */ readonly createdAt?: { [key: string]: string; }; /** * Filter by date range using 'lt' and 'gt'. */ readonly expiresAt?: { [key: string]: string; }; /** * The ID of this resource. */ readonly id: string; readonly kind: string; /** * Filter by date range using 'lt' and 'gt'. */ readonly lastUsedAt?: { [key: string]: string; }; readonly name: string; readonly roleId: string; } export declare function getApiKeyOutput(args?: GetApiKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getApiKey. */ export interface GetApiKeyOutputArgs { /** * Filter by date range using 'lt' and 'gt'. */ createdAt?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * Filter by date range using 'lt' and 'gt'. */ expiresAt?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; kind?: pulumi.Input; /** * Filter by date range using 'lt' and 'gt'. */ lastUsedAt?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; name?: pulumi.Input; roleId?: pulumi.Input; } //# sourceMappingURL=getApiKey.d.ts.map