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
    • Gateway to Russia
    • Cloud for Startups
    • Education and Science
  • Blog
  • Pricing
  • Documentation
Yandex project
© 2025 Yandex.Cloud LLC
Yandex Serverless Containers
  • Comparison with other Yandex Cloud services
  • Access management
  • Pricing policy
  • Terraform reference
    • API authentication
      • Overview
        • Overview
        • Get
        • List
        • Create
        • Update
        • Delete
        • DeployRevision
        • Rollback
        • GetRevision
        • ListRevisions
        • ListOperations
        • ListAccessBindings
        • SetAccessBindings
        • UpdateAccessBindings
  • Audit Trails events
  • Release notes
  • FAQ

In this article:

  • gRPC request
  • GetContainerRequest
  • Container
  1. Containers API reference
  2. gRPC
  3. Container
  4. Get

Serverless Containers Service, gRPC: ContainerService.Get

Written by
Yandex Cloud
Updated at January 14, 2025
  • gRPC request
  • GetContainerRequest
  • Container

Returns the specified container.

To get the list of all available containers, make a List request.

gRPC requestgRPC request

rpc Get (GetContainerRequest) returns (Container)

GetContainerRequestGetContainerRequest

{
  "container_id": "string"
}

Field

Description

container_id

string

Required field. ID of the container to return.

To get a container ID make a ContainerService.List request.

ContainerContainer

{
  "id": "string",
  "folder_id": "string",
  "created_at": "google.protobuf.Timestamp",
  "name": "string",
  "description": "string",
  "labels": "map<string, string>",
  "url": "string",
  "status": "Status"
}

Field

Description

id

string

ID of the container. Generated at creation time.

folder_id

string

ID of the folder that the container belongs to.

created_at

google.protobuf.Timestamp

Creation timestamp for the container.

name

string

Name of the container. The name is unique within the folder.

description

string

Description of the container.

labels

object (map<string, string>)

Container labels as key:value pairs.

url

string

URL that needs to be requested to call the container.

status

enum Status

Status of the container.

  • STATUS_UNSPECIFIED
  • CREATING: Container is being created.
  • ACTIVE: Container is ready for use.
  • DELETING: Container is being deleted.
  • ERROR: Container failed. The only allowed action is delete.

Was the article helpful?

Previous
Overview
Next
List
Yandex project
© 2025 Yandex.Cloud LLC