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.
459 lines
16 KiB
459 lines
16 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/auth/password/store/v1/password.proto
|
|
|
|
// Package store provides protobufs for storing types in the password package.
|
|
|
|
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)
|
|
)
|
|
|
|
type AuthMethod struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
// @inject_tag: `gorm:"primary_key"`
|
|
PublicId string `protobuf:"bytes,1,opt,name=public_id,json=publicId,proto3" json:"public_id,omitempty" gorm:"primary_key"`
|
|
// The create_time is set by the database.
|
|
// @inject_tag: `gorm:"default:current_timestamp"`
|
|
CreateTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty" gorm:"default:current_timestamp"`
|
|
// The update_time is set by the database.
|
|
// @inject_tag: `gorm:"default:current_timestamp"`
|
|
UpdateTime *timestamp.Timestamp `protobuf:"bytes,3,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty" gorm:"default:current_timestamp"`
|
|
// name is optional. If set, it must be unique within scope_id.
|
|
// @inject_tag: `gorm:"default:null"`
|
|
Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty" gorm:"default:null"`
|
|
// description is optional.
|
|
// @inject_tag: `gorm:"default:null"`
|
|
Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty" gorm:"default:null"`
|
|
// The scope_id of the owning scope. Must be set.
|
|
// @inject_tag: `gorm:"not_null"`
|
|
ScopeId string `protobuf:"bytes,6,opt,name=scope_id,json=scopeId,proto3" json:"scope_id,omitempty" gorm:"not_null"`
|
|
// @inject_tag: `gorm:"default:null"`
|
|
Version uint32 `protobuf:"varint,7,opt,name=version,proto3" json:"version,omitempty" gorm:"default:null"`
|
|
// @inject_tag: `gorm:"not_null"`
|
|
PasswordConfId string `protobuf:"bytes,8,opt,name=password_conf_id,json=passwordConfId,proto3" json:"password_conf_id,omitempty" gorm:"not_null"`
|
|
// @inject_tag: `gorm:"default:null"`
|
|
MinLoginNameLength uint32 `protobuf:"varint,9,opt,name=min_login_name_length,json=minLoginNameLength,proto3" json:"min_login_name_length,omitempty" gorm:"default:null"`
|
|
// @inject_tag: `gorm:"default:null"`
|
|
MinPasswordLength uint32 `protobuf:"varint,10,opt,name=min_password_length,json=minPasswordLength,proto3" json:"min_password_length,omitempty" gorm:"default:null"`
|
|
// is_primary_auth_method is a read-only output field which indicates if the
|
|
// auth method is set as the scope's primary auth method.
|
|
// @inject_tag: `gorm:"->"`
|
|
IsPrimaryAuthMethod bool `protobuf:"varint,20,opt,name=is_primary_auth_method,json=isPrimaryAuthMethod,proto3" json:"is_primary_auth_method,omitempty" gorm:"->"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *AuthMethod) Reset() {
|
|
*x = AuthMethod{}
|
|
mi := &file_controller_storage_auth_password_store_v1_password_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *AuthMethod) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*AuthMethod) ProtoMessage() {}
|
|
|
|
func (x *AuthMethod) ProtoReflect() protoreflect.Message {
|
|
mi := &file_controller_storage_auth_password_store_v1_password_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 AuthMethod.ProtoReflect.Descriptor instead.
|
|
func (*AuthMethod) Descriptor() ([]byte, []int) {
|
|
return file_controller_storage_auth_password_store_v1_password_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *AuthMethod) GetPublicId() string {
|
|
if x != nil {
|
|
return x.PublicId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *AuthMethod) GetCreateTime() *timestamp.Timestamp {
|
|
if x != nil {
|
|
return x.CreateTime
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *AuthMethod) GetUpdateTime() *timestamp.Timestamp {
|
|
if x != nil {
|
|
return x.UpdateTime
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *AuthMethod) GetName() string {
|
|
if x != nil {
|
|
return x.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *AuthMethod) GetDescription() string {
|
|
if x != nil {
|
|
return x.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *AuthMethod) GetScopeId() string {
|
|
if x != nil {
|
|
return x.ScopeId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *AuthMethod) GetVersion() uint32 {
|
|
if x != nil {
|
|
return x.Version
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *AuthMethod) GetPasswordConfId() string {
|
|
if x != nil {
|
|
return x.PasswordConfId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *AuthMethod) GetMinLoginNameLength() uint32 {
|
|
if x != nil {
|
|
return x.MinLoginNameLength
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *AuthMethod) GetMinPasswordLength() uint32 {
|
|
if x != nil {
|
|
return x.MinPasswordLength
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *AuthMethod) GetIsPrimaryAuthMethod() bool {
|
|
if x != nil {
|
|
return x.IsPrimaryAuthMethod
|
|
}
|
|
return false
|
|
}
|
|
|
|
type Account struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
// @inject_tag: `gorm:"primary_key"`
|
|
PublicId string `protobuf:"bytes,1,opt,name=public_id,json=publicId,proto3" json:"public_id,omitempty" gorm:"primary_key"`
|
|
// The create_time is set by the database.
|
|
// @inject_tag: `gorm:"default:current_timestamp"`
|
|
CreateTime *timestamp.Timestamp `protobuf:"bytes,2,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty" gorm:"default:current_timestamp"`
|
|
// The update_time is set by the database.
|
|
// @inject_tag: `gorm:"default:current_timestamp"`
|
|
UpdateTime *timestamp.Timestamp `protobuf:"bytes,3,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty" gorm:"default:current_timestamp"`
|
|
// name is optional. If set, it must be unique within scope_id.
|
|
// @inject_tag: `gorm:"default:null"`
|
|
Name string `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty" gorm:"default:null"`
|
|
// description is optional.
|
|
// @inject_tag: `gorm:"default:null"`
|
|
Description string `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty" gorm:"default:null"`
|
|
// @inject_tag: `gorm:"default:null"`
|
|
Version uint32 `protobuf:"varint,6,opt,name=version,proto3" json:"version,omitempty" gorm:"default:null"`
|
|
// @inject_tag: `gorm:"not_null"`
|
|
AuthMethodId string `protobuf:"bytes,7,opt,name=auth_method_id,json=authMethodId,proto3" json:"auth_method_id,omitempty" gorm:"not_null"`
|
|
// @inject_tag: `gorm:"not_null"`
|
|
LoginName string `protobuf:"bytes,8,opt,name=login_name,json=loginName,proto3" json:"login_name,omitempty" gorm:"not_null"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *Account) Reset() {
|
|
*x = Account{}
|
|
mi := &file_controller_storage_auth_password_store_v1_password_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *Account) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*Account) ProtoMessage() {}
|
|
|
|
func (x *Account) ProtoReflect() protoreflect.Message {
|
|
mi := &file_controller_storage_auth_password_store_v1_password_proto_msgTypes[1]
|
|
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 Account.ProtoReflect.Descriptor instead.
|
|
func (*Account) Descriptor() ([]byte, []int) {
|
|
return file_controller_storage_auth_password_store_v1_password_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
|
|
func (x *Account) GetPublicId() string {
|
|
if x != nil {
|
|
return x.PublicId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Account) GetCreateTime() *timestamp.Timestamp {
|
|
if x != nil {
|
|
return x.CreateTime
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *Account) GetUpdateTime() *timestamp.Timestamp {
|
|
if x != nil {
|
|
return x.UpdateTime
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *Account) GetName() string {
|
|
if x != nil {
|
|
return x.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Account) GetDescription() string {
|
|
if x != nil {
|
|
return x.Description
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Account) GetVersion() uint32 {
|
|
if x != nil {
|
|
return x.Version
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *Account) GetAuthMethodId() string {
|
|
if x != nil {
|
|
return x.AuthMethodId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Account) GetLoginName() string {
|
|
if x != nil {
|
|
return x.LoginName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type Credential struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
// @inject_tag: `gorm:"primary_key"`
|
|
PrivateId string `protobuf:"bytes,1,opt,name=private_id,json=privateId,proto3" json:"private_id,omitempty" gorm:"primary_key"`
|
|
// @inject_tag: `gorm:"not_null"`
|
|
PasswordAccountId string `protobuf:"bytes,2,opt,name=password_account_id,json=passwordAccountId,proto3" json:"password_account_id,omitempty" gorm:"not_null"`
|
|
// @inject_tag: `gorm:"not_null"`
|
|
PasswordConfId string `protobuf:"bytes,3,opt,name=password_conf_id,json=passwordConfId,proto3" json:"password_conf_id,omitempty" gorm:"not_null"`
|
|
// @inject_tag: `gorm:"not_null"`
|
|
PasswordMethodId string `protobuf:"bytes,4,opt,name=password_method_id,json=passwordMethodId,proto3" json:"password_method_id,omitempty" gorm:"not_null"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *Credential) Reset() {
|
|
*x = Credential{}
|
|
mi := &file_controller_storage_auth_password_store_v1_password_proto_msgTypes[2]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *Credential) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*Credential) ProtoMessage() {}
|
|
|
|
func (x *Credential) ProtoReflect() protoreflect.Message {
|
|
mi := &file_controller_storage_auth_password_store_v1_password_proto_msgTypes[2]
|
|
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 Credential.ProtoReflect.Descriptor instead.
|
|
func (*Credential) Descriptor() ([]byte, []int) {
|
|
return file_controller_storage_auth_password_store_v1_password_proto_rawDescGZIP(), []int{2}
|
|
}
|
|
|
|
func (x *Credential) GetPrivateId() string {
|
|
if x != nil {
|
|
return x.PrivateId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Credential) GetPasswordAccountId() string {
|
|
if x != nil {
|
|
return x.PasswordAccountId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Credential) GetPasswordConfId() string {
|
|
if x != nil {
|
|
return x.PasswordConfId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *Credential) GetPasswordMethodId() string {
|
|
if x != nil {
|
|
return x.PasswordMethodId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
var File_controller_storage_auth_password_store_v1_password_proto protoreflect.FileDescriptor
|
|
|
|
const file_controller_storage_auth_password_store_v1_password_proto_rawDesc = "" +
|
|
"\n" +
|
|
"8controller/storage/auth/password/store/v1/password.proto\x12)controller.storage.auth.password.store.v1\x1a*controller/custom_options/v1/options.proto\x1a/controller/storage/timestamp/v1/timestamp.proto\"\x97\x05\n" +
|
|
"\n" +
|
|
"AuthMethod\x12\x1b\n" +
|
|
"\tpublic_id\x18\x01 \x01(\tR\bpublicId\x12K\n" +
|
|
"\vcreate_time\x18\x02 \x01(\v2*.controller.storage.timestamp.v1.TimestampR\n" +
|
|
"createTime\x12K\n" +
|
|
"\vupdate_time\x18\x03 \x01(\v2*.controller.storage.timestamp.v1.TimestampR\n" +
|
|
"updateTime\x12$\n" +
|
|
"\x04name\x18\x04 \x01(\tB\x10\xc2\xdd)\f\n" +
|
|
"\x04Name\x12\x04nameR\x04name\x12@\n" +
|
|
"\vdescription\x18\x05 \x01(\tB\x1e\xc2\xdd)\x1a\n" +
|
|
"\vDescription\x12\vdescriptionR\vdescription\x12\x19\n" +
|
|
"\bscope_id\x18\x06 \x01(\tR\ascopeId\x12\x18\n" +
|
|
"\aversion\x18\a \x01(\rR\aversion\x12(\n" +
|
|
"\x10password_conf_id\x18\b \x01(\tR\x0epasswordConfId\x12m\n" +
|
|
"\x15min_login_name_length\x18\t \x01(\rB:\xc2\xdd)6\n" +
|
|
"\x12MinLoginNameLength\x12 attributes.min_login_name_lengthR\x12minLoginNameLength\x12g\n" +
|
|
"\x13min_password_length\x18\n" +
|
|
" \x01(\rB7\xc2\xdd)3\n" +
|
|
"\x11MinPasswordLength\x12\x1eattributes.min_password_lengthR\x11minPasswordLength\x123\n" +
|
|
"\x16is_primary_auth_method\x18\x14 \x01(\bR\x13isPrimaryAuthMethod\"\xaf\x03\n" +
|
|
"\aAccount\x12\x1b\n" +
|
|
"\tpublic_id\x18\x01 \x01(\tR\bpublicId\x12K\n" +
|
|
"\vcreate_time\x18\x02 \x01(\v2*.controller.storage.timestamp.v1.TimestampR\n" +
|
|
"createTime\x12K\n" +
|
|
"\vupdate_time\x18\x03 \x01(\v2*.controller.storage.timestamp.v1.TimestampR\n" +
|
|
"updateTime\x12$\n" +
|
|
"\x04name\x18\x04 \x01(\tB\x10\xc2\xdd)\f\n" +
|
|
"\x04Name\x12\x04nameR\x04name\x12@\n" +
|
|
"\vdescription\x18\x05 \x01(\tB\x1e\xc2\xdd)\x1a\n" +
|
|
"\vDescription\x12\vdescriptionR\vdescription\x12\x18\n" +
|
|
"\aversion\x18\x06 \x01(\rR\aversion\x12$\n" +
|
|
"\x0eauth_method_id\x18\a \x01(\tR\fauthMethodId\x12E\n" +
|
|
"\n" +
|
|
"login_name\x18\b \x01(\tB&\xc2\xdd)\"\n" +
|
|
"\tLoginName\x12\x15attributes.login_nameR\tloginName\"\xb3\x01\n" +
|
|
"\n" +
|
|
"Credential\x12\x1d\n" +
|
|
"\n" +
|
|
"private_id\x18\x01 \x01(\tR\tprivateId\x12.\n" +
|
|
"\x13password_account_id\x18\x02 \x01(\tR\x11passwordAccountId\x12(\n" +
|
|
"\x10password_conf_id\x18\x03 \x01(\tR\x0epasswordConfId\x12,\n" +
|
|
"\x12password_method_id\x18\x04 \x01(\tR\x10passwordMethodIdBBZ@github.com/hashicorp/boundary/internal/auth/password/store;storeb\x06proto3"
|
|
|
|
var (
|
|
file_controller_storage_auth_password_store_v1_password_proto_rawDescOnce sync.Once
|
|
file_controller_storage_auth_password_store_v1_password_proto_rawDescData []byte
|
|
)
|
|
|
|
func file_controller_storage_auth_password_store_v1_password_proto_rawDescGZIP() []byte {
|
|
file_controller_storage_auth_password_store_v1_password_proto_rawDescOnce.Do(func() {
|
|
file_controller_storage_auth_password_store_v1_password_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_controller_storage_auth_password_store_v1_password_proto_rawDesc), len(file_controller_storage_auth_password_store_v1_password_proto_rawDesc)))
|
|
})
|
|
return file_controller_storage_auth_password_store_v1_password_proto_rawDescData
|
|
}
|
|
|
|
var file_controller_storage_auth_password_store_v1_password_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
|
|
var file_controller_storage_auth_password_store_v1_password_proto_goTypes = []any{
|
|
(*AuthMethod)(nil), // 0: controller.storage.auth.password.store.v1.AuthMethod
|
|
(*Account)(nil), // 1: controller.storage.auth.password.store.v1.Account
|
|
(*Credential)(nil), // 2: controller.storage.auth.password.store.v1.Credential
|
|
(*timestamp.Timestamp)(nil), // 3: controller.storage.timestamp.v1.Timestamp
|
|
}
|
|
var file_controller_storage_auth_password_store_v1_password_proto_depIdxs = []int32{
|
|
3, // 0: controller.storage.auth.password.store.v1.AuthMethod.create_time:type_name -> controller.storage.timestamp.v1.Timestamp
|
|
3, // 1: controller.storage.auth.password.store.v1.AuthMethod.update_time:type_name -> controller.storage.timestamp.v1.Timestamp
|
|
3, // 2: controller.storage.auth.password.store.v1.Account.create_time:type_name -> controller.storage.timestamp.v1.Timestamp
|
|
3, // 3: controller.storage.auth.password.store.v1.Account.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_auth_password_store_v1_password_proto_init() }
|
|
func file_controller_storage_auth_password_store_v1_password_proto_init() {
|
|
if File_controller_storage_auth_password_store_v1_password_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_auth_password_store_v1_password_proto_rawDesc), len(file_controller_storage_auth_password_store_v1_password_proto_rawDesc)),
|
|
NumEnums: 0,
|
|
NumMessages: 3,
|
|
NumExtensions: 0,
|
|
NumServices: 0,
|
|
},
|
|
GoTypes: file_controller_storage_auth_password_store_v1_password_proto_goTypes,
|
|
DependencyIndexes: file_controller_storage_auth_password_store_v1_password_proto_depIdxs,
|
|
MessageInfos: file_controller_storage_auth_password_store_v1_password_proto_msgTypes,
|
|
}.Build()
|
|
File_controller_storage_auth_password_store_v1_password_proto = out.File
|
|
file_controller_storage_auth_password_store_v1_password_proto_goTypes = nil
|
|
file_controller_storage_auth_password_store_v1_password_proto_depIdxs = nil
|
|
}
|