160 lines
5.5 KiB
Go
160 lines
5.5 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: logical/identity.proto
|
|
|
|
package logical // import "github.com/hashicorp/vault/logical"
|
|
|
|
import proto "github.com/golang/protobuf/proto"
|
|
import fmt "fmt"
|
|
import math "math"
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
|
|
|
type Entity struct {
|
|
// ID is the unique identifier for the entity
|
|
ID string `protobuf:"bytes,1,opt,name=ID" json:"ID,omitempty"`
|
|
// Name is the human-friendly unique identifier for the entity
|
|
Name string `protobuf:"bytes,2,opt,name=name" json:"name,omitempty"`
|
|
// Aliases contains thhe alias mappings for the given entity
|
|
Aliases []*Alias `protobuf:"bytes,3,rep,name=aliases" json:"aliases,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Entity) Reset() { *m = Entity{} }
|
|
func (m *Entity) String() string { return proto.CompactTextString(m) }
|
|
func (*Entity) ProtoMessage() {}
|
|
func (*Entity) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_identity_63bdeae5187a0ba9, []int{0}
|
|
}
|
|
func (m *Entity) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Entity.Unmarshal(m, b)
|
|
}
|
|
func (m *Entity) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Entity.Marshal(b, m, deterministic)
|
|
}
|
|
func (dst *Entity) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Entity.Merge(dst, src)
|
|
}
|
|
func (m *Entity) XXX_Size() int {
|
|
return xxx_messageInfo_Entity.Size(m)
|
|
}
|
|
func (m *Entity) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Entity.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Entity proto.InternalMessageInfo
|
|
|
|
func (m *Entity) GetID() string {
|
|
if m != nil {
|
|
return m.ID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Entity) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Entity) GetAliases() []*Alias {
|
|
if m != nil {
|
|
return m.Aliases
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Alias struct {
|
|
// MountType is the backend mount's type to which this identity belongs
|
|
MountType string `protobuf:"bytes,1,opt,name=mount_type,json=mountType" json:"mount_type,omitempty"`
|
|
// MountAccessor is the identifier of the mount entry to which this
|
|
// identity belongs
|
|
MountAccessor string `protobuf:"bytes,2,opt,name=mount_accessor,json=mountAccessor" json:"mount_accessor,omitempty"`
|
|
// Name is the identifier of this identity in its authentication source
|
|
Name string `protobuf:"bytes,3,opt,name=name" json:"name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Alias) Reset() { *m = Alias{} }
|
|
func (m *Alias) String() string { return proto.CompactTextString(m) }
|
|
func (*Alias) ProtoMessage() {}
|
|
func (*Alias) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_identity_63bdeae5187a0ba9, []int{1}
|
|
}
|
|
func (m *Alias) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Alias.Unmarshal(m, b)
|
|
}
|
|
func (m *Alias) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Alias.Marshal(b, m, deterministic)
|
|
}
|
|
func (dst *Alias) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Alias.Merge(dst, src)
|
|
}
|
|
func (m *Alias) XXX_Size() int {
|
|
return xxx_messageInfo_Alias.Size(m)
|
|
}
|
|
func (m *Alias) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Alias.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Alias proto.InternalMessageInfo
|
|
|
|
func (m *Alias) GetMountType() string {
|
|
if m != nil {
|
|
return m.MountType
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Alias) GetMountAccessor() string {
|
|
if m != nil {
|
|
return m.MountAccessor
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Alias) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterType((*Entity)(nil), "logical.Entity")
|
|
proto.RegisterType((*Alias)(nil), "logical.Alias")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("logical/identity.proto", fileDescriptor_identity_63bdeae5187a0ba9) }
|
|
|
|
var fileDescriptor_identity_63bdeae5187a0ba9 = []byte{
|
|
// 209 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x44, 0xcf, 0x31, 0x6b, 0x85, 0x30,
|
|
0x14, 0x05, 0x60, 0xd4, 0x56, 0xf1, 0x96, 0x3a, 0x64, 0x28, 0x2e, 0x05, 0x91, 0x16, 0x9c, 0x12,
|
|
0x68, 0x7f, 0x81, 0xc5, 0x0e, 0xae, 0x52, 0x3a, 0x74, 0x29, 0xd7, 0x34, 0x68, 0x20, 0x9a, 0x60,
|
|
0x62, 0xc1, 0x7f, 0x5f, 0x9a, 0x97, 0xf7, 0xde, 0x16, 0xbe, 0x03, 0x27, 0xe7, 0xc2, 0x83, 0xd2,
|
|
0x93, 0xe4, 0xa8, 0x98, 0xfc, 0x11, 0xab, 0x93, 0xee, 0xa0, 0x66, 0xd3, 0x4e, 0x93, 0x2c, 0x78,
|
|
0xfd, 0x09, 0xe9, 0xbb, 0x0f, 0x48, 0x01, 0x71, 0xdf, 0x95, 0x51, 0x15, 0x35, 0xf9, 0x10, 0xf7,
|
|
0x1d, 0x21, 0x70, 0xb3, 0xe2, 0x22, 0xca, 0xd8, 0x8b, 0x7f, 0x93, 0x06, 0x32, 0x54, 0x12, 0xad,
|
|
0xb0, 0x65, 0x52, 0x25, 0xcd, 0xdd, 0x4b, 0x41, 0x43, 0x11, 0x6d, 0xff, 0x7d, 0x38, 0xc7, 0x35,
|
|
0xc2, 0xad, 0x17, 0xf2, 0x08, 0xb0, 0xe8, 0x7d, 0x75, 0xdf, 0xee, 0x30, 0x22, 0xd4, 0xe7, 0x5e,
|
|
0x3e, 0x0e, 0x23, 0xc8, 0x33, 0x14, 0xa7, 0x18, 0x39, 0x17, 0xd6, 0xea, 0x2d, 0xfc, 0x77, 0xef,
|
|
0xb5, 0x0d, 0x78, 0x19, 0x93, 0x5c, 0xc7, 0xbc, 0x3d, 0x7d, 0xd5, 0x93, 0x74, 0xf3, 0x3e, 0x52,
|
|
0xae, 0x17, 0x36, 0xa3, 0x9d, 0x25, 0xd7, 0x9b, 0x61, 0xbf, 0xb8, 0x2b, 0xc7, 0xc2, 0xae, 0x31,
|
|
0xf5, 0x07, 0xbf, 0xfe, 0x05, 0x00, 0x00, 0xff, 0xff, 0x53, 0x90, 0x60, 0xf6, 0x0a, 0x01, 0x00,
|
|
0x00,
|
|
}
|