import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this datasource to retrieve information about the Managed Rancher available versions in the given public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const versions = ovh.CloudProject.getRancherVersion({ * projectId: "XXXXXX", * }); * ``` */ export declare function getRancherVersion(args: GetRancherVersionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRancherVersion. */ export interface GetRancherVersionArgs { /** * Project ID */ projectId: string; } /** * A collection of values returned by getRancherVersion. */ export interface GetRancherVersionResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Project ID */ readonly projectId: string; readonly versions: outputs.CloudProject.GetRancherVersionVersion[]; } /** * Use this datasource to retrieve information about the Managed Rancher available versions in the given public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const versions = ovh.CloudProject.getRancherVersion({ * projectId: "XXXXXX", * }); * ``` */ export declare function getRancherVersionOutput(args: GetRancherVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRancherVersion. */ export interface GetRancherVersionOutputArgs { /** * Project ID */ projectId: pulumi.Input; }