import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Use this data source to list all containers in the Barbican Key Manager service for a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const all = ovh.getCloudKeyManagerContainers({ * serviceName: "Public cloud project ID", * }); * export const containerIds = all.then(all => .map(c => (c.id))); * ``` */ export declare function getCloudKeyManagerContainers(args: GetCloudKeyManagerContainersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudKeyManagerContainers. */ export interface GetCloudKeyManagerContainersArgs { /** * 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 getCloudKeyManagerContainers. */ export interface GetCloudKeyManagerContainersResult { /** * List of containers. Each container has the following attributes: */ readonly containers: outputs.GetCloudKeyManagerContainersContainer[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly serviceName: string; } /** * Use this data source to list all containers in the Barbican Key Manager service for a public cloud project. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as ovh from "@ovhcloud/pulumi-ovh"; * * const all = ovh.getCloudKeyManagerContainers({ * serviceName: "Public cloud project ID", * }); * export const containerIds = all.then(all => .map(c => (c.id))); * ``` */ export declare function getCloudKeyManagerContainersOutput(args: GetCloudKeyManagerContainersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudKeyManagerContainers. */ export interface GetCloudKeyManagerContainersOutputArgs { /** * The id of the public cloud project. If omitted, the `OVH_CLOUD_PROJECT_SERVICE` environment variable is used. */ serviceName: pulumi.Input; }