import * as pulumi from "@pulumi/pulumi"; /** * Retrieve information about a SSH key. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const key = ovh.getCloudProjectSshKey({ * serviceName: "XXX", * id: "YYY", * }); * ``` */ export declare function getCloudProjectSshKey(args: GetCloudProjectSshKeyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudProjectSshKey. */ export interface GetCloudProjectSshKeyArgs { /** * SSH key ID */ id: string; /** * Service name */ serviceName: string; } /** * A collection of values returned by getCloudProjectSshKey. */ export interface GetCloudProjectSshKeyResult { /** * SSH key fingerprint */ readonly fingerPrint: string; /** * SSH key ID */ readonly id: string; /** * SSH key name */ readonly name: string; /** * SSH public key */ readonly publicKey: string; /** * SSH key regions */ readonly regions: string[]; /** * Service name */ readonly serviceName: string; } /** * Retrieve information about a SSH key. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const key = ovh.getCloudProjectSshKey({ * serviceName: "XXX", * id: "YYY", * }); * ``` */ export declare function getCloudProjectSshKeyOutput(args: GetCloudProjectSshKeyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudProjectSshKey. */ export interface GetCloudProjectSshKeyOutputArgs { /** * SSH key ID */ id: pulumi.Input; /** * Service name */ serviceName: pulumi.Input; }