cmd_pb

package
v0.24.46 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 14, 2023 License: Apache-2.0 Imports: 6 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ContentType_name = map[int32]string{
		0:    "ContentTypeZero",
		2050: "NewLogEntryType",
		2051: "ErrorResponseType",
		2052: "SuccessResponseType",
		2053: "AddPeerRequestType",
		2054: "RemovePeerRequestType",
		2055: "TransferLeadershipRequestType",
	}
	ContentType_value = map[string]int32{
		"ContentTypeZero":               0,
		"NewLogEntryType":               2050,
		"ErrorResponseType":             2051,
		"SuccessResponseType":           2052,
		"AddPeerRequestType":            2053,
		"RemovePeerRequestType":         2054,
		"TransferLeadershipRequestType": 2055,
	}
)

Enum value maps for ContentType.

View Source
var (
	CommandType_name = map[int32]string{
		0:  "Zero",
		1:  "CreateEntityType",
		2:  "UpdateEntityType",
		3:  "DeleteEntityType",
		4:  "DeleteTerminatorsBatchType",
		10: "SyncSnapshot",
	}
	CommandType_value = map[string]int32{
		"Zero":                       0,
		"CreateEntityType":           1,
		"UpdateEntityType":           2,
		"DeleteEntityType":           3,
		"DeleteTerminatorsBatchType": 4,
		"SyncSnapshot":               10,
	}
)

Enum value maps for CommandType.

Functions

func DecodeTags

func DecodeTags(tags map[string]*TagValue) map[string]interface{}

func EncodeProtobuf

func EncodeProtobuf(v TypedMessage) ([]byte, error)

EncodeProtobuf returns the encoded message, prefixed with the command type

func EncodeTags

func EncodeTags(tags map[string]interface{}) (map[string]*TagValue, error)

Types

type AddPeerRequest

type AddPeerRequest struct {
	Id      string         `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Addr    string         `protobuf:"bytes,2,opt,name=addr,proto3" json:"addr,omitempty"`
	IsVoter bool           `protobuf:"varint,3,opt,name=isVoter,proto3" json:"isVoter,omitempty"`
	Ctx     *ChangeContext `protobuf:"bytes,4,opt,name=ctx,proto3" json:"ctx,omitempty"`
	// contains filtered or unexported fields
}

func (*AddPeerRequest) Descriptor deprecated

func (*AddPeerRequest) Descriptor() ([]byte, []int)

Deprecated: Use AddPeerRequest.ProtoReflect.Descriptor instead.

func (*AddPeerRequest) GetAddr

func (x *AddPeerRequest) GetAddr() string

func (*AddPeerRequest) GetContentType

func (request *AddPeerRequest) GetContentType() int32

func (*AddPeerRequest) GetCtx

func (x *AddPeerRequest) GetCtx() *ChangeContext

func (*AddPeerRequest) GetId

func (x *AddPeerRequest) GetId() string

func (*AddPeerRequest) GetIsVoter

func (x *AddPeerRequest) GetIsVoter() bool

func (*AddPeerRequest) ProtoMessage

func (*AddPeerRequest) ProtoMessage()

func (*AddPeerRequest) ProtoReflect

func (x *AddPeerRequest) ProtoReflect() protoreflect.Message

func (*AddPeerRequest) Reset

func (x *AddPeerRequest) Reset()

func (*AddPeerRequest) String

func (x *AddPeerRequest) String() string

type ChangeContext

type ChangeContext struct {
	Attributes map[string]string `` /* 161-byte string literal not displayed */
	RaftIndex  uint64            `protobuf:"varint,2,opt,name=raftIndex,proto3" json:"raftIndex,omitempty"`
	// contains filtered or unexported fields
}

func (*ChangeContext) Descriptor deprecated

func (*ChangeContext) Descriptor() ([]byte, []int)

Deprecated: Use ChangeContext.ProtoReflect.Descriptor instead.

func (*ChangeContext) GetAttributes

func (x *ChangeContext) GetAttributes() map[string]string

func (*ChangeContext) GetRaftIndex

func (x *ChangeContext) GetRaftIndex() uint64

func (*ChangeContext) ProtoMessage

func (*ChangeContext) ProtoMessage()

func (*ChangeContext) ProtoReflect

func (x *ChangeContext) ProtoReflect() protoreflect.Message

func (*ChangeContext) Reset

func (x *ChangeContext) Reset()

func (*ChangeContext) String

func (x *ChangeContext) String() string

type CommandType

type CommandType int32
const (
	CommandType_Zero                       CommandType = 0
	CommandType_CreateEntityType           CommandType = 1
	CommandType_UpdateEntityType           CommandType = 2
	CommandType_DeleteEntityType           CommandType = 3
	CommandType_DeleteTerminatorsBatchType CommandType = 4
	CommandType_SyncSnapshot               CommandType = 10
)

func (CommandType) Descriptor

func (CommandType) Enum

func (x CommandType) Enum() *CommandType

func (CommandType) EnumDescriptor deprecated

func (CommandType) EnumDescriptor() ([]byte, []int)

Deprecated: Use CommandType.Descriptor instead.

func (CommandType) Number

func (x CommandType) Number() protoreflect.EnumNumber

func (CommandType) String

func (x CommandType) String() string

func (CommandType) Type

type ContentType

type ContentType int32

ContentTypes should be in the range 2000 - 2999, to ensure they don't overlap with ctrl_pb messages

const (
	ContentType_ContentTypeZero               ContentType = 0
	ContentType_NewLogEntryType               ContentType = 2050
	ContentType_ErrorResponseType             ContentType = 2051
	ContentType_SuccessResponseType           ContentType = 2052
	ContentType_AddPeerRequestType            ContentType = 2053
	ContentType_RemovePeerRequestType         ContentType = 2054
	ContentType_TransferLeadershipRequestType ContentType = 2055
)

func (ContentType) Descriptor

func (ContentType) Enum

func (x ContentType) Enum() *ContentType

func (ContentType) EnumDescriptor deprecated

func (ContentType) EnumDescriptor() ([]byte, []int)

Deprecated: Use ContentType.Descriptor instead.

func (ContentType) Number

func (x ContentType) Number() protoreflect.EnumNumber

func (ContentType) String

func (x ContentType) String() string

func (ContentType) Type

type CreateEntityCommand

type CreateEntityCommand struct {
	EntityType string         `protobuf:"bytes,1,opt,name=entityType,proto3" json:"entityType,omitempty"`
	EntityData []byte         `protobuf:"bytes,2,opt,name=entityData,proto3" json:"entityData,omitempty"`
	Flags      uint32         `protobuf:"varint,3,opt,name=flags,proto3" json:"flags,omitempty"`
	Ctx        *ChangeContext `protobuf:"bytes,4,opt,name=ctx,proto3" json:"ctx,omitempty"`
	// contains filtered or unexported fields
}

func (*CreateEntityCommand) Descriptor deprecated

func (*CreateEntityCommand) Descriptor() ([]byte, []int)

Deprecated: Use CreateEntityCommand.ProtoReflect.Descriptor instead.

func (*CreateEntityCommand) GetCommandType

func (x *CreateEntityCommand) GetCommandType() int32

func (*CreateEntityCommand) GetCtx

func (x *CreateEntityCommand) GetCtx() *ChangeContext

func (*CreateEntityCommand) GetEntityData

func (x *CreateEntityCommand) GetEntityData() []byte

func (*CreateEntityCommand) GetEntityType

func (x *CreateEntityCommand) GetEntityType() string

func (*CreateEntityCommand) GetFlags

func (x *CreateEntityCommand) GetFlags() uint32

func (*CreateEntityCommand) ProtoMessage

func (*CreateEntityCommand) ProtoMessage()

func (*CreateEntityCommand) ProtoReflect

func (x *CreateEntityCommand) ProtoReflect() protoreflect.Message

func (*CreateEntityCommand) Reset

func (x *CreateEntityCommand) Reset()

func (*CreateEntityCommand) String

func (x *CreateEntityCommand) String() string

type DeleteEntityCommand

type DeleteEntityCommand struct {
	EntityId   string         `protobuf:"bytes,1,opt,name=entityId,proto3" json:"entityId,omitempty"`
	EntityType string         `protobuf:"bytes,2,opt,name=entityType,proto3" json:"entityType,omitempty"`
	Ctx        *ChangeContext `protobuf:"bytes,3,opt,name=ctx,proto3" json:"ctx,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteEntityCommand) Descriptor deprecated

func (*DeleteEntityCommand) Descriptor() ([]byte, []int)

Deprecated: Use DeleteEntityCommand.ProtoReflect.Descriptor instead.

func (*DeleteEntityCommand) GetCommandType

func (x *DeleteEntityCommand) GetCommandType() int32

func (*DeleteEntityCommand) GetCtx

func (x *DeleteEntityCommand) GetCtx() *ChangeContext

func (*DeleteEntityCommand) GetEntityId

func (x *DeleteEntityCommand) GetEntityId() string

func (*DeleteEntityCommand) GetEntityType

func (x *DeleteEntityCommand) GetEntityType() string

func (*DeleteEntityCommand) ProtoMessage

func (*DeleteEntityCommand) ProtoMessage()

func (*DeleteEntityCommand) ProtoReflect

func (x *DeleteEntityCommand) ProtoReflect() protoreflect.Message

func (*DeleteEntityCommand) Reset

func (x *DeleteEntityCommand) Reset()

func (*DeleteEntityCommand) String

func (x *DeleteEntityCommand) String() string

type DeleteTerminatorsBatchCommand

type DeleteTerminatorsBatchCommand struct {
	EntityIds []string       `protobuf:"bytes,1,rep,name=entityIds,proto3" json:"entityIds,omitempty"`
	Ctx       *ChangeContext `protobuf:"bytes,2,opt,name=ctx,proto3" json:"ctx,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteTerminatorsBatchCommand) Descriptor deprecated

func (*DeleteTerminatorsBatchCommand) Descriptor() ([]byte, []int)

Deprecated: Use DeleteTerminatorsBatchCommand.ProtoReflect.Descriptor instead.

func (*DeleteTerminatorsBatchCommand) GetCommandType

func (x *DeleteTerminatorsBatchCommand) GetCommandType() int32

func (*DeleteTerminatorsBatchCommand) GetCtx

func (*DeleteTerminatorsBatchCommand) GetEntityIds

func (x *DeleteTerminatorsBatchCommand) GetEntityIds() []string

func (*DeleteTerminatorsBatchCommand) ProtoMessage

func (*DeleteTerminatorsBatchCommand) ProtoMessage()

func (*DeleteTerminatorsBatchCommand) ProtoReflect

func (*DeleteTerminatorsBatchCommand) Reset

func (x *DeleteTerminatorsBatchCommand) Reset()

func (*DeleteTerminatorsBatchCommand) String

type RemovePeerRequest

type RemovePeerRequest struct {
	Id  string         `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Ctx *ChangeContext `protobuf:"bytes,2,opt,name=ctx,proto3" json:"ctx,omitempty"`
	// contains filtered or unexported fields
}

func (*RemovePeerRequest) Descriptor deprecated

func (*RemovePeerRequest) Descriptor() ([]byte, []int)

Deprecated: Use RemovePeerRequest.ProtoReflect.Descriptor instead.

func (*RemovePeerRequest) GetContentType

func (request *RemovePeerRequest) GetContentType() int32

func (*RemovePeerRequest) GetCtx

func (x *RemovePeerRequest) GetCtx() *ChangeContext

func (*RemovePeerRequest) GetId

func (x *RemovePeerRequest) GetId() string

func (*RemovePeerRequest) ProtoMessage

func (*RemovePeerRequest) ProtoMessage()

func (*RemovePeerRequest) ProtoReflect

func (x *RemovePeerRequest) ProtoReflect() protoreflect.Message

func (*RemovePeerRequest) Reset

func (x *RemovePeerRequest) Reset()

func (*RemovePeerRequest) String

func (x *RemovePeerRequest) String() string

type Router

type Router struct {
	Id          string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name        string               `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	Fingerprint []byte               `protobuf:"bytes,3,opt,name=fingerprint,proto3" json:"fingerprint,omitempty"`
	Cost        uint32               `protobuf:"varint,4,opt,name=cost,proto3" json:"cost,omitempty"`
	NoTraversal bool                 `protobuf:"varint,5,opt,name=noTraversal,proto3" json:"noTraversal,omitempty"`
	Disabled    bool                 `protobuf:"varint,6,opt,name=disabled,proto3" json:"disabled,omitempty"`
	Tags        map[string]*TagValue `` /* 149-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Router) Descriptor deprecated

func (*Router) Descriptor() ([]byte, []int)

Deprecated: Use Router.ProtoReflect.Descriptor instead.

func (*Router) GetCost

func (x *Router) GetCost() uint32

func (*Router) GetDisabled

func (x *Router) GetDisabled() bool

func (*Router) GetFingerprint

func (x *Router) GetFingerprint() []byte

func (*Router) GetId

func (x *Router) GetId() string

func (*Router) GetName

func (x *Router) GetName() string

func (*Router) GetNoTraversal

func (x *Router) GetNoTraversal() bool

func (*Router) GetTags

func (x *Router) GetTags() map[string]*TagValue

func (*Router) ProtoMessage

func (*Router) ProtoMessage()

func (*Router) ProtoReflect

func (x *Router) ProtoReflect() protoreflect.Message

func (*Router) Reset

func (x *Router) Reset()

func (*Router) String

func (x *Router) String() string

type Service

type Service struct {
	Id                 string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Name               string               `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	TerminatorStrategy string               `protobuf:"bytes,3,opt,name=terminatorStrategy,proto3" json:"terminatorStrategy,omitempty"`
	Tags               map[string]*TagValue `` /* 149-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*Service) Descriptor deprecated

func (*Service) Descriptor() ([]byte, []int)

Deprecated: Use Service.ProtoReflect.Descriptor instead.

func (*Service) GetId

func (x *Service) GetId() string

func (*Service) GetName

func (x *Service) GetName() string

func (*Service) GetTags

func (x *Service) GetTags() map[string]*TagValue

func (*Service) GetTerminatorStrategy

func (x *Service) GetTerminatorStrategy() string

func (*Service) ProtoMessage

func (*Service) ProtoMessage()

func (*Service) ProtoReflect

func (x *Service) ProtoReflect() protoreflect.Message

func (*Service) Reset

func (x *Service) Reset()

func (*Service) String

func (x *Service) String() string

type SyncSnapshotCommand

type SyncSnapshotCommand struct {
	SnapshotId string `protobuf:"bytes,1,opt,name=snapshotId,proto3" json:"snapshotId,omitempty"`
	Snapshot   []byte `protobuf:"bytes,2,opt,name=snapshot,proto3" json:"snapshot,omitempty"`
	// contains filtered or unexported fields
}

func (*SyncSnapshotCommand) Descriptor deprecated

func (*SyncSnapshotCommand) Descriptor() ([]byte, []int)

Deprecated: Use SyncSnapshotCommand.ProtoReflect.Descriptor instead.

func (*SyncSnapshotCommand) GetCommandType

func (x *SyncSnapshotCommand) GetCommandType() int32

func (*SyncSnapshotCommand) GetSnapshot

func (x *SyncSnapshotCommand) GetSnapshot() []byte

func (*SyncSnapshotCommand) GetSnapshotId

func (x *SyncSnapshotCommand) GetSnapshotId() string

func (*SyncSnapshotCommand) ProtoMessage

func (*SyncSnapshotCommand) ProtoMessage()

func (*SyncSnapshotCommand) ProtoReflect

func (x *SyncSnapshotCommand) ProtoReflect() protoreflect.Message

func (*SyncSnapshotCommand) Reset

func (x *SyncSnapshotCommand) Reset()

func (*SyncSnapshotCommand) String

func (x *SyncSnapshotCommand) String() string

type TagValue

type TagValue struct {

	// Types that are assignable to Value:
	//	*TagValue_BoolValue
	//	*TagValue_StringValue
	//	*TagValue_FpValue
	//	*TagValue_NilValue
	Value isTagValue_Value `protobuf_oneof:"value"`
	// contains filtered or unexported fields
}

func (*TagValue) Descriptor deprecated

func (*TagValue) Descriptor() ([]byte, []int)

Deprecated: Use TagValue.ProtoReflect.Descriptor instead.

func (*TagValue) GetBoolValue

func (x *TagValue) GetBoolValue() bool

func (*TagValue) GetFpValue

func (x *TagValue) GetFpValue() float64

func (*TagValue) GetNilValue

func (x *TagValue) GetNilValue() bool

func (*TagValue) GetStringValue

func (x *TagValue) GetStringValue() string

func (*TagValue) GetValue

func (m *TagValue) GetValue() isTagValue_Value

func (*TagValue) ProtoMessage

func (*TagValue) ProtoMessage()

func (*TagValue) ProtoReflect

func (x *TagValue) ProtoReflect() protoreflect.Message

func (*TagValue) Reset

func (x *TagValue) Reset()

func (*TagValue) String

func (x *TagValue) String() string

type TagValue_BoolValue

type TagValue_BoolValue struct {
	BoolValue bool `protobuf:"varint,1,opt,name=boolValue,proto3,oneof"`
}

type TagValue_FpValue

type TagValue_FpValue struct {
	FpValue float64 `protobuf:"fixed64,3,opt,name=fpValue,proto3,oneof"`
}

type TagValue_NilValue

type TagValue_NilValue struct {
	NilValue bool `protobuf:"varint,4,opt,name=nilValue,proto3,oneof"`
}

type TagValue_StringValue

type TagValue_StringValue struct {
	StringValue string `protobuf:"bytes,2,opt,name=stringValue,proto3,oneof"`
}

type Terminator

type Terminator struct {
	Id              string               `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	ServiceId       string               `protobuf:"bytes,2,opt,name=serviceId,proto3" json:"serviceId,omitempty"`
	RouterId        string               `protobuf:"bytes,3,opt,name=routerId,proto3" json:"routerId,omitempty"`
	Binding         string               `protobuf:"bytes,4,opt,name=binding,proto3" json:"binding,omitempty"`
	Address         string               `protobuf:"bytes,5,opt,name=address,proto3" json:"address,omitempty"`
	InstanceId      string               `protobuf:"bytes,6,opt,name=instanceId,proto3" json:"instanceId,omitempty"`
	InstanceSecret  []byte               `protobuf:"bytes,7,opt,name=instanceSecret,proto3" json:"instanceSecret,omitempty"`
	Cost            uint32               `protobuf:"varint,8,opt,name=cost,proto3" json:"cost,omitempty"`
	Precedence      uint32               `protobuf:"varint,9,opt,name=precedence,proto3" json:"precedence,omitempty"`
	PeerData        map[uint32][]byte    `` /* 159-byte string literal not displayed */
	Tags            map[string]*TagValue `` /* 150-byte string literal not displayed */
	HostId          string               `protobuf:"bytes,12,opt,name=hostId,proto3" json:"hostId,omitempty"`
	IsSystem        bool                 `protobuf:"varint,13,opt,name=isSystem,proto3" json:"isSystem,omitempty"`
	SavedPrecedence uint32               `protobuf:"varint,14,opt,name=savedPrecedence,proto3" json:"savedPrecedence,omitempty"`
	// contains filtered or unexported fields
}

func (*Terminator) Descriptor deprecated

func (*Terminator) Descriptor() ([]byte, []int)

Deprecated: Use Terminator.ProtoReflect.Descriptor instead.

func (*Terminator) GetAddress

func (x *Terminator) GetAddress() string

func (*Terminator) GetBinding

func (x *Terminator) GetBinding() string

func (*Terminator) GetCost

func (x *Terminator) GetCost() uint32

func (*Terminator) GetHostId

func (x *Terminator) GetHostId() string

func (*Terminator) GetId

func (x *Terminator) GetId() string

func (*Terminator) GetInstanceId

func (x *Terminator) GetInstanceId() string

func (*Terminator) GetInstanceSecret

func (x *Terminator) GetInstanceSecret() []byte

func (*Terminator) GetIsSystem

func (x *Terminator) GetIsSystem() bool

func (*Terminator) GetPeerData

func (x *Terminator) GetPeerData() map[uint32][]byte

func (*Terminator) GetPrecedence

func (x *Terminator) GetPrecedence() uint32

func (*Terminator) GetRouterId

func (x *Terminator) GetRouterId() string

func (*Terminator) GetSavedPrecedence

func (x *Terminator) GetSavedPrecedence() uint32

func (*Terminator) GetServiceId

func (x *Terminator) GetServiceId() string

func (*Terminator) GetTags

func (x *Terminator) GetTags() map[string]*TagValue

func (*Terminator) ProtoMessage

func (*Terminator) ProtoMessage()

func (*Terminator) ProtoReflect

func (x *Terminator) ProtoReflect() protoreflect.Message

func (*Terminator) Reset

func (x *Terminator) Reset()

func (*Terminator) String

func (x *Terminator) String() string

type TransferLeadershipRequest

type TransferLeadershipRequest struct {
	Id  string         `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"`
	Ctx *ChangeContext `protobuf:"bytes,2,opt,name=ctx,proto3" json:"ctx,omitempty"`
	// contains filtered or unexported fields
}

func (*TransferLeadershipRequest) Descriptor deprecated

func (*TransferLeadershipRequest) Descriptor() ([]byte, []int)

Deprecated: Use TransferLeadershipRequest.ProtoReflect.Descriptor instead.

func (*TransferLeadershipRequest) GetContentType

func (request *TransferLeadershipRequest) GetContentType() int32

func (*TransferLeadershipRequest) GetCtx

func (*TransferLeadershipRequest) GetId

func (x *TransferLeadershipRequest) GetId() string

func (*TransferLeadershipRequest) ProtoMessage

func (*TransferLeadershipRequest) ProtoMessage()

func (*TransferLeadershipRequest) ProtoReflect

func (*TransferLeadershipRequest) Reset

func (x *TransferLeadershipRequest) Reset()

func (*TransferLeadershipRequest) String

func (x *TransferLeadershipRequest) String() string

type TypedMessage

type TypedMessage interface {
	proto.Message
	GetCommandType() int32
}

TypedMessage instances are protobuf messages which know their command type

type UpdateEntityCommand

type UpdateEntityCommand struct {
	EntityType    string         `protobuf:"bytes,1,opt,name=entityType,proto3" json:"entityType,omitempty"`
	EntityData    []byte         `protobuf:"bytes,2,opt,name=entityData,proto3" json:"entityData,omitempty"`
	UpdatedFields []string       `protobuf:"bytes,3,rep,name=updatedFields,proto3" json:"updatedFields,omitempty"`
	Flags         uint32         `protobuf:"varint,4,opt,name=flags,proto3" json:"flags,omitempty"`
	Ctx           *ChangeContext `protobuf:"bytes,5,opt,name=ctx,proto3" json:"ctx,omitempty"`
	// contains filtered or unexported fields
}

func (*UpdateEntityCommand) Descriptor deprecated

func (*UpdateEntityCommand) Descriptor() ([]byte, []int)

Deprecated: Use UpdateEntityCommand.ProtoReflect.Descriptor instead.

func (*UpdateEntityCommand) GetCommandType

func (x *UpdateEntityCommand) GetCommandType() int32

func (*UpdateEntityCommand) GetCtx

func (x *UpdateEntityCommand) GetCtx() *ChangeContext

func (*UpdateEntityCommand) GetEntityData

func (x *UpdateEntityCommand) GetEntityData() []byte

func (*UpdateEntityCommand) GetEntityType

func (x *UpdateEntityCommand) GetEntityType() string

func (*UpdateEntityCommand) GetFlags

func (x *UpdateEntityCommand) GetFlags() uint32

func (*UpdateEntityCommand) GetUpdatedFields

func (x *UpdateEntityCommand) GetUpdatedFields() []string

func (*UpdateEntityCommand) ProtoMessage

func (*UpdateEntityCommand) ProtoMessage()

func (*UpdateEntityCommand) ProtoReflect

func (x *UpdateEntityCommand) ProtoReflect() protoreflect.Message

func (*UpdateEntityCommand) Reset

func (x *UpdateEntityCommand) Reset()

func (*UpdateEntityCommand) String

func (x *UpdateEntityCommand) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL