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 Container Registry
  • Getting started
  • Yandex Container Solution
  • Access management
  • Pricing policy
  • Terraform reference
    • Authentication with the API
      • Overview
        • Overview
        • List
        • Get
        • Delete
  • Monitoring metrics
  • Audit Trails events
  • Troubleshooting
  • FAQ

In this article:

  • gRPC request
  • GetImageRequest
  • Image
  • Blob
  1. API reference
  2. gRPC
  3. Image
  4. Get

Container Registry API, gRPC: ImageService.Get

Written by
Yandex Cloud
Updated at November 26, 2024
  • gRPC request
  • GetImageRequest
  • Image
  • Blob

Returns the specified Image resource.

To get the list of available Image resources, make a List request.

gRPC requestgRPC request

rpc Get (GetImageRequest) returns (Image)

GetImageRequestGetImageRequest

{
  "image_id": "string"
}

Field

Description

image_id

string

Required field. ID of the Docker image resource to return.

To get the Docker image ID use a ImageService.List request.

ImageImage

{
  "id": "string",
  "name": "string",
  "digest": "string",
  "compressed_size": "int64",
  "config": {
    "id": "string",
    "digest": "string",
    "size": "int64",
    "urls": [
      "string"
    ]
  },
  "layers": [
    {
      "id": "string",
      "digest": "string",
      "size": "int64",
      "urls": [
        "string"
      ]
    }
  ],
  "tags": [
    "string"
  ],
  "created_at": "google.protobuf.Timestamp"
}

An Image resource. For more information, see Docker image.

Field

Description

id

string

Output only. ID of the Docker image.

name

string

Name of the Docker image.
The name is unique within the registry.

digest

string

Content-addressable identifier of the Docker image.

compressed_size

int64

Compressed size of the Docker image, specified in bytes.

config

Blob

Configuration of the Docker image.

layers[]

Blob

Layers of the Docker image.

tags[]

string

Tags of the Docker image.

Each tag is unique within the repository.

created_at

google.protobuf.Timestamp

Output only. Creation timestamp in RFC3339 text format.

BlobBlob

A Blob resource.

Field

Description

id

string

Output only. ID of the blob.

digest

string

Content-addressable identifier of the blob.

size

int64

Size of the blob, specified in bytes.

urls[]

string

List of blob urls.

Was the article helpful?

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