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 Serverless Integrations
  • Comparison with other Yandex Cloud services
    • All guides
    • Viewing operations with service resources
  • Pricing policy
  • Terraform reference
  • Monitoring metrics
  • Public materials
  • Release notes

In this article:

  • Getting a list of operations
  • Getting operation details
  1. Step-by-step guides
  2. Viewing operations with service resources

Viewing operations with Serverless Integrations resources

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

The system logs all actions with Serverless Integrations 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

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 other resources as well.

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

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

  1. Get a list of operations.

  2. Copy the ID of the operation you need.

  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: 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
All tutorials
© 2025 Direct Cursus Technology L.L.C.