You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/proto/local/controller/api/resources/groups/v1/group.proto

53 lines
1.9 KiB

syntax = "proto3";
package controller.api.resources.groups.v1;
option go_package = "github.com/hashicorp/boundary/internal/gen/controller/api/resources/groups;groups";
import "google/protobuf/timestamp.proto";
import "google/protobuf/wrappers.proto";
import "controller/api/resources/scopes/v1/scope.proto";
import "controller/custom_options/v1/options.proto";
message Member {
// Output only. The ID of the member.
string id = 10;
// Output only. The Scope ID of the member.
string scope_id = 20 [json_name="scope_id"];
}
// Group contains all fields related to a Group resource
message Group {
// Output only. The ID of the Group.
string id = 10;
// The ID of the scope of which this Group is a part.
string scope_id = 20 [json_name="scope_id"];
// Output only. Scope information for this Group.
resources.scopes.v1.ScopeInfo scope = 30;
// Optional name for identification purposes.
google.protobuf.StringValue name = 40 [(custom_options.v1.generate_sdk_option) = true, (custom_options.v1.mask_mapping) = {this:"name" that: "name"}];
// Optional user-set descripton for identification purposes.
google.protobuf.StringValue description = 50 [(custom_options.v1.generate_sdk_option) = true, (custom_options.v1.mask_mapping) = {this:"description" that: "description"}];
// Output only. The time this resource was created.
google.protobuf.Timestamp created_time = 60 [json_name="created_time"];
// Output only. The time this resource was last updated.
google.protobuf.Timestamp updated_time = 70 [json_name="updated_time"];
// Version is used in mutation requests, after the initial creation, to ensure this resource has not changed.
// The mutation will fail if the version does not match the latest known good version.
uint32 version = 80;
// Output only. Contains the list of member IDs in this Group.
repeated string member_ids = 90 [json_name="member_ids"];
// Output only. The members of this Group.
repeated Member members = 100;
}