aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/yandex-cloud-api-protos/yandex/cloud/organizationmanager/v1/organization.proto
blob: abd1ed42c123d31d9128399f9ef71b18533e611a (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.organizationmanager.v1;

import "google/protobuf/timestamp.proto";

option go_package = "github.com/yandex-cloud/go-genproto/yandex/cloud/organizationmanager/v1;organizationmanager";
option java_package = "yandex.cloud.api.organizationmanager.v1";

// An Organization resource. For more information, see [Organization](/docs/organization/enable-org).
message Organization {
  reserved 5;
  // ID of the organization.
  string id = 1;

  // Creation timestamp.
  google.protobuf.Timestamp created_at = 2;

  // Name of the organization. 3-63 characters long.
  string name = 3;

  // Description of the organization. 0-256 characters long.
  string description = 4;

  // Display name of the organization. 0-256 characters long.
  string title = 6;

  // Resource labels as `` key:value `` pairs. Maximum of 64 per resource.
  map<string, string> labels = 7;
}