mirror of https://github.com/hashicorp/boundary
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.
255 lines
10 KiB
255 lines
10 KiB
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.36.10
|
|
// protoc (unknown)
|
|
// source: controller/storage/iam/store/v1/role_global.proto
|
|
|
|
package store
|
|
|
|
import (
|
|
timestamp "github.com/hashicorp/boundary/internal/db/timestamp"
|
|
_ "github.com/hashicorp/boundary/sdk/pbs/controller/protooptions"
|
|
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
|
|
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
|
|
reflect "reflect"
|
|
sync "sync"
|
|
unsafe "unsafe"
|
|
)
|
|
|
|
const (
|
|
// Verify that this generated code is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
|
|
// Verify that runtime/protoimpl is sufficiently up-to-date.
|
|
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
|
|
)
|
|
|
|
// GlobalRole represents roles created in global scope
|
|
type GlobalRole struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
// public_id is used to access the Role via an API
|
|
// @inject_tag: gorm:"primary_key"
|
|
PublicId string `protobuf:"bytes,1,opt,name=public_id,json=publicId,proto3" json:"public_id,omitempty" gorm:"primary_key"`
|
|
// scope id for the role
|
|
// @inject_tag: `gorm:"default:null"`
|
|
ScopeId string `protobuf:"bytes,2,opt,name=scope_id,json=scopeId,proto3" json:"scope_id,omitempty" gorm:"default:null"`
|
|
// name is the optional friendly name used to
|
|
// access the Role via an API
|
|
// @inject_tag: `gorm:"default:null"`
|
|
Name string `protobuf:"bytes,3,opt,name=name,proto3" json:"name,omitempty" gorm:"default:null"`
|
|
// description of the role
|
|
// @inject_tag: `gorm:"default:null"`
|
|
Description string `protobuf:"bytes,4,opt,name=description,proto3" json:"description,omitempty" gorm:"default:null"`
|
|
// control if this role is granted access to its role scope
|
|
// @inject_tag: `gorm:"default:false"`
|
|
GrantThisRoleScope bool `protobuf:"varint,5,opt,name=grant_this_role_scope,json=grantThisRoleScope,proto3" json:"grant_this_role_scope,omitempty" gorm:"default:false"`
|
|
// control type of grant scope granted to this role ['descendant', 'children', 'individual']
|
|
// @inject_tag: `gorm:"default:null"`
|
|
GrantScope string `protobuf:"bytes,6,opt,name=grant_scope,json=grantScope,proto3" json:"grant_scope,omitempty" gorm:"default:null"`
|
|
// timestamp when grant_this_role_scope was last updated
|
|
// @inject_tag: `gorm:"default:current_timestamp"`
|
|
GrantThisRoleScopeUpdateTime *timestamp.Timestamp `protobuf:"bytes,7,opt,name=grant_this_role_scope_update_time,json=grantThisRoleScopeUpdateTime,proto3" json:"grant_this_role_scope_update_time,omitempty" gorm:"default:current_timestamp"`
|
|
// timestamp when grant_scope was last updated
|
|
// @inject_tag: `gorm:"default:current_timestamp"`
|
|
GrantScopeUpdateTime *timestamp.Timestamp `protobuf:"bytes,8,opt,name=grant_scope_update_time,json=grantScopeUpdateTime,proto3" json:"grant_scope_update_time,omitempty" gorm:"default:current_timestamp"`
|
|
// create_time from the RDBMS
|
|
// @inject_tag: `gorm:"default:current_timestamp"`
|
|
CreateTime *timestamp.Timestamp `protobuf:"bytes,9,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty" gorm:"default:current_timestamp"`
|
|
// update_time from the RDBMS
|
|
// @inject_tag: `gorm:"default:current_timestamp"`
|
|
UpdateTime *timestamp.Timestamp `protobuf:"bytes,10,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty" gorm:"default:current_timestamp"`
|
|
// version allows optimistic locking of the role when modifying the role
|
|
// itself and when modifying dependent items like principal roles.
|
|
// @inject_tag: `gorm:"default:null"`
|
|
Version uint32 `protobuf:"varint,11,opt,name=version,proto3" json:"version,omitempty" gorm:"default:null"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *GlobalRole) Reset() {
|
|
*x = GlobalRole{}
|
|
mi := &file_controller_storage_iam_store_v1_role_global_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *GlobalRole) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*GlobalRole) ProtoMessage() {}
|
|
|
|
func (x *GlobalRole) ProtoReflect() protoreflect.Message {
|
|
mi := &file_controller_storage_iam_store_v1_role_global_proto_msgTypes[0]
|
|
if x != nil {
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
if ms.LoadMessageInfo() == nil {
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
return ms
|
|
}
|
|
return mi.MessageOf(x)
|
|
}
|
|
|
|
// Deprecated: Use GlobalRole.ProtoReflect.Descriptor instead.
|
|
func (*GlobalRole) Descriptor() ([]byte, []int) {
|
|
return file_controller_storage_iam_store_v1_role_global_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *GlobalRole) GetPublicId() string {
|
|
if x != nil {
|
|
return x.PublicId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *GlobalRole) GetScopeId() string {
|
|
if x != nil {
|
|
return x.ScopeId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *GlobalRole) GetName() string {
|
|
if x != nil {
|
|
return x.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *GlobalRole) GetDescription() string {
|
|
if x != nil {
|
|
return x.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *GlobalRole) GetGrantThisRoleScope() bool {
|
|
if x != nil {
|
|
return x.GrantThisRoleScope
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (x *GlobalRole) GetGrantScope() string {
|
|
if x != nil {
|
|
return x.GrantScope
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *GlobalRole) GetGrantThisRoleScopeUpdateTime() *timestamp.Timestamp {
|
|
if x != nil {
|
|
return x.GrantThisRoleScopeUpdateTime
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *GlobalRole) GetGrantScopeUpdateTime() *timestamp.Timestamp {
|
|
if x != nil {
|
|
return x.GrantScopeUpdateTime
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *GlobalRole) GetCreateTime() *timestamp.Timestamp {
|
|
if x != nil {
|
|
return x.CreateTime
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *GlobalRole) GetUpdateTime() *timestamp.Timestamp {
|
|
if x != nil {
|
|
return x.UpdateTime
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *GlobalRole) GetVersion() uint32 {
|
|
if x != nil {
|
|
return x.Version
|
|
}
|
|
return 0
|
|
}
|
|
|
|
var File_controller_storage_iam_store_v1_role_global_proto protoreflect.FileDescriptor
|
|
|
|
const file_controller_storage_iam_store_v1_role_global_proto_rawDesc = "" +
|
|
"\n" +
|
|
"1controller/storage/iam/store/v1/role_global.proto\x12\x1fcontroller.storage.iam.store.v1\x1a*controller/custom_options/v1/options.proto\x1a/controller/storage/timestamp/v1/timestamp.proto\"\x8c\x05\n" +
|
|
"\n" +
|
|
"GlobalRole\x12\x1b\n" +
|
|
"\tpublic_id\x18\x01 \x01(\tR\bpublicId\x12\x19\n" +
|
|
"\bscope_id\x18\x02 \x01(\tR\ascopeId\x12$\n" +
|
|
"\x04name\x18\x03 \x01(\tB\x10\xc2\xdd)\f\n" +
|
|
"\x04name\x12\x04nameR\x04name\x12@\n" +
|
|
"\vdescription\x18\x04 \x01(\tB\x1e\xc2\xdd)\x1a\n" +
|
|
"\vdescription\x12\vdescriptionR\vdescription\x121\n" +
|
|
"\x15grant_this_role_scope\x18\x05 \x01(\bR\x12grantThisRoleScope\x12\x1f\n" +
|
|
"\vgrant_scope\x18\x06 \x01(\tR\n" +
|
|
"grantScope\x12s\n" +
|
|
"!grant_this_role_scope_update_time\x18\a \x01(\v2*.controller.storage.timestamp.v1.TimestampR\x1cgrantThisRoleScopeUpdateTime\x12a\n" +
|
|
"\x17grant_scope_update_time\x18\b \x01(\v2*.controller.storage.timestamp.v1.TimestampR\x14grantScopeUpdateTime\x12K\n" +
|
|
"\vcreate_time\x18\t \x01(\v2*.controller.storage.timestamp.v1.TimestampR\n" +
|
|
"createTime\x12K\n" +
|
|
"\vupdate_time\x18\n" +
|
|
" \x01(\v2*.controller.storage.timestamp.v1.TimestampR\n" +
|
|
"updateTime\x12\x18\n" +
|
|
"\aversion\x18\v \x01(\rR\aversionB8Z6github.com/hashicorp/boundary/internal/iam/store;storeb\x06proto3"
|
|
|
|
var (
|
|
file_controller_storage_iam_store_v1_role_global_proto_rawDescOnce sync.Once
|
|
file_controller_storage_iam_store_v1_role_global_proto_rawDescData []byte
|
|
)
|
|
|
|
func file_controller_storage_iam_store_v1_role_global_proto_rawDescGZIP() []byte {
|
|
file_controller_storage_iam_store_v1_role_global_proto_rawDescOnce.Do(func() {
|
|
file_controller_storage_iam_store_v1_role_global_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_controller_storage_iam_store_v1_role_global_proto_rawDesc), len(file_controller_storage_iam_store_v1_role_global_proto_rawDesc)))
|
|
})
|
|
return file_controller_storage_iam_store_v1_role_global_proto_rawDescData
|
|
}
|
|
|
|
var file_controller_storage_iam_store_v1_role_global_proto_msgTypes = make([]protoimpl.MessageInfo, 1)
|
|
var file_controller_storage_iam_store_v1_role_global_proto_goTypes = []any{
|
|
(*GlobalRole)(nil), // 0: controller.storage.iam.store.v1.GlobalRole
|
|
(*timestamp.Timestamp)(nil), // 1: controller.storage.timestamp.v1.Timestamp
|
|
}
|
|
var file_controller_storage_iam_store_v1_role_global_proto_depIdxs = []int32{
|
|
1, // 0: controller.storage.iam.store.v1.GlobalRole.grant_this_role_scope_update_time:type_name -> controller.storage.timestamp.v1.Timestamp
|
|
1, // 1: controller.storage.iam.store.v1.GlobalRole.grant_scope_update_time:type_name -> controller.storage.timestamp.v1.Timestamp
|
|
1, // 2: controller.storage.iam.store.v1.GlobalRole.create_time:type_name -> controller.storage.timestamp.v1.Timestamp
|
|
1, // 3: controller.storage.iam.store.v1.GlobalRole.update_time:type_name -> controller.storage.timestamp.v1.Timestamp
|
|
4, // [4:4] is the sub-list for method output_type
|
|
4, // [4:4] is the sub-list for method input_type
|
|
4, // [4:4] is the sub-list for extension type_name
|
|
4, // [4:4] is the sub-list for extension extendee
|
|
0, // [0:4] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_controller_storage_iam_store_v1_role_global_proto_init() }
|
|
func file_controller_storage_iam_store_v1_role_global_proto_init() {
|
|
if File_controller_storage_iam_store_v1_role_global_proto != nil {
|
|
return
|
|
}
|
|
type x struct{}
|
|
out := protoimpl.TypeBuilder{
|
|
File: protoimpl.DescBuilder{
|
|
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
|
|
RawDescriptor: unsafe.Slice(unsafe.StringData(file_controller_storage_iam_store_v1_role_global_proto_rawDesc), len(file_controller_storage_iam_store_v1_role_global_proto_rawDesc)),
|
|
NumEnums: 0,
|
|
NumMessages: 1,
|
|
NumExtensions: 0,
|
|
NumServices: 0,
|
|
},
|
|
GoTypes: file_controller_storage_iam_store_v1_role_global_proto_goTypes,
|
|
DependencyIndexes: file_controller_storage_iam_store_v1_role_global_proto_depIdxs,
|
|
MessageInfos: file_controller_storage_iam_store_v1_role_global_proto_msgTypes,
|
|
}.Build()
|
|
File_controller_storage_iam_store_v1_role_global_proto = out.File
|
|
file_controller_storage_iam_store_v1_role_global_proto_goTypes = nil
|
|
file_controller_storage_iam_store_v1_role_global_proto_depIdxs = nil
|
|
}
|