import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * List available and current versions for the given managed Rancher service * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const versions = ovh.getCloudProjectRancherCapabilitiesVersion({ * projectId: "XXX", * rancherId: "YYY", * }); * ``` */ export declare function getCloudProjectRancherCapabilitiesVersion(args: GetCloudProjectRancherCapabilitiesVersionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudProjectRancherCapabilitiesVersion. */ export interface GetCloudProjectRancherCapabilitiesVersionArgs { /** * Project ID */ projectId: string; /** * Rancher ID */ rancherId: string; } /** * A collection of values returned by getCloudProjectRancherCapabilitiesVersion. */ export interface GetCloudProjectRancherCapabilitiesVersionResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Project ID */ readonly projectId: string; /** * Rancher ID */ readonly rancherId: string; readonly versions: outputs.GetCloudProjectRancherCapabilitiesVersionVersion[]; } /** * List available and current versions for the given managed Rancher service * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const versions = ovh.getCloudProjectRancherCapabilitiesVersion({ * projectId: "XXX", * rancherId: "YYY", * }); * ``` */ export declare function getCloudProjectRancherCapabilitiesVersionOutput(args: GetCloudProjectRancherCapabilitiesVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudProjectRancherCapabilitiesVersion. */ export interface GetCloudProjectRancherCapabilitiesVersionOutputArgs { /** * Project ID */ projectId: pulumi.Input; /** * Rancher ID */ rancherId: pulumi.Input; }