import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Get SSH keys in a Public Cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const keys = ovh.getCloudProjectSshKeys({ * serviceName: "XXX", * }); * ``` */ export declare function getCloudProjectSshKeys(args: GetCloudProjectSshKeysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudProjectSshKeys. */ export interface GetCloudProjectSshKeysArgs { /** * Region */ region?: string; /** * Service name */ serviceName: string; } /** * A collection of values returned by getCloudProjectSshKeys. */ export interface GetCloudProjectSshKeysResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Region */ readonly region: string; /** * Service name */ readonly serviceName: string; readonly sshKeys: outputs.GetCloudProjectSshKeysSshKey[]; } /** * Get SSH keys in a Public Cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const keys = ovh.getCloudProjectSshKeys({ * serviceName: "XXX", * }); * ``` */ export declare function getCloudProjectSshKeysOutput(args: GetCloudProjectSshKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudProjectSshKeys. */ export interface GetCloudProjectSshKeysOutputArgs { /** * Region */ region?: pulumi.Input; /** * Service name */ serviceName: pulumi.Input; }