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

# Cloud Desktop API, gRPC: DesktopImageService.Get

Returns the specified desktop image.

## gRPC request

**rpc Get ([GetDesktopImageRequest](#yandex.cloud.clouddesktop.v1.api.GetDesktopImageRequest)) returns ([DesktopImage](#yandex.cloud.clouddesktop.v1.api.DesktopImage))**

## GetDesktopImageRequest {#yandex.cloud.clouddesktop.v1.api.GetDesktopImageRequest}

```json
{
  "image_id": "string"
}
```

#|
||Field | Description ||
|| image_id | **string**

Required field. ID of the image to get. ||
|#

## DesktopImage {#yandex.cloud.clouddesktop.v1.api.DesktopImage}

```json
{
  "id": "string",
  "folder_id": "string",
  "created_at": "google.protobuf.Timestamp",
  "status": "Status",
  "name": "string",
  "labels": "map<string, string>",
  "description": "string",
  "storage_size": "int64",
  "min_disk_size": "int64"
}
```

A desktop image resource.

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

ID of the image. ||
|| folder_id | **string**

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

Creation timestamp in [RFC3339](https://www.ietf.org/rfc/rfc3339.txt) text format. ||
|| status | enum **Status**

Status of the image.

- `CREATING`: Image is being created.
- `ACTIVE`: Image is ready to use.
- `DELETING`: Image is being deleted. ||
|| name | **string**

Name of the image. ||
|| labels | **object** (map<**string**, **string**>)

Description of the image. ||
|| description | **string**

Description of the image. ||
|| storage_size | **int64**

Size of the image, specified in bytes. ||
|| min_disk_size | **int64**

Minimum disk size in bytes required to use the image. ||
|#