response

package
v1.10.5 Latest Latest
Warning

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

Go to latest
Published: Feb 6, 2024 License: GPL-3.0 Imports: 4 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var File_v1_response_command_proto protoreflect.FileDescriptor
View Source
var File_v1_response_event_query_proto protoreflect.FileDescriptor
View Source
var File_v1_response_query_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type Column

type Column struct {
	Name  string       `protobuf:"bytes,1,opt,name=Name,proto3" json:"Name,omitempty"`
	Value *ColumnValue `protobuf:"bytes,2,opt,name=Value,proto3" json:"Value,omitempty"`
	// contains filtered or unexported fields
}

func (*Column) Descriptor deprecated

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

Deprecated: Use Column.ProtoReflect.Descriptor instead.

func (*Column) GetName

func (x *Column) GetName() string

func (*Column) GetValue

func (x *Column) GetValue() *ColumnValue

func (*Column) ProtoMessage

func (*Column) ProtoMessage()

func (*Column) ProtoReflect

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

func (*Column) Reset

func (x *Column) Reset()

func (*Column) String

func (x *Column) String() string

type ColumnValue

type ColumnValue struct {
	Type string `protobuf:"bytes,1,opt,name=Type,proto3" json:"Type,omitempty"`
	// Types that are assignable to TypedValue:
	//
	//	*ColumnValue_StringValue
	//	*ColumnValue_Uint64Value
	//	*ColumnValue_Float64Value
	//	*ColumnValue_BoolValue
	TypedValue isColumnValue_TypedValue `protobuf_oneof:"TypedValue"`
	// contains filtered or unexported fields
}

func (*ColumnValue) Descriptor deprecated

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

Deprecated: Use ColumnValue.ProtoReflect.Descriptor instead.

func (*ColumnValue) GetBoolValue

func (x *ColumnValue) GetBoolValue() bool

func (*ColumnValue) GetFloat64Value

func (x *ColumnValue) GetFloat64Value() float64

func (*ColumnValue) GetStringValue

func (x *ColumnValue) GetStringValue() string

func (*ColumnValue) GetType

func (x *ColumnValue) GetType() string

func (*ColumnValue) GetTypedValue

func (m *ColumnValue) GetTypedValue() isColumnValue_TypedValue

func (*ColumnValue) GetUint64Value

func (x *ColumnValue) GetUint64Value() uint64

func (*ColumnValue) ProtoMessage

func (*ColumnValue) ProtoMessage()

func (*ColumnValue) ProtoReflect

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

func (*ColumnValue) Reset

func (x *ColumnValue) Reset()

func (*ColumnValue) String

func (x *ColumnValue) String() string

type ColumnValue_BoolValue

type ColumnValue_BoolValue struct {
	BoolValue bool `protobuf:"varint,5,opt,name=BoolValue,proto3,oneof"`
}

type ColumnValue_Float64Value

type ColumnValue_Float64Value struct {
	Float64Value float64 `protobuf:"fixed64,4,opt,name=Float64Value,proto3,oneof"`
}

type ColumnValue_StringValue

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

type ColumnValue_Uint64Value

type ColumnValue_Uint64Value struct {
	Uint64Value uint64 `protobuf:"varint,3,opt,name=Uint64Value,proto3,oneof"`
}

type CommandStatementResponse

type CommandStatementResponse struct {
	Statement string `protobuf:"bytes,1,opt,name=Statement,proto3" json:"Statement,omitempty"`
	// contains filtered or unexported fields
}

func (*CommandStatementResponse) Descriptor deprecated

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

Deprecated: Use CommandStatementResponse.ProtoReflect.Descriptor instead.

func (*CommandStatementResponse) GetStatement

func (x *CommandStatementResponse) GetStatement() string

func (*CommandStatementResponse) ProtoMessage

func (*CommandStatementResponse) ProtoMessage()

func (*CommandStatementResponse) ProtoReflect

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

func (*CommandStatementResponse) Reset

func (x *CommandStatementResponse) Reset()

func (*CommandStatementResponse) String

func (x *CommandStatementResponse) String() string

type CountEventResponse

type CountEventResponse struct {
	Statement string `protobuf:"bytes,1,opt,name=Statement,proto3" json:"Statement,omitempty"`
	Count     int64  `protobuf:"varint,2,opt,name=Count,proto3" json:"Count,omitempty"`
	// contains filtered or unexported fields
}

func (*CountEventResponse) Descriptor deprecated

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

Deprecated: Use CountEventResponse.ProtoReflect.Descriptor instead.

func (*CountEventResponse) GetCount

func (x *CountEventResponse) GetCount() int64

func (*CountEventResponse) GetStatement

func (x *CountEventResponse) GetStatement() string

func (*CountEventResponse) ProtoMessage

func (*CountEventResponse) ProtoMessage()

func (*CountEventResponse) ProtoReflect

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

func (*CountEventResponse) Reset

func (x *CountEventResponse) Reset()

func (*CountEventResponse) String

func (x *CountEventResponse) String() string

type CountResponse

type CountResponse struct {
	Statement string `protobuf:"bytes,1,opt,name=Statement,proto3" json:"Statement,omitempty"`
	Count     int64  `protobuf:"varint,2,opt,name=Count,proto3" json:"Count,omitempty"`
	// contains filtered or unexported fields
}

func (*CountResponse) Descriptor deprecated

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

Deprecated: Use CountResponse.ProtoReflect.Descriptor instead.

func (*CountResponse) GetCount

func (x *CountResponse) GetCount() int64

func (*CountResponse) GetStatement

func (x *CountResponse) GetStatement() string

func (*CountResponse) ProtoMessage

func (*CountResponse) ProtoMessage()

func (*CountResponse) ProtoReflect

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

func (*CountResponse) Reset

func (x *CountResponse) Reset()

func (*CountResponse) String

func (x *CountResponse) String() string

type EventInfo

type EventInfo struct {
	Key            string `protobuf:"bytes,1,opt,name=Key,proto3" json:"Key,omitempty"`
	Version        string `protobuf:"bytes,2,opt,name=Version,proto3" json:"Version,omitempty"`
	Operation      string `protobuf:"bytes,3,opt,name=Operation,proto3" json:"Operation,omitempty"`
	Value          string `protobuf:"bytes,4,opt,name=Value,proto3" json:"Value,omitempty"`
	CreatorID      string `protobuf:"bytes,5,opt,name=CreatorID,proto3" json:"CreatorID,omitempty"`
	CreateTimeUnix int64  `protobuf:"varint,6,opt,name=CreateTimeUnix,proto3" json:"CreateTimeUnix,omitempty"`
	// contains filtered or unexported fields
}

func (*EventInfo) Descriptor deprecated

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

Deprecated: Use EventInfo.ProtoReflect.Descriptor instead.

func (*EventInfo) GetCreateTimeUnix added in v1.5.2

func (x *EventInfo) GetCreateTimeUnix() int64

func (*EventInfo) GetCreatorID

func (x *EventInfo) GetCreatorID() string

func (*EventInfo) GetKey

func (x *EventInfo) GetKey() string

func (*EventInfo) GetOperation

func (x *EventInfo) GetOperation() string

func (*EventInfo) GetValue

func (x *EventInfo) GetValue() string

func (*EventInfo) GetVersion

func (x *EventInfo) GetVersion() string

func (*EventInfo) ProtoMessage

func (*EventInfo) ProtoMessage()

func (*EventInfo) ProtoReflect

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

func (*EventInfo) Reset

func (x *EventInfo) Reset()

func (*EventInfo) String

func (x *EventInfo) String() string

type EventQueryOnlyResponse

type EventQueryOnlyResponse struct {
	Statement string       `protobuf:"bytes,1,opt,name=Statement,proto3" json:"Statement,omitempty"`
	Infos     []*EventInfo `protobuf:"bytes,2,rep,name=Infos,proto3" json:"Infos,omitempty"`
	PageNo    int32        `protobuf:"varint,3,opt,name=PageNo,proto3" json:"PageNo,omitempty"`
	// contains filtered or unexported fields
}

func (*EventQueryOnlyResponse) Descriptor deprecated

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

Deprecated: Use EventQueryOnlyResponse.ProtoReflect.Descriptor instead.

func (*EventQueryOnlyResponse) GetInfos

func (x *EventQueryOnlyResponse) GetInfos() []*EventInfo

func (*EventQueryOnlyResponse) GetPageNo

func (x *EventQueryOnlyResponse) GetPageNo() int32

func (*EventQueryOnlyResponse) GetStatement

func (x *EventQueryOnlyResponse) GetStatement() string

func (*EventQueryOnlyResponse) ProtoMessage

func (*EventQueryOnlyResponse) ProtoMessage()

func (*EventQueryOnlyResponse) ProtoReflect

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

func (*EventQueryOnlyResponse) Reset

func (x *EventQueryOnlyResponse) Reset()

func (*EventQueryOnlyResponse) String

func (x *EventQueryOnlyResponse) String() string

type EventQueryResponse

type EventQueryResponse struct {
	Statement  string       `protobuf:"bytes,1,opt,name=Statement,proto3" json:"Statement,omitempty"`
	Infos      []*EventInfo `protobuf:"bytes,2,rep,name=Infos,proto3" json:"Infos,omitempty"`
	TotalCount int64        `protobuf:"varint,3,opt,name=TotalCount,proto3" json:"TotalCount,omitempty"`
	PageNo     int32        `protobuf:"varint,4,opt,name=PageNo,proto3" json:"PageNo,omitempty"`
	// contains filtered or unexported fields
}

func (*EventQueryResponse) Descriptor deprecated

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

Deprecated: Use EventQueryResponse.ProtoReflect.Descriptor instead.

func (*EventQueryResponse) GetInfos

func (x *EventQueryResponse) GetInfos() []*EventInfo

func (*EventQueryResponse) GetPageNo

func (x *EventQueryResponse) GetPageNo() int32

func (*EventQueryResponse) GetStatement

func (x *EventQueryResponse) GetStatement() string

func (*EventQueryResponse) GetTotalCount

func (x *EventQueryResponse) GetTotalCount() int64

func (*EventQueryResponse) ProtoMessage

func (*EventQueryResponse) ProtoMessage()

func (*EventQueryResponse) ProtoReflect

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

func (*EventQueryResponse) Reset

func (x *EventQueryResponse) Reset()

func (*EventQueryResponse) String

func (x *EventQueryResponse) String() string

type InfoData

type InfoData struct {
	Columns []*Column `protobuf:"bytes,1,rep,name=Columns,proto3" json:"Columns,omitempty"`
	// contains filtered or unexported fields
}

func (*InfoData) Descriptor deprecated

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

Deprecated: Use InfoData.ProtoReflect.Descriptor instead.

func (*InfoData) GetColumns

func (x *InfoData) GetColumns() []*Column

func (*InfoData) ProtoMessage

func (*InfoData) ProtoMessage()

func (*InfoData) ProtoReflect

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

func (*InfoData) Reset

func (x *InfoData) Reset()

func (*InfoData) String

func (x *InfoData) String() string

type QueryByKeysResponse

type QueryByKeysResponse struct {
	Statement string    `protobuf:"bytes,1,opt,name=Statement,proto3" json:"Statement,omitempty"`
	Info      *InfoData `protobuf:"bytes,2,opt,name=Info,proto3" json:"Info,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryByKeysResponse) Descriptor deprecated

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

Deprecated: Use QueryByKeysResponse.ProtoReflect.Descriptor instead.

func (*QueryByKeysResponse) GetInfo

func (x *QueryByKeysResponse) GetInfo() *InfoData

func (*QueryByKeysResponse) GetStatement

func (x *QueryByKeysResponse) GetStatement() string

func (*QueryByKeysResponse) ProtoMessage

func (*QueryByKeysResponse) ProtoMessage()

func (*QueryByKeysResponse) ProtoReflect

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

func (*QueryByKeysResponse) Reset

func (x *QueryByKeysResponse) Reset()

func (*QueryByKeysResponse) String

func (x *QueryByKeysResponse) String() string

type QueryOnlyResponse

type QueryOnlyResponse struct {
	Statement string      `protobuf:"bytes,1,opt,name=Statement,proto3" json:"Statement,omitempty"`
	Infos     []*InfoData `protobuf:"bytes,2,rep,name=Infos,proto3" json:"Infos,omitempty"`
	PageNo    int32       `protobuf:"varint,3,opt,name=PageNo,proto3" json:"PageNo,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryOnlyResponse) Descriptor deprecated

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

Deprecated: Use QueryOnlyResponse.ProtoReflect.Descriptor instead.

func (*QueryOnlyResponse) GetInfos

func (x *QueryOnlyResponse) GetInfos() []*InfoData

func (*QueryOnlyResponse) GetPageNo

func (x *QueryOnlyResponse) GetPageNo() int32

func (*QueryOnlyResponse) GetStatement

func (x *QueryOnlyResponse) GetStatement() string

func (*QueryOnlyResponse) ProtoMessage

func (*QueryOnlyResponse) ProtoMessage()

func (*QueryOnlyResponse) ProtoReflect

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

func (*QueryOnlyResponse) Reset

func (x *QueryOnlyResponse) Reset()

func (*QueryOnlyResponse) String

func (x *QueryOnlyResponse) String() string

type QueryResponse

type QueryResponse struct {
	Statement  string      `protobuf:"bytes,1,opt,name=Statement,proto3" json:"Statement,omitempty"`
	Infos      []*InfoData `protobuf:"bytes,2,rep,name=Infos,proto3" json:"Infos,omitempty"`
	TotalCount int64       `protobuf:"varint,3,opt,name=TotalCount,proto3" json:"TotalCount,omitempty"`
	PageNo     int32       `protobuf:"varint,4,opt,name=PageNo,proto3" json:"PageNo,omitempty"`
	// contains filtered or unexported fields
}

func (*QueryResponse) Descriptor deprecated

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

Deprecated: Use QueryResponse.ProtoReflect.Descriptor instead.

func (*QueryResponse) GetInfos

func (x *QueryResponse) GetInfos() []*InfoData

func (*QueryResponse) GetPageNo

func (x *QueryResponse) GetPageNo() int32

func (*QueryResponse) GetStatement

func (x *QueryResponse) GetStatement() string

func (*QueryResponse) GetTotalCount

func (x *QueryResponse) GetTotalCount() int64

func (*QueryResponse) ProtoMessage

func (*QueryResponse) ProtoMessage()

func (*QueryResponse) ProtoReflect

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

func (*QueryResponse) Reset

func (x *QueryResponse) Reset()

func (*QueryResponse) String

func (x *QueryResponse) String() string

Jump to

Keyboard shortcuts

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