import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * **This data source uses a Beta API.** Use this data source to list the SSH keys of a Public * Cloud project (API v2). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const myKeys = ovh.getCloudSshKeys({ * serviceName: "aaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", * }); * ``` */ export declare function getCloudSshKeys(args?: GetCloudSshKeysArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudSshKeys. */ export interface GetCloudSshKeysArgs { /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName?: string; } /** * A collection of values returned by getCloudSshKeys. */ export interface GetCloudSshKeysResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The id of the public cloud project. */ readonly serviceName?: string; /** * The list of SSH keys of the project. Each element contains: */ readonly sshKeys: outputs.GetCloudSshKeysSshKey[]; } /** * **This data source uses a Beta API.** Use this data source to list the SSH keys of a Public * Cloud project (API v2). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const myKeys = ovh.getCloudSshKeys({ * serviceName: "aaaaaaa-bbbb-cccc-dddd-eeeeeeeeeeee", * }); * ``` */ export declare function getCloudSshKeysOutput(args?: GetCloudSshKeysOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudSshKeys. */ export interface GetCloudSshKeysOutputArgs { /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName?: pulumi.Input; }