Documentation ¶
Index ¶
- Variables
- func Factory(ctx context.Context, conf *logical.BackendConfig) (logical.Backend, error)
- func LeaseSwitchedPassthroughBackend(ctx context.Context, conf *logical.BackendConfig, leases bool) (logical.Backend, error)
- func LeasedPassthroughBackendFactory(ctx context.Context, conf *logical.BackendConfig) (logical.Backend, error)
- func PassthroughBackendFactory(ctx context.Context, conf *logical.BackendConfig) (logical.Backend, error)
- func VersionedKVFactory(ctx context.Context, conf *logical.BackendConfig) (logical.Backend, error)
- type Configuration
- func (*Configuration) Descriptor() ([]byte, []int)deprecated
- func (c *Configuration) DisableDeleteVersionAfter()
- func (x *Configuration) GetCasRequired() bool
- func (x *Configuration) GetDeleteVersionAfter() *durationpb.Duration
- func (x *Configuration) GetMaxVersions() uint32
- func (c *Configuration) IsDeleteVersionAfterDisabled() bool
- func (*Configuration) ProtoMessage()
- func (x *Configuration) ProtoReflect() protoreflect.Message
- func (x *Configuration) Reset()
- func (c *Configuration) ResetDeleteVersionAfter()
- func (x *Configuration) String() string
- type KeyMetadata
- func (k *KeyMetadata) AddVersion(createdTime, deletionTime *timestamp.Timestamp, configMaxVersions uint32) (*VersionMetadata, uint64)
- func (*KeyMetadata) Descriptor() ([]byte, []int)deprecated
- func (x *KeyMetadata) GetCasRequired() bool
- func (x *KeyMetadata) GetCreatedTime() *timestamppb.Timestamp
- func (x *KeyMetadata) GetCurrentVersion() uint64
- func (x *KeyMetadata) GetCustomMetadata() map[string]string
- func (x *KeyMetadata) GetDeleteVersionAfter() *durationpb.Duration
- func (x *KeyMetadata) GetKey() string
- func (x *KeyMetadata) GetMaxVersions() uint32
- func (x *KeyMetadata) GetOldestVersion() uint64
- func (x *KeyMetadata) GetUpdatedTime() *timestamppb.Timestamp
- func (x *KeyMetadata) GetVersions() map[uint64]*VersionMetadata
- func (*KeyMetadata) ProtoMessage()
- func (x *KeyMetadata) ProtoReflect() protoreflect.Message
- func (x *KeyMetadata) Reset()
- func (x *KeyMetadata) String() string
- type PassthroughBackend
- type UpgradeInfo
- func (*UpgradeInfo) Descriptor() ([]byte, []int)deprecated
- func (x *UpgradeInfo) GetDone() bool
- func (x *UpgradeInfo) GetStartedTime() *timestamppb.Timestamp
- func (*UpgradeInfo) ProtoMessage()
- func (x *UpgradeInfo) ProtoReflect() protoreflect.Message
- func (x *UpgradeInfo) Reset()
- func (x *UpgradeInfo) String() string
- type Version
- func (*Version) Descriptor() ([]byte, []int)deprecated
- func (x *Version) GetCreatedTime() *timestamppb.Timestamp
- func (x *Version) GetData() []byte
- func (x *Version) GetDeletionTime() *timestamppb.Timestamp
- func (*Version) ProtoMessage()
- func (x *Version) ProtoReflect() protoreflect.Message
- func (x *Version) Reset()
- func (x *Version) String() string
- type VersionMetadata
- func (*VersionMetadata) Descriptor() ([]byte, []int)deprecated
- func (x *VersionMetadata) GetCreatedTime() *timestamppb.Timestamp
- func (x *VersionMetadata) GetDeletionTime() *timestamppb.Timestamp
- func (x *VersionMetadata) GetDestroyed() bool
- func (*VersionMetadata) ProtoMessage()
- func (x *VersionMetadata) ProtoReflect() protoreflect.Message
- func (x *VersionMetadata) Reset()
- func (x *VersionMetadata) String() string
Constants ¶
This section is empty.
Variables ¶
var File_types_proto protoreflect.FileDescriptor
Functions ¶
func Factory ¶
Factory will return a logical backend of type versionedKVBackend or PassthroughBackend based on the config passed in.
func LeaseSwitchedPassthroughBackend ¶
func LeaseSwitchedPassthroughBackend(ctx context.Context, conf *logical.BackendConfig, leases bool) (logical.Backend, error)
LeaseSwitchedPassthroughBackend returns a PassthroughBackend with leases switched on or off
func LeasedPassthroughBackendFactory ¶
func LeasedPassthroughBackendFactory(ctx context.Context, conf *logical.BackendConfig) (logical.Backend, error)
LeasedPassthroughBackendFactory returns a PassthroughBackend with leases switched on
func PassthroughBackendFactory ¶
func PassthroughBackendFactory(ctx context.Context, conf *logical.BackendConfig) (logical.Backend, error)
PassthroughBackendFactory returns a PassthroughBackend with leases switched off
func VersionedKVFactory ¶
VersionedKVFactory returns a new KVV2 backend as logical.Backend.
Types ¶
type Configuration ¶
type Configuration struct { MaxVersions uint32 `protobuf:"varint,1,opt,name=max_versions,json=maxVersions,proto3" json:"max_versions,omitempty"` CasRequired bool `protobuf:"varint,2,opt,name=cas_required,json=casRequired,proto3" json:"cas_required,omitempty"` DeleteVersionAfter *durationpb.Duration `protobuf:"bytes,3,opt,name=delete_version_after,json=deleteVersionAfter,proto3" json:"delete_version_after,omitempty"` // contains filtered or unexported fields }
If values are added to this, be sure to update the config() function
func (*Configuration) Descriptor
deprecated
func (*Configuration) Descriptor() ([]byte, []int)
Deprecated: Use Configuration.ProtoReflect.Descriptor instead.
func (*Configuration) DisableDeleteVersionAfter ¶
func (c *Configuration) DisableDeleteVersionAfter()
DisableDeleteVersionAfter disables DeleteVersionAfter.
func (*Configuration) GetCasRequired ¶
func (x *Configuration) GetCasRequired() bool
func (*Configuration) GetDeleteVersionAfter ¶
func (x *Configuration) GetDeleteVersionAfter() *durationpb.Duration
func (*Configuration) GetMaxVersions ¶
func (x *Configuration) GetMaxVersions() uint32
func (*Configuration) IsDeleteVersionAfterDisabled ¶
func (c *Configuration) IsDeleteVersionAfterDisabled() bool
IsDeleteVersionAfterDisabled returns true if DeleteVersionAfter is disabled.
func (*Configuration) ProtoMessage ¶
func (*Configuration) ProtoMessage()
func (*Configuration) ProtoReflect ¶
func (x *Configuration) ProtoReflect() protoreflect.Message
func (*Configuration) Reset ¶
func (x *Configuration) Reset()
func (*Configuration) ResetDeleteVersionAfter ¶
func (c *Configuration) ResetDeleteVersionAfter()
ResetDeleteVersionAfter resets the DeleteVersionAfter to the default value.
func (*Configuration) String ¶
func (x *Configuration) String() string
type KeyMetadata ¶
type KeyMetadata struct { // Key is the key for this entry Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` // Versions is the map of versionID -> VersionMetadata. // Useful when listing all versions. Versions map[uint64]*VersionMetadata `` /* 158-byte string literal not displayed */ // CurrentVersion is the latest version of the value CurrentVersion uint64 `protobuf:"varint,3,opt,name=current_version,json=currentVersion,proto3" json:"current_version,omitempty"` // OldestVersion is the oldest version of the value. OldestVersion uint64 `protobuf:"varint,4,opt,name=oldest_version,json=oldestVersion,proto3" json:"oldest_version,omitempty"` // Created time is when the metadata was created. CreatedTime *timestamppb.Timestamp `protobuf:"bytes,5,opt,name=created_time,json=createdTime,proto3" json:"created_time,omitempty"` // Updated time was the last time the metadata version // was updated. UpdatedTime *timestamppb.Timestamp `protobuf:"bytes,6,opt,name=updated_time,json=updatedTime,proto3" json:"updated_time,omitempty"` // MaxVersions specifies how many versions to keep around. // If empty value, defaults to the configured Max // for the mount. MaxVersions uint32 `protobuf:"varint,7,opt,name=max_versions,json=maxVersions,proto3" json:"max_versions,omitempty"` // CasRequired specifies if the cas parameter is // required for this key CasRequired bool `protobuf:"varint,8,opt,name=cas_required,json=casRequired,proto3" json:"cas_required,omitempty"` // DeleteVersionAfter specifies how long to keep versions around. If // empty value, defaults to the configured delete_version_after for the // mount. DeleteVersionAfter *durationpb.Duration `protobuf:"bytes,9,opt,name=delete_version_after,json=deleteVersionAfter,proto3" json:"delete_version_after,omitempty"` // CustomMetadata is a map of string key-value pairs used to store // user-provided information about the secret. CustomMetadata map[string]string `` /* 192-byte string literal not displayed */ // contains filtered or unexported fields }
func (*KeyMetadata) AddVersion ¶
func (k *KeyMetadata) AddVersion(createdTime, deletionTime *timestamp.Timestamp, configMaxVersions uint32) (*VersionMetadata, uint64)
AddVersion adds a version to the key metadata and moves the sliding window of max versions. It returns the newly added version and the version to delete from storage.
func (*KeyMetadata) Descriptor
deprecated
func (*KeyMetadata) Descriptor() ([]byte, []int)
Deprecated: Use KeyMetadata.ProtoReflect.Descriptor instead.
func (*KeyMetadata) GetCasRequired ¶
func (x *KeyMetadata) GetCasRequired() bool
func (*KeyMetadata) GetCreatedTime ¶
func (x *KeyMetadata) GetCreatedTime() *timestamppb.Timestamp
func (*KeyMetadata) GetCurrentVersion ¶
func (x *KeyMetadata) GetCurrentVersion() uint64
func (*KeyMetadata) GetCustomMetadata ¶
func (x *KeyMetadata) GetCustomMetadata() map[string]string
func (*KeyMetadata) GetDeleteVersionAfter ¶
func (x *KeyMetadata) GetDeleteVersionAfter() *durationpb.Duration
func (*KeyMetadata) GetKey ¶
func (x *KeyMetadata) GetKey() string
func (*KeyMetadata) GetMaxVersions ¶
func (x *KeyMetadata) GetMaxVersions() uint32
func (*KeyMetadata) GetOldestVersion ¶
func (x *KeyMetadata) GetOldestVersion() uint64
func (*KeyMetadata) GetUpdatedTime ¶
func (x *KeyMetadata) GetUpdatedTime() *timestamppb.Timestamp
func (*KeyMetadata) GetVersions ¶
func (x *KeyMetadata) GetVersions() map[uint64]*VersionMetadata
func (*KeyMetadata) ProtoMessage ¶
func (*KeyMetadata) ProtoMessage()
func (*KeyMetadata) ProtoReflect ¶
func (x *KeyMetadata) ProtoReflect() protoreflect.Message
func (*KeyMetadata) Reset ¶
func (x *KeyMetadata) Reset()
func (*KeyMetadata) String ¶
func (x *KeyMetadata) String() string
type PassthroughBackend ¶
PassthroughBackend is used storing secrets directly into the physical backend. The secrets are encrypted in the durable storage and custom TTL information can be specified, but otherwise this backend doesn't do anything fancy.
type UpgradeInfo ¶
type UpgradeInfo struct { // Started time is when the upgrade was started. StartedTime *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=started_time,json=startedTime,proto3" json:"started_time,omitempty"` // done is set to true once the backend has been successfully // upgraded. Done bool `protobuf:"varint,2,opt,name=done,proto3" json:"done,omitempty"` // contains filtered or unexported fields }
func (*UpgradeInfo) Descriptor
deprecated
func (*UpgradeInfo) Descriptor() ([]byte, []int)
Deprecated: Use UpgradeInfo.ProtoReflect.Descriptor instead.
func (*UpgradeInfo) GetDone ¶
func (x *UpgradeInfo) GetDone() bool
func (*UpgradeInfo) GetStartedTime ¶
func (x *UpgradeInfo) GetStartedTime() *timestamppb.Timestamp
func (*UpgradeInfo) ProtoMessage ¶
func (*UpgradeInfo) ProtoMessage()
func (*UpgradeInfo) ProtoReflect ¶
func (x *UpgradeInfo) ProtoReflect() protoreflect.Message
func (*UpgradeInfo) Reset ¶
func (x *UpgradeInfo) Reset()
func (*UpgradeInfo) String ¶
func (x *UpgradeInfo) String() string
type Version ¶
type Version struct { // Data is a JSON object with string keys that // represents the user supplied data. Data []byte `protobuf:"bytes,1,opt,name=data,proto3" json:"data,omitempty"` // CreatedTime is when the version was created. CreatedTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=created_time,json=createdTime,proto3" json:"created_time,omitempty"` // DeletionTime is the time this version becomes invalid. // Set to Now() to delete the version before the configured // deletion time. DeletionTime *timestamppb.Timestamp `protobuf:"bytes,3,opt,name=deletion_time,json=deletionTime,proto3" json:"deletion_time,omitempty"` // contains filtered or unexported fields }
func (*Version) Descriptor
deprecated
func (*Version) GetCreatedTime ¶
func (x *Version) GetCreatedTime() *timestamppb.Timestamp
func (*Version) GetDeletionTime ¶
func (x *Version) GetDeletionTime() *timestamppb.Timestamp
func (*Version) ProtoMessage ¶
func (*Version) ProtoMessage()
func (*Version) ProtoReflect ¶
func (x *Version) ProtoReflect() protoreflect.Message
type VersionMetadata ¶
type VersionMetadata struct { // CreatedTime is when the version was created. CreatedTime *timestamppb.Timestamp `protobuf:"bytes,1,opt,name=created_time,json=createdTime,proto3" json:"created_time,omitempty"` // DeletionTime is the time this version becomes invalid. // Set to Now() to delete the version before the configured // delete time. DeletionTime *timestamppb.Timestamp `protobuf:"bytes,2,opt,name=deletion_time,json=deletionTime,proto3" json:"deletion_time,omitempty"` // Destroyed is used to specify this version is // a has been removed and the underlying data deleted. Destroyed bool `protobuf:"varint,3,opt,name=destroyed,proto3" json:"destroyed,omitempty"` // contains filtered or unexported fields }
func (*VersionMetadata) Descriptor
deprecated
func (*VersionMetadata) Descriptor() ([]byte, []int)
Deprecated: Use VersionMetadata.ProtoReflect.Descriptor instead.
func (*VersionMetadata) GetCreatedTime ¶
func (x *VersionMetadata) GetCreatedTime() *timestamppb.Timestamp
func (*VersionMetadata) GetDeletionTime ¶
func (x *VersionMetadata) GetDeletionTime() *timestamppb.Timestamp
func (*VersionMetadata) GetDestroyed ¶
func (x *VersionMetadata) GetDestroyed() bool
func (*VersionMetadata) ProtoMessage ¶
func (*VersionMetadata) ProtoMessage()
func (*VersionMetadata) ProtoReflect ¶
func (x *VersionMetadata) ProtoReflect() protoreflect.Message
func (*VersionMetadata) Reset ¶
func (x *VersionMetadata) Reset()
func (*VersionMetadata) String ¶
func (x *VersionMetadata) String() string