blob: 1a2bff877d250c9ac76af490515ff8ca3ba8a6f5 (
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
|
syntax = "proto3";
package yandex.cloud.compute.v1;
option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/compute/v1;compute";
option java_package = "yandex.cloud.api.compute.v1";
// Availability zone. For more information, see [Availability zones](/docs/overview/concepts/geo-scope).
message Zone {
enum Status {
STATUS_UNSPECIFIED = 0;
// Zone is available. You can access the resources allocated in this zone.
UP = 1;
// Zone is not available.
DOWN = 2;
}
// ID of the zone.
string id = 1;
// ID of the region.
string region_id = 2;
// Status of the zone.
Status status = 3;
}
|