Yandex Cloud
Search
Contact UsGet started
  • Blog
  • Pricing
  • Documentation
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • ML & AI
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Customer Stories
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
    • Yandex Cloud Partner program
  • Blog
  • Pricing
  • Documentation
© 2025 Direct Cursus Technology L.L.C.
Yandex Cloud Desktop
  • Getting started
  • Access management
  • Pricing policy
    • Authentication with the API
      • Overview
        • Overview
        • Get
        • List
        • ListDesktops
        • ListOperations
        • Create
        • Update
        • Delete
        • ListAccessBindings
        • SetAccessBindings
        • UpdateAccessBindings
  • Cloud Desktop events

In this article:

  • gRPC request
  • GetDesktopGroupRequest
  • DesktopGroup
  • ResourcesSpec
  • NetworkInterfaceSpec
  1. API reference
  2. gRPC
  3. DesktopGroup
  4. Get

Cloud Desktop API, gRPC: DesktopGroupService.Get

Written by
Yandex Cloud
Updated at April 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.

Was the article helpful?

Previous
Overview
Next
List
© 2025 Direct Cursus Technology L.L.C.