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 Integrations
    • All guides
    • Viewing operations with service resources
  • Pricing policy
  • Terraform reference
  • Release notes

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 Integrations 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 Integrations 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. Follow the steps below to do this for an EventRouter bus. The same steps apply to the service's other resources.

  1. In the management console, open the folder the bus resides in.

  2. Select Serverless Integrations.

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

  4. Select a bus.

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

    You will see a list of operations with the bus.

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

yc serverless <resource_type> list-operations <resource_name_or_ID>

Example

Getting a list of operations for an EventRouter bus:

yc serverless eventrouter bus list-operations epdplu8jn7sr********

Result:

+----------------------+---------------------+----------------------+---------------------+--------+----------------+
|          ID          |     CREATED AT      |      CREATED BY      |     MODIFIED AT     | STATUS |  DESCRIPTION   |
+----------------------+---------------------+----------------------+---------------------+--------+----------------+
| f66oon77ahgu******** | 2025-02-24 20:48:53 | ajevfb0tjfts******** | 2025-02-24 20:48:53 | DONE   | Updating a bus |
| f66a237f2f6v******** | 2025-02-24 20:48:30 | ajevfb0tjfts******** | 2025-02-24 20:48:30 | DONE   | Updating a bus |
| f66cbrh8c1u4******** | 2025-02-20 12:22:56 | ajevfb0tjfts******** | 2025-02-20 12:22:57 | DONE   | Creating a bus  |
+----------------------+---------------------+----------------------+---------------------+--------+----------------+

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 eventrouter bus list-operations <bus_name_or_ID> --format yaml

Result:

- id: f66oon77ahgu********
  description: Updating a bus
  created_at: "2025-02-24T20:48:53.942469190Z"
  created_by: ajevfb0tjfts********
  modified_at: "2025-02-24T20:48:53.956957528Z"
  done: true
  metadata:
    '@type': type.googleapis.com/yandex.cloud.serverless.eventrouter.v1.UpdateBusMetadata
    bus_id: f662ctjn8vv4********
  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 an EventRouter bus, use the listOperations REST API method for the Bus resource or the BusService/ListOperations gRPC API call.

Getting detailed information about an operationGetting detailed information about an operation

  1. Get a list of operations.

  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: f66oon77ahgu********
    description: Updating a bus
    created_at: "2025-02-24T20:48:53.942Z"
    created_by: ajevfb0tjfts********
    modified_at: "2025-02-24T20:48:53.956Z"
    done: true
    metadata:
      '@type': type.googleapis.com/yandex.cloud.serverless.eventrouter.v1.UpdateBusMetadata
      bus_id: f662ctjn8vv4********
    response:
      '@type': type.googleapis.com/yandex.cloud.serverless.eventrouter.v1.Bus
      id: f662ctjn8vv4********
      folder_id: b1geoelk7fld********
      cloud_id: b1gia87mbaom********
      created_at: "2025-02-20T12:22:57.005054Z"
      name: test
      description: tesst
      status: ACTIVE
    

    To get detailed information about an operation, use the get REST API method for the Operation resource or the OperationService/Get gRPC API call.

See alsoSee also

  • Working with operations

Was the article helpful?

Previous
Revoking roles assigned for a resource
Next
Automatic data upload to Yandex SpeechSense using Workflows
Yandex project
© 2025 Yandex.Cloud LLC