Documentation ¶
Index ¶
- Variables
- type TargetHostSet
- func (*TargetHostSet) Descriptor() ([]byte, []int)deprecated
- func (x *TargetHostSet) GetCreateTime() *timestamp.Timestamp
- func (x *TargetHostSet) GetHostSetId() string
- func (x *TargetHostSet) GetTargetId() string
- func (*TargetHostSet) ProtoMessage()
- func (x *TargetHostSet) ProtoReflect() protoreflect.Message
- func (x *TargetHostSet) Reset()
- func (x *TargetHostSet) String() string
- type TargetView
- func (*TargetView) Descriptor() ([]byte, []int)deprecated
- func (x *TargetView) GetCreateTime() *timestamp.Timestamp
- func (x *TargetView) GetDefaultPort() uint32
- func (x *TargetView) GetDescription() string
- func (x *TargetView) GetName() string
- func (x *TargetView) GetPublicId() string
- func (x *TargetView) GetScopeId() string
- func (x *TargetView) GetSessionConnectionLimit() int32
- func (x *TargetView) GetSessionMaxSeconds() uint32
- func (x *TargetView) GetType() string
- func (x *TargetView) GetUpdateTime() *timestamp.Timestamp
- func (x *TargetView) GetVersion() uint32
- func (x *TargetView) GetWorkerFilter() string
- func (*TargetView) ProtoMessage()
- func (x *TargetView) ProtoReflect() protoreflect.Message
- func (x *TargetView) Reset()
- func (x *TargetView) String() string
- type TcpTarget
- func (*TcpTarget) Descriptor() ([]byte, []int)deprecated
- func (x *TcpTarget) GetCreateTime() *timestamp.Timestamp
- func (x *TcpTarget) GetDefaultPort() uint32
- func (x *TcpTarget) GetDescription() string
- func (x *TcpTarget) GetName() string
- func (x *TcpTarget) GetPublicId() string
- func (x *TcpTarget) GetScopeId() string
- func (x *TcpTarget) GetSessionConnectionLimit() int32
- func (x *TcpTarget) GetSessionMaxSeconds() uint32
- func (x *TcpTarget) GetUpdateTime() *timestamp.Timestamp
- func (x *TcpTarget) GetVersion() uint32
- func (x *TcpTarget) GetWorkerFilter() string
- func (*TcpTarget) ProtoMessage()
- func (x *TcpTarget) ProtoReflect() protoreflect.Message
- func (x *TcpTarget) Reset()
- func (x *TcpTarget) String() string
Constants ¶
This section is empty.
Variables ¶
View Source
var File_controller_storage_target_store_v1_target_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type TargetHostSet ¶
type TargetHostSet struct { // target_id of the TargetHostSet // @inject_tag: gorm:"primary_key" TargetId string `protobuf:"bytes,10,opt,name=target_id,json=targetId,proto3" json:"target_id,omitempty" gorm:"primary_key"` // host_set_id of the TargetHostSet // @inject_tag: gorm:"primary_key" HostSetId string `protobuf:"bytes,20,opt,name=host_set_id,json=hostSetId,proto3" json:"host_set_id,omitempty" gorm:"primary_key"` // create_time from the RDBMS // @inject_tag: `gorm:"default:current_timestamp"` CreateTime *timestamp.Timestamp `protobuf:"bytes,30,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty" gorm:"default:current_timestamp"` // contains filtered or unexported fields }
func (*TargetHostSet) Descriptor
deprecated
func (*TargetHostSet) Descriptor() ([]byte, []int)
Deprecated: Use TargetHostSet.ProtoReflect.Descriptor instead.
func (*TargetHostSet) GetCreateTime ¶
func (x *TargetHostSet) GetCreateTime() *timestamp.Timestamp
func (*TargetHostSet) GetHostSetId ¶
func (x *TargetHostSet) GetHostSetId() string
func (*TargetHostSet) GetTargetId ¶
func (x *TargetHostSet) GetTargetId() string
func (*TargetHostSet) ProtoMessage ¶
func (*TargetHostSet) ProtoMessage()
func (*TargetHostSet) ProtoReflect ¶
func (x *TargetHostSet) ProtoReflect() protoreflect.Message
func (*TargetHostSet) Reset ¶
func (x *TargetHostSet) Reset()
func (*TargetHostSet) String ¶
func (x *TargetHostSet) String() string
type TargetView ¶
type TargetView struct { // public_id is used to access the Target via an API // @inject_tag: gorm:"primary_key" PublicId string `protobuf:"bytes,10,opt,name=public_id,json=publicId,proto3" json:"public_id,omitempty" gorm:"primary_key"` // scope id for the Target // @inject_tag: `gorm:"default:null"` ScopeId string `protobuf:"bytes,20,opt,name=scope_id,json=scopeId,proto3" json:"scope_id,omitempty" gorm:"default:null"` // name is the optional friendly name used to // access the Target via an API // @inject_tag: `gorm:"default:null"` Name string `protobuf:"bytes,30,opt,name=name,proto3" json:"name,omitempty" gorm:"default:null"` // description of the Target // @inject_tag: `gorm:"default:null"` Description string `protobuf:"bytes,40,opt,name=description,proto3" json:"description,omitempty" gorm:"default:null"` // create_time from the RDBMS // @inject_tag: `gorm:"default:current_timestamp"` CreateTime *timestamp.Timestamp `protobuf:"bytes,50,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,60,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty" gorm:"default:current_timestamp"` // version allows optimistic locking of the Target when modifying the // Target // @inject_tag: `gorm:"default:null"` Version uint32 `protobuf:"varint,70,opt,name=version,proto3" json:"version,omitempty" gorm:"default:null"` // type represents the type of the Target // @inject_tag: `gorm:"default:null"` Type string `protobuf:"bytes,80,opt,name=type,proto3" json:"type,omitempty" gorm:"default:null"` // default port of the Target // @inject_tag: `gorm:"default:null"` DefaultPort uint32 `protobuf:"varint,90,opt,name=default_port,json=defaultPort,proto3" json:"default_port,omitempty" gorm:"default:null"` // Maximum total lifetime of a created session, in seconds // @inject_tag: `gorm:"default:null"` SessionMaxSeconds uint32 `` /* 137-byte string literal not displayed */ // Maximum number of connections in a session // @inject_tag: `gorm:"default:null"` SessionConnectionLimit int32 `` /* 152-byte string literal not displayed */ // A boolean expression that allows filtering the workers that can handle a session // @inject_tag: `gorm:"default:null"` WorkerFilter string `protobuf:"bytes,120,opt,name=worker_filter,json=workerFilter,proto3" json:"worker_filter,omitempty" gorm:"default:null"` // contains filtered or unexported fields }
TargetView is a view that contains all the target subtypes
func (*TargetView) Descriptor
deprecated
func (*TargetView) Descriptor() ([]byte, []int)
Deprecated: Use TargetView.ProtoReflect.Descriptor instead.
func (*TargetView) GetCreateTime ¶
func (x *TargetView) GetCreateTime() *timestamp.Timestamp
func (*TargetView) GetDefaultPort ¶
func (x *TargetView) GetDefaultPort() uint32
func (*TargetView) GetDescription ¶
func (x *TargetView) GetDescription() string
func (*TargetView) GetName ¶
func (x *TargetView) GetName() string
func (*TargetView) GetPublicId ¶
func (x *TargetView) GetPublicId() string
func (*TargetView) GetScopeId ¶
func (x *TargetView) GetScopeId() string
func (*TargetView) GetSessionConnectionLimit ¶
func (x *TargetView) GetSessionConnectionLimit() int32
func (*TargetView) GetSessionMaxSeconds ¶
func (x *TargetView) GetSessionMaxSeconds() uint32
func (*TargetView) GetType ¶
func (x *TargetView) GetType() string
func (*TargetView) GetUpdateTime ¶
func (x *TargetView) GetUpdateTime() *timestamp.Timestamp
func (*TargetView) GetVersion ¶
func (x *TargetView) GetVersion() uint32
func (*TargetView) GetWorkerFilter ¶ added in v0.1.5
func (x *TargetView) GetWorkerFilter() string
func (*TargetView) ProtoMessage ¶
func (*TargetView) ProtoMessage()
func (*TargetView) ProtoReflect ¶
func (x *TargetView) ProtoReflect() protoreflect.Message
func (*TargetView) Reset ¶
func (x *TargetView) Reset()
func (*TargetView) String ¶
func (x *TargetView) String() string
type TcpTarget ¶
type TcpTarget struct { // public_id is used to access the TargetTcp via an API // @inject_tag: gorm:"primary_key" PublicId string `protobuf:"bytes,10,opt,name=public_id,json=publicId,proto3" json:"public_id,omitempty" gorm:"primary_key"` // scope id for the TargetTcp // @inject_tag: `gorm:"default:null"` ScopeId string `protobuf:"bytes,20,opt,name=scope_id,json=scopeId,proto3" json:"scope_id,omitempty" gorm:"default:null"` // name is the optional friendly name used to // access the TargetTcp via an API // @inject_tag: `gorm:"default:null"` Name string `protobuf:"bytes,30,opt,name=name,proto3" json:"name,omitempty" gorm:"default:null"` // description of the TargetTcp // @inject_tag: `gorm:"default:null"` Description string `protobuf:"bytes,40,opt,name=description,proto3" json:"description,omitempty" gorm:"default:null"` // create_time from the RDBMS // @inject_tag: `gorm:"default:current_timestamp"` CreateTime *timestamp.Timestamp `protobuf:"bytes,50,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,60,opt,name=update_time,json=updateTime,proto3" json:"update_time,omitempty" gorm:"default:current_timestamp"` // version allows optimistic locking of the TargetTcp when modifying the // TargetTcp // @inject_tag: `gorm:"default:null"` Version uint32 `protobuf:"varint,70,opt,name=version,proto3" json:"version,omitempty" gorm:"default:null"` // default port of the TargetTcp // @inject_tag: `gorm:"default:null"` DefaultPort uint32 `protobuf:"varint,80,opt,name=default_port,json=defaultPort,proto3" json:"default_port,omitempty" gorm:"default:null"` // Maximum total lifetime of a created session, in seconds // @inject_tag: `gorm:"default:null"` SessionMaxSeconds uint32 `` /* 137-byte string literal not displayed */ // Maximum number of connections in a session // @inject_tag: `gorm:"default:null"` SessionConnectionLimit int32 `` /* 152-byte string literal not displayed */ // A boolean expression that allows filtering the workers that can handle a session // @inject_tag: `gorm:"default:null"` WorkerFilter string `protobuf:"bytes,120,opt,name=worker_filter,json=workerFilter,proto3" json:"worker_filter,omitempty" gorm:"default:null"` // contains filtered or unexported fields }
func (*TcpTarget) Descriptor
deprecated
func (*TcpTarget) GetCreateTime ¶
func (*TcpTarget) GetDefaultPort ¶
func (*TcpTarget) GetDescription ¶
func (*TcpTarget) GetPublicId ¶
func (*TcpTarget) GetScopeId ¶
func (*TcpTarget) GetSessionConnectionLimit ¶
func (*TcpTarget) GetSessionMaxSeconds ¶
func (*TcpTarget) GetUpdateTime ¶
func (*TcpTarget) GetVersion ¶
func (*TcpTarget) GetWorkerFilter ¶ added in v0.1.5
func (*TcpTarget) ProtoMessage ¶
func (*TcpTarget) ProtoMessage()
func (*TcpTarget) ProtoReflect ¶
func (x *TcpTarget) ProtoReflect() protoreflect.Message
Click to show internal directories.
Click to hide internal directories.