blob: cfcbd9022f6a4298680fd2d562dc1585a5a64fed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
syntax = "proto3";
package yandex.cloud.vpc.v1;
import "google/protobuf/timestamp.proto";
option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/vpc/v1;vpc";
option java_package = "yandex.cloud.api.vpc.v1";
// A Gateway resource. For more information, see [Gateway](/docs/vpc/concepts/gateways).
message Gateway {
// ID of the gateway. Generated at creation time.
string id = 1;
// ID of the folder that the gateway belongs to.
string folder_id = 2;
// Creation timestamp.
google.protobuf.Timestamp created_at = 3;
// Name of the gateway.
// The name is unique within the folder.
string name = 4;
// Description of the gateway.
string description = 5;
// Resource labels as `key:value` pairs.
map<string, string> labels = 6;
// Gateway specification
oneof gateway {
SharedEgressGateway shared_egress_gateway = 7;
}
}
// Shared Egress Gateway configuration
message SharedEgressGateway {
}
|