Yandex Cloud
Поиск
Связаться с намиПодключиться
  • Документация
  • Блог
  • Все сервисы
  • Статус работы сервисов
    • Популярные
    • Инфраструктура и сеть
    • Платформа данных
    • Контейнеры
    • Инструменты разработчика
    • Бессерверные вычисления
    • Безопасность
    • Мониторинг и управление ресурсами
    • Машинное обучение
    • Бизнес-инструменты
  • Все решения
    • По отраслям
    • По типу задач
    • Экономика платформы
    • Безопасность
    • Техническая поддержка
    • Каталог партнёров
    • Обучение и сертификация
    • Облако для стартапов
    • Облако для крупного бизнеса
    • Центр технологий для общества
    • Облако для интеграторов
    • Поддержка IT-бизнеса
    • Облако для фрилансеров
    • Обучение и сертификация
    • Блог
    • Документация
    • Контент-программа
    • Мероприятия и вебинары
    • Контакты, чаты и сообщества
    • Идеи
    • Истории успеха
    • Тарифы Yandex Cloud
    • Промоакции и free tier
    • Правила тарификации
  • Документация
  • Блог
Проект Яндекса
© 2025 ООО «Яндекс.Облако»
Yandex Cloud Desktop
  • Начало работы
  • Управление доступом
  • Правила тарификации
    • Аутентификация в API
      • Overview
        • Overview
        • Get
        • List
        • ListDesktops
        • ListOperations
        • Create
        • Update
        • Delete
        • ListAccessBindings
        • SetAccessBindings
        • UpdateAccessBindings
  • Аудитные логи Cloud Desktop

В этой статье:

  • gRPC request
  • GetDesktopGroupRequest
  • DesktopGroup
  • ResourcesSpec
  • NetworkInterfaceSpec
  1. Справочник API
  2. gRPC (англ.)
  3. DesktopGroup
  4. Get

Cloud Desktop API, gRPC: DesktopGroupService.Get

Статья создана
Yandex Cloud
Обновлена 24 апреля 2025 г.
  • gRPC request
  • GetDesktopGroupRequest
  • DesktopGroup
  • ResourcesSpec
  • NetworkInterfaceSpec

Returns the specified desktop group resource.

To get the list of available desktop groups, make a List request.

gRPC requestgRPC request

rpc Get (GetDesktopGroupRequest) returns (DesktopGroup)

GetDesktopGroupRequestGetDesktopGroupRequest

{
  "desktop_group_id": "string"
}

Field

Description

desktop_group_id

string

Required field. ID of the desktop group resource to return.

To get the desktop group ID use a DesktopGroupService.List request.

DesktopGroupDesktopGroup

{
  "id": "string",
  "folder_id": "string",
  "created_at": "google.protobuf.Timestamp",
  "status": "Status",
  "name": "string",
  "description": "string",
  "resources_spec": {
    "memory": "int64",
    "cores": "int64",
    "core_fraction": "int64"
  },
  "network_interface_spec": {
    "network_id": "string",
    "subnet_ids": [
      "string"
    ]
  },
  "labels": "map<string, string>"
}

A desktop group resource.

Field

Description

id

string

Desktop group ID.

folder_id

string

ID of the folder that the desktop group belongs to.

created_at

google.protobuf.Timestamp

Creation timestamp in RFC3339 text format.

status

enum Status

Status of the desktop group.

  • STATUS_UNSPECIFIED
  • CREATING: Desktop group is being created.
  • ACTIVE: Desktop group is ready to use.
  • DELETING: Desktop group is being deleted.

name

string

Name of the desktop group.

description

string

Description of the desktop group.

resources_spec

ResourcesSpec

Resource specification of the desktop group.

network_interface_spec

NetworkInterfaceSpec

Network interface specification of the desktop group.

labels

object (map<string, string>)

Labels of the desktop group.

ResourcesSpecResourcesSpec

Field

Description

memory

int64

RAM volume, in bytes.

cores

int64

Number of CPU cores.

core_fraction

int64

Baseline level of CPU performance with the ability to burst performance above that baseline level.
This field sets baseline performance for each core.

NetworkInterfaceSpecNetworkInterfaceSpec

Field

Description

network_id

string

Required field. ID of the network interface specification.

subnet_ids[]

string

List of subnet IDs.

Была ли статья полезна?

Предыдущая
Overview
Следующая
List
Проект Яндекса
© 2025 ООО «Яндекс.Облако»