import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get the list of VPS associated with your OVH Account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const servers = ovh.Vps.getVpss({}); * ``` */ export declare function getVpss(opts?: pulumi.InvokeOptions): Promise; /** * A collection of values returned by getVpss. */ export interface GetVpssResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of VPS IDs associated with your OVH Account. */ readonly results: string[]; } /** * Use this data source to get the list of VPS associated with your OVH Account. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const servers = ovh.Vps.getVpss({}); * ``` */ export declare function getVpssOutput(opts?: pulumi.InvokeOutputOptions): pulumi.Output;