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
    • All guides
    • Getting an IAM token for a service account using a container
    • Viewing operations with service resources
  • Access management
  • Pricing policy
  • Terraform reference
  • Audit Trails events
  • Release notes
  • FAQ

In this article:

  • Getting a list of operations
  • Getting detailed information about an operation
  1. Step-by-step guides
  2. Viewing operations with service resources

Viewing operations with Serverless Containers resources

Written by
Yandex Cloud
Updated at May 5, 2025
  • Getting a list of operations
  • Getting detailed information about an operation

All actions with Serverless Containers resources are logged as a list of operations. Each operation gets its own unique ID.

Getting a list of operationsGetting a list of operations

Management console
CLI
API

You can get a list of operations for a specific resource. The steps below describe how you can do this for a container. The same steps apply to other Serverless Containers resources.

  1. In the management console, open the folder with the container.

  2. Select Serverless Containers.

  3. In the left-hand panel, select Containers.

  4. Select the container you need.

  5. Go to the Operations panel for the selected container.

    You will see the list of operations with the selected container.

If you do not have the Yandex Cloud CLI yet, install and initialize it.

The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID> command. You can specify a different folder using the --folder-name or --folder-id parameter.

To get a list of operations for a Serverless Containers resource, run this command:

yc serverless <resource_type> list-operations <resource_name_or_ID>

Example

Getting a list of operations for a container:

yc serverless container list-operations epdplu8jn7sr********

Result:

+----------------------+---------------------+----------------------+---------------------+--------+------------------+
|          ID          |     CREATED AT      |      CREATED BY      |     MODIFIED AT     | STATUS |   DESCRIPTION    |
+----------------------+---------------------+----------------------+---------------------+--------+------------------+
| bba1fu790ass******** | 2024-06-21 10:56:42 | aje9k8luj4qf******** | 2024-06-21 10:56:42 | DONE   | Update container |
| bbaogemlt3jf******** | 2024-06-21 10:51:57 | aje9k8luj4qf******** | 2024-06-21 10:51:57 | DONE   | Create container |
+----------------------+---------------------+----------------------+---------------------+--------+------------------+

By default, information about operations is output as text. To get detailed information, specify the yaml or json output data format using the --format flag:

yc serverless container list-operations <resource_name_or_ID> --format yaml

Result:

- id: bba1fu790ass********
  description: Update container
  created_at: "2024-06-21T10:56:42.746Z"
  created_by: aje9k8luj4qf********
  modified_at: "2024-06-21T10:56:42.763Z"
  done: true
  metadata:
    '@type': type.googleapis.com/yandex.cloud.serverless.containers.v1.UpdateContainerMetadata
    container_id: bbaqss6v9qv9********
  response:
    '@type': type.googleapis.com/google.protobuf.Empty
    value: {}
...

Use the listOperations REST API method for the relevant resource or the <service>/ListOperations gRPC API call.

For example, for a container, use either the listOperations REST API method for the Container resource or the ContainerService/ListOperations gRPC API call.

Getting detailed information about an operationGetting detailed information about an operation

  1. Get a list of operations for the resource.

  2. Copy the operation ID.

  3. Get detailed information about the operation:

    CLI
    API

    If you do not have the Yandex Cloud CLI yet, install and initialize it.

    The folder specified when creating the CLI profile is used by default. To change the default folder, use the yc config set folder-id <folder_ID> command. You can specify a different folder using the --folder-name or --folder-id parameter.

    Run this command:

    yc operation get <operation_ID>
    

    Result:

    id: bbaogemlt3jf********
    description: Create container
    created_at: "2024-06-21T10:51:57.338Z"
    created_by: aje9k8luj4qf********
    modified_at: "2024-06-21T10:51:57.881Z"
    done: true
    metadata:
      '@type': type.googleapis.com/yandex.cloud.serverless.containers.v1.CreateContainerMetadata
      container_id: bbaqss6v9qv9********
    response:
      '@type': type.googleapis.com/yandex.cloud.serverless.containers.v1.Container
      id: bbaqss6v9qv9********
      folder_id: b1g681qpemb4********
      created_at: "2024-06-21T10:51:57.350Z"
      name: simple-container
      url: https://bbaqss6v9qv9********.containers.yandexcloud.net/
      status: ACTIVE
    

    Use the OperationService/Get gRPC API call.

See alsoSee also

  • Working with operations

Was the article helpful?

Previous
Deleting a trigger
Next
Overview
Yandex project
© 2025 Yandex.Cloud LLC