blob: b7932235905bd5c2c4795eaab7d30f6cc909446f (
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
|
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";
// A Group resource.
// For more information, see [Groups](/docs/organization/operations/manage-groups).
message Group {
// ID of the group.
string id = 1;
// ID of the organization that the group belongs to.
string organization_id = 2;
// Creation timestamp.
google.protobuf.Timestamp created_at = 3;
// Name of the group.
string name = 4;
// Description of the group.
string description = 5;
}
|