import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Use this data source to filter the list of container registry capabilities associated with a public cloud project to match one and only one capability. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const capability = ovh.CloudProject.getCapabilitiesContainerFilter({ * serviceName: "XXXXXX", * region: "GRA", * planName: "SMALL", * }); * ``` */ export declare function getCapabilitiesContainerFilter(args: GetCapabilitiesContainerFilterArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCapabilitiesContainerFilter. */ export interface GetCapabilitiesContainerFilterArgs { /** * The plan name. It can be 'SMALL', 'MEDIUM' or 'LARGE'. */ planName: string; /** * The region name */ region: string; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName: string; } /** * A collection of values returned by getCapabilitiesContainerFilter. */ export interface GetCapabilitiesContainerFilterResult { /** * Plan code from the catalog */ readonly code: string; /** * Plan creation date */ readonly createdAt: string; /** * Features of the plan */ readonly features: outputs.CloudProject.GetCapabilitiesContainerFilterFeature[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Plan name */ readonly name: string; readonly planName: string; readonly region: string; /** * Container registry limits */ readonly registryLimits: outputs.CloudProject.GetCapabilitiesContainerFilterRegistryLimit[]; readonly serviceName: string; /** * Plan last update date */ readonly updatedAt: string; } /** * Use this data source to filter the list of container registry capabilities associated with a public cloud project to match one and only one capability. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const capability = ovh.CloudProject.getCapabilitiesContainerFilter({ * serviceName: "XXXXXX", * region: "GRA", * planName: "SMALL", * }); * ``` */ export declare function getCapabilitiesContainerFilterOutput(args: GetCapabilitiesContainerFilterOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCapabilitiesContainerFilter. */ export interface GetCapabilitiesContainerFilterOutputArgs { /** * The plan name. It can be 'SMALL', 'MEDIUM' or 'LARGE'. */ planName: pulumi.Input; /** * The region name */ region: pulumi.Input; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName: pulumi.Input; }