import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Retrieve the list of signing keys for a specific Auth0 connection. (Okta/OIDC only) * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as auth0 from "@pulumi/auth0"; * * // An Auth0 Connection Keys loaded using its Connection ID. * const myKeys = auth0.getConnectionKeys({ * connectionId: "con_xxxxxxxxxxxxx", * }); * ``` */ export declare function getConnectionKeys(args: GetConnectionKeysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getConnectionKeys. */ export interface GetConnectionKeysArgs { /** * The ID of the connection to retrieve keys for. */ connectionId: string; } /** * A collection of values returned by getConnectionKeys. */ export interface GetConnectionKeysResult { /** * The ID of the connection to retrieve keys for. */ readonly connectionId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of signing keys associated with the connection. */ readonly keys: outputs.GetConnectionKeysKey[]; } /** * Retrieve the list of signing keys for a specific Auth0 connection. (Okta/OIDC only) * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as auth0 from "@pulumi/auth0"; * * // An Auth0 Connection Keys loaded using its Connection ID. * const myKeys = auth0.getConnectionKeys({ * connectionId: "con_xxxxxxxxxxxxx", * }); * ``` */ export declare function getConnectionKeysOutput(args: GetConnectionKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getConnectionKeys. */ export interface GetConnectionKeysOutputArgs { /** * The ID of the connection to retrieve keys for. */ connectionId: pulumi.Input; }