blob: 0afba510c158f0c73d77b345139a7b9df6fb7084 (
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
|
syntax = "proto3";
package yandex.cloud.resourcemanager.v1;
import "google/protobuf/timestamp.proto";
option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/resourcemanager/v1;resourcemanager";
option java_package = "yandex.cloud.api.resourcemanager.v1";
// A Cloud resource. For more information, see [Cloud](/docs/resource-manager/concepts/resources-hierarchy#cloud).
message Cloud {
reserved 5;
// ID of the cloud.
string id = 1;
// Creation timestamp.
google.protobuf.Timestamp created_at = 2;
// Name of the cloud. 3-63 characters long.
string name = 3;
// Description of the cloud. 0-256 characters long.
string description = 4;
// ID of the organization that the cloud belongs to.
string organization_id = 6;
// Resource labels as `` key:value `` pairs. Maximum of 64 per resource.
map<string, string> labels = 7;
}
|