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