Yandex Cloud
Search
Contact UsGet started
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
  • All Services
  • System Status
    • Featured
    • Infrastructure & Network
    • Data Platform
    • Containers
    • Developer tools
    • Serverless
    • Security
    • Monitoring & Resources
    • AI for business
    • Business tools
  • All Solutions
    • By industry
    • By use case
    • Economics and Pricing
    • Security
    • Technical Support
    • Start testing with double trial credits
    • Cloud credits to scale your IT product
    • Gateway to Russia
    • Cloud for Startups
    • Center for Technologies and Society
    • Yandex Cloud Partner program
  • Pricing
  • Customer Stories
  • Documentation
  • Blog
© 2025 Direct Cursus Technology L.L.C.
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 operation details
  1. Step-by-step guides
  2. Viewing service resource operations

Viewing operations with Resource Manager resources

Written by
Yandex Cloud
Updated at June 9, 2025
  • Getting a list of operations
  • Getting operation details

The system logs all actions with Resource Manager resources 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, navigate to the Operations tab.

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

By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command using the --folder-name or --folder-id parameter.

To get the list of operations for the 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, operation information is displayed as text. To get more detailed information, specify the yaml or json output data format using the --format parameter:

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 operation detailsGetting operation details

  1. Get a list of operations for the resource.

  2. Copy the operation ID.

  3. Get operation details:

    CLI
    API

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

    By default, the CLI uses the folder specified when creating the profile. To change the default folder, use the yc config set folder-id <folder_ID> command. You can also set a different folder for any specific command 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
© 2025 Direct Cursus Technology L.L.C.