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

66 lines
1.8 KiB

syntax = "proto3";
package controller.api.resources.groups.v1;
option go_package = "github.com/hashicorp/watchtower/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/masks.proto";
message Member {
// The ID of the member.
// Output only.
string id = 1;
// The type of the member.
// Output only.
string type = 2;
// The scope ID of the member.
// Output only.
string scope_id = 3 [json_name="scope_id"];
}
// Group contains all fields related to a Group resource
message Group {
// The ID of the Project
// Output only.
string id = 1;
// Scope information for this resource
// Output only.
resources.scopes.v1.ScopeInfo scope = 2;
// Optional name for identification purposes
google.protobuf.StringValue name = 3 [(custom_options.v1.mask_mapping) = {this:"name" that: "name"}];
// Optional user-set descripton for identification purposes
google.protobuf.StringValue description = 4 [(custom_options.v1.mask_mapping) = {this:"description" that: "description"}];
// The time this resource was created
// Output only.
google.protobuf.Timestamp created_time = 5 [json_name="created_time"];
// The time this resource was last updated.
// Output only.
google.protobuf.Timestamp updated_time = 6 [json_name="updated_time"];
// Whether the resource is disabled
google.protobuf.BoolValue disabled = 7;
// The version can be used in subsiquent write requests to ensure this resource
// has not changed and to fail the write if it has.
// Output only.
uint32 version = 8;
// Contains the list of member ids in this group.
// Output only.
repeated string member_ids = 9;
// The members of this group.
// Output only.
repeated Member members = 10;
}