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.
264 lines
9.3 KiB
264 lines
9.3 KiB
// Copyright IBM Corp. 2020, 2025
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// versions:
|
|
// protoc-gen-go v1.36.11
|
|
// protoc (unknown)
|
|
// source: controller/storage/kms/store/v1/root_key.proto
|
|
|
|
package store
|
|
|
|
import (
|
|
timestamp "github.com/hashicorp/boundary/internal/db/timestamp"
|
|
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 RootKey struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
// private_id is used to access the root key via an API
|
|
// @inject_tag: gorm:"primary_key"
|
|
PrivateId string `protobuf:"bytes,1,opt,name=private_id,json=privateId,proto3" json:"private_id,omitempty" gorm:"primary_key"`
|
|
// scope id for the root key
|
|
// @inject_tag: `gorm:"default:null"`
|
|
ScopeId string `protobuf:"bytes,2,opt,name=scope_id,json=scopeId,proto3" json:"scope_id,omitempty" gorm:"default:null"`
|
|
// create_time from the RDBMS
|
|
// @inject_tag: `gorm:"default:current_timestamp"`
|
|
CreateTime *timestamp.Timestamp `protobuf:"bytes,3,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty" gorm:"default:current_timestamp"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *RootKey) Reset() {
|
|
*x = RootKey{}
|
|
mi := &file_controller_storage_kms_store_v1_root_key_proto_msgTypes[0]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *RootKey) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*RootKey) ProtoMessage() {}
|
|
|
|
func (x *RootKey) ProtoReflect() protoreflect.Message {
|
|
mi := &file_controller_storage_kms_store_v1_root_key_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 RootKey.ProtoReflect.Descriptor instead.
|
|
func (*RootKey) Descriptor() ([]byte, []int) {
|
|
return file_controller_storage_kms_store_v1_root_key_proto_rawDescGZIP(), []int{0}
|
|
}
|
|
|
|
func (x *RootKey) GetPrivateId() string {
|
|
if x != nil {
|
|
return x.PrivateId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *RootKey) GetScopeId() string {
|
|
if x != nil {
|
|
return x.ScopeId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *RootKey) GetCreateTime() *timestamp.Timestamp {
|
|
if x != nil {
|
|
return x.CreateTime
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type RootKeyVersion struct {
|
|
state protoimpl.MessageState `protogen:"open.v1"`
|
|
// private_id is used to access the root key version via an API
|
|
// @inject_tag: gorm:"primary_key"
|
|
PrivateId string `protobuf:"bytes,1,opt,name=private_id,json=privateId,proto3" json:"private_id,omitempty" gorm:"primary_key"`
|
|
// scope id for the root key version
|
|
// @inject_tag: `gorm:"default:null"`
|
|
RootKeyId string `protobuf:"bytes,2,opt,name=root_key_id,json=rootKeyId,proto3" json:"root_key_id,omitempty" gorm:"default:null"`
|
|
// plain-text of the key data. we are NOT storing this plain-text key
|
|
// in the db.
|
|
// @inject_tag: `gorm:"-" wrapping:"pt,key_data"`
|
|
Key []byte `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty" gorm:"-" wrapping:"pt,key_data"`
|
|
// ciphertext key data stored in the database
|
|
// @inject_tag: `gorm:"column:key;not_null" wrapping:"ct,key_data"`
|
|
CtKey []byte `protobuf:"bytes,4,opt,name=ct_key,json=ctKey,proto3" json:"ct_key,omitempty" gorm:"column:key;not_null" wrapping:"ct,key_data"`
|
|
// version of the key data. This is not used for optimistic locking, since
|
|
// key versions are immutable. It's just the version of the key.
|
|
// @inject_tag: `gorm:"default:null"`
|
|
Version uint32 `protobuf:"varint,5,opt,name=version,proto3" json:"version,omitempty" gorm:"default:null"`
|
|
// create_time from the RDBMS
|
|
// @inject_tag: `gorm:"default:current_timestamp"`
|
|
CreateTime *timestamp.Timestamp `protobuf:"bytes,7,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty" gorm:"default:current_timestamp"`
|
|
unknownFields protoimpl.UnknownFields
|
|
sizeCache protoimpl.SizeCache
|
|
}
|
|
|
|
func (x *RootKeyVersion) Reset() {
|
|
*x = RootKeyVersion{}
|
|
mi := &file_controller_storage_kms_store_v1_root_key_proto_msgTypes[1]
|
|
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
|
|
ms.StoreMessageInfo(mi)
|
|
}
|
|
|
|
func (x *RootKeyVersion) String() string {
|
|
return protoimpl.X.MessageStringOf(x)
|
|
}
|
|
|
|
func (*RootKeyVersion) ProtoMessage() {}
|
|
|
|
func (x *RootKeyVersion) ProtoReflect() protoreflect.Message {
|
|
mi := &file_controller_storage_kms_store_v1_root_key_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 RootKeyVersion.ProtoReflect.Descriptor instead.
|
|
func (*RootKeyVersion) Descriptor() ([]byte, []int) {
|
|
return file_controller_storage_kms_store_v1_root_key_proto_rawDescGZIP(), []int{1}
|
|
}
|
|
|
|
func (x *RootKeyVersion) GetPrivateId() string {
|
|
if x != nil {
|
|
return x.PrivateId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *RootKeyVersion) GetRootKeyId() string {
|
|
if x != nil {
|
|
return x.RootKeyId
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (x *RootKeyVersion) GetKey() []byte {
|
|
if x != nil {
|
|
return x.Key
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *RootKeyVersion) GetCtKey() []byte {
|
|
if x != nil {
|
|
return x.CtKey
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (x *RootKeyVersion) GetVersion() uint32 {
|
|
if x != nil {
|
|
return x.Version
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (x *RootKeyVersion) GetCreateTime() *timestamp.Timestamp {
|
|
if x != nil {
|
|
return x.CreateTime
|
|
}
|
|
return nil
|
|
}
|
|
|
|
var File_controller_storage_kms_store_v1_root_key_proto protoreflect.FileDescriptor
|
|
|
|
const file_controller_storage_kms_store_v1_root_key_proto_rawDesc = "" +
|
|
"\n" +
|
|
".controller/storage/kms/store/v1/root_key.proto\x12\x1fcontroller.storage.kms.store.v1\x1a/controller/storage/timestamp/v1/timestamp.proto\"\x90\x01\n" +
|
|
"\aRootKey\x12\x1d\n" +
|
|
"\n" +
|
|
"private_id\x18\x01 \x01(\tR\tprivateId\x12\x19\n" +
|
|
"\bscope_id\x18\x02 \x01(\tR\ascopeId\x12K\n" +
|
|
"\vcreate_time\x18\x03 \x01(\v2*.controller.storage.timestamp.v1.TimestampR\n" +
|
|
"createTime\"\xdf\x01\n" +
|
|
"\x0eRootKeyVersion\x12\x1d\n" +
|
|
"\n" +
|
|
"private_id\x18\x01 \x01(\tR\tprivateId\x12\x1e\n" +
|
|
"\vroot_key_id\x18\x02 \x01(\tR\trootKeyId\x12\x10\n" +
|
|
"\x03key\x18\x03 \x01(\fR\x03key\x12\x15\n" +
|
|
"\x06ct_key\x18\x04 \x01(\fR\x05ctKey\x12\x18\n" +
|
|
"\aversion\x18\x05 \x01(\rR\aversion\x12K\n" +
|
|
"\vcreate_time\x18\a \x01(\v2*.controller.storage.timestamp.v1.TimestampR\n" +
|
|
"createTimeB8Z6github.com/hashicorp/boundary/internal/kms/store;storeb\x06proto3"
|
|
|
|
var (
|
|
file_controller_storage_kms_store_v1_root_key_proto_rawDescOnce sync.Once
|
|
file_controller_storage_kms_store_v1_root_key_proto_rawDescData []byte
|
|
)
|
|
|
|
func file_controller_storage_kms_store_v1_root_key_proto_rawDescGZIP() []byte {
|
|
file_controller_storage_kms_store_v1_root_key_proto_rawDescOnce.Do(func() {
|
|
file_controller_storage_kms_store_v1_root_key_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_controller_storage_kms_store_v1_root_key_proto_rawDesc), len(file_controller_storage_kms_store_v1_root_key_proto_rawDesc)))
|
|
})
|
|
return file_controller_storage_kms_store_v1_root_key_proto_rawDescData
|
|
}
|
|
|
|
var file_controller_storage_kms_store_v1_root_key_proto_msgTypes = make([]protoimpl.MessageInfo, 2)
|
|
var file_controller_storage_kms_store_v1_root_key_proto_goTypes = []any{
|
|
(*RootKey)(nil), // 0: controller.storage.kms.store.v1.RootKey
|
|
(*RootKeyVersion)(nil), // 1: controller.storage.kms.store.v1.RootKeyVersion
|
|
(*timestamp.Timestamp)(nil), // 2: controller.storage.timestamp.v1.Timestamp
|
|
}
|
|
var file_controller_storage_kms_store_v1_root_key_proto_depIdxs = []int32{
|
|
2, // 0: controller.storage.kms.store.v1.RootKey.create_time:type_name -> controller.storage.timestamp.v1.Timestamp
|
|
2, // 1: controller.storage.kms.store.v1.RootKeyVersion.create_time:type_name -> controller.storage.timestamp.v1.Timestamp
|
|
2, // [2:2] is the sub-list for method output_type
|
|
2, // [2:2] is the sub-list for method input_type
|
|
2, // [2:2] is the sub-list for extension type_name
|
|
2, // [2:2] is the sub-list for extension extendee
|
|
0, // [0:2] is the sub-list for field type_name
|
|
}
|
|
|
|
func init() { file_controller_storage_kms_store_v1_root_key_proto_init() }
|
|
func file_controller_storage_kms_store_v1_root_key_proto_init() {
|
|
if File_controller_storage_kms_store_v1_root_key_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_kms_store_v1_root_key_proto_rawDesc), len(file_controller_storage_kms_store_v1_root_key_proto_rawDesc)),
|
|
NumEnums: 0,
|
|
NumMessages: 2,
|
|
NumExtensions: 0,
|
|
NumServices: 0,
|
|
},
|
|
GoTypes: file_controller_storage_kms_store_v1_root_key_proto_goTypes,
|
|
DependencyIndexes: file_controller_storage_kms_store_v1_root_key_proto_depIdxs,
|
|
MessageInfos: file_controller_storage_kms_store_v1_root_key_proto_msgTypes,
|
|
}.Build()
|
|
File_controller_storage_kms_store_v1_root_key_proto = out.File
|
|
file_controller_storage_kms_store_v1_root_key_proto_goTypes = nil
|
|
file_controller_storage_kms_store_v1_root_key_proto_depIdxs = nil
|
|
}
|