import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to get cloud details. * For more information, see [Cloud](https://cloud.yandex.com/docs/resource-manager/concepts/resources-hierarchy#cloud). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as yandex from "@pulumi/yandex"; * * const foo = pulumi.output(yandex.getResourcemanagerCloud({ * name: "foo-cloud", * })); * * export const cloudCreateTimestamp = foo.createdAt; * ``` */ export declare function getResourcemanagerCloud(args?: GetResourcemanagerCloudArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getResourcemanagerCloud. */ export interface GetResourcemanagerCloudArgs { /** * ID of the cloud. */ cloudId?: string; /** * Description of the cloud. */ description?: string; /** * Name of the cloud. */ name?: string; } /** * A collection of values returned by getResourcemanagerCloud. */ export interface GetResourcemanagerCloudResult { readonly cloudId: string; /** * Cloud creation timestamp. */ readonly createdAt: string; /** * Description of the cloud. */ readonly description?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Name of the cloud. */ readonly name: string; } export declare function getResourcemanagerCloudOutput(args?: GetResourcemanagerCloudOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking getResourcemanagerCloud. */ export interface GetResourcemanagerCloudOutputArgs { /** * ID of the cloud. */ cloudId?: pulumi.Input; /** * Description of the cloud. */ description?: pulumi.Input; /** * Name of the cloud. */ name?: pulumi.Input; }