EventRouter Service, gRPC: BusService.Get
Written by
Updated at December 17, 2024
Returns the specified bus.
To get the list of all available buses, make a List request.
gRPC request
rpc Get (GetBusRequest) returns (Bus)
GetBusRequest
{
"bus_id": "string"
}
Field |
Description |
bus_id |
string Required field. ID of the bus to get. |
Bus
{
"id": "string",
"folder_id": "string",
"cloud_id": "string",
"created_at": "google.protobuf.Timestamp",
"name": "string",
"description": "string",
"labels": "map<string, string>",
"deletion_protection": "bool",
"status": "Status"
}
Field |
Description |
id |
string ID of the bus. |
folder_id |
string ID of the folder that the bus belongs to. |
cloud_id |
string ID of the cloud that the bus resides in. |
created_at |
Creation timestamp. |
name |
string Name of the bus. |
description |
string Description of the bus. |
labels |
object (map<string, string>) Resource labels as |
deletion_protection |
bool Deletion protection. |
status |
enum Status Status of the bus.
|