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