BareMetal API, gRPC: VrfService.Get
Статья создана
Обновлена 28 марта 2025 г.
Returns the specific VRF resource.
To get the list of available VRFs, make a List request.
gRPC request
rpc Get (GetVrfRequest) returns (Vrf)
GetVrfRequest
{
"vrf_id": "string"
}
Field |
Description |
vrf_id |
string ID of the VRF to return. To get the VRF ID, use a VrfService.List request. |
Vrf
{
"id": "string",
"cloud_id": "string",
"folder_id": "string",
"name": "string",
"description": "string",
"created_at": "google.protobuf.Timestamp",
"labels": "map<string, string>"
}
Field |
Description |
id |
string ID of the VRF. |
cloud_id |
string ID of the cloud that the private subnet belongs to. |
folder_id |
string ID of the folder that the private subnet belongs to. |
name |
string Name of the VRF. |
description |
string Optional description of the VRF. |
created_at |
Creation timestamp. |
labels |
object (map<string, string>) Resource labels as |