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