[Документация Yandex Cloud](../../../../index.md) > [Yandex Resource Manager](../../../index.md) > Справочник API > [gRPC (англ.)](../index.md) > [Cloud](index.md) > Get

# Resource Manager API, gRPC: CloudService.Get

Returns the specified Cloud resource.
To get the list of available Cloud resources, make a [List](list.md#List) request.

## gRPC request

**rpc Get ([GetCloudRequest](#yandex.cloud.resourcemanager.v1.GetCloudRequest)) returns ([Cloud](#yandex.cloud.resourcemanager.v1.Cloud))**

## GetCloudRequest {#yandex.cloud.resourcemanager.v1.GetCloudRequest}

```json
{
  "cloud_id": "string"
}
```

#|
||Field | Description ||
|| cloud_id | **string**

Required field. ID of the Cloud resource to return.
To get the cloud ID, use a [CloudService.List](list.md#List) request.

The maximum string length in characters is 50. ||
|#

## Cloud {#yandex.cloud.resourcemanager.v1.Cloud}

```json
{
  "id": "string",
  "created_at": "google.protobuf.Timestamp",
  "name": "string",
  "description": "string",
  "organization_id": "string",
  "labels": "map<string, string>"
}
```

A Cloud resource. For more information, see [Cloud](../../../concepts/resources-hierarchy.md#cloud).

#|
||Field | Description ||
|| id | **string**

ID of the cloud. ||
|| created_at | **[google.protobuf.Timestamp](https://developers.google.com/protocol-buffers/docs/reference/google.protobuf#timestamp)**

Creation timestamp. ||
|| name | **string**

Name of the cloud. 3-63 characters long. ||
|| description | **string**

Description of the cloud. 0-256 characters long. ||
|| organization_id | **string**

ID of the organization that the cloud belongs to. ||
|| labels | **object** (map<**string**, **string**>)

Resource labels as `` key:value `` pairs. Maximum of 64 per resource. ||
|#