import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get information about a container registry associated with a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const myRegistry = ovh.CloudProject.getContainerRegistry({ * serviceName: "XXXXXX", * registryId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxx", * }); * ``` */ export declare function getContainerRegistry(args: GetContainerRegistryArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getContainerRegistry. */ export interface GetContainerRegistryArgs { /** * Registry ID */ registryId: 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 getContainerRegistry. */ export interface GetContainerRegistryResult { /** * Registry creation date */ readonly createdAt: string; /** * OVHCloud IAM enabled */ readonly iamEnabled: boolean; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Registry name */ readonly name: string; /** * Project ID of your registry */ readonly projectId: string; /** * Region of the registry */ readonly region: string; readonly registryId: string; readonly serviceName: string; /** * Current size of the registry (bytes) */ readonly size: number; /** * Registry status */ readonly status: string; /** * Registry last update date */ readonly updatedAt: string; /** * Access url of the registry */ readonly url: string; /** * Version of your registry */ readonly version: string; } /** * Use this data source to get information about a container registry associated with a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const myRegistry = ovh.CloudProject.getContainerRegistry({ * serviceName: "XXXXXX", * registryId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxx", * }); * ``` */ export declare function getContainerRegistryOutput(args: GetContainerRegistryOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getContainerRegistry. */ export interface GetContainerRegistryOutputArgs { /** * Registry ID */ registryId: pulumi.Input; /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName: pulumi.Input; }