import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * List all the api keys created in Foundation Central. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const apiKeysList = nutanix.getFoundationCentralListApiKeys({}); * ``` * */ export declare function getFoundationCentralListApiKeys(args?: GetFoundationCentralListApiKeysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFoundationCentralListApiKeys. */ export interface GetFoundationCentralListApiKeysArgs { /** * The number of records retrieved. */ length?: number; /** * List metadata output for all list apis. */ metadata?: inputs.GetFoundationCentralListApiKeysMetadata; /** * Offset from the start of the object list. */ offset?: number; } /** * A collection of values returned by getFoundationCentralListApiKeys. */ export interface GetFoundationCentralListApiKeysResult { readonly apiKeys: outputs.GetFoundationCentralListApiKeysApiKey[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The number of records retrieved. */ readonly length?: number; /** * List metadata output for all list apis. */ readonly metadata?: outputs.GetFoundationCentralListApiKeysMetadata; /** * Offset from the start of the object list. */ readonly offset?: number; } /** * List all the api keys created in Foundation Central. * * ## Example Usage * * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as nutanix from "@pierskarsenbarg/nutanix"; * * const apiKeysList = nutanix.getFoundationCentralListApiKeys({}); * ``` * */ export declare function getFoundationCentralListApiKeysOutput(args?: GetFoundationCentralListApiKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFoundationCentralListApiKeys. */ export interface GetFoundationCentralListApiKeysOutputArgs { /** * The number of records retrieved. */ length?: pulumi.Input; /** * List metadata output for all list apis. */ metadata?: pulumi.Input; /** * Offset from the start of the object list. */ offset?: pulumi.Input; } //# sourceMappingURL=getFoundationCentralListApiKeys.d.ts.map