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 Resource Manager
  • Getting started
    • All guides
    • Managing labels
    • Viewing service resource operations
  • 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 service resource operations

Viewing operations with Resource Manager resources

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

All actions with Resource Manager 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

To view operations with a cloud or a folder:

  1. Go to the appropriate cloud or folder.
  2. At the top of the screen, go to the Operations tab.

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 Resource Manager resource, run this command:

yc resource-manager <resource_type> list-operations <resource_name_or_ID>

Example

To get a list of operations for a folder:

yc resource-manager folder list-operations b1g681qpemb4********

Result:

+----------------------+---------------------+----------------------+---------------------+--------+--------------------------------+
|          ID          |     CREATED AT      |      CREATED BY      |     MODIFIED AT     | STATUS |          DESCRIPTION           |
+----------------------+---------------------+----------------------+---------------------+--------+--------------------------------+
| b1g4jml98i8c******** | 2023-06-07 12:35:50 | aje9k8luj4qf******** | 2023-06-07 12:35:50 | DONE   | Update resource-manager.folder |
|                      |                     |                      |                     |        | access bindings                |
| b1g3cmmtt3u4******** | 2023-04-05 06:05:45 | ajeuddo5f7pj******** | 2023-04-05 06:05:45 | DONE   | Create folder                  |
+----------------------+---------------------+----------------------+---------------------+--------+--------------------------------+

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 resource-manager folder list-operations b1g681qpemb4******** --format yaml

Result:

- id: b1g4jml98i8c********
  description: Update resource-manager.folder access bindings
  created_at: "2023-06-07T12:35:50.143Z"
  created_by: aje9k8luj4qf********
  modified_at: "2023-06-07T12:35:50.543823061Z"
  done: true
  metadata:
    '@type': type.googleapis.com/yandex.cloud.access.UpdateAccessBindingsMetadata
    resource_id: b1g681qpemb4********
  response:
    '@type': type.googleapis.com/google.protobuf.Empty
    value: {}
- id: b1g3cmmtt3u4********
  description: Create folder
  created_at: "2023-04-05T06:05:45.617732162Z"
  created_by: ajeuddo5f7pj********
  modified_at: "2023-04-05T06:05:45.617995551Z"
  done: true
  metadata:
    '@type': type.googleapis.com/yandex.cloud.resourcemanager.v1.CreateFolderMetadata
    folder_id: b1g681qpemb4********
  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, to get a list of operations for a folder, use either the listOperations REST API method for the Folder resource or the FolderService/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: b1g4jml98i8c********
    description: Update resource-manager.folder access bindings
    created_at: "2023-06-07T12:35:50.143Z"
    created_by: aje9k8luj4qf********
    modified_at: "2023-06-07T12:35:50.543Z"
    done: true
    metadata:
      '@type': type.googleapis.com/yandex.cloud.access.UpdateAccessBindingsMetadata
      resource_id: b1g681qpemb4********
    response:
      '@type': type.googleapis.com/yandex.cloud.access.AccessBindingsOperationResult
    

    Use the OperationService/Get gRPC API call.

See alsoSee also

  • Working with operations

Was the article helpful?

Previous
Getting notifications from services in a folder
Next
All tutorials
Yandex project
© 2025 Yandex.Cloud LLC