etcdserverpb

package
v0.0.0-...-b668404 Latest Latest
Warning

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

Go to latest
Published: Aug 8, 2023 License: MIT Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	AlarmType_name = map[int32]string{
		0: "NONE",
		1: "NOSPACE",
		2: "CORRUPT",
	}
	AlarmType_value = map[string]int32{
		"NONE":    0,
		"NOSPACE": 1,
		"CORRUPT": 2,
	}
)

Enum value maps for AlarmType.

View Source
var (
	RangeRequest_SortOrder_name = map[int32]string{
		0: "NONE",
		1: "ASCEND",
		2: "DESCEND",
	}
	RangeRequest_SortOrder_value = map[string]int32{
		"NONE":    0,
		"ASCEND":  1,
		"DESCEND": 2,
	}
)

Enum value maps for RangeRequest_SortOrder.

View Source
var (
	RangeRequest_SortTarget_name = map[int32]string{
		0: "KEY",
		1: "VERSION",
		2: "CREATE",
		3: "MOD",
		4: "VALUE",
	}
	RangeRequest_SortTarget_value = map[string]int32{
		"KEY":     0,
		"VERSION": 1,
		"CREATE":  2,
		"MOD":     3,
		"VALUE":   4,
	}
)

Enum value maps for RangeRequest_SortTarget.

View Source
var (
	Compare_CompareResult_name = map[int32]string{
		0: "EQUAL",
		1: "GREATER",
		2: "LESS",
		3: "NOT_EQUAL",
	}
	Compare_CompareResult_value = map[string]int32{
		"EQUAL":     0,
		"GREATER":   1,
		"LESS":      2,
		"NOT_EQUAL": 3,
	}
)

Enum value maps for Compare_CompareResult.

View Source
var (
	Compare_CompareTarget_name = map[int32]string{
		0: "VERSION",
		1: "CREATE",
		2: "MOD",
		3: "VALUE",
		4: "LEASE",
	}
	Compare_CompareTarget_value = map[string]int32{
		"VERSION": 0,
		"CREATE":  1,
		"MOD":     2,
		"VALUE":   3,
		"LEASE":   4,
	}
)

Enum value maps for Compare_CompareTarget.

View Source
var (
	WatchCreateRequest_FilterType_name = map[int32]string{
		0: "NOPUT",
		1: "NODELETE",
	}
	WatchCreateRequest_FilterType_value = map[string]int32{
		"NOPUT":    0,
		"NODELETE": 1,
	}
)

Enum value maps for WatchCreateRequest_FilterType.

View Source
var (
	AlarmRequest_AlarmAction_name = map[int32]string{
		0: "GET",
		1: "ACTIVATE",
		2: "DEACTIVATE",
	}
	AlarmRequest_AlarmAction_value = map[string]int32{
		"GET":        0,
		"ACTIVATE":   1,
		"DEACTIVATE": 2,
	}
)

Enum value maps for AlarmRequest_AlarmAction.

View Source
var (
	DowngradeRequest_DowngradeAction_name = map[int32]string{
		0: "VALIDATE",
		1: "ENABLE",
		2: "CANCEL",
	}
	DowngradeRequest_DowngradeAction_value = map[string]int32{
		"VALIDATE": 0,
		"ENABLE":   1,
		"CANCEL":   2,
	}
)

Enum value maps for DowngradeRequest_DowngradeAction.

View Source
var (
	ErrInvalidLength        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflow          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroup = fmt.Errorf("proto: unexpected end of group")
)
View Source
var File_etcdserverpb_etcdserver_proto protoreflect.FileDescriptor
View Source
var File_etcdserverpb_rpc_proto protoreflect.FileDescriptor

Functions

This section is empty.

Types

type AlarmMember

type AlarmMember struct {

	// memberID is the ID of the member associated with the raised alarm.
	MemberID uint64 `protobuf:"varint,1,opt,name=memberID,proto3" json:"memberID,omitempty"`
	// alarm is the type of alarm which has been raised.
	Alarm AlarmType `protobuf:"varint,2,opt,name=alarm,proto3,enum=etcdserverpb.AlarmType" json:"alarm,omitempty"`
	// contains filtered or unexported fields
}

func (*AlarmMember) Descriptor deprecated

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

Deprecated: Use AlarmMember.ProtoReflect.Descriptor instead.

func (*AlarmMember) GetAlarm

func (x *AlarmMember) GetAlarm() AlarmType

func (*AlarmMember) GetMemberID

func (x *AlarmMember) GetMemberID() uint64

func (*AlarmMember) MarshalToSizedBufferVT

func (m *AlarmMember) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AlarmMember) MarshalToVT

func (m *AlarmMember) MarshalToVT(dAtA []byte) (int, error)

func (*AlarmMember) MarshalVT

func (m *AlarmMember) MarshalVT() (dAtA []byte, err error)

func (*AlarmMember) ProtoMessage

func (*AlarmMember) ProtoMessage()

func (*AlarmMember) ProtoReflect

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

func (*AlarmMember) Reset

func (x *AlarmMember) Reset()

func (*AlarmMember) SizeVT

func (m *AlarmMember) SizeVT() (n int)

func (*AlarmMember) String

func (x *AlarmMember) String() string

func (*AlarmMember) UnmarshalVT

func (m *AlarmMember) UnmarshalVT(dAtA []byte) error

type AlarmRequest

type AlarmRequest struct {

	// action is the kind of alarm request to issue. The action
	// may GET alarm statuses, ACTIVATE an alarm, or DEACTIVATE a
	// raised alarm.
	Action AlarmRequest_AlarmAction `protobuf:"varint,1,opt,name=action,proto3,enum=etcdserverpb.AlarmRequest_AlarmAction" json:"action,omitempty"`
	// memberID is the ID of the member associated with the alarm. If memberID is 0, the
	// alarm request covers all members.
	MemberID uint64 `protobuf:"varint,2,opt,name=memberID,proto3" json:"memberID,omitempty"`
	// alarm is the type of alarm to consider for this request.
	Alarm AlarmType `protobuf:"varint,3,opt,name=alarm,proto3,enum=etcdserverpb.AlarmType" json:"alarm,omitempty"`
	// contains filtered or unexported fields
}

func (*AlarmRequest) Descriptor deprecated

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

Deprecated: Use AlarmRequest.ProtoReflect.Descriptor instead.

func (*AlarmRequest) GetAction

func (x *AlarmRequest) GetAction() AlarmRequest_AlarmAction

func (*AlarmRequest) GetAlarm

func (x *AlarmRequest) GetAlarm() AlarmType

func (*AlarmRequest) GetMemberID

func (x *AlarmRequest) GetMemberID() uint64

func (*AlarmRequest) MarshalToSizedBufferVT

func (m *AlarmRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AlarmRequest) MarshalToVT

func (m *AlarmRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AlarmRequest) MarshalVT

func (m *AlarmRequest) MarshalVT() (dAtA []byte, err error)

func (*AlarmRequest) ProtoMessage

func (*AlarmRequest) ProtoMessage()

func (*AlarmRequest) ProtoReflect

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

func (*AlarmRequest) Reset

func (x *AlarmRequest) Reset()

func (*AlarmRequest) SizeVT

func (m *AlarmRequest) SizeVT() (n int)

func (*AlarmRequest) String

func (x *AlarmRequest) String() string

func (*AlarmRequest) UnmarshalVT

func (m *AlarmRequest) UnmarshalVT(dAtA []byte) error

type AlarmRequest_AlarmAction

type AlarmRequest_AlarmAction int32
const (
	AlarmRequest_GET        AlarmRequest_AlarmAction = 0
	AlarmRequest_ACTIVATE   AlarmRequest_AlarmAction = 1
	AlarmRequest_DEACTIVATE AlarmRequest_AlarmAction = 2
)

func (AlarmRequest_AlarmAction) Descriptor

func (AlarmRequest_AlarmAction) Enum

func (AlarmRequest_AlarmAction) EnumDescriptor deprecated

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

Deprecated: Use AlarmRequest_AlarmAction.Descriptor instead.

func (AlarmRequest_AlarmAction) Number

func (AlarmRequest_AlarmAction) String

func (x AlarmRequest_AlarmAction) String() string

func (AlarmRequest_AlarmAction) Type

type AlarmResponse

type AlarmResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// alarms is a list of alarms associated with the alarm request.
	Alarms []*AlarmMember `protobuf:"bytes,2,rep,name=alarms,proto3" json:"alarms,omitempty"`
	// contains filtered or unexported fields
}

func (*AlarmResponse) Descriptor deprecated

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

Deprecated: Use AlarmResponse.ProtoReflect.Descriptor instead.

func (*AlarmResponse) GetAlarms

func (x *AlarmResponse) GetAlarms() []*AlarmMember

func (*AlarmResponse) GetHeader

func (x *AlarmResponse) GetHeader() *ResponseHeader

func (*AlarmResponse) MarshalToSizedBufferVT

func (m *AlarmResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AlarmResponse) MarshalToVT

func (m *AlarmResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AlarmResponse) MarshalVT

func (m *AlarmResponse) MarshalVT() (dAtA []byte, err error)

func (*AlarmResponse) ProtoMessage

func (*AlarmResponse) ProtoMessage()

func (*AlarmResponse) ProtoReflect

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

func (*AlarmResponse) Reset

func (x *AlarmResponse) Reset()

func (*AlarmResponse) SizeVT

func (m *AlarmResponse) SizeVT() (n int)

func (*AlarmResponse) String

func (x *AlarmResponse) String() string

func (*AlarmResponse) UnmarshalVT

func (m *AlarmResponse) UnmarshalVT(dAtA []byte) error

type AlarmType

type AlarmType int32
const (
	AlarmType_NONE    AlarmType = 0 // default, used to query if any alarm is active
	AlarmType_NOSPACE AlarmType = 1 // space quota is exhausted
	AlarmType_CORRUPT AlarmType = 2 // kv store corruption detected
)

func (AlarmType) Descriptor

func (AlarmType) Descriptor() protoreflect.EnumDescriptor

func (AlarmType) Enum

func (x AlarmType) Enum() *AlarmType

func (AlarmType) EnumDescriptor deprecated

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

Deprecated: Use AlarmType.Descriptor instead.

func (AlarmType) Number

func (x AlarmType) Number() protoreflect.EnumNumber

func (AlarmType) String

func (x AlarmType) String() string

func (AlarmType) Type

type AuthDisableRequest

type AuthDisableRequest struct {
	// contains filtered or unexported fields
}

func (*AuthDisableRequest) Descriptor deprecated

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

Deprecated: Use AuthDisableRequest.ProtoReflect.Descriptor instead.

func (*AuthDisableRequest) MarshalToSizedBufferVT

func (m *AuthDisableRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthDisableRequest) MarshalToVT

func (m *AuthDisableRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthDisableRequest) MarshalVT

func (m *AuthDisableRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthDisableRequest) ProtoMessage

func (*AuthDisableRequest) ProtoMessage()

func (*AuthDisableRequest) ProtoReflect

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

func (*AuthDisableRequest) Reset

func (x *AuthDisableRequest) Reset()

func (*AuthDisableRequest) SizeVT

func (m *AuthDisableRequest) SizeVT() (n int)

func (*AuthDisableRequest) String

func (x *AuthDisableRequest) String() string

func (*AuthDisableRequest) UnmarshalVT

func (m *AuthDisableRequest) UnmarshalVT(dAtA []byte) error

type AuthDisableResponse

type AuthDisableResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthDisableResponse) Descriptor deprecated

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

Deprecated: Use AuthDisableResponse.ProtoReflect.Descriptor instead.

func (*AuthDisableResponse) GetHeader

func (x *AuthDisableResponse) GetHeader() *ResponseHeader

func (*AuthDisableResponse) MarshalToSizedBufferVT

func (m *AuthDisableResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthDisableResponse) MarshalToVT

func (m *AuthDisableResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthDisableResponse) MarshalVT

func (m *AuthDisableResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthDisableResponse) ProtoMessage

func (*AuthDisableResponse) ProtoMessage()

func (*AuthDisableResponse) ProtoReflect

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

func (*AuthDisableResponse) Reset

func (x *AuthDisableResponse) Reset()

func (*AuthDisableResponse) SizeVT

func (m *AuthDisableResponse) SizeVT() (n int)

func (*AuthDisableResponse) String

func (x *AuthDisableResponse) String() string

func (*AuthDisableResponse) UnmarshalVT

func (m *AuthDisableResponse) UnmarshalVT(dAtA []byte) error

type AuthEnableRequest

type AuthEnableRequest struct {
	// contains filtered or unexported fields
}

func (*AuthEnableRequest) Descriptor deprecated

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

Deprecated: Use AuthEnableRequest.ProtoReflect.Descriptor instead.

func (*AuthEnableRequest) MarshalToSizedBufferVT

func (m *AuthEnableRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthEnableRequest) MarshalToVT

func (m *AuthEnableRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthEnableRequest) MarshalVT

func (m *AuthEnableRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthEnableRequest) ProtoMessage

func (*AuthEnableRequest) ProtoMessage()

func (*AuthEnableRequest) ProtoReflect

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

func (*AuthEnableRequest) Reset

func (x *AuthEnableRequest) Reset()

func (*AuthEnableRequest) SizeVT

func (m *AuthEnableRequest) SizeVT() (n int)

func (*AuthEnableRequest) String

func (x *AuthEnableRequest) String() string

func (*AuthEnableRequest) UnmarshalVT

func (m *AuthEnableRequest) UnmarshalVT(dAtA []byte) error

type AuthEnableResponse

type AuthEnableResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthEnableResponse) Descriptor deprecated

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

Deprecated: Use AuthEnableResponse.ProtoReflect.Descriptor instead.

func (*AuthEnableResponse) GetHeader

func (x *AuthEnableResponse) GetHeader() *ResponseHeader

func (*AuthEnableResponse) MarshalToSizedBufferVT

func (m *AuthEnableResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthEnableResponse) MarshalToVT

func (m *AuthEnableResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthEnableResponse) MarshalVT

func (m *AuthEnableResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthEnableResponse) ProtoMessage

func (*AuthEnableResponse) ProtoMessage()

func (*AuthEnableResponse) ProtoReflect

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

func (*AuthEnableResponse) Reset

func (x *AuthEnableResponse) Reset()

func (*AuthEnableResponse) SizeVT

func (m *AuthEnableResponse) SizeVT() (n int)

func (*AuthEnableResponse) String

func (x *AuthEnableResponse) String() string

func (*AuthEnableResponse) UnmarshalVT

func (m *AuthEnableResponse) UnmarshalVT(dAtA []byte) error

type AuthRoleAddRequest

type AuthRoleAddRequest struct {

	// name is the name of the role to add to the authentication system.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthRoleAddRequest) Descriptor deprecated

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

Deprecated: Use AuthRoleAddRequest.ProtoReflect.Descriptor instead.

func (*AuthRoleAddRequest) GetName

func (x *AuthRoleAddRequest) GetName() string

func (*AuthRoleAddRequest) MarshalToSizedBufferVT

func (m *AuthRoleAddRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthRoleAddRequest) MarshalToVT

func (m *AuthRoleAddRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthRoleAddRequest) MarshalVT

func (m *AuthRoleAddRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthRoleAddRequest) ProtoMessage

func (*AuthRoleAddRequest) ProtoMessage()

func (*AuthRoleAddRequest) ProtoReflect

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

func (*AuthRoleAddRequest) Reset

func (x *AuthRoleAddRequest) Reset()

func (*AuthRoleAddRequest) SizeVT

func (m *AuthRoleAddRequest) SizeVT() (n int)

func (*AuthRoleAddRequest) String

func (x *AuthRoleAddRequest) String() string

func (*AuthRoleAddRequest) UnmarshalVT

func (m *AuthRoleAddRequest) UnmarshalVT(dAtA []byte) error

type AuthRoleAddResponse

type AuthRoleAddResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthRoleAddResponse) Descriptor deprecated

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

Deprecated: Use AuthRoleAddResponse.ProtoReflect.Descriptor instead.

func (*AuthRoleAddResponse) GetHeader

func (x *AuthRoleAddResponse) GetHeader() *ResponseHeader

func (*AuthRoleAddResponse) MarshalToSizedBufferVT

func (m *AuthRoleAddResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthRoleAddResponse) MarshalToVT

func (m *AuthRoleAddResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthRoleAddResponse) MarshalVT

func (m *AuthRoleAddResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthRoleAddResponse) ProtoMessage

func (*AuthRoleAddResponse) ProtoMessage()

func (*AuthRoleAddResponse) ProtoReflect

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

func (*AuthRoleAddResponse) Reset

func (x *AuthRoleAddResponse) Reset()

func (*AuthRoleAddResponse) SizeVT

func (m *AuthRoleAddResponse) SizeVT() (n int)

func (*AuthRoleAddResponse) String

func (x *AuthRoleAddResponse) String() string

func (*AuthRoleAddResponse) UnmarshalVT

func (m *AuthRoleAddResponse) UnmarshalVT(dAtA []byte) error

type AuthRoleDeleteRequest

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

func (*AuthRoleDeleteRequest) Descriptor deprecated

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

Deprecated: Use AuthRoleDeleteRequest.ProtoReflect.Descriptor instead.

func (*AuthRoleDeleteRequest) GetRole

func (x *AuthRoleDeleteRequest) GetRole() string

func (*AuthRoleDeleteRequest) MarshalToSizedBufferVT

func (m *AuthRoleDeleteRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthRoleDeleteRequest) MarshalToVT

func (m *AuthRoleDeleteRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthRoleDeleteRequest) MarshalVT

func (m *AuthRoleDeleteRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthRoleDeleteRequest) ProtoMessage

func (*AuthRoleDeleteRequest) ProtoMessage()

func (*AuthRoleDeleteRequest) ProtoReflect

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

func (*AuthRoleDeleteRequest) Reset

func (x *AuthRoleDeleteRequest) Reset()

func (*AuthRoleDeleteRequest) SizeVT

func (m *AuthRoleDeleteRequest) SizeVT() (n int)

func (*AuthRoleDeleteRequest) String

func (x *AuthRoleDeleteRequest) String() string

func (*AuthRoleDeleteRequest) UnmarshalVT

func (m *AuthRoleDeleteRequest) UnmarshalVT(dAtA []byte) error

type AuthRoleDeleteResponse

type AuthRoleDeleteResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthRoleDeleteResponse) Descriptor deprecated

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

Deprecated: Use AuthRoleDeleteResponse.ProtoReflect.Descriptor instead.

func (*AuthRoleDeleteResponse) GetHeader

func (x *AuthRoleDeleteResponse) GetHeader() *ResponseHeader

func (*AuthRoleDeleteResponse) MarshalToSizedBufferVT

func (m *AuthRoleDeleteResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthRoleDeleteResponse) MarshalToVT

func (m *AuthRoleDeleteResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthRoleDeleteResponse) MarshalVT

func (m *AuthRoleDeleteResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthRoleDeleteResponse) ProtoMessage

func (*AuthRoleDeleteResponse) ProtoMessage()

func (*AuthRoleDeleteResponse) ProtoReflect

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

func (*AuthRoleDeleteResponse) Reset

func (x *AuthRoleDeleteResponse) Reset()

func (*AuthRoleDeleteResponse) SizeVT

func (m *AuthRoleDeleteResponse) SizeVT() (n int)

func (*AuthRoleDeleteResponse) String

func (x *AuthRoleDeleteResponse) String() string

func (*AuthRoleDeleteResponse) UnmarshalVT

func (m *AuthRoleDeleteResponse) UnmarshalVT(dAtA []byte) error

type AuthRoleGetRequest

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

func (*AuthRoleGetRequest) Descriptor deprecated

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

Deprecated: Use AuthRoleGetRequest.ProtoReflect.Descriptor instead.

func (*AuthRoleGetRequest) GetRole

func (x *AuthRoleGetRequest) GetRole() string

func (*AuthRoleGetRequest) MarshalToSizedBufferVT

func (m *AuthRoleGetRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthRoleGetRequest) MarshalToVT

func (m *AuthRoleGetRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthRoleGetRequest) MarshalVT

func (m *AuthRoleGetRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthRoleGetRequest) ProtoMessage

func (*AuthRoleGetRequest) ProtoMessage()

func (*AuthRoleGetRequest) ProtoReflect

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

func (*AuthRoleGetRequest) Reset

func (x *AuthRoleGetRequest) Reset()

func (*AuthRoleGetRequest) SizeVT

func (m *AuthRoleGetRequest) SizeVT() (n int)

func (*AuthRoleGetRequest) String

func (x *AuthRoleGetRequest) String() string

func (*AuthRoleGetRequest) UnmarshalVT

func (m *AuthRoleGetRequest) UnmarshalVT(dAtA []byte) error

type AuthRoleGetResponse

type AuthRoleGetResponse struct {
	Header *ResponseHeader      `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	Perm   []*authpb.Permission `protobuf:"bytes,2,rep,name=perm,proto3" json:"perm,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthRoleGetResponse) Descriptor deprecated

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

Deprecated: Use AuthRoleGetResponse.ProtoReflect.Descriptor instead.

func (*AuthRoleGetResponse) GetHeader

func (x *AuthRoleGetResponse) GetHeader() *ResponseHeader

func (*AuthRoleGetResponse) GetPerm

func (x *AuthRoleGetResponse) GetPerm() []*authpb.Permission

func (*AuthRoleGetResponse) MarshalToSizedBufferVT

func (m *AuthRoleGetResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthRoleGetResponse) MarshalToVT

func (m *AuthRoleGetResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthRoleGetResponse) MarshalVT

func (m *AuthRoleGetResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthRoleGetResponse) ProtoMessage

func (*AuthRoleGetResponse) ProtoMessage()

func (*AuthRoleGetResponse) ProtoReflect

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

func (*AuthRoleGetResponse) Reset

func (x *AuthRoleGetResponse) Reset()

func (*AuthRoleGetResponse) SizeVT

func (m *AuthRoleGetResponse) SizeVT() (n int)

func (*AuthRoleGetResponse) String

func (x *AuthRoleGetResponse) String() string

func (*AuthRoleGetResponse) UnmarshalVT

func (m *AuthRoleGetResponse) UnmarshalVT(dAtA []byte) error

type AuthRoleGrantPermissionRequest

type AuthRoleGrantPermissionRequest struct {

	// name is the name of the role which will be granted the permission.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// perm is the permission to grant to the role.
	Perm *authpb.Permission `protobuf:"bytes,2,opt,name=perm,proto3" json:"perm,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthRoleGrantPermissionRequest) Descriptor deprecated

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

Deprecated: Use AuthRoleGrantPermissionRequest.ProtoReflect.Descriptor instead.

func (*AuthRoleGrantPermissionRequest) GetName

func (*AuthRoleGrantPermissionRequest) GetPerm

func (*AuthRoleGrantPermissionRequest) MarshalToSizedBufferVT

func (m *AuthRoleGrantPermissionRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthRoleGrantPermissionRequest) MarshalToVT

func (m *AuthRoleGrantPermissionRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthRoleGrantPermissionRequest) MarshalVT

func (m *AuthRoleGrantPermissionRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthRoleGrantPermissionRequest) ProtoMessage

func (*AuthRoleGrantPermissionRequest) ProtoMessage()

func (*AuthRoleGrantPermissionRequest) ProtoReflect

func (*AuthRoleGrantPermissionRequest) Reset

func (x *AuthRoleGrantPermissionRequest) Reset()

func (*AuthRoleGrantPermissionRequest) SizeVT

func (m *AuthRoleGrantPermissionRequest) SizeVT() (n int)

func (*AuthRoleGrantPermissionRequest) String

func (*AuthRoleGrantPermissionRequest) UnmarshalVT

func (m *AuthRoleGrantPermissionRequest) UnmarshalVT(dAtA []byte) error

type AuthRoleGrantPermissionResponse

type AuthRoleGrantPermissionResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthRoleGrantPermissionResponse) Descriptor deprecated

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

Deprecated: Use AuthRoleGrantPermissionResponse.ProtoReflect.Descriptor instead.

func (*AuthRoleGrantPermissionResponse) GetHeader

func (*AuthRoleGrantPermissionResponse) MarshalToSizedBufferVT

func (m *AuthRoleGrantPermissionResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthRoleGrantPermissionResponse) MarshalToVT

func (m *AuthRoleGrantPermissionResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthRoleGrantPermissionResponse) MarshalVT

func (m *AuthRoleGrantPermissionResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthRoleGrantPermissionResponse) ProtoMessage

func (*AuthRoleGrantPermissionResponse) ProtoMessage()

func (*AuthRoleGrantPermissionResponse) ProtoReflect

func (*AuthRoleGrantPermissionResponse) Reset

func (*AuthRoleGrantPermissionResponse) SizeVT

func (m *AuthRoleGrantPermissionResponse) SizeVT() (n int)

func (*AuthRoleGrantPermissionResponse) String

func (*AuthRoleGrantPermissionResponse) UnmarshalVT

func (m *AuthRoleGrantPermissionResponse) UnmarshalVT(dAtA []byte) error

type AuthRoleListRequest

type AuthRoleListRequest struct {
	// contains filtered or unexported fields
}

func (*AuthRoleListRequest) Descriptor deprecated

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

Deprecated: Use AuthRoleListRequest.ProtoReflect.Descriptor instead.

func (*AuthRoleListRequest) MarshalToSizedBufferVT

func (m *AuthRoleListRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthRoleListRequest) MarshalToVT

func (m *AuthRoleListRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthRoleListRequest) MarshalVT

func (m *AuthRoleListRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthRoleListRequest) ProtoMessage

func (*AuthRoleListRequest) ProtoMessage()

func (*AuthRoleListRequest) ProtoReflect

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

func (*AuthRoleListRequest) Reset

func (x *AuthRoleListRequest) Reset()

func (*AuthRoleListRequest) SizeVT

func (m *AuthRoleListRequest) SizeVT() (n int)

func (*AuthRoleListRequest) String

func (x *AuthRoleListRequest) String() string

func (*AuthRoleListRequest) UnmarshalVT

func (m *AuthRoleListRequest) UnmarshalVT(dAtA []byte) error

type AuthRoleListResponse

type AuthRoleListResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	Roles  []string        `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthRoleListResponse) Descriptor deprecated

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

Deprecated: Use AuthRoleListResponse.ProtoReflect.Descriptor instead.

func (*AuthRoleListResponse) GetHeader

func (x *AuthRoleListResponse) GetHeader() *ResponseHeader

func (*AuthRoleListResponse) GetRoles

func (x *AuthRoleListResponse) GetRoles() []string

func (*AuthRoleListResponse) MarshalToSizedBufferVT

func (m *AuthRoleListResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthRoleListResponse) MarshalToVT

func (m *AuthRoleListResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthRoleListResponse) MarshalVT

func (m *AuthRoleListResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthRoleListResponse) ProtoMessage

func (*AuthRoleListResponse) ProtoMessage()

func (*AuthRoleListResponse) ProtoReflect

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

func (*AuthRoleListResponse) Reset

func (x *AuthRoleListResponse) Reset()

func (*AuthRoleListResponse) SizeVT

func (m *AuthRoleListResponse) SizeVT() (n int)

func (*AuthRoleListResponse) String

func (x *AuthRoleListResponse) String() string

func (*AuthRoleListResponse) UnmarshalVT

func (m *AuthRoleListResponse) UnmarshalVT(dAtA []byte) error

type AuthRoleRevokePermissionRequest

type AuthRoleRevokePermissionRequest struct {
	Role     string `protobuf:"bytes,1,opt,name=role,proto3" json:"role,omitempty"`
	Key      []byte `protobuf:"bytes,2,opt,name=key,proto3" json:"key,omitempty"`
	RangeEnd []byte `protobuf:"bytes,3,opt,name=range_end,json=rangeEnd,proto3" json:"range_end,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthRoleRevokePermissionRequest) Descriptor deprecated

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

Deprecated: Use AuthRoleRevokePermissionRequest.ProtoReflect.Descriptor instead.

func (*AuthRoleRevokePermissionRequest) GetKey

func (x *AuthRoleRevokePermissionRequest) GetKey() []byte

func (*AuthRoleRevokePermissionRequest) GetRangeEnd

func (x *AuthRoleRevokePermissionRequest) GetRangeEnd() []byte

func (*AuthRoleRevokePermissionRequest) GetRole

func (*AuthRoleRevokePermissionRequest) MarshalToSizedBufferVT

func (m *AuthRoleRevokePermissionRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthRoleRevokePermissionRequest) MarshalToVT

func (m *AuthRoleRevokePermissionRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthRoleRevokePermissionRequest) MarshalVT

func (m *AuthRoleRevokePermissionRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthRoleRevokePermissionRequest) ProtoMessage

func (*AuthRoleRevokePermissionRequest) ProtoMessage()

func (*AuthRoleRevokePermissionRequest) ProtoReflect

func (*AuthRoleRevokePermissionRequest) Reset

func (*AuthRoleRevokePermissionRequest) SizeVT

func (m *AuthRoleRevokePermissionRequest) SizeVT() (n int)

func (*AuthRoleRevokePermissionRequest) String

func (*AuthRoleRevokePermissionRequest) UnmarshalVT

func (m *AuthRoleRevokePermissionRequest) UnmarshalVT(dAtA []byte) error

type AuthRoleRevokePermissionResponse

type AuthRoleRevokePermissionResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthRoleRevokePermissionResponse) Descriptor deprecated

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

Deprecated: Use AuthRoleRevokePermissionResponse.ProtoReflect.Descriptor instead.

func (*AuthRoleRevokePermissionResponse) GetHeader

func (*AuthRoleRevokePermissionResponse) MarshalToSizedBufferVT

func (m *AuthRoleRevokePermissionResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthRoleRevokePermissionResponse) MarshalToVT

func (m *AuthRoleRevokePermissionResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthRoleRevokePermissionResponse) MarshalVT

func (m *AuthRoleRevokePermissionResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthRoleRevokePermissionResponse) ProtoMessage

func (*AuthRoleRevokePermissionResponse) ProtoMessage()

func (*AuthRoleRevokePermissionResponse) ProtoReflect

func (*AuthRoleRevokePermissionResponse) Reset

func (*AuthRoleRevokePermissionResponse) SizeVT

func (m *AuthRoleRevokePermissionResponse) SizeVT() (n int)

func (*AuthRoleRevokePermissionResponse) String

func (*AuthRoleRevokePermissionResponse) UnmarshalVT

func (m *AuthRoleRevokePermissionResponse) UnmarshalVT(dAtA []byte) error

type AuthStatusRequest

type AuthStatusRequest struct {
	// contains filtered or unexported fields
}

func (*AuthStatusRequest) Descriptor deprecated

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

Deprecated: Use AuthStatusRequest.ProtoReflect.Descriptor instead.

func (*AuthStatusRequest) MarshalToSizedBufferVT

func (m *AuthStatusRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthStatusRequest) MarshalToVT

func (m *AuthStatusRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthStatusRequest) MarshalVT

func (m *AuthStatusRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthStatusRequest) ProtoMessage

func (*AuthStatusRequest) ProtoMessage()

func (*AuthStatusRequest) ProtoReflect

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

func (*AuthStatusRequest) Reset

func (x *AuthStatusRequest) Reset()

func (*AuthStatusRequest) SizeVT

func (m *AuthStatusRequest) SizeVT() (n int)

func (*AuthStatusRequest) String

func (x *AuthStatusRequest) String() string

func (*AuthStatusRequest) UnmarshalVT

func (m *AuthStatusRequest) UnmarshalVT(dAtA []byte) error

type AuthStatusResponse

type AuthStatusResponse struct {
	Header  *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	Enabled bool            `protobuf:"varint,2,opt,name=enabled,proto3" json:"enabled,omitempty"`
	// authRevision is the current revision of auth store
	AuthRevision uint64 `protobuf:"varint,3,opt,name=authRevision,proto3" json:"authRevision,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthStatusResponse) Descriptor deprecated

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

Deprecated: Use AuthStatusResponse.ProtoReflect.Descriptor instead.

func (*AuthStatusResponse) GetAuthRevision

func (x *AuthStatusResponse) GetAuthRevision() uint64

func (*AuthStatusResponse) GetEnabled

func (x *AuthStatusResponse) GetEnabled() bool

func (*AuthStatusResponse) GetHeader

func (x *AuthStatusResponse) GetHeader() *ResponseHeader

func (*AuthStatusResponse) MarshalToSizedBufferVT

func (m *AuthStatusResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthStatusResponse) MarshalToVT

func (m *AuthStatusResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthStatusResponse) MarshalVT

func (m *AuthStatusResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthStatusResponse) ProtoMessage

func (*AuthStatusResponse) ProtoMessage()

func (*AuthStatusResponse) ProtoReflect

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

func (*AuthStatusResponse) Reset

func (x *AuthStatusResponse) Reset()

func (*AuthStatusResponse) SizeVT

func (m *AuthStatusResponse) SizeVT() (n int)

func (*AuthStatusResponse) String

func (x *AuthStatusResponse) String() string

func (*AuthStatusResponse) UnmarshalVT

func (m *AuthStatusResponse) UnmarshalVT(dAtA []byte) error

type AuthUserAddRequest

type AuthUserAddRequest struct {
	Name           string                 `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Password       string                 `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	Options        *authpb.UserAddOptions `protobuf:"bytes,3,opt,name=options,proto3" json:"options,omitempty"`
	HashedPassword string                 `protobuf:"bytes,4,opt,name=hashedPassword,proto3" json:"hashedPassword,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthUserAddRequest) Descriptor deprecated

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

Deprecated: Use AuthUserAddRequest.ProtoReflect.Descriptor instead.

func (*AuthUserAddRequest) GetHashedPassword

func (x *AuthUserAddRequest) GetHashedPassword() string

func (*AuthUserAddRequest) GetName

func (x *AuthUserAddRequest) GetName() string

func (*AuthUserAddRequest) GetOptions

func (x *AuthUserAddRequest) GetOptions() *authpb.UserAddOptions

func (*AuthUserAddRequest) GetPassword

func (x *AuthUserAddRequest) GetPassword() string

func (*AuthUserAddRequest) MarshalToSizedBufferVT

func (m *AuthUserAddRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthUserAddRequest) MarshalToVT

func (m *AuthUserAddRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthUserAddRequest) MarshalVT

func (m *AuthUserAddRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthUserAddRequest) ProtoMessage

func (*AuthUserAddRequest) ProtoMessage()

func (*AuthUserAddRequest) ProtoReflect

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

func (*AuthUserAddRequest) Reset

func (x *AuthUserAddRequest) Reset()

func (*AuthUserAddRequest) SizeVT

func (m *AuthUserAddRequest) SizeVT() (n int)

func (*AuthUserAddRequest) String

func (x *AuthUserAddRequest) String() string

func (*AuthUserAddRequest) UnmarshalVT

func (m *AuthUserAddRequest) UnmarshalVT(dAtA []byte) error

type AuthUserAddResponse

type AuthUserAddResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthUserAddResponse) Descriptor deprecated

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

Deprecated: Use AuthUserAddResponse.ProtoReflect.Descriptor instead.

func (*AuthUserAddResponse) GetHeader

func (x *AuthUserAddResponse) GetHeader() *ResponseHeader

func (*AuthUserAddResponse) MarshalToSizedBufferVT

func (m *AuthUserAddResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthUserAddResponse) MarshalToVT

func (m *AuthUserAddResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthUserAddResponse) MarshalVT

func (m *AuthUserAddResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthUserAddResponse) ProtoMessage

func (*AuthUserAddResponse) ProtoMessage()

func (*AuthUserAddResponse) ProtoReflect

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

func (*AuthUserAddResponse) Reset

func (x *AuthUserAddResponse) Reset()

func (*AuthUserAddResponse) SizeVT

func (m *AuthUserAddResponse) SizeVT() (n int)

func (*AuthUserAddResponse) String

func (x *AuthUserAddResponse) String() string

func (*AuthUserAddResponse) UnmarshalVT

func (m *AuthUserAddResponse) UnmarshalVT(dAtA []byte) error

type AuthUserChangePasswordRequest

type AuthUserChangePasswordRequest struct {

	// name is the name of the user whose password is being changed.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// password is the new password for the user. Note that this field will be removed in the API layer.
	Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	// hashedPassword is the new password for the user. Note that this field will be initialized in the API layer.
	HashedPassword string `protobuf:"bytes,3,opt,name=hashedPassword,proto3" json:"hashedPassword,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthUserChangePasswordRequest) Descriptor deprecated

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

Deprecated: Use AuthUserChangePasswordRequest.ProtoReflect.Descriptor instead.

func (*AuthUserChangePasswordRequest) GetHashedPassword

func (x *AuthUserChangePasswordRequest) GetHashedPassword() string

func (*AuthUserChangePasswordRequest) GetName

func (*AuthUserChangePasswordRequest) GetPassword

func (x *AuthUserChangePasswordRequest) GetPassword() string

func (*AuthUserChangePasswordRequest) MarshalToSizedBufferVT

func (m *AuthUserChangePasswordRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthUserChangePasswordRequest) MarshalToVT

func (m *AuthUserChangePasswordRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthUserChangePasswordRequest) MarshalVT

func (m *AuthUserChangePasswordRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthUserChangePasswordRequest) ProtoMessage

func (*AuthUserChangePasswordRequest) ProtoMessage()

func (*AuthUserChangePasswordRequest) ProtoReflect

func (*AuthUserChangePasswordRequest) Reset

func (x *AuthUserChangePasswordRequest) Reset()

func (*AuthUserChangePasswordRequest) SizeVT

func (m *AuthUserChangePasswordRequest) SizeVT() (n int)

func (*AuthUserChangePasswordRequest) String

func (*AuthUserChangePasswordRequest) UnmarshalVT

func (m *AuthUserChangePasswordRequest) UnmarshalVT(dAtA []byte) error

type AuthUserChangePasswordResponse

type AuthUserChangePasswordResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthUserChangePasswordResponse) Descriptor deprecated

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

Deprecated: Use AuthUserChangePasswordResponse.ProtoReflect.Descriptor instead.

func (*AuthUserChangePasswordResponse) GetHeader

func (*AuthUserChangePasswordResponse) MarshalToSizedBufferVT

func (m *AuthUserChangePasswordResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthUserChangePasswordResponse) MarshalToVT

func (m *AuthUserChangePasswordResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthUserChangePasswordResponse) MarshalVT

func (m *AuthUserChangePasswordResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthUserChangePasswordResponse) ProtoMessage

func (*AuthUserChangePasswordResponse) ProtoMessage()

func (*AuthUserChangePasswordResponse) ProtoReflect

func (*AuthUserChangePasswordResponse) Reset

func (x *AuthUserChangePasswordResponse) Reset()

func (*AuthUserChangePasswordResponse) SizeVT

func (m *AuthUserChangePasswordResponse) SizeVT() (n int)

func (*AuthUserChangePasswordResponse) String

func (*AuthUserChangePasswordResponse) UnmarshalVT

func (m *AuthUserChangePasswordResponse) UnmarshalVT(dAtA []byte) error

type AuthUserDeleteRequest

type AuthUserDeleteRequest struct {

	// name is the name of the user to delete.
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthUserDeleteRequest) Descriptor deprecated

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

Deprecated: Use AuthUserDeleteRequest.ProtoReflect.Descriptor instead.

func (*AuthUserDeleteRequest) GetName

func (x *AuthUserDeleteRequest) GetName() string

func (*AuthUserDeleteRequest) MarshalToSizedBufferVT

func (m *AuthUserDeleteRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthUserDeleteRequest) MarshalToVT

func (m *AuthUserDeleteRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthUserDeleteRequest) MarshalVT

func (m *AuthUserDeleteRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthUserDeleteRequest) ProtoMessage

func (*AuthUserDeleteRequest) ProtoMessage()

func (*AuthUserDeleteRequest) ProtoReflect

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

func (*AuthUserDeleteRequest) Reset

func (x *AuthUserDeleteRequest) Reset()

func (*AuthUserDeleteRequest) SizeVT

func (m *AuthUserDeleteRequest) SizeVT() (n int)

func (*AuthUserDeleteRequest) String

func (x *AuthUserDeleteRequest) String() string

func (*AuthUserDeleteRequest) UnmarshalVT

func (m *AuthUserDeleteRequest) UnmarshalVT(dAtA []byte) error

type AuthUserDeleteResponse

type AuthUserDeleteResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthUserDeleteResponse) Descriptor deprecated

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

Deprecated: Use AuthUserDeleteResponse.ProtoReflect.Descriptor instead.

func (*AuthUserDeleteResponse) GetHeader

func (x *AuthUserDeleteResponse) GetHeader() *ResponseHeader

func (*AuthUserDeleteResponse) MarshalToSizedBufferVT

func (m *AuthUserDeleteResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthUserDeleteResponse) MarshalToVT

func (m *AuthUserDeleteResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthUserDeleteResponse) MarshalVT

func (m *AuthUserDeleteResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthUserDeleteResponse) ProtoMessage

func (*AuthUserDeleteResponse) ProtoMessage()

func (*AuthUserDeleteResponse) ProtoReflect

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

func (*AuthUserDeleteResponse) Reset

func (x *AuthUserDeleteResponse) Reset()

func (*AuthUserDeleteResponse) SizeVT

func (m *AuthUserDeleteResponse) SizeVT() (n int)

func (*AuthUserDeleteResponse) String

func (x *AuthUserDeleteResponse) String() string

func (*AuthUserDeleteResponse) UnmarshalVT

func (m *AuthUserDeleteResponse) UnmarshalVT(dAtA []byte) error

type AuthUserGetRequest

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

func (*AuthUserGetRequest) Descriptor deprecated

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

Deprecated: Use AuthUserGetRequest.ProtoReflect.Descriptor instead.

func (*AuthUserGetRequest) GetName

func (x *AuthUserGetRequest) GetName() string

func (*AuthUserGetRequest) MarshalToSizedBufferVT

func (m *AuthUserGetRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthUserGetRequest) MarshalToVT

func (m *AuthUserGetRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthUserGetRequest) MarshalVT

func (m *AuthUserGetRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthUserGetRequest) ProtoMessage

func (*AuthUserGetRequest) ProtoMessage()

func (*AuthUserGetRequest) ProtoReflect

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

func (*AuthUserGetRequest) Reset

func (x *AuthUserGetRequest) Reset()

func (*AuthUserGetRequest) SizeVT

func (m *AuthUserGetRequest) SizeVT() (n int)

func (*AuthUserGetRequest) String

func (x *AuthUserGetRequest) String() string

func (*AuthUserGetRequest) UnmarshalVT

func (m *AuthUserGetRequest) UnmarshalVT(dAtA []byte) error

type AuthUserGetResponse

type AuthUserGetResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	Roles  []string        `protobuf:"bytes,2,rep,name=roles,proto3" json:"roles,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthUserGetResponse) Descriptor deprecated

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

Deprecated: Use AuthUserGetResponse.ProtoReflect.Descriptor instead.

func (*AuthUserGetResponse) GetHeader

func (x *AuthUserGetResponse) GetHeader() *ResponseHeader

func (*AuthUserGetResponse) GetRoles

func (x *AuthUserGetResponse) GetRoles() []string

func (*AuthUserGetResponse) MarshalToSizedBufferVT

func (m *AuthUserGetResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthUserGetResponse) MarshalToVT

func (m *AuthUserGetResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthUserGetResponse) MarshalVT

func (m *AuthUserGetResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthUserGetResponse) ProtoMessage

func (*AuthUserGetResponse) ProtoMessage()

func (*AuthUserGetResponse) ProtoReflect

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

func (*AuthUserGetResponse) Reset

func (x *AuthUserGetResponse) Reset()

func (*AuthUserGetResponse) SizeVT

func (m *AuthUserGetResponse) SizeVT() (n int)

func (*AuthUserGetResponse) String

func (x *AuthUserGetResponse) String() string

func (*AuthUserGetResponse) UnmarshalVT

func (m *AuthUserGetResponse) UnmarshalVT(dAtA []byte) error

type AuthUserGrantRoleRequest

type AuthUserGrantRoleRequest struct {

	// user is the name of the user which should be granted a given role.
	User string `protobuf:"bytes,1,opt,name=user,proto3" json:"user,omitempty"`
	// role is the name of the role to grant to the user.
	Role string `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthUserGrantRoleRequest) Descriptor deprecated

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

Deprecated: Use AuthUserGrantRoleRequest.ProtoReflect.Descriptor instead.

func (*AuthUserGrantRoleRequest) GetRole

func (x *AuthUserGrantRoleRequest) GetRole() string

func (*AuthUserGrantRoleRequest) GetUser

func (x *AuthUserGrantRoleRequest) GetUser() string

func (*AuthUserGrantRoleRequest) MarshalToSizedBufferVT

func (m *AuthUserGrantRoleRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthUserGrantRoleRequest) MarshalToVT

func (m *AuthUserGrantRoleRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthUserGrantRoleRequest) MarshalVT

func (m *AuthUserGrantRoleRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthUserGrantRoleRequest) ProtoMessage

func (*AuthUserGrantRoleRequest) ProtoMessage()

func (*AuthUserGrantRoleRequest) ProtoReflect

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

func (*AuthUserGrantRoleRequest) Reset

func (x *AuthUserGrantRoleRequest) Reset()

func (*AuthUserGrantRoleRequest) SizeVT

func (m *AuthUserGrantRoleRequest) SizeVT() (n int)

func (*AuthUserGrantRoleRequest) String

func (x *AuthUserGrantRoleRequest) String() string

func (*AuthUserGrantRoleRequest) UnmarshalVT

func (m *AuthUserGrantRoleRequest) UnmarshalVT(dAtA []byte) error

type AuthUserGrantRoleResponse

type AuthUserGrantRoleResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthUserGrantRoleResponse) Descriptor deprecated

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

Deprecated: Use AuthUserGrantRoleResponse.ProtoReflect.Descriptor instead.

func (*AuthUserGrantRoleResponse) GetHeader

func (x *AuthUserGrantRoleResponse) GetHeader() *ResponseHeader

func (*AuthUserGrantRoleResponse) MarshalToSizedBufferVT

func (m *AuthUserGrantRoleResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthUserGrantRoleResponse) MarshalToVT

func (m *AuthUserGrantRoleResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthUserGrantRoleResponse) MarshalVT

func (m *AuthUserGrantRoleResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthUserGrantRoleResponse) ProtoMessage

func (*AuthUserGrantRoleResponse) ProtoMessage()

func (*AuthUserGrantRoleResponse) ProtoReflect

func (*AuthUserGrantRoleResponse) Reset

func (x *AuthUserGrantRoleResponse) Reset()

func (*AuthUserGrantRoleResponse) SizeVT

func (m *AuthUserGrantRoleResponse) SizeVT() (n int)

func (*AuthUserGrantRoleResponse) String

func (x *AuthUserGrantRoleResponse) String() string

func (*AuthUserGrantRoleResponse) UnmarshalVT

func (m *AuthUserGrantRoleResponse) UnmarshalVT(dAtA []byte) error

type AuthUserListRequest

type AuthUserListRequest struct {
	// contains filtered or unexported fields
}

func (*AuthUserListRequest) Descriptor deprecated

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

Deprecated: Use AuthUserListRequest.ProtoReflect.Descriptor instead.

func (*AuthUserListRequest) MarshalToSizedBufferVT

func (m *AuthUserListRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthUserListRequest) MarshalToVT

func (m *AuthUserListRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthUserListRequest) MarshalVT

func (m *AuthUserListRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthUserListRequest) ProtoMessage

func (*AuthUserListRequest) ProtoMessage()

func (*AuthUserListRequest) ProtoReflect

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

func (*AuthUserListRequest) Reset

func (x *AuthUserListRequest) Reset()

func (*AuthUserListRequest) SizeVT

func (m *AuthUserListRequest) SizeVT() (n int)

func (*AuthUserListRequest) String

func (x *AuthUserListRequest) String() string

func (*AuthUserListRequest) UnmarshalVT

func (m *AuthUserListRequest) UnmarshalVT(dAtA []byte) error

type AuthUserListResponse

type AuthUserListResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	Users  []string        `protobuf:"bytes,2,rep,name=users,proto3" json:"users,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthUserListResponse) Descriptor deprecated

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

Deprecated: Use AuthUserListResponse.ProtoReflect.Descriptor instead.

func (*AuthUserListResponse) GetHeader

func (x *AuthUserListResponse) GetHeader() *ResponseHeader

func (*AuthUserListResponse) GetUsers

func (x *AuthUserListResponse) GetUsers() []string

func (*AuthUserListResponse) MarshalToSizedBufferVT

func (m *AuthUserListResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthUserListResponse) MarshalToVT

func (m *AuthUserListResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthUserListResponse) MarshalVT

func (m *AuthUserListResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthUserListResponse) ProtoMessage

func (*AuthUserListResponse) ProtoMessage()

func (*AuthUserListResponse) ProtoReflect

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

func (*AuthUserListResponse) Reset

func (x *AuthUserListResponse) Reset()

func (*AuthUserListResponse) SizeVT

func (m *AuthUserListResponse) SizeVT() (n int)

func (*AuthUserListResponse) String

func (x *AuthUserListResponse) String() string

func (*AuthUserListResponse) UnmarshalVT

func (m *AuthUserListResponse) UnmarshalVT(dAtA []byte) error

type AuthUserRevokeRoleRequest

type AuthUserRevokeRoleRequest struct {
	Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Role string `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthUserRevokeRoleRequest) Descriptor deprecated

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

Deprecated: Use AuthUserRevokeRoleRequest.ProtoReflect.Descriptor instead.

func (*AuthUserRevokeRoleRequest) GetName

func (x *AuthUserRevokeRoleRequest) GetName() string

func (*AuthUserRevokeRoleRequest) GetRole

func (x *AuthUserRevokeRoleRequest) GetRole() string

func (*AuthUserRevokeRoleRequest) MarshalToSizedBufferVT

func (m *AuthUserRevokeRoleRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthUserRevokeRoleRequest) MarshalToVT

func (m *AuthUserRevokeRoleRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthUserRevokeRoleRequest) MarshalVT

func (m *AuthUserRevokeRoleRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthUserRevokeRoleRequest) ProtoMessage

func (*AuthUserRevokeRoleRequest) ProtoMessage()

func (*AuthUserRevokeRoleRequest) ProtoReflect

func (*AuthUserRevokeRoleRequest) Reset

func (x *AuthUserRevokeRoleRequest) Reset()

func (*AuthUserRevokeRoleRequest) SizeVT

func (m *AuthUserRevokeRoleRequest) SizeVT() (n int)

func (*AuthUserRevokeRoleRequest) String

func (x *AuthUserRevokeRoleRequest) String() string

func (*AuthUserRevokeRoleRequest) UnmarshalVT

func (m *AuthUserRevokeRoleRequest) UnmarshalVT(dAtA []byte) error

type AuthUserRevokeRoleResponse

type AuthUserRevokeRoleResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthUserRevokeRoleResponse) Descriptor deprecated

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

Deprecated: Use AuthUserRevokeRoleResponse.ProtoReflect.Descriptor instead.

func (*AuthUserRevokeRoleResponse) GetHeader

func (*AuthUserRevokeRoleResponse) MarshalToSizedBufferVT

func (m *AuthUserRevokeRoleResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthUserRevokeRoleResponse) MarshalToVT

func (m *AuthUserRevokeRoleResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthUserRevokeRoleResponse) MarshalVT

func (m *AuthUserRevokeRoleResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthUserRevokeRoleResponse) ProtoMessage

func (*AuthUserRevokeRoleResponse) ProtoMessage()

func (*AuthUserRevokeRoleResponse) ProtoReflect

func (*AuthUserRevokeRoleResponse) Reset

func (x *AuthUserRevokeRoleResponse) Reset()

func (*AuthUserRevokeRoleResponse) SizeVT

func (m *AuthUserRevokeRoleResponse) SizeVT() (n int)

func (*AuthUserRevokeRoleResponse) String

func (x *AuthUserRevokeRoleResponse) String() string

func (*AuthUserRevokeRoleResponse) UnmarshalVT

func (m *AuthUserRevokeRoleResponse) UnmarshalVT(dAtA []byte) error

type AuthenticateRequest

type AuthenticateRequest struct {
	Name     string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Password string `protobuf:"bytes,2,opt,name=password,proto3" json:"password,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthenticateRequest) Descriptor deprecated

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

Deprecated: Use AuthenticateRequest.ProtoReflect.Descriptor instead.

func (*AuthenticateRequest) GetName

func (x *AuthenticateRequest) GetName() string

func (*AuthenticateRequest) GetPassword

func (x *AuthenticateRequest) GetPassword() string

func (*AuthenticateRequest) MarshalToSizedBufferVT

func (m *AuthenticateRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthenticateRequest) MarshalToVT

func (m *AuthenticateRequest) MarshalToVT(dAtA []byte) (int, error)

func (*AuthenticateRequest) MarshalVT

func (m *AuthenticateRequest) MarshalVT() (dAtA []byte, err error)

func (*AuthenticateRequest) ProtoMessage

func (*AuthenticateRequest) ProtoMessage()

func (*AuthenticateRequest) ProtoReflect

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

func (*AuthenticateRequest) Reset

func (x *AuthenticateRequest) Reset()

func (*AuthenticateRequest) SizeVT

func (m *AuthenticateRequest) SizeVT() (n int)

func (*AuthenticateRequest) String

func (x *AuthenticateRequest) String() string

func (*AuthenticateRequest) UnmarshalVT

func (m *AuthenticateRequest) UnmarshalVT(dAtA []byte) error

type AuthenticateResponse

type AuthenticateResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// token is an authorized token that can be used in succeeding RPCs
	Token string `protobuf:"bytes,2,opt,name=token,proto3" json:"token,omitempty"`
	// contains filtered or unexported fields
}

func (*AuthenticateResponse) Descriptor deprecated

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

Deprecated: Use AuthenticateResponse.ProtoReflect.Descriptor instead.

func (*AuthenticateResponse) GetHeader

func (x *AuthenticateResponse) GetHeader() *ResponseHeader

func (*AuthenticateResponse) GetToken

func (x *AuthenticateResponse) GetToken() string

func (*AuthenticateResponse) MarshalToSizedBufferVT

func (m *AuthenticateResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*AuthenticateResponse) MarshalToVT

func (m *AuthenticateResponse) MarshalToVT(dAtA []byte) (int, error)

func (*AuthenticateResponse) MarshalVT

func (m *AuthenticateResponse) MarshalVT() (dAtA []byte, err error)

func (*AuthenticateResponse) ProtoMessage

func (*AuthenticateResponse) ProtoMessage()

func (*AuthenticateResponse) ProtoReflect

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

func (*AuthenticateResponse) Reset

func (x *AuthenticateResponse) Reset()

func (*AuthenticateResponse) SizeVT

func (m *AuthenticateResponse) SizeVT() (n int)

func (*AuthenticateResponse) String

func (x *AuthenticateResponse) String() string

func (*AuthenticateResponse) UnmarshalVT

func (m *AuthenticateResponse) UnmarshalVT(dAtA []byte) error

type CompactionRequest

type CompactionRequest struct {

	// revision is the key-value store revision for the compaction operation.
	Revision int64 `protobuf:"varint,1,opt,name=revision,proto3" json:"revision,omitempty"`
	// physical is set so the RPC will wait until the compaction is physically
	// applied to the local database such that compacted entries are totally
	// removed from the backend database.
	Physical bool `protobuf:"varint,2,opt,name=physical,proto3" json:"physical,omitempty"`
	// contains filtered or unexported fields
}

CompactionRequest compacts the key-value store up to a given revision. All superseded keys with a revision less than the compaction revision will be removed.

func (*CompactionRequest) Descriptor deprecated

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

Deprecated: Use CompactionRequest.ProtoReflect.Descriptor instead.

func (*CompactionRequest) GetPhysical

func (x *CompactionRequest) GetPhysical() bool

func (*CompactionRequest) GetRevision

func (x *CompactionRequest) GetRevision() int64

func (*CompactionRequest) MarshalToSizedBufferVT

func (m *CompactionRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*CompactionRequest) MarshalToVT

func (m *CompactionRequest) MarshalToVT(dAtA []byte) (int, error)

func (*CompactionRequest) MarshalVT

func (m *CompactionRequest) MarshalVT() (dAtA []byte, err error)

func (*CompactionRequest) ProtoMessage

func (*CompactionRequest) ProtoMessage()

func (*CompactionRequest) ProtoReflect

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

func (*CompactionRequest) Reset

func (x *CompactionRequest) Reset()

func (*CompactionRequest) SizeVT

func (m *CompactionRequest) SizeVT() (n int)

func (*CompactionRequest) String

func (x *CompactionRequest) String() string

func (*CompactionRequest) UnmarshalVT

func (m *CompactionRequest) UnmarshalVT(dAtA []byte) error

type CompactionResponse

type CompactionResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*CompactionResponse) Descriptor deprecated

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

Deprecated: Use CompactionResponse.ProtoReflect.Descriptor instead.

func (*CompactionResponse) GetHeader

func (x *CompactionResponse) GetHeader() *ResponseHeader

func (*CompactionResponse) MarshalToSizedBufferVT

func (m *CompactionResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*CompactionResponse) MarshalToVT

func (m *CompactionResponse) MarshalToVT(dAtA []byte) (int, error)

func (*CompactionResponse) MarshalVT

func (m *CompactionResponse) MarshalVT() (dAtA []byte, err error)

func (*CompactionResponse) ProtoMessage

func (*CompactionResponse) ProtoMessage()

func (*CompactionResponse) ProtoReflect

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

func (*CompactionResponse) Reset

func (x *CompactionResponse) Reset()

func (*CompactionResponse) SizeVT

func (m *CompactionResponse) SizeVT() (n int)

func (*CompactionResponse) String

func (x *CompactionResponse) String() string

func (*CompactionResponse) UnmarshalVT

func (m *CompactionResponse) UnmarshalVT(dAtA []byte) error

type Compare

type Compare struct {

	// result is logical comparison operation for this comparison.
	Result Compare_CompareResult `protobuf:"varint,1,opt,name=result,proto3,enum=etcdserverpb.Compare_CompareResult" json:"result,omitempty"`
	// target is the key-value field to inspect for the comparison.
	Target Compare_CompareTarget `protobuf:"varint,2,opt,name=target,proto3,enum=etcdserverpb.Compare_CompareTarget" json:"target,omitempty"`
	// key is the subject key for the comparison operation.
	Key []byte `protobuf:"bytes,3,opt,name=key,proto3" json:"key,omitempty"`
	// Types that are assignable to TargetUnion:
	//
	//	*Compare_Version
	//	*Compare_CreateRevision
	//	*Compare_ModRevision
	//	*Compare_Value
	//	*Compare_Lease
	TargetUnion isCompare_TargetUnion `protobuf_oneof:"target_union"`
	// range_end compares the given target to all keys in the range [key, range_end).
	// See RangeRequest for more details on key ranges.
	RangeEnd []byte `protobuf:"bytes,64,opt,name=range_end,json=rangeEnd,proto3" json:"range_end,omitempty"` // TODO: fill out with most of the rest of RangeRequest fields when needed.
	// contains filtered or unexported fields
}

func (*Compare) Descriptor deprecated

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

Deprecated: Use Compare.ProtoReflect.Descriptor instead.

func (*Compare) GetCreateRevision

func (x *Compare) GetCreateRevision() int64

func (*Compare) GetKey

func (x *Compare) GetKey() []byte

func (*Compare) GetLease

func (x *Compare) GetLease() int64

func (*Compare) GetModRevision

func (x *Compare) GetModRevision() int64

func (*Compare) GetRangeEnd

func (x *Compare) GetRangeEnd() []byte

func (*Compare) GetResult

func (x *Compare) GetResult() Compare_CompareResult

func (*Compare) GetTarget

func (x *Compare) GetTarget() Compare_CompareTarget

func (*Compare) GetTargetUnion

func (m *Compare) GetTargetUnion() isCompare_TargetUnion

func (*Compare) GetValue

func (x *Compare) GetValue() []byte

func (*Compare) GetVersion

func (x *Compare) GetVersion() int64

func (*Compare) MarshalToSizedBufferVT

func (m *Compare) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Compare) MarshalToVT

func (m *Compare) MarshalToVT(dAtA []byte) (int, error)

func (*Compare) MarshalVT

func (m *Compare) MarshalVT() (dAtA []byte, err error)

func (*Compare) ProtoMessage

func (*Compare) ProtoMessage()

func (*Compare) ProtoReflect

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

func (*Compare) Reset

func (x *Compare) Reset()

func (*Compare) SizeVT

func (m *Compare) SizeVT() (n int)

func (*Compare) String

func (x *Compare) String() string

func (*Compare) UnmarshalVT

func (m *Compare) UnmarshalVT(dAtA []byte) error

type Compare_CompareResult

type Compare_CompareResult int32
const (
	Compare_EQUAL     Compare_CompareResult = 0
	Compare_GREATER   Compare_CompareResult = 1
	Compare_LESS      Compare_CompareResult = 2
	Compare_NOT_EQUAL Compare_CompareResult = 3
)

func (Compare_CompareResult) Descriptor

func (Compare_CompareResult) Enum

func (Compare_CompareResult) EnumDescriptor deprecated

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

Deprecated: Use Compare_CompareResult.Descriptor instead.

func (Compare_CompareResult) Number

func (Compare_CompareResult) String

func (x Compare_CompareResult) String() string

func (Compare_CompareResult) Type

type Compare_CompareTarget

type Compare_CompareTarget int32
const (
	Compare_VERSION Compare_CompareTarget = 0
	Compare_CREATE  Compare_CompareTarget = 1
	Compare_MOD     Compare_CompareTarget = 2
	Compare_VALUE   Compare_CompareTarget = 3
	Compare_LEASE   Compare_CompareTarget = 4
)

func (Compare_CompareTarget) Descriptor

func (Compare_CompareTarget) Enum

func (Compare_CompareTarget) EnumDescriptor deprecated

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

Deprecated: Use Compare_CompareTarget.Descriptor instead.

func (Compare_CompareTarget) Number

func (Compare_CompareTarget) String

func (x Compare_CompareTarget) String() string

func (Compare_CompareTarget) Type

type Compare_CreateRevision

type Compare_CreateRevision struct {
	// create_revision is the creation revision of the given key
	CreateRevision int64 `protobuf:"varint,5,opt,name=create_revision,json=createRevision,proto3,oneof"`
}

func (*Compare_CreateRevision) MarshalToSizedBufferVT

func (m *Compare_CreateRevision) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Compare_CreateRevision) MarshalToVT

func (m *Compare_CreateRevision) MarshalToVT(dAtA []byte) (int, error)

func (*Compare_CreateRevision) SizeVT

func (m *Compare_CreateRevision) SizeVT() (n int)

type Compare_Lease

type Compare_Lease struct {
	// lease is the lease id of the given key.
	Lease int64 `protobuf:"varint,8,opt,name=lease,proto3,oneof"` // leave room for more target_union field tags, jump to 64
}

func (*Compare_Lease) MarshalToSizedBufferVT

func (m *Compare_Lease) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Compare_Lease) MarshalToVT

func (m *Compare_Lease) MarshalToVT(dAtA []byte) (int, error)

func (*Compare_Lease) SizeVT

func (m *Compare_Lease) SizeVT() (n int)

type Compare_ModRevision

type Compare_ModRevision struct {
	// mod_revision is the last modified revision of the given key.
	ModRevision int64 `protobuf:"varint,6,opt,name=mod_revision,json=modRevision,proto3,oneof"`
}

func (*Compare_ModRevision) MarshalToSizedBufferVT

func (m *Compare_ModRevision) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Compare_ModRevision) MarshalToVT

func (m *Compare_ModRevision) MarshalToVT(dAtA []byte) (int, error)

func (*Compare_ModRevision) SizeVT

func (m *Compare_ModRevision) SizeVT() (n int)

type Compare_Value

type Compare_Value struct {
	// value is the value of the given key, in bytes.
	Value []byte `protobuf:"bytes,7,opt,name=value,proto3,oneof"`
}

func (*Compare_Value) MarshalToSizedBufferVT

func (m *Compare_Value) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Compare_Value) MarshalToVT

func (m *Compare_Value) MarshalToVT(dAtA []byte) (int, error)

func (*Compare_Value) SizeVT

func (m *Compare_Value) SizeVT() (n int)

type Compare_Version

type Compare_Version struct {
	// version is the version of the given key
	Version int64 `protobuf:"varint,4,opt,name=version,proto3,oneof"`
}

func (*Compare_Version) MarshalToSizedBufferVT

func (m *Compare_Version) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Compare_Version) MarshalToVT

func (m *Compare_Version) MarshalToVT(dAtA []byte) (int, error)

func (*Compare_Version) SizeVT

func (m *Compare_Version) SizeVT() (n int)

type DefragmentRequest

type DefragmentRequest struct {
	// contains filtered or unexported fields
}

func (*DefragmentRequest) Descriptor deprecated

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

Deprecated: Use DefragmentRequest.ProtoReflect.Descriptor instead.

func (*DefragmentRequest) MarshalToSizedBufferVT

func (m *DefragmentRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DefragmentRequest) MarshalToVT

func (m *DefragmentRequest) MarshalToVT(dAtA []byte) (int, error)

func (*DefragmentRequest) MarshalVT

func (m *DefragmentRequest) MarshalVT() (dAtA []byte, err error)

func (*DefragmentRequest) ProtoMessage

func (*DefragmentRequest) ProtoMessage()

func (*DefragmentRequest) ProtoReflect

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

func (*DefragmentRequest) Reset

func (x *DefragmentRequest) Reset()

func (*DefragmentRequest) SizeVT

func (m *DefragmentRequest) SizeVT() (n int)

func (*DefragmentRequest) String

func (x *DefragmentRequest) String() string

func (*DefragmentRequest) UnmarshalVT

func (m *DefragmentRequest) UnmarshalVT(dAtA []byte) error

type DefragmentResponse

type DefragmentResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*DefragmentResponse) Descriptor deprecated

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

Deprecated: Use DefragmentResponse.ProtoReflect.Descriptor instead.

func (*DefragmentResponse) GetHeader

func (x *DefragmentResponse) GetHeader() *ResponseHeader

func (*DefragmentResponse) MarshalToSizedBufferVT

func (m *DefragmentResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DefragmentResponse) MarshalToVT

func (m *DefragmentResponse) MarshalToVT(dAtA []byte) (int, error)

func (*DefragmentResponse) MarshalVT

func (m *DefragmentResponse) MarshalVT() (dAtA []byte, err error)

func (*DefragmentResponse) ProtoMessage

func (*DefragmentResponse) ProtoMessage()

func (*DefragmentResponse) ProtoReflect

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

func (*DefragmentResponse) Reset

func (x *DefragmentResponse) Reset()

func (*DefragmentResponse) SizeVT

func (m *DefragmentResponse) SizeVT() (n int)

func (*DefragmentResponse) String

func (x *DefragmentResponse) String() string

func (*DefragmentResponse) UnmarshalVT

func (m *DefragmentResponse) UnmarshalVT(dAtA []byte) error

type DeleteRangeRequest

type DeleteRangeRequest struct {

	// key is the first key to delete in the range.
	Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// range_end is the key following the last key to delete for the range [key, range_end).
	// If range_end is not given, the range is defined to contain only the key argument.
	// If range_end is one bit larger than the given key, then the range is all the keys
	// with the prefix (the given key).
	// If range_end is '\0', the range is all keys greater than or equal to the key argument.
	RangeEnd []byte `protobuf:"bytes,2,opt,name=range_end,json=rangeEnd,proto3" json:"range_end,omitempty"`
	// If prev_kv is set, etcd gets the previous key-value pairs before deleting it.
	// The previous key-value pairs will be returned in the delete response.
	PrevKv bool `protobuf:"varint,3,opt,name=prev_kv,json=prevKv,proto3" json:"prev_kv,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteRangeRequest) Descriptor deprecated

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

Deprecated: Use DeleteRangeRequest.ProtoReflect.Descriptor instead.

func (*DeleteRangeRequest) GetKey

func (x *DeleteRangeRequest) GetKey() []byte

func (*DeleteRangeRequest) GetPrevKv

func (x *DeleteRangeRequest) GetPrevKv() bool

func (*DeleteRangeRequest) GetRangeEnd

func (x *DeleteRangeRequest) GetRangeEnd() []byte

func (*DeleteRangeRequest) MarshalToSizedBufferVT

func (m *DeleteRangeRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DeleteRangeRequest) MarshalToVT

func (m *DeleteRangeRequest) MarshalToVT(dAtA []byte) (int, error)

func (*DeleteRangeRequest) MarshalVT

func (m *DeleteRangeRequest) MarshalVT() (dAtA []byte, err error)

func (*DeleteRangeRequest) ProtoMessage

func (*DeleteRangeRequest) ProtoMessage()

func (*DeleteRangeRequest) ProtoReflect

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

func (*DeleteRangeRequest) Reset

func (x *DeleteRangeRequest) Reset()

func (*DeleteRangeRequest) SizeVT

func (m *DeleteRangeRequest) SizeVT() (n int)

func (*DeleteRangeRequest) String

func (x *DeleteRangeRequest) String() string

func (*DeleteRangeRequest) UnmarshalVT

func (m *DeleteRangeRequest) UnmarshalVT(dAtA []byte) error

type DeleteRangeResponse

type DeleteRangeResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// deleted is the number of keys deleted by the delete range request.
	Deleted int64 `protobuf:"varint,2,opt,name=deleted,proto3" json:"deleted,omitempty"`
	// if prev_kv is set in the request, the previous key-value pairs will be returned.
	PrevKvs []*mvccpb.KeyValue `protobuf:"bytes,3,rep,name=prev_kvs,json=prevKvs,proto3" json:"prev_kvs,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteRangeResponse) Descriptor deprecated

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

Deprecated: Use DeleteRangeResponse.ProtoReflect.Descriptor instead.

func (*DeleteRangeResponse) GetDeleted

func (x *DeleteRangeResponse) GetDeleted() int64

func (*DeleteRangeResponse) GetHeader

func (x *DeleteRangeResponse) GetHeader() *ResponseHeader

func (*DeleteRangeResponse) GetPrevKvs

func (x *DeleteRangeResponse) GetPrevKvs() []*mvccpb.KeyValue

func (*DeleteRangeResponse) MarshalToSizedBufferVT

func (m *DeleteRangeResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DeleteRangeResponse) MarshalToVT

func (m *DeleteRangeResponse) MarshalToVT(dAtA []byte) (int, error)

func (*DeleteRangeResponse) MarshalVT

func (m *DeleteRangeResponse) MarshalVT() (dAtA []byte, err error)

func (*DeleteRangeResponse) ProtoMessage

func (*DeleteRangeResponse) ProtoMessage()

func (*DeleteRangeResponse) ProtoReflect

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

func (*DeleteRangeResponse) Reset

func (x *DeleteRangeResponse) Reset()

func (*DeleteRangeResponse) SizeVT

func (m *DeleteRangeResponse) SizeVT() (n int)

func (*DeleteRangeResponse) String

func (x *DeleteRangeResponse) String() string

func (*DeleteRangeResponse) UnmarshalVT

func (m *DeleteRangeResponse) UnmarshalVT(dAtA []byte) error

type DowngradeRequest

type DowngradeRequest struct {

	// action is the kind of downgrade request to issue. The action may
	// VALIDATE the target version, DOWNGRADE the cluster version,
	// or CANCEL the current downgrading job.
	Action DowngradeRequest_DowngradeAction `protobuf:"varint,1,opt,name=action,proto3,enum=etcdserverpb.DowngradeRequest_DowngradeAction" json:"action,omitempty"`
	// version is the target version to downgrade.
	Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*DowngradeRequest) Descriptor deprecated

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

Deprecated: Use DowngradeRequest.ProtoReflect.Descriptor instead.

func (*DowngradeRequest) GetAction

func (*DowngradeRequest) GetVersion

func (x *DowngradeRequest) GetVersion() string

func (*DowngradeRequest) MarshalToSizedBufferVT

func (m *DowngradeRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DowngradeRequest) MarshalToVT

func (m *DowngradeRequest) MarshalToVT(dAtA []byte) (int, error)

func (*DowngradeRequest) MarshalVT

func (m *DowngradeRequest) MarshalVT() (dAtA []byte, err error)

func (*DowngradeRequest) ProtoMessage

func (*DowngradeRequest) ProtoMessage()

func (*DowngradeRequest) ProtoReflect

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

func (*DowngradeRequest) Reset

func (x *DowngradeRequest) Reset()

func (*DowngradeRequest) SizeVT

func (m *DowngradeRequest) SizeVT() (n int)

func (*DowngradeRequest) String

func (x *DowngradeRequest) String() string

func (*DowngradeRequest) UnmarshalVT

func (m *DowngradeRequest) UnmarshalVT(dAtA []byte) error

type DowngradeRequest_DowngradeAction

type DowngradeRequest_DowngradeAction int32
const (
	DowngradeRequest_VALIDATE DowngradeRequest_DowngradeAction = 0
	DowngradeRequest_ENABLE   DowngradeRequest_DowngradeAction = 1
	DowngradeRequest_CANCEL   DowngradeRequest_DowngradeAction = 2
)

func (DowngradeRequest_DowngradeAction) Descriptor

func (DowngradeRequest_DowngradeAction) Enum

func (DowngradeRequest_DowngradeAction) EnumDescriptor deprecated

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

Deprecated: Use DowngradeRequest_DowngradeAction.Descriptor instead.

func (DowngradeRequest_DowngradeAction) Number

func (DowngradeRequest_DowngradeAction) String

func (DowngradeRequest_DowngradeAction) Type

type DowngradeResponse

type DowngradeResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// version is the current cluster version.
	Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	// contains filtered or unexported fields
}

func (*DowngradeResponse) Descriptor deprecated

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

Deprecated: Use DowngradeResponse.ProtoReflect.Descriptor instead.

func (*DowngradeResponse) GetHeader

func (x *DowngradeResponse) GetHeader() *ResponseHeader

func (*DowngradeResponse) GetVersion

func (x *DowngradeResponse) GetVersion() string

func (*DowngradeResponse) MarshalToSizedBufferVT

func (m *DowngradeResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*DowngradeResponse) MarshalToVT

func (m *DowngradeResponse) MarshalToVT(dAtA []byte) (int, error)

func (*DowngradeResponse) MarshalVT

func (m *DowngradeResponse) MarshalVT() (dAtA []byte, err error)

func (*DowngradeResponse) ProtoMessage

func (*DowngradeResponse) ProtoMessage()

func (*DowngradeResponse) ProtoReflect

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

func (*DowngradeResponse) Reset

func (x *DowngradeResponse) Reset()

func (*DowngradeResponse) SizeVT

func (m *DowngradeResponse) SizeVT() (n int)

func (*DowngradeResponse) String

func (x *DowngradeResponse) String() string

func (*DowngradeResponse) UnmarshalVT

func (m *DowngradeResponse) UnmarshalVT(dAtA []byte) error

type HashKVRequest

type HashKVRequest struct {

	// revision is the key-value store revision for the hash operation.
	Revision int64 `protobuf:"varint,1,opt,name=revision,proto3" json:"revision,omitempty"`
	// contains filtered or unexported fields
}

func (*HashKVRequest) Descriptor deprecated

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

Deprecated: Use HashKVRequest.ProtoReflect.Descriptor instead.

func (*HashKVRequest) GetRevision

func (x *HashKVRequest) GetRevision() int64

func (*HashKVRequest) MarshalToSizedBufferVT

func (m *HashKVRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*HashKVRequest) MarshalToVT

func (m *HashKVRequest) MarshalToVT(dAtA []byte) (int, error)

func (*HashKVRequest) MarshalVT

func (m *HashKVRequest) MarshalVT() (dAtA []byte, err error)

func (*HashKVRequest) ProtoMessage

func (*HashKVRequest) ProtoMessage()

func (*HashKVRequest) ProtoReflect

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

func (*HashKVRequest) Reset

func (x *HashKVRequest) Reset()

func (*HashKVRequest) SizeVT

func (m *HashKVRequest) SizeVT() (n int)

func (*HashKVRequest) String

func (x *HashKVRequest) String() string

func (*HashKVRequest) UnmarshalVT

func (m *HashKVRequest) UnmarshalVT(dAtA []byte) error

type HashKVResponse

type HashKVResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// hash is the hash value computed from the responding member's MVCC keys up to a given revision.
	Hash uint32 `protobuf:"varint,2,opt,name=hash,proto3" json:"hash,omitempty"`
	// compact_revision is the compacted revision of key-value store when hash begins.
	CompactRevision int64 `protobuf:"varint,3,opt,name=compact_revision,json=compactRevision,proto3" json:"compact_revision,omitempty"`
	// contains filtered or unexported fields
}

func (*HashKVResponse) Descriptor deprecated

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

Deprecated: Use HashKVResponse.ProtoReflect.Descriptor instead.

func (*HashKVResponse) GetCompactRevision

func (x *HashKVResponse) GetCompactRevision() int64

func (*HashKVResponse) GetHash

func (x *HashKVResponse) GetHash() uint32

func (*HashKVResponse) GetHeader

func (x *HashKVResponse) GetHeader() *ResponseHeader

func (*HashKVResponse) MarshalToSizedBufferVT

func (m *HashKVResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*HashKVResponse) MarshalToVT

func (m *HashKVResponse) MarshalToVT(dAtA []byte) (int, error)

func (*HashKVResponse) MarshalVT

func (m *HashKVResponse) MarshalVT() (dAtA []byte, err error)

func (*HashKVResponse) ProtoMessage

func (*HashKVResponse) ProtoMessage()

func (*HashKVResponse) ProtoReflect

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

func (*HashKVResponse) Reset

func (x *HashKVResponse) Reset()

func (*HashKVResponse) SizeVT

func (m *HashKVResponse) SizeVT() (n int)

func (*HashKVResponse) String

func (x *HashKVResponse) String() string

func (*HashKVResponse) UnmarshalVT

func (m *HashKVResponse) UnmarshalVT(dAtA []byte) error

type HashRequest

type HashRequest struct {
	// contains filtered or unexported fields
}

func (*HashRequest) Descriptor deprecated

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

Deprecated: Use HashRequest.ProtoReflect.Descriptor instead.

func (*HashRequest) MarshalToSizedBufferVT

func (m *HashRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*HashRequest) MarshalToVT

func (m *HashRequest) MarshalToVT(dAtA []byte) (int, error)

func (*HashRequest) MarshalVT

func (m *HashRequest) MarshalVT() (dAtA []byte, err error)

func (*HashRequest) ProtoMessage

func (*HashRequest) ProtoMessage()

func (*HashRequest) ProtoReflect

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

func (*HashRequest) Reset

func (x *HashRequest) Reset()

func (*HashRequest) SizeVT

func (m *HashRequest) SizeVT() (n int)

func (*HashRequest) String

func (x *HashRequest) String() string

func (*HashRequest) UnmarshalVT

func (m *HashRequest) UnmarshalVT(dAtA []byte) error

type HashResponse

type HashResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// hash is the hash value computed from the responding member's KV's backend.
	Hash uint32 `protobuf:"varint,2,opt,name=hash,proto3" json:"hash,omitempty"`
	// contains filtered or unexported fields
}

func (*HashResponse) Descriptor deprecated

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

Deprecated: Use HashResponse.ProtoReflect.Descriptor instead.

func (*HashResponse) GetHash

func (x *HashResponse) GetHash() uint32

func (*HashResponse) GetHeader

func (x *HashResponse) GetHeader() *ResponseHeader

func (*HashResponse) MarshalToSizedBufferVT

func (m *HashResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*HashResponse) MarshalToVT

func (m *HashResponse) MarshalToVT(dAtA []byte) (int, error)

func (*HashResponse) MarshalVT

func (m *HashResponse) MarshalVT() (dAtA []byte, err error)

func (*HashResponse) ProtoMessage

func (*HashResponse) ProtoMessage()

func (*HashResponse) ProtoReflect

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

func (*HashResponse) Reset

func (x *HashResponse) Reset()

func (*HashResponse) SizeVT

func (m *HashResponse) SizeVT() (n int)

func (*HashResponse) String

func (x *HashResponse) String() string

func (*HashResponse) UnmarshalVT

func (m *HashResponse) UnmarshalVT(dAtA []byte) error

type LeaseCheckpoint

type LeaseCheckpoint struct {

	// ID is the lease ID to checkpoint.
	ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
	// Remaining_TTL is the remaining time until expiry of the lease.
	Remaining_TTL int64 `protobuf:"varint,2,opt,name=remaining_TTL,json=remainingTTL,proto3" json:"remaining_TTL,omitempty"`
	// contains filtered or unexported fields
}

func (*LeaseCheckpoint) Descriptor deprecated

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

Deprecated: Use LeaseCheckpoint.ProtoReflect.Descriptor instead.

func (*LeaseCheckpoint) GetID

func (x *LeaseCheckpoint) GetID() int64

func (*LeaseCheckpoint) GetRemaining_TTL

func (x *LeaseCheckpoint) GetRemaining_TTL() int64

func (*LeaseCheckpoint) MarshalToSizedBufferVT

func (m *LeaseCheckpoint) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*LeaseCheckpoint) MarshalToVT

func (m *LeaseCheckpoint) MarshalToVT(dAtA []byte) (int, error)

func (*LeaseCheckpoint) MarshalVT

func (m *LeaseCheckpoint) MarshalVT() (dAtA []byte, err error)

func (*LeaseCheckpoint) ProtoMessage

func (*LeaseCheckpoint) ProtoMessage()

func (*LeaseCheckpoint) ProtoReflect

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

func (*LeaseCheckpoint) Reset

func (x *LeaseCheckpoint) Reset()

func (*LeaseCheckpoint) SizeVT

func (m *LeaseCheckpoint) SizeVT() (n int)

func (*LeaseCheckpoint) String

func (x *LeaseCheckpoint) String() string

func (*LeaseCheckpoint) UnmarshalVT

func (m *LeaseCheckpoint) UnmarshalVT(dAtA []byte) error

type LeaseCheckpointRequest

type LeaseCheckpointRequest struct {
	Checkpoints []*LeaseCheckpoint `protobuf:"bytes,1,rep,name=checkpoints,proto3" json:"checkpoints,omitempty"`
	// contains filtered or unexported fields
}

func (*LeaseCheckpointRequest) Descriptor deprecated

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

Deprecated: Use LeaseCheckpointRequest.ProtoReflect.Descriptor instead.

func (*LeaseCheckpointRequest) GetCheckpoints

func (x *LeaseCheckpointRequest) GetCheckpoints() []*LeaseCheckpoint

func (*LeaseCheckpointRequest) MarshalToSizedBufferVT

func (m *LeaseCheckpointRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*LeaseCheckpointRequest) MarshalToVT

func (m *LeaseCheckpointRequest) MarshalToVT(dAtA []byte) (int, error)

func (*LeaseCheckpointRequest) MarshalVT

func (m *LeaseCheckpointRequest) MarshalVT() (dAtA []byte, err error)

func (*LeaseCheckpointRequest) ProtoMessage

func (*LeaseCheckpointRequest) ProtoMessage()

func (*LeaseCheckpointRequest) ProtoReflect

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

func (*LeaseCheckpointRequest) Reset

func (x *LeaseCheckpointRequest) Reset()

func (*LeaseCheckpointRequest) SizeVT

func (m *LeaseCheckpointRequest) SizeVT() (n int)

func (*LeaseCheckpointRequest) String

func (x *LeaseCheckpointRequest) String() string

func (*LeaseCheckpointRequest) UnmarshalVT

func (m *LeaseCheckpointRequest) UnmarshalVT(dAtA []byte) error

type LeaseCheckpointResponse

type LeaseCheckpointResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*LeaseCheckpointResponse) Descriptor deprecated

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

Deprecated: Use LeaseCheckpointResponse.ProtoReflect.Descriptor instead.

func (*LeaseCheckpointResponse) GetHeader

func (x *LeaseCheckpointResponse) GetHeader() *ResponseHeader

func (*LeaseCheckpointResponse) MarshalToSizedBufferVT

func (m *LeaseCheckpointResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*LeaseCheckpointResponse) MarshalToVT

func (m *LeaseCheckpointResponse) MarshalToVT(dAtA []byte) (int, error)

func (*LeaseCheckpointResponse) MarshalVT

func (m *LeaseCheckpointResponse) MarshalVT() (dAtA []byte, err error)

func (*LeaseCheckpointResponse) ProtoMessage

func (*LeaseCheckpointResponse) ProtoMessage()

func (*LeaseCheckpointResponse) ProtoReflect

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

func (*LeaseCheckpointResponse) Reset

func (x *LeaseCheckpointResponse) Reset()

func (*LeaseCheckpointResponse) SizeVT

func (m *LeaseCheckpointResponse) SizeVT() (n int)

func (*LeaseCheckpointResponse) String

func (x *LeaseCheckpointResponse) String() string

func (*LeaseCheckpointResponse) UnmarshalVT

func (m *LeaseCheckpointResponse) UnmarshalVT(dAtA []byte) error

type LeaseGrantRequest

type LeaseGrantRequest struct {

	// TTL is the advisory time-to-live in seconds. Expired lease will return -1.
	TTL int64 `protobuf:"varint,1,opt,name=TTL,proto3" json:"TTL,omitempty"`
	// ID is the requested ID for the lease. If ID is set to 0, the lessor chooses an ID.
	ID int64 `protobuf:"varint,2,opt,name=ID,proto3" json:"ID,omitempty"`
	// contains filtered or unexported fields
}

func (*LeaseGrantRequest) Descriptor deprecated

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

Deprecated: Use LeaseGrantRequest.ProtoReflect.Descriptor instead.

func (*LeaseGrantRequest) GetID

func (x *LeaseGrantRequest) GetID() int64

func (*LeaseGrantRequest) GetTTL

func (x *LeaseGrantRequest) GetTTL() int64

func (*LeaseGrantRequest) MarshalToSizedBufferVT

func (m *LeaseGrantRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*LeaseGrantRequest) MarshalToVT

func (m *LeaseGrantRequest) MarshalToVT(dAtA []byte) (int, error)

func (*LeaseGrantRequest) MarshalVT

func (m *LeaseGrantRequest) MarshalVT() (dAtA []byte, err error)

func (*LeaseGrantRequest) ProtoMessage

func (*LeaseGrantRequest) ProtoMessage()

func (*LeaseGrantRequest) ProtoReflect

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

func (*LeaseGrantRequest) Reset

func (x *LeaseGrantRequest) Reset()

func (*LeaseGrantRequest) SizeVT

func (m *LeaseGrantRequest) SizeVT() (n int)

func (*LeaseGrantRequest) String

func (x *LeaseGrantRequest) String() string

func (*LeaseGrantRequest) UnmarshalVT

func (m *LeaseGrantRequest) UnmarshalVT(dAtA []byte) error

type LeaseGrantResponse

type LeaseGrantResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// ID is the lease ID for the granted lease.
	ID int64 `protobuf:"varint,2,opt,name=ID,proto3" json:"ID,omitempty"`
	// TTL is the server chosen lease time-to-live in seconds.
	TTL   int64  `protobuf:"varint,3,opt,name=TTL,proto3" json:"TTL,omitempty"`
	Error string `protobuf:"bytes,4,opt,name=error,proto3" json:"error,omitempty"`
	// contains filtered or unexported fields
}

func (*LeaseGrantResponse) Descriptor deprecated

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

Deprecated: Use LeaseGrantResponse.ProtoReflect.Descriptor instead.

func (*LeaseGrantResponse) GetError

func (x *LeaseGrantResponse) GetError() string

func (*LeaseGrantResponse) GetHeader

func (x *LeaseGrantResponse) GetHeader() *ResponseHeader

func (*LeaseGrantResponse) GetID

func (x *LeaseGrantResponse) GetID() int64

func (*LeaseGrantResponse) GetTTL

func (x *LeaseGrantResponse) GetTTL() int64

func (*LeaseGrantResponse) MarshalToSizedBufferVT

func (m *LeaseGrantResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*LeaseGrantResponse) MarshalToVT

func (m *LeaseGrantResponse) MarshalToVT(dAtA []byte) (int, error)

func (*LeaseGrantResponse) MarshalVT

func (m *LeaseGrantResponse) MarshalVT() (dAtA []byte, err error)

func (*LeaseGrantResponse) ProtoMessage

func (*LeaseGrantResponse) ProtoMessage()

func (*LeaseGrantResponse) ProtoReflect

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

func (*LeaseGrantResponse) Reset

func (x *LeaseGrantResponse) Reset()

func (*LeaseGrantResponse) SizeVT

func (m *LeaseGrantResponse) SizeVT() (n int)

func (*LeaseGrantResponse) String

func (x *LeaseGrantResponse) String() string

func (*LeaseGrantResponse) UnmarshalVT

func (m *LeaseGrantResponse) UnmarshalVT(dAtA []byte) error

type LeaseKeepAliveRequest

type LeaseKeepAliveRequest struct {

	// ID is the lease ID for the lease to keep alive.
	ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
	// contains filtered or unexported fields
}

func (*LeaseKeepAliveRequest) Descriptor deprecated

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

Deprecated: Use LeaseKeepAliveRequest.ProtoReflect.Descriptor instead.

func (*LeaseKeepAliveRequest) GetID

func (x *LeaseKeepAliveRequest) GetID() int64

func (*LeaseKeepAliveRequest) MarshalToSizedBufferVT

func (m *LeaseKeepAliveRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*LeaseKeepAliveRequest) MarshalToVT

func (m *LeaseKeepAliveRequest) MarshalToVT(dAtA []byte) (int, error)

func (*LeaseKeepAliveRequest) MarshalVT

func (m *LeaseKeepAliveRequest) MarshalVT() (dAtA []byte, err error)

func (*LeaseKeepAliveRequest) ProtoMessage

func (*LeaseKeepAliveRequest) ProtoMessage()

func (*LeaseKeepAliveRequest) ProtoReflect

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

func (*LeaseKeepAliveRequest) Reset

func (x *LeaseKeepAliveRequest) Reset()

func (*LeaseKeepAliveRequest) SizeVT

func (m *LeaseKeepAliveRequest) SizeVT() (n int)

func (*LeaseKeepAliveRequest) String

func (x *LeaseKeepAliveRequest) String() string

func (*LeaseKeepAliveRequest) UnmarshalVT

func (m *LeaseKeepAliveRequest) UnmarshalVT(dAtA []byte) error

type LeaseKeepAliveResponse

type LeaseKeepAliveResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// ID is the lease ID from the keep alive request.
	ID int64 `protobuf:"varint,2,opt,name=ID,proto3" json:"ID,omitempty"`
	// TTL is the new time-to-live for the lease.
	TTL int64 `protobuf:"varint,3,opt,name=TTL,proto3" json:"TTL,omitempty"`
	// contains filtered or unexported fields
}

func (*LeaseKeepAliveResponse) Descriptor deprecated

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

Deprecated: Use LeaseKeepAliveResponse.ProtoReflect.Descriptor instead.

func (*LeaseKeepAliveResponse) GetHeader

func (x *LeaseKeepAliveResponse) GetHeader() *ResponseHeader

func (*LeaseKeepAliveResponse) GetID

func (x *LeaseKeepAliveResponse) GetID() int64

func (*LeaseKeepAliveResponse) GetTTL

func (x *LeaseKeepAliveResponse) GetTTL() int64

func (*LeaseKeepAliveResponse) MarshalToSizedBufferVT

func (m *LeaseKeepAliveResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*LeaseKeepAliveResponse) MarshalToVT

func (m *LeaseKeepAliveResponse) MarshalToVT(dAtA []byte) (int, error)

func (*LeaseKeepAliveResponse) MarshalVT

func (m *LeaseKeepAliveResponse) MarshalVT() (dAtA []byte, err error)

func (*LeaseKeepAliveResponse) ProtoMessage

func (*LeaseKeepAliveResponse) ProtoMessage()

func (*LeaseKeepAliveResponse) ProtoReflect

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

func (*LeaseKeepAliveResponse) Reset

func (x *LeaseKeepAliveResponse) Reset()

func (*LeaseKeepAliveResponse) SizeVT

func (m *LeaseKeepAliveResponse) SizeVT() (n int)

func (*LeaseKeepAliveResponse) String

func (x *LeaseKeepAliveResponse) String() string

func (*LeaseKeepAliveResponse) UnmarshalVT

func (m *LeaseKeepAliveResponse) UnmarshalVT(dAtA []byte) error

type LeaseLeasesRequest

type LeaseLeasesRequest struct {
	// contains filtered or unexported fields
}

func (*LeaseLeasesRequest) Descriptor deprecated

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

Deprecated: Use LeaseLeasesRequest.ProtoReflect.Descriptor instead.

func (*LeaseLeasesRequest) MarshalToSizedBufferVT

func (m *LeaseLeasesRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*LeaseLeasesRequest) MarshalToVT

func (m *LeaseLeasesRequest) MarshalToVT(dAtA []byte) (int, error)

func (*LeaseLeasesRequest) MarshalVT

func (m *LeaseLeasesRequest) MarshalVT() (dAtA []byte, err error)

func (*LeaseLeasesRequest) ProtoMessage

func (*LeaseLeasesRequest) ProtoMessage()

func (*LeaseLeasesRequest) ProtoReflect

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

func (*LeaseLeasesRequest) Reset

func (x *LeaseLeasesRequest) Reset()

func (*LeaseLeasesRequest) SizeVT

func (m *LeaseLeasesRequest) SizeVT() (n int)

func (*LeaseLeasesRequest) String

func (x *LeaseLeasesRequest) String() string

func (*LeaseLeasesRequest) UnmarshalVT

func (m *LeaseLeasesRequest) UnmarshalVT(dAtA []byte) error

type LeaseLeasesResponse

type LeaseLeasesResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	Leases []*LeaseStatus  `protobuf:"bytes,2,rep,name=leases,proto3" json:"leases,omitempty"`
	// contains filtered or unexported fields
}

func (*LeaseLeasesResponse) Descriptor deprecated

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

Deprecated: Use LeaseLeasesResponse.ProtoReflect.Descriptor instead.

func (*LeaseLeasesResponse) GetHeader

func (x *LeaseLeasesResponse) GetHeader() *ResponseHeader

func (*LeaseLeasesResponse) GetLeases

func (x *LeaseLeasesResponse) GetLeases() []*LeaseStatus

func (*LeaseLeasesResponse) MarshalToSizedBufferVT

func (m *LeaseLeasesResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*LeaseLeasesResponse) MarshalToVT

func (m *LeaseLeasesResponse) MarshalToVT(dAtA []byte) (int, error)

func (*LeaseLeasesResponse) MarshalVT

func (m *LeaseLeasesResponse) MarshalVT() (dAtA []byte, err error)

func (*LeaseLeasesResponse) ProtoMessage

func (*LeaseLeasesResponse) ProtoMessage()

func (*LeaseLeasesResponse) ProtoReflect

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

func (*LeaseLeasesResponse) Reset

func (x *LeaseLeasesResponse) Reset()

func (*LeaseLeasesResponse) SizeVT

func (m *LeaseLeasesResponse) SizeVT() (n int)

func (*LeaseLeasesResponse) String

func (x *LeaseLeasesResponse) String() string

func (*LeaseLeasesResponse) UnmarshalVT

func (m *LeaseLeasesResponse) UnmarshalVT(dAtA []byte) error

type LeaseRevokeRequest

type LeaseRevokeRequest struct {

	// ID is the lease ID to revoke. When the ID is revoked, all associated keys will be deleted.
	ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
	// contains filtered or unexported fields
}

func (*LeaseRevokeRequest) Descriptor deprecated

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

Deprecated: Use LeaseRevokeRequest.ProtoReflect.Descriptor instead.

func (*LeaseRevokeRequest) GetID

func (x *LeaseRevokeRequest) GetID() int64

func (*LeaseRevokeRequest) MarshalToSizedBufferVT

func (m *LeaseRevokeRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*LeaseRevokeRequest) MarshalToVT

func (m *LeaseRevokeRequest) MarshalToVT(dAtA []byte) (int, error)

func (*LeaseRevokeRequest) MarshalVT

func (m *LeaseRevokeRequest) MarshalVT() (dAtA []byte, err error)

func (*LeaseRevokeRequest) ProtoMessage

func (*LeaseRevokeRequest) ProtoMessage()

func (*LeaseRevokeRequest) ProtoReflect

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

func (*LeaseRevokeRequest) Reset

func (x *LeaseRevokeRequest) Reset()

func (*LeaseRevokeRequest) SizeVT

func (m *LeaseRevokeRequest) SizeVT() (n int)

func (*LeaseRevokeRequest) String

func (x *LeaseRevokeRequest) String() string

func (*LeaseRevokeRequest) UnmarshalVT

func (m *LeaseRevokeRequest) UnmarshalVT(dAtA []byte) error

type LeaseRevokeResponse

type LeaseRevokeResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*LeaseRevokeResponse) Descriptor deprecated

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

Deprecated: Use LeaseRevokeResponse.ProtoReflect.Descriptor instead.

func (*LeaseRevokeResponse) GetHeader

func (x *LeaseRevokeResponse) GetHeader() *ResponseHeader

func (*LeaseRevokeResponse) MarshalToSizedBufferVT

func (m *LeaseRevokeResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*LeaseRevokeResponse) MarshalToVT

func (m *LeaseRevokeResponse) MarshalToVT(dAtA []byte) (int, error)

func (*LeaseRevokeResponse) MarshalVT

func (m *LeaseRevokeResponse) MarshalVT() (dAtA []byte, err error)

func (*LeaseRevokeResponse) ProtoMessage

func (*LeaseRevokeResponse) ProtoMessage()

func (*LeaseRevokeResponse) ProtoReflect

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

func (*LeaseRevokeResponse) Reset

func (x *LeaseRevokeResponse) Reset()

func (*LeaseRevokeResponse) SizeVT

func (m *LeaseRevokeResponse) SizeVT() (n int)

func (*LeaseRevokeResponse) String

func (x *LeaseRevokeResponse) String() string

func (*LeaseRevokeResponse) UnmarshalVT

func (m *LeaseRevokeResponse) UnmarshalVT(dAtA []byte) error

type LeaseStatus

type LeaseStatus struct {
	ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"` // TODO: int64 TTL = 2;
	// contains filtered or unexported fields
}

func (*LeaseStatus) Descriptor deprecated

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

Deprecated: Use LeaseStatus.ProtoReflect.Descriptor instead.

func (*LeaseStatus) GetID

func (x *LeaseStatus) GetID() int64

func (*LeaseStatus) MarshalToSizedBufferVT

func (m *LeaseStatus) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*LeaseStatus) MarshalToVT

func (m *LeaseStatus) MarshalToVT(dAtA []byte) (int, error)

func (*LeaseStatus) MarshalVT

func (m *LeaseStatus) MarshalVT() (dAtA []byte, err error)

func (*LeaseStatus) ProtoMessage

func (*LeaseStatus) ProtoMessage()

func (*LeaseStatus) ProtoReflect

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

func (*LeaseStatus) Reset

func (x *LeaseStatus) Reset()

func (*LeaseStatus) SizeVT

func (m *LeaseStatus) SizeVT() (n int)

func (*LeaseStatus) String

func (x *LeaseStatus) String() string

func (*LeaseStatus) UnmarshalVT

func (m *LeaseStatus) UnmarshalVT(dAtA []byte) error

type LeaseTimeToLiveRequest

type LeaseTimeToLiveRequest struct {

	// ID is the lease ID for the lease.
	ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
	// keys is true to query all the keys attached to this lease.
	Keys bool `protobuf:"varint,2,opt,name=keys,proto3" json:"keys,omitempty"`
	// contains filtered or unexported fields
}

func (*LeaseTimeToLiveRequest) Descriptor deprecated

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

Deprecated: Use LeaseTimeToLiveRequest.ProtoReflect.Descriptor instead.

func (*LeaseTimeToLiveRequest) GetID

func (x *LeaseTimeToLiveRequest) GetID() int64

func (*LeaseTimeToLiveRequest) GetKeys

func (x *LeaseTimeToLiveRequest) GetKeys() bool

func (*LeaseTimeToLiveRequest) MarshalToSizedBufferVT

func (m *LeaseTimeToLiveRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*LeaseTimeToLiveRequest) MarshalToVT

func (m *LeaseTimeToLiveRequest) MarshalToVT(dAtA []byte) (int, error)

func (*LeaseTimeToLiveRequest) MarshalVT

func (m *LeaseTimeToLiveRequest) MarshalVT() (dAtA []byte, err error)

func (*LeaseTimeToLiveRequest) ProtoMessage

func (*LeaseTimeToLiveRequest) ProtoMessage()

func (*LeaseTimeToLiveRequest) ProtoReflect

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

func (*LeaseTimeToLiveRequest) Reset

func (x *LeaseTimeToLiveRequest) Reset()

func (*LeaseTimeToLiveRequest) SizeVT

func (m *LeaseTimeToLiveRequest) SizeVT() (n int)

func (*LeaseTimeToLiveRequest) String

func (x *LeaseTimeToLiveRequest) String() string

func (*LeaseTimeToLiveRequest) UnmarshalVT

func (m *LeaseTimeToLiveRequest) UnmarshalVT(dAtA []byte) error

type LeaseTimeToLiveResponse

type LeaseTimeToLiveResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// ID is the lease ID from the keep alive request.
	ID int64 `protobuf:"varint,2,opt,name=ID,proto3" json:"ID,omitempty"`
	// TTL is the remaining TTL in seconds for the lease; the lease will expire in under TTL+1 seconds.
	TTL int64 `protobuf:"varint,3,opt,name=TTL,proto3" json:"TTL,omitempty"`
	// GrantedTTL is the initial granted time in seconds upon lease creation/renewal.
	GrantedTTL int64 `protobuf:"varint,4,opt,name=grantedTTL,proto3" json:"grantedTTL,omitempty"`
	// Keys is the list of keys attached to this lease.
	Keys [][]byte `protobuf:"bytes,5,rep,name=keys,proto3" json:"keys,omitempty"`
	// contains filtered or unexported fields
}

func (*LeaseTimeToLiveResponse) Descriptor deprecated

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

Deprecated: Use LeaseTimeToLiveResponse.ProtoReflect.Descriptor instead.

func (*LeaseTimeToLiveResponse) GetGrantedTTL

func (x *LeaseTimeToLiveResponse) GetGrantedTTL() int64

func (*LeaseTimeToLiveResponse) GetHeader

func (x *LeaseTimeToLiveResponse) GetHeader() *ResponseHeader

func (*LeaseTimeToLiveResponse) GetID

func (x *LeaseTimeToLiveResponse) GetID() int64

func (*LeaseTimeToLiveResponse) GetKeys

func (x *LeaseTimeToLiveResponse) GetKeys() [][]byte

func (*LeaseTimeToLiveResponse) GetTTL

func (x *LeaseTimeToLiveResponse) GetTTL() int64

func (*LeaseTimeToLiveResponse) MarshalToSizedBufferVT

func (m *LeaseTimeToLiveResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*LeaseTimeToLiveResponse) MarshalToVT

func (m *LeaseTimeToLiveResponse) MarshalToVT(dAtA []byte) (int, error)

func (*LeaseTimeToLiveResponse) MarshalVT

func (m *LeaseTimeToLiveResponse) MarshalVT() (dAtA []byte, err error)

func (*LeaseTimeToLiveResponse) ProtoMessage

func (*LeaseTimeToLiveResponse) ProtoMessage()

func (*LeaseTimeToLiveResponse) ProtoReflect

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

func (*LeaseTimeToLiveResponse) Reset

func (x *LeaseTimeToLiveResponse) Reset()

func (*LeaseTimeToLiveResponse) SizeVT

func (m *LeaseTimeToLiveResponse) SizeVT() (n int)

func (*LeaseTimeToLiveResponse) String

func (x *LeaseTimeToLiveResponse) String() string

func (*LeaseTimeToLiveResponse) UnmarshalVT

func (m *LeaseTimeToLiveResponse) UnmarshalVT(dAtA []byte) error

type Member

type Member struct {

	// ID is the member ID for this member.
	ID uint64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
	// name is the human-readable name of the member. If the member is not started, the name will be an empty string.
	Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
	// peerURLs is the list of URLs the member exposes to the cluster for communication.
	PeerURLs []string `protobuf:"bytes,3,rep,name=peerURLs,proto3" json:"peerURLs,omitempty"`
	// clientURLs is the list of URLs the member exposes to clients for communication. If the member is not started, clientURLs will be empty.
	ClientURLs []string `protobuf:"bytes,4,rep,name=clientURLs,proto3" json:"clientURLs,omitempty"`
	// isLearner indicates if the member is raft learner.
	IsLearner bool `protobuf:"varint,5,opt,name=isLearner,proto3" json:"isLearner,omitempty"`
	// contains filtered or unexported fields
}

func (*Member) Descriptor deprecated

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

Deprecated: Use Member.ProtoReflect.Descriptor instead.

func (*Member) GetClientURLs

func (x *Member) GetClientURLs() []string

func (*Member) GetID

func (x *Member) GetID() uint64

func (*Member) GetIsLearner

func (x *Member) GetIsLearner() bool

func (*Member) GetName

func (x *Member) GetName() string

func (*Member) GetPeerURLs

func (x *Member) GetPeerURLs() []string

func (*Member) MarshalToSizedBufferVT

func (m *Member) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*Member) MarshalToVT

func (m *Member) MarshalToVT(dAtA []byte) (int, error)

func (*Member) MarshalVT

func (m *Member) MarshalVT() (dAtA []byte, err error)

func (*Member) ProtoMessage

func (*Member) ProtoMessage()

func (*Member) ProtoReflect

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

func (*Member) Reset

func (x *Member) Reset()

func (*Member) SizeVT

func (m *Member) SizeVT() (n int)

func (*Member) String

func (x *Member) String() string

func (*Member) UnmarshalVT

func (m *Member) UnmarshalVT(dAtA []byte) error

type MemberAddRequest

type MemberAddRequest struct {

	// peerURLs is the list of URLs the added member will use to communicate with the cluster.
	PeerURLs []string `protobuf:"bytes,1,rep,name=peerURLs,proto3" json:"peerURLs,omitempty"`
	// isLearner indicates if the added member is raft learner.
	IsLearner bool `protobuf:"varint,2,opt,name=isLearner,proto3" json:"isLearner,omitempty"`
	// contains filtered or unexported fields
}

func (*MemberAddRequest) Descriptor deprecated

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

Deprecated: Use MemberAddRequest.ProtoReflect.Descriptor instead.

func (*MemberAddRequest) GetIsLearner

func (x *MemberAddRequest) GetIsLearner() bool

func (*MemberAddRequest) GetPeerURLs

func (x *MemberAddRequest) GetPeerURLs() []string

func (*MemberAddRequest) MarshalToSizedBufferVT

func (m *MemberAddRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*MemberAddRequest) MarshalToVT

func (m *MemberAddRequest) MarshalToVT(dAtA []byte) (int, error)

func (*MemberAddRequest) MarshalVT

func (m *MemberAddRequest) MarshalVT() (dAtA []byte, err error)

func (*MemberAddRequest) ProtoMessage

func (*MemberAddRequest) ProtoMessage()

func (*MemberAddRequest) ProtoReflect

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

func (*MemberAddRequest) Reset

func (x *MemberAddRequest) Reset()

func (*MemberAddRequest) SizeVT

func (m *MemberAddRequest) SizeVT() (n int)

func (*MemberAddRequest) String

func (x *MemberAddRequest) String() string

func (*MemberAddRequest) UnmarshalVT

func (m *MemberAddRequest) UnmarshalVT(dAtA []byte) error

type MemberAddResponse

type MemberAddResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// member is the member information for the added member.
	Member *Member `protobuf:"bytes,2,opt,name=member,proto3" json:"member,omitempty"`
	// members is a list of all members after adding the new member.
	Members []*Member `protobuf:"bytes,3,rep,name=members,proto3" json:"members,omitempty"`
	// contains filtered or unexported fields
}

func (*MemberAddResponse) Descriptor deprecated

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

Deprecated: Use MemberAddResponse.ProtoReflect.Descriptor instead.

func (*MemberAddResponse) GetHeader

func (x *MemberAddResponse) GetHeader() *ResponseHeader

func (*MemberAddResponse) GetMember

func (x *MemberAddResponse) GetMember() *Member

func (*MemberAddResponse) GetMembers

func (x *MemberAddResponse) GetMembers() []*Member

func (*MemberAddResponse) MarshalToSizedBufferVT

func (m *MemberAddResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*MemberAddResponse) MarshalToVT

func (m *MemberAddResponse) MarshalToVT(dAtA []byte) (int, error)

func (*MemberAddResponse) MarshalVT

func (m *MemberAddResponse) MarshalVT() (dAtA []byte, err error)

func (*MemberAddResponse) ProtoMessage

func (*MemberAddResponse) ProtoMessage()

func (*MemberAddResponse) ProtoReflect

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

func (*MemberAddResponse) Reset

func (x *MemberAddResponse) Reset()

func (*MemberAddResponse) SizeVT

func (m *MemberAddResponse) SizeVT() (n int)

func (*MemberAddResponse) String

func (x *MemberAddResponse) String() string

func (*MemberAddResponse) UnmarshalVT

func (m *MemberAddResponse) UnmarshalVT(dAtA []byte) error

type MemberListRequest

type MemberListRequest struct {
	Linearizable bool `protobuf:"varint,1,opt,name=linearizable,proto3" json:"linearizable,omitempty"`
	// contains filtered or unexported fields
}

func (*MemberListRequest) Descriptor deprecated

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

Deprecated: Use MemberListRequest.ProtoReflect.Descriptor instead.

func (*MemberListRequest) GetLinearizable

func (x *MemberListRequest) GetLinearizable() bool

func (*MemberListRequest) MarshalToSizedBufferVT

func (m *MemberListRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*MemberListRequest) MarshalToVT

func (m *MemberListRequest) MarshalToVT(dAtA []byte) (int, error)

func (*MemberListRequest) MarshalVT

func (m *MemberListRequest) MarshalVT() (dAtA []byte, err error)

func (*MemberListRequest) ProtoMessage

func (*MemberListRequest) ProtoMessage()

func (*MemberListRequest) ProtoReflect

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

func (*MemberListRequest) Reset

func (x *MemberListRequest) Reset()

func (*MemberListRequest) SizeVT

func (m *MemberListRequest) SizeVT() (n int)

func (*MemberListRequest) String

func (x *MemberListRequest) String() string

func (*MemberListRequest) UnmarshalVT

func (m *MemberListRequest) UnmarshalVT(dAtA []byte) error

type MemberListResponse

type MemberListResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// members is a list of all members associated with the cluster.
	Members []*Member `protobuf:"bytes,2,rep,name=members,proto3" json:"members,omitempty"`
	// contains filtered or unexported fields
}

func (*MemberListResponse) Descriptor deprecated

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

Deprecated: Use MemberListResponse.ProtoReflect.Descriptor instead.

func (*MemberListResponse) GetHeader

func (x *MemberListResponse) GetHeader() *ResponseHeader

func (*MemberListResponse) GetMembers

func (x *MemberListResponse) GetMembers() []*Member

func (*MemberListResponse) MarshalToSizedBufferVT

func (m *MemberListResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*MemberListResponse) MarshalToVT

func (m *MemberListResponse) MarshalToVT(dAtA []byte) (int, error)

func (*MemberListResponse) MarshalVT

func (m *MemberListResponse) MarshalVT() (dAtA []byte, err error)

func (*MemberListResponse) ProtoMessage

func (*MemberListResponse) ProtoMessage()

func (*MemberListResponse) ProtoReflect

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

func (*MemberListResponse) Reset

func (x *MemberListResponse) Reset()

func (*MemberListResponse) SizeVT

func (m *MemberListResponse) SizeVT() (n int)

func (*MemberListResponse) String

func (x *MemberListResponse) String() string

func (*MemberListResponse) UnmarshalVT

func (m *MemberListResponse) UnmarshalVT(dAtA []byte) error

type MemberPromoteRequest

type MemberPromoteRequest struct {

	// ID is the member ID of the member to promote.
	ID uint64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
	// contains filtered or unexported fields
}

func (*MemberPromoteRequest) Descriptor deprecated

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

Deprecated: Use MemberPromoteRequest.ProtoReflect.Descriptor instead.

func (*MemberPromoteRequest) GetID

func (x *MemberPromoteRequest) GetID() uint64

func (*MemberPromoteRequest) MarshalToSizedBufferVT

func (m *MemberPromoteRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*MemberPromoteRequest) MarshalToVT

func (m *MemberPromoteRequest) MarshalToVT(dAtA []byte) (int, error)

func (*MemberPromoteRequest) MarshalVT

func (m *MemberPromoteRequest) MarshalVT() (dAtA []byte, err error)

func (*MemberPromoteRequest) ProtoMessage

func (*MemberPromoteRequest) ProtoMessage()

func (*MemberPromoteRequest) ProtoReflect

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

func (*MemberPromoteRequest) Reset

func (x *MemberPromoteRequest) Reset()

func (*MemberPromoteRequest) SizeVT

func (m *MemberPromoteRequest) SizeVT() (n int)

func (*MemberPromoteRequest) String

func (x *MemberPromoteRequest) String() string

func (*MemberPromoteRequest) UnmarshalVT

func (m *MemberPromoteRequest) UnmarshalVT(dAtA []byte) error

type MemberPromoteResponse

type MemberPromoteResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// members is a list of all members after promoting the member.
	Members []*Member `protobuf:"bytes,2,rep,name=members,proto3" json:"members,omitempty"`
	// contains filtered or unexported fields
}

func (*MemberPromoteResponse) Descriptor deprecated

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

Deprecated: Use MemberPromoteResponse.ProtoReflect.Descriptor instead.

func (*MemberPromoteResponse) GetHeader

func (x *MemberPromoteResponse) GetHeader() *ResponseHeader

func (*MemberPromoteResponse) GetMembers

func (x *MemberPromoteResponse) GetMembers() []*Member

func (*MemberPromoteResponse) MarshalToSizedBufferVT

func (m *MemberPromoteResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*MemberPromoteResponse) MarshalToVT

func (m *MemberPromoteResponse) MarshalToVT(dAtA []byte) (int, error)

func (*MemberPromoteResponse) MarshalVT

func (m *MemberPromoteResponse) MarshalVT() (dAtA []byte, err error)

func (*MemberPromoteResponse) ProtoMessage

func (*MemberPromoteResponse) ProtoMessage()

func (*MemberPromoteResponse) ProtoReflect

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

func (*MemberPromoteResponse) Reset

func (x *MemberPromoteResponse) Reset()

func (*MemberPromoteResponse) SizeVT

func (m *MemberPromoteResponse) SizeVT() (n int)

func (*MemberPromoteResponse) String

func (x *MemberPromoteResponse) String() string

func (*MemberPromoteResponse) UnmarshalVT

func (m *MemberPromoteResponse) UnmarshalVT(dAtA []byte) error

type MemberRemoveRequest

type MemberRemoveRequest struct {

	// ID is the member ID of the member to remove.
	ID uint64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
	// contains filtered or unexported fields
}

func (*MemberRemoveRequest) Descriptor deprecated

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

Deprecated: Use MemberRemoveRequest.ProtoReflect.Descriptor instead.

func (*MemberRemoveRequest) GetID

func (x *MemberRemoveRequest) GetID() uint64

func (*MemberRemoveRequest) MarshalToSizedBufferVT

func (m *MemberRemoveRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*MemberRemoveRequest) MarshalToVT

func (m *MemberRemoveRequest) MarshalToVT(dAtA []byte) (int, error)

func (*MemberRemoveRequest) MarshalVT

func (m *MemberRemoveRequest) MarshalVT() (dAtA []byte, err error)

func (*MemberRemoveRequest) ProtoMessage

func (*MemberRemoveRequest) ProtoMessage()

func (*MemberRemoveRequest) ProtoReflect

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

func (*MemberRemoveRequest) Reset

func (x *MemberRemoveRequest) Reset()

func (*MemberRemoveRequest) SizeVT

func (m *MemberRemoveRequest) SizeVT() (n int)

func (*MemberRemoveRequest) String

func (x *MemberRemoveRequest) String() string

func (*MemberRemoveRequest) UnmarshalVT

func (m *MemberRemoveRequest) UnmarshalVT(dAtA []byte) error

type MemberRemoveResponse

type MemberRemoveResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// members is a list of all members after removing the member.
	Members []*Member `protobuf:"bytes,2,rep,name=members,proto3" json:"members,omitempty"`
	// contains filtered or unexported fields
}

func (*MemberRemoveResponse) Descriptor deprecated

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

Deprecated: Use MemberRemoveResponse.ProtoReflect.Descriptor instead.

func (*MemberRemoveResponse) GetHeader

func (x *MemberRemoveResponse) GetHeader() *ResponseHeader

func (*MemberRemoveResponse) GetMembers

func (x *MemberRemoveResponse) GetMembers() []*Member

func (*MemberRemoveResponse) MarshalToSizedBufferVT

func (m *MemberRemoveResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*MemberRemoveResponse) MarshalToVT

func (m *MemberRemoveResponse) MarshalToVT(dAtA []byte) (int, error)

func (*MemberRemoveResponse) MarshalVT

func (m *MemberRemoveResponse) MarshalVT() (dAtA []byte, err error)

func (*MemberRemoveResponse) ProtoMessage

func (*MemberRemoveResponse) ProtoMessage()

func (*MemberRemoveResponse) ProtoReflect

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

func (*MemberRemoveResponse) Reset

func (x *MemberRemoveResponse) Reset()

func (*MemberRemoveResponse) SizeVT

func (m *MemberRemoveResponse) SizeVT() (n int)

func (*MemberRemoveResponse) String

func (x *MemberRemoveResponse) String() string

func (*MemberRemoveResponse) UnmarshalVT

func (m *MemberRemoveResponse) UnmarshalVT(dAtA []byte) error

type MemberUpdateRequest

type MemberUpdateRequest struct {

	// ID is the member ID of the member to update.
	ID uint64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
	// peerURLs is the new list of URLs the member will use to communicate with the cluster.
	PeerURLs []string `protobuf:"bytes,2,rep,name=peerURLs,proto3" json:"peerURLs,omitempty"`
	// contains filtered or unexported fields
}

func (*MemberUpdateRequest) Descriptor deprecated

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

Deprecated: Use MemberUpdateRequest.ProtoReflect.Descriptor instead.

func (*MemberUpdateRequest) GetID

func (x *MemberUpdateRequest) GetID() uint64

func (*MemberUpdateRequest) GetPeerURLs

func (x *MemberUpdateRequest) GetPeerURLs() []string

func (*MemberUpdateRequest) MarshalToSizedBufferVT

func (m *MemberUpdateRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*MemberUpdateRequest) MarshalToVT

func (m *MemberUpdateRequest) MarshalToVT(dAtA []byte) (int, error)

func (*MemberUpdateRequest) MarshalVT

func (m *MemberUpdateRequest) MarshalVT() (dAtA []byte, err error)

func (*MemberUpdateRequest) ProtoMessage

func (*MemberUpdateRequest) ProtoMessage()

func (*MemberUpdateRequest) ProtoReflect

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

func (*MemberUpdateRequest) Reset

func (x *MemberUpdateRequest) Reset()

func (*MemberUpdateRequest) SizeVT

func (m *MemberUpdateRequest) SizeVT() (n int)

func (*MemberUpdateRequest) String

func (x *MemberUpdateRequest) String() string

func (*MemberUpdateRequest) UnmarshalVT

func (m *MemberUpdateRequest) UnmarshalVT(dAtA []byte) error

type MemberUpdateResponse

type MemberUpdateResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// members is a list of all members after updating the member.
	Members []*Member `protobuf:"bytes,2,rep,name=members,proto3" json:"members,omitempty"`
	// contains filtered or unexported fields
}

func (*MemberUpdateResponse) Descriptor deprecated

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

Deprecated: Use MemberUpdateResponse.ProtoReflect.Descriptor instead.

func (*MemberUpdateResponse) GetHeader

func (x *MemberUpdateResponse) GetHeader() *ResponseHeader

func (*MemberUpdateResponse) GetMembers

func (x *MemberUpdateResponse) GetMembers() []*Member

func (*MemberUpdateResponse) MarshalToSizedBufferVT

func (m *MemberUpdateResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*MemberUpdateResponse) MarshalToVT

func (m *MemberUpdateResponse) MarshalToVT(dAtA []byte) (int, error)

func (*MemberUpdateResponse) MarshalVT

func (m *MemberUpdateResponse) MarshalVT() (dAtA []byte, err error)

func (*MemberUpdateResponse) ProtoMessage

func (*MemberUpdateResponse) ProtoMessage()

func (*MemberUpdateResponse) ProtoReflect

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

func (*MemberUpdateResponse) Reset

func (x *MemberUpdateResponse) Reset()

func (*MemberUpdateResponse) SizeVT

func (m *MemberUpdateResponse) SizeVT() (n int)

func (*MemberUpdateResponse) String

func (x *MemberUpdateResponse) String() string

func (*MemberUpdateResponse) UnmarshalVT

func (m *MemberUpdateResponse) UnmarshalVT(dAtA []byte) error

type MoveLeaderRequest

type MoveLeaderRequest struct {

	// targetID is the node ID for the new leader.
	TargetID uint64 `protobuf:"varint,1,opt,name=targetID,proto3" json:"targetID,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveLeaderRequest) Descriptor deprecated

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

Deprecated: Use MoveLeaderRequest.ProtoReflect.Descriptor instead.

func (*MoveLeaderRequest) GetTargetID

func (x *MoveLeaderRequest) GetTargetID() uint64

func (*MoveLeaderRequest) MarshalToSizedBufferVT

func (m *MoveLeaderRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*MoveLeaderRequest) MarshalToVT

func (m *MoveLeaderRequest) MarshalToVT(dAtA []byte) (int, error)

func (*MoveLeaderRequest) MarshalVT

func (m *MoveLeaderRequest) MarshalVT() (dAtA []byte, err error)

func (*MoveLeaderRequest) ProtoMessage

func (*MoveLeaderRequest) ProtoMessage()

func (*MoveLeaderRequest) ProtoReflect

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

func (*MoveLeaderRequest) Reset

func (x *MoveLeaderRequest) Reset()

func (*MoveLeaderRequest) SizeVT

func (m *MoveLeaderRequest) SizeVT() (n int)

func (*MoveLeaderRequest) String

func (x *MoveLeaderRequest) String() string

func (*MoveLeaderRequest) UnmarshalVT

func (m *MoveLeaderRequest) UnmarshalVT(dAtA []byte) error

type MoveLeaderResponse

type MoveLeaderResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// contains filtered or unexported fields
}

func (*MoveLeaderResponse) Descriptor deprecated

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

Deprecated: Use MoveLeaderResponse.ProtoReflect.Descriptor instead.

func (*MoveLeaderResponse) GetHeader

func (x *MoveLeaderResponse) GetHeader() *ResponseHeader

func (*MoveLeaderResponse) MarshalToSizedBufferVT

func (m *MoveLeaderResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*MoveLeaderResponse) MarshalToVT

func (m *MoveLeaderResponse) MarshalToVT(dAtA []byte) (int, error)

func (*MoveLeaderResponse) MarshalVT

func (m *MoveLeaderResponse) MarshalVT() (dAtA []byte, err error)

func (*MoveLeaderResponse) ProtoMessage

func (*MoveLeaderResponse) ProtoMessage()

func (*MoveLeaderResponse) ProtoReflect

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

func (*MoveLeaderResponse) Reset

func (x *MoveLeaderResponse) Reset()

func (*MoveLeaderResponse) SizeVT

func (m *MoveLeaderResponse) SizeVT() (n int)

func (*MoveLeaderResponse) String

func (x *MoveLeaderResponse) String() string

func (*MoveLeaderResponse) UnmarshalVT

func (m *MoveLeaderResponse) UnmarshalVT(dAtA []byte) error

type PutRequest

type PutRequest struct {

	// key is the key, in bytes, to put into the key-value store.
	Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// value is the value, in bytes, to associate with the key in the key-value store.
	Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
	// lease is the lease ID to associate with the key in the key-value store. A lease
	// value of 0 indicates no lease.
	Lease int64 `protobuf:"varint,3,opt,name=lease,proto3" json:"lease,omitempty"`
	// If prev_kv is set, etcd gets the previous key-value pair before changing it.
	// The previous key-value pair will be returned in the put response.
	PrevKv bool `protobuf:"varint,4,opt,name=prev_kv,json=prevKv,proto3" json:"prev_kv,omitempty"`
	// If ignore_value is set, etcd updates the key using its current value.
	// Returns an error if the key does not exist.
	IgnoreValue bool `protobuf:"varint,5,opt,name=ignore_value,json=ignoreValue,proto3" json:"ignore_value,omitempty"`
	// If ignore_lease is set, etcd updates the key using its current lease.
	// Returns an error if the key does not exist.
	IgnoreLease bool `protobuf:"varint,6,opt,name=ignore_lease,json=ignoreLease,proto3" json:"ignore_lease,omitempty"`
	// contains filtered or unexported fields
}

func (*PutRequest) Descriptor deprecated

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

Deprecated: Use PutRequest.ProtoReflect.Descriptor instead.

func (*PutRequest) GetIgnoreLease

func (x *PutRequest) GetIgnoreLease() bool

func (*PutRequest) GetIgnoreValue

func (x *PutRequest) GetIgnoreValue() bool

func (*PutRequest) GetKey

func (x *PutRequest) GetKey() []byte

func (*PutRequest) GetLease

func (x *PutRequest) GetLease() int64

func (*PutRequest) GetPrevKv

func (x *PutRequest) GetPrevKv() bool

func (*PutRequest) GetValue

func (x *PutRequest) GetValue() []byte

func (*PutRequest) MarshalToSizedBufferVT

func (m *PutRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*PutRequest) MarshalToVT

func (m *PutRequest) MarshalToVT(dAtA []byte) (int, error)

func (*PutRequest) MarshalVT

func (m *PutRequest) MarshalVT() (dAtA []byte, err error)

func (*PutRequest) ProtoMessage

func (*PutRequest) ProtoMessage()

func (*PutRequest) ProtoReflect

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

func (*PutRequest) Reset

func (x *PutRequest) Reset()

func (*PutRequest) SizeVT

func (m *PutRequest) SizeVT() (n int)

func (*PutRequest) String

func (x *PutRequest) String() string

func (*PutRequest) UnmarshalVT

func (m *PutRequest) UnmarshalVT(dAtA []byte) error

type PutResponse

type PutResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// if prev_kv is set in the request, the previous key-value pair will be returned.
	PrevKv *mvccpb.KeyValue `protobuf:"bytes,2,opt,name=prev_kv,json=prevKv,proto3" json:"prev_kv,omitempty"`
	// contains filtered or unexported fields
}

func (*PutResponse) Descriptor deprecated

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

Deprecated: Use PutResponse.ProtoReflect.Descriptor instead.

func (*PutResponse) GetHeader

func (x *PutResponse) GetHeader() *ResponseHeader

func (*PutResponse) GetPrevKv

func (x *PutResponse) GetPrevKv() *mvccpb.KeyValue

func (*PutResponse) MarshalToSizedBufferVT

func (m *PutResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*PutResponse) MarshalToVT

func (m *PutResponse) MarshalToVT(dAtA []byte) (int, error)

func (*PutResponse) MarshalVT

func (m *PutResponse) MarshalVT() (dAtA []byte, err error)

func (*PutResponse) ProtoMessage

func (*PutResponse) ProtoMessage()

func (*PutResponse) ProtoReflect

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

func (*PutResponse) Reset

func (x *PutResponse) Reset()

func (*PutResponse) SizeVT

func (m *PutResponse) SizeVT() (n int)

func (*PutResponse) String

func (x *PutResponse) String() string

func (*PutResponse) UnmarshalVT

func (m *PutResponse) UnmarshalVT(dAtA []byte) error

type RangeRequest

type RangeRequest struct {

	// key is the first key for the range. If range_end is not given, the request only looks up key.
	Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// range_end is the upper bound on the requested range [key, range_end).
	// If range_end is '\0', the range is all keys >= key.
	// If range_end is key plus one (e.g., "aa"+1 == "ab", "a\xff"+1 == "b"),
	// then the range request gets all keys prefixed with key.
	// If both key and range_end are '\0', then the range request returns all keys.
	RangeEnd []byte `protobuf:"bytes,2,opt,name=range_end,json=rangeEnd,proto3" json:"range_end,omitempty"`
	// limit is a limit on the number of keys returned for the request. When limit is set to 0,
	// it is treated as no limit.
	Limit int64 `protobuf:"varint,3,opt,name=limit,proto3" json:"limit,omitempty"`
	// revision is the point-in-time of the key-value store to use for the range.
	// If revision is less or equal to zero, the range is over the newest key-value store.
	// If the revision has been compacted, ErrCompacted is returned as a response.
	Revision int64 `protobuf:"varint,4,opt,name=revision,proto3" json:"revision,omitempty"`
	// sort_order is the order for returned sorted results.
	SortOrder RangeRequest_SortOrder `` /* 130-byte string literal not displayed */
	// sort_target is the key-value field to use for sorting.
	SortTarget RangeRequest_SortTarget `` /* 134-byte string literal not displayed */
	// serializable sets the range request to use serializable member-local reads.
	// Range requests are linearizable by default; linearizable requests have higher
	// latency and lower throughput than serializable requests but reflect the current
	// consensus of the cluster. For better performance, in exchange for possible stale reads,
	// a serializable range request is served locally without needing to reach consensus
	// with other nodes in the cluster.
	Serializable bool `protobuf:"varint,7,opt,name=serializable,proto3" json:"serializable,omitempty"`
	// keys_only when set returns only the keys and not the values.
	KeysOnly bool `protobuf:"varint,8,opt,name=keys_only,json=keysOnly,proto3" json:"keys_only,omitempty"`
	// count_only when set returns only the count of the keys in the range.
	CountOnly bool `protobuf:"varint,9,opt,name=count_only,json=countOnly,proto3" json:"count_only,omitempty"`
	// min_mod_revision is the lower bound for returned key mod revisions; all keys with
	// lesser mod revisions will be filtered away.
	MinModRevision int64 `protobuf:"varint,10,opt,name=min_mod_revision,json=minModRevision,proto3" json:"min_mod_revision,omitempty"`
	// max_mod_revision is the upper bound for returned key mod revisions; all keys with
	// greater mod revisions will be filtered away.
	MaxModRevision int64 `protobuf:"varint,11,opt,name=max_mod_revision,json=maxModRevision,proto3" json:"max_mod_revision,omitempty"`
	// min_create_revision is the lower bound for returned key create revisions; all keys with
	// lesser create revisions will be filtered away.
	MinCreateRevision int64 `protobuf:"varint,12,opt,name=min_create_revision,json=minCreateRevision,proto3" json:"min_create_revision,omitempty"`
	// max_create_revision is the upper bound for returned key create revisions; all keys with
	// greater create revisions will be filtered away.
	MaxCreateRevision int64 `protobuf:"varint,13,opt,name=max_create_revision,json=maxCreateRevision,proto3" json:"max_create_revision,omitempty"`
	// contains filtered or unexported fields
}

func (*RangeRequest) Descriptor deprecated

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

Deprecated: Use RangeRequest.ProtoReflect.Descriptor instead.

func (*RangeRequest) GetCountOnly

func (x *RangeRequest) GetCountOnly() bool

func (*RangeRequest) GetKey

func (x *RangeRequest) GetKey() []byte

func (*RangeRequest) GetKeysOnly

func (x *RangeRequest) GetKeysOnly() bool

func (*RangeRequest) GetLimit

func (x *RangeRequest) GetLimit() int64

func (*RangeRequest) GetMaxCreateRevision

func (x *RangeRequest) GetMaxCreateRevision() int64

func (*RangeRequest) GetMaxModRevision

func (x *RangeRequest) GetMaxModRevision() int64

func (*RangeRequest) GetMinCreateRevision

func (x *RangeRequest) GetMinCreateRevision() int64

func (*RangeRequest) GetMinModRevision

func (x *RangeRequest) GetMinModRevision() int64

func (*RangeRequest) GetRangeEnd

func (x *RangeRequest) GetRangeEnd() []byte

func (*RangeRequest) GetRevision

func (x *RangeRequest) GetRevision() int64

func (*RangeRequest) GetSerializable

func (x *RangeRequest) GetSerializable() bool

func (*RangeRequest) GetSortOrder

func (x *RangeRequest) GetSortOrder() RangeRequest_SortOrder

func (*RangeRequest) GetSortTarget

func (x *RangeRequest) GetSortTarget() RangeRequest_SortTarget

func (*RangeRequest) MarshalToSizedBufferVT

func (m *RangeRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*RangeRequest) MarshalToVT

func (m *RangeRequest) MarshalToVT(dAtA []byte) (int, error)

func (*RangeRequest) MarshalVT

func (m *RangeRequest) MarshalVT() (dAtA []byte, err error)

func (*RangeRequest) ProtoMessage

func (*RangeRequest) ProtoMessage()

func (*RangeRequest) ProtoReflect

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

func (*RangeRequest) Reset

func (x *RangeRequest) Reset()

func (*RangeRequest) SizeVT

func (m *RangeRequest) SizeVT() (n int)

func (*RangeRequest) String

func (x *RangeRequest) String() string

func (*RangeRequest) UnmarshalVT

func (m *RangeRequest) UnmarshalVT(dAtA []byte) error

type RangeRequest_SortOrder

type RangeRequest_SortOrder int32
const (
	RangeRequest_NONE    RangeRequest_SortOrder = 0 // default, no sorting
	RangeRequest_ASCEND  RangeRequest_SortOrder = 1 // lowest target value first
	RangeRequest_DESCEND RangeRequest_SortOrder = 2 // highest target value first
)

func (RangeRequest_SortOrder) Descriptor

func (RangeRequest_SortOrder) Enum

func (RangeRequest_SortOrder) EnumDescriptor deprecated

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

Deprecated: Use RangeRequest_SortOrder.Descriptor instead.

func (RangeRequest_SortOrder) Number

func (RangeRequest_SortOrder) String

func (x RangeRequest_SortOrder) String() string

func (RangeRequest_SortOrder) Type

type RangeRequest_SortTarget

type RangeRequest_SortTarget int32
const (
	RangeRequest_KEY     RangeRequest_SortTarget = 0
	RangeRequest_VERSION RangeRequest_SortTarget = 1
	RangeRequest_CREATE  RangeRequest_SortTarget = 2
	RangeRequest_MOD     RangeRequest_SortTarget = 3
	RangeRequest_VALUE   RangeRequest_SortTarget = 4
)

func (RangeRequest_SortTarget) Descriptor

func (RangeRequest_SortTarget) Enum

func (RangeRequest_SortTarget) EnumDescriptor deprecated

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

Deprecated: Use RangeRequest_SortTarget.Descriptor instead.

func (RangeRequest_SortTarget) Number

func (RangeRequest_SortTarget) String

func (x RangeRequest_SortTarget) String() string

func (RangeRequest_SortTarget) Type

type RangeResponse

type RangeResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// kvs is the list of key-value pairs matched by the range request.
	// kvs is empty when count is requested.
	Kvs []*mvccpb.KeyValue `protobuf:"bytes,2,rep,name=kvs,proto3" json:"kvs,omitempty"`
	// more indicates if there are more keys to return in the requested range.
	More bool `protobuf:"varint,3,opt,name=more,proto3" json:"more,omitempty"`
	// count is set to the number of keys within the range when requested.
	Count int64 `protobuf:"varint,4,opt,name=count,proto3" json:"count,omitempty"`
	// contains filtered or unexported fields
}

func (*RangeResponse) Descriptor deprecated

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

Deprecated: Use RangeResponse.ProtoReflect.Descriptor instead.

func (*RangeResponse) GetCount

func (x *RangeResponse) GetCount() int64

func (*RangeResponse) GetHeader

func (x *RangeResponse) GetHeader() *ResponseHeader

func (*RangeResponse) GetKvs

func (x *RangeResponse) GetKvs() []*mvccpb.KeyValue

func (*RangeResponse) GetMore

func (x *RangeResponse) GetMore() bool

func (*RangeResponse) MarshalToSizedBufferVT

func (m *RangeResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*RangeResponse) MarshalToVT

func (m *RangeResponse) MarshalToVT(dAtA []byte) (int, error)

func (*RangeResponse) MarshalVT

func (m *RangeResponse) MarshalVT() (dAtA []byte, err error)

func (*RangeResponse) ProtoMessage

func (*RangeResponse) ProtoMessage()

func (*RangeResponse) ProtoReflect

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

func (*RangeResponse) Reset

func (x *RangeResponse) Reset()

func (*RangeResponse) SizeVT

func (m *RangeResponse) SizeVT() (n int)

func (*RangeResponse) String

func (x *RangeResponse) String() string

func (*RangeResponse) UnmarshalVT

func (m *RangeResponse) UnmarshalVT(dAtA []byte) error

type RequestOp

type RequestOp struct {

	// request is a union of request types accepted by a transaction.
	//
	// Types that are assignable to Request:
	//
	//	*RequestOp_RequestRange
	//	*RequestOp_RequestPut
	//	*RequestOp_RequestDeleteRange
	//	*RequestOp_RequestTxn
	Request isRequestOp_Request `protobuf_oneof:"request"`
	// contains filtered or unexported fields
}

func (*RequestOp) Descriptor deprecated

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

Deprecated: Use RequestOp.ProtoReflect.Descriptor instead.

func (*RequestOp) GetRequest

func (m *RequestOp) GetRequest() isRequestOp_Request

func (*RequestOp) GetRequestDeleteRange

func (x *RequestOp) GetRequestDeleteRange() *DeleteRangeRequest

func (*RequestOp) GetRequestPut

func (x *RequestOp) GetRequestPut() *PutRequest

func (*RequestOp) GetRequestRange

func (x *RequestOp) GetRequestRange() *RangeRequest

func (*RequestOp) GetRequestTxn

func (x *RequestOp) GetRequestTxn() *TxnRequest

func (*RequestOp) MarshalToSizedBufferVT

func (m *RequestOp) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*RequestOp) MarshalToVT

func (m *RequestOp) MarshalToVT(dAtA []byte) (int, error)

func (*RequestOp) MarshalVT

func (m *RequestOp) MarshalVT() (dAtA []byte, err error)

func (*RequestOp) ProtoMessage

func (*RequestOp) ProtoMessage()

func (*RequestOp) ProtoReflect

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

func (*RequestOp) Reset

func (x *RequestOp) Reset()

func (*RequestOp) SizeVT

func (m *RequestOp) SizeVT() (n int)

func (*RequestOp) String

func (x *RequestOp) String() string

func (*RequestOp) UnmarshalVT

func (m *RequestOp) UnmarshalVT(dAtA []byte) error

type RequestOp_RequestDeleteRange

type RequestOp_RequestDeleteRange struct {
	RequestDeleteRange *DeleteRangeRequest `protobuf:"bytes,3,opt,name=request_delete_range,json=requestDeleteRange,proto3,oneof"`
}

func (*RequestOp_RequestDeleteRange) MarshalToSizedBufferVT

func (m *RequestOp_RequestDeleteRange) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*RequestOp_RequestDeleteRange) MarshalToVT

func (m *RequestOp_RequestDeleteRange) MarshalToVT(dAtA []byte) (int, error)

func (*RequestOp_RequestDeleteRange) SizeVT

func (m *RequestOp_RequestDeleteRange) SizeVT() (n int)

type RequestOp_RequestPut

type RequestOp_RequestPut struct {
	RequestPut *PutRequest `protobuf:"bytes,2,opt,name=request_put,json=requestPut,proto3,oneof"`
}

func (*RequestOp_RequestPut) MarshalToSizedBufferVT

func (m *RequestOp_RequestPut) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*RequestOp_RequestPut) MarshalToVT

func (m *RequestOp_RequestPut) MarshalToVT(dAtA []byte) (int, error)

func (*RequestOp_RequestPut) SizeVT

func (m *RequestOp_RequestPut) SizeVT() (n int)

type RequestOp_RequestRange

type RequestOp_RequestRange struct {
	RequestRange *RangeRequest `protobuf:"bytes,1,opt,name=request_range,json=requestRange,proto3,oneof"`
}

func (*RequestOp_RequestRange) MarshalToSizedBufferVT

func (m *RequestOp_RequestRange) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*RequestOp_RequestRange) MarshalToVT

func (m *RequestOp_RequestRange) MarshalToVT(dAtA []byte) (int, error)

func (*RequestOp_RequestRange) SizeVT

func (m *RequestOp_RequestRange) SizeVT() (n int)

type RequestOp_RequestTxn

type RequestOp_RequestTxn struct {
	RequestTxn *TxnRequest `protobuf:"bytes,4,opt,name=request_txn,json=requestTxn,proto3,oneof"`
}

func (*RequestOp_RequestTxn) MarshalToSizedBufferVT

func (m *RequestOp_RequestTxn) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*RequestOp_RequestTxn) MarshalToVT

func (m *RequestOp_RequestTxn) MarshalToVT(dAtA []byte) (int, error)

func (*RequestOp_RequestTxn) SizeVT

func (m *RequestOp_RequestTxn) SizeVT() (n int)

type ResponseHeader

type ResponseHeader struct {

	// cluster_id is the ID of the cluster which sent the response.
	ClusterId uint64 `protobuf:"varint,1,opt,name=cluster_id,json=clusterId,proto3" json:"cluster_id,omitempty"`
	// member_id is the ID of the member which sent the response.
	MemberId uint64 `protobuf:"varint,2,opt,name=member_id,json=memberId,proto3" json:"member_id,omitempty"`
	// revision is the key-value store revision when the request was applied.
	// For watch progress responses, the header.revision indicates progress. All future events
	// recieved in this stream are guaranteed to have a higher revision number than the
	// header.revision number.
	Revision int64 `protobuf:"varint,3,opt,name=revision,proto3" json:"revision,omitempty"`
	// raft_term is the raft term when the request was applied.
	RaftTerm uint64 `protobuf:"varint,4,opt,name=raft_term,json=raftTerm,proto3" json:"raft_term,omitempty"`
	// contains filtered or unexported fields
}

func (*ResponseHeader) Descriptor deprecated

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

Deprecated: Use ResponseHeader.ProtoReflect.Descriptor instead.

func (*ResponseHeader) GetClusterId

func (x *ResponseHeader) GetClusterId() uint64

func (*ResponseHeader) GetMemberId

func (x *ResponseHeader) GetMemberId() uint64

func (*ResponseHeader) GetRaftTerm

func (x *ResponseHeader) GetRaftTerm() uint64

func (*ResponseHeader) GetRevision

func (x *ResponseHeader) GetRevision() int64

func (*ResponseHeader) MarshalToSizedBufferVT

func (m *ResponseHeader) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*ResponseHeader) MarshalToVT

func (m *ResponseHeader) MarshalToVT(dAtA []byte) (int, error)

func (*ResponseHeader) MarshalVT

func (m *ResponseHeader) MarshalVT() (dAtA []byte, err error)

func (*ResponseHeader) ProtoMessage

func (*ResponseHeader) ProtoMessage()

func (*ResponseHeader) ProtoReflect

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

func (*ResponseHeader) Reset

func (x *ResponseHeader) Reset()

func (*ResponseHeader) SizeVT

func (m *ResponseHeader) SizeVT() (n int)

func (*ResponseHeader) String

func (x *ResponseHeader) String() string

func (*ResponseHeader) UnmarshalVT

func (m *ResponseHeader) UnmarshalVT(dAtA []byte) error

type ResponseOp

type ResponseOp struct {

	// response is a union of response types returned by a transaction.
	//
	// Types that are assignable to Response:
	//
	//	*ResponseOp_ResponseRange
	//	*ResponseOp_ResponsePut
	//	*ResponseOp_ResponseDeleteRange
	//	*ResponseOp_ResponseTxn
	Response isResponseOp_Response `protobuf_oneof:"response"`
	// contains filtered or unexported fields
}

func (*ResponseOp) Descriptor deprecated

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

Deprecated: Use ResponseOp.ProtoReflect.Descriptor instead.

func (*ResponseOp) GetResponse

func (m *ResponseOp) GetResponse() isResponseOp_Response

func (*ResponseOp) GetResponseDeleteRange

func (x *ResponseOp) GetResponseDeleteRange() *DeleteRangeResponse

func (*ResponseOp) GetResponsePut

func (x *ResponseOp) GetResponsePut() *PutResponse

func (*ResponseOp) GetResponseRange

func (x *ResponseOp) GetResponseRange() *RangeResponse

func (*ResponseOp) GetResponseTxn

func (x *ResponseOp) GetResponseTxn() *TxnResponse

func (*ResponseOp) MarshalToSizedBufferVT

func (m *ResponseOp) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*ResponseOp) MarshalToVT

func (m *ResponseOp) MarshalToVT(dAtA []byte) (int, error)

func (*ResponseOp) MarshalVT

func (m *ResponseOp) MarshalVT() (dAtA []byte, err error)

func (*ResponseOp) ProtoMessage

func (*ResponseOp) ProtoMessage()

func (*ResponseOp) ProtoReflect

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

func (*ResponseOp) Reset

func (x *ResponseOp) Reset()

func (*ResponseOp) SizeVT

func (m *ResponseOp) SizeVT() (n int)

func (*ResponseOp) String

func (x *ResponseOp) String() string

func (*ResponseOp) UnmarshalVT

func (m *ResponseOp) UnmarshalVT(dAtA []byte) error

type ResponseOp_ResponseDeleteRange

type ResponseOp_ResponseDeleteRange struct {
	ResponseDeleteRange *DeleteRangeResponse `protobuf:"bytes,3,opt,name=response_delete_range,json=responseDeleteRange,proto3,oneof"`
}

func (*ResponseOp_ResponseDeleteRange) MarshalToSizedBufferVT

func (m *ResponseOp_ResponseDeleteRange) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*ResponseOp_ResponseDeleteRange) MarshalToVT

func (m *ResponseOp_ResponseDeleteRange) MarshalToVT(dAtA []byte) (int, error)

func (*ResponseOp_ResponseDeleteRange) SizeVT

func (m *ResponseOp_ResponseDeleteRange) SizeVT() (n int)

type ResponseOp_ResponsePut

type ResponseOp_ResponsePut struct {
	ResponsePut *PutResponse `protobuf:"bytes,2,opt,name=response_put,json=responsePut,proto3,oneof"`
}

func (*ResponseOp_ResponsePut) MarshalToSizedBufferVT

func (m *ResponseOp_ResponsePut) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*ResponseOp_ResponsePut) MarshalToVT

func (m *ResponseOp_ResponsePut) MarshalToVT(dAtA []byte) (int, error)

func (*ResponseOp_ResponsePut) SizeVT

func (m *ResponseOp_ResponsePut) SizeVT() (n int)

type ResponseOp_ResponseRange

type ResponseOp_ResponseRange struct {
	ResponseRange *RangeResponse `protobuf:"bytes,1,opt,name=response_range,json=responseRange,proto3,oneof"`
}

func (*ResponseOp_ResponseRange) MarshalToSizedBufferVT

func (m *ResponseOp_ResponseRange) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*ResponseOp_ResponseRange) MarshalToVT

func (m *ResponseOp_ResponseRange) MarshalToVT(dAtA []byte) (int, error)

func (*ResponseOp_ResponseRange) SizeVT

func (m *ResponseOp_ResponseRange) SizeVT() (n int)

type ResponseOp_ResponseTxn

type ResponseOp_ResponseTxn struct {
	ResponseTxn *TxnResponse `protobuf:"bytes,4,opt,name=response_txn,json=responseTxn,proto3,oneof"`
}

func (*ResponseOp_ResponseTxn) MarshalToSizedBufferVT

func (m *ResponseOp_ResponseTxn) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*ResponseOp_ResponseTxn) MarshalToVT

func (m *ResponseOp_ResponseTxn) MarshalToVT(dAtA []byte) (int, error)

func (*ResponseOp_ResponseTxn) SizeVT

func (m *ResponseOp_ResponseTxn) SizeVT() (n int)

type SnapshotRequest

type SnapshotRequest struct {
	// contains filtered or unexported fields
}

func (*SnapshotRequest) Descriptor deprecated

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

Deprecated: Use SnapshotRequest.ProtoReflect.Descriptor instead.

func (*SnapshotRequest) MarshalToSizedBufferVT

func (m *SnapshotRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*SnapshotRequest) MarshalToVT

func (m *SnapshotRequest) MarshalToVT(dAtA []byte) (int, error)

func (*SnapshotRequest) MarshalVT

func (m *SnapshotRequest) MarshalVT() (dAtA []byte, err error)

func (*SnapshotRequest) ProtoMessage

func (*SnapshotRequest) ProtoMessage()

func (*SnapshotRequest) ProtoReflect

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

func (*SnapshotRequest) Reset

func (x *SnapshotRequest) Reset()

func (*SnapshotRequest) SizeVT

func (m *SnapshotRequest) SizeVT() (n int)

func (*SnapshotRequest) String

func (x *SnapshotRequest) String() string

func (*SnapshotRequest) UnmarshalVT

func (m *SnapshotRequest) UnmarshalVT(dAtA []byte) error

type SnapshotResponse

type SnapshotResponse struct {

	// header has the current key-value store information. The first header in the snapshot
	// stream indicates the point in time of the snapshot.
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// remaining_bytes is the number of blob bytes to be sent after this message
	RemainingBytes uint64 `protobuf:"varint,2,opt,name=remaining_bytes,json=remainingBytes,proto3" json:"remaining_bytes,omitempty"`
	// blob contains the next chunk of the snapshot in the snapshot stream.
	Blob []byte `protobuf:"bytes,3,opt,name=blob,proto3" json:"blob,omitempty"`
	// contains filtered or unexported fields
}

func (*SnapshotResponse) Descriptor deprecated

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

Deprecated: Use SnapshotResponse.ProtoReflect.Descriptor instead.

func (*SnapshotResponse) GetBlob

func (x *SnapshotResponse) GetBlob() []byte

func (*SnapshotResponse) GetHeader

func (x *SnapshotResponse) GetHeader() *ResponseHeader

func (*SnapshotResponse) GetRemainingBytes

func (x *SnapshotResponse) GetRemainingBytes() uint64

func (*SnapshotResponse) MarshalToSizedBufferVT

func (m *SnapshotResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*SnapshotResponse) MarshalToVT

func (m *SnapshotResponse) MarshalToVT(dAtA []byte) (int, error)

func (*SnapshotResponse) MarshalVT

func (m *SnapshotResponse) MarshalVT() (dAtA []byte, err error)

func (*SnapshotResponse) ProtoMessage

func (*SnapshotResponse) ProtoMessage()

func (*SnapshotResponse) ProtoReflect

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

func (*SnapshotResponse) Reset

func (x *SnapshotResponse) Reset()

func (*SnapshotResponse) SizeVT

func (m *SnapshotResponse) SizeVT() (n int)

func (*SnapshotResponse) String

func (x *SnapshotResponse) String() string

func (*SnapshotResponse) UnmarshalVT

func (m *SnapshotResponse) UnmarshalVT(dAtA []byte) error

type StatusRequest

type StatusRequest struct {
	// contains filtered or unexported fields
}

func (*StatusRequest) Descriptor deprecated

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

Deprecated: Use StatusRequest.ProtoReflect.Descriptor instead.

func (*StatusRequest) MarshalToSizedBufferVT

func (m *StatusRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*StatusRequest) MarshalToVT

func (m *StatusRequest) MarshalToVT(dAtA []byte) (int, error)

func (*StatusRequest) MarshalVT

func (m *StatusRequest) MarshalVT() (dAtA []byte, err error)

func (*StatusRequest) ProtoMessage

func (*StatusRequest) ProtoMessage()

func (*StatusRequest) ProtoReflect

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

func (*StatusRequest) Reset

func (x *StatusRequest) Reset()

func (*StatusRequest) SizeVT

func (m *StatusRequest) SizeVT() (n int)

func (*StatusRequest) String

func (x *StatusRequest) String() string

func (*StatusRequest) UnmarshalVT

func (m *StatusRequest) UnmarshalVT(dAtA []byte) error

type StatusResponse

type StatusResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// version is the cluster protocol version used by the responding member.
	Version string `protobuf:"bytes,2,opt,name=version,proto3" json:"version,omitempty"`
	// dbSize is the size of the backend database physically allocated, in bytes, of the responding member.
	DbSize int64 `protobuf:"varint,3,opt,name=dbSize,proto3" json:"dbSize,omitempty"`
	// leader is the member ID which the responding member believes is the current leader.
	Leader uint64 `protobuf:"varint,4,opt,name=leader,proto3" json:"leader,omitempty"`
	// raftIndex is the current raft committed index of the responding member.
	RaftIndex uint64 `protobuf:"varint,5,opt,name=raftIndex,proto3" json:"raftIndex,omitempty"`
	// raftTerm is the current raft term of the responding member.
	RaftTerm uint64 `protobuf:"varint,6,opt,name=raftTerm,proto3" json:"raftTerm,omitempty"`
	// raftAppliedIndex is the current raft applied index of the responding member.
	RaftAppliedIndex uint64 `protobuf:"varint,7,opt,name=raftAppliedIndex,proto3" json:"raftAppliedIndex,omitempty"`
	// errors contains alarm/health information and status.
	Errors []string `protobuf:"bytes,8,rep,name=errors,proto3" json:"errors,omitempty"`
	// dbSizeInUse is the size of the backend database logically in use, in bytes, of the responding member.
	DbSizeInUse int64 `protobuf:"varint,9,opt,name=dbSizeInUse,proto3" json:"dbSizeInUse,omitempty"`
	// isLearner indicates if the member is raft learner.
	IsLearner bool `protobuf:"varint,10,opt,name=isLearner,proto3" json:"isLearner,omitempty"`
	// contains filtered or unexported fields
}

func (*StatusResponse) Descriptor deprecated

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

Deprecated: Use StatusResponse.ProtoReflect.Descriptor instead.

func (*StatusResponse) GetDbSize

func (x *StatusResponse) GetDbSize() int64

func (*StatusResponse) GetDbSizeInUse

func (x *StatusResponse) GetDbSizeInUse() int64

func (*StatusResponse) GetErrors

func (x *StatusResponse) GetErrors() []string

func (*StatusResponse) GetHeader

func (x *StatusResponse) GetHeader() *ResponseHeader

func (*StatusResponse) GetIsLearner

func (x *StatusResponse) GetIsLearner() bool

func (*StatusResponse) GetLeader

func (x *StatusResponse) GetLeader() uint64

func (*StatusResponse) GetRaftAppliedIndex

func (x *StatusResponse) GetRaftAppliedIndex() uint64

func (*StatusResponse) GetRaftIndex

func (x *StatusResponse) GetRaftIndex() uint64

func (*StatusResponse) GetRaftTerm

func (x *StatusResponse) GetRaftTerm() uint64

func (*StatusResponse) GetVersion

func (x *StatusResponse) GetVersion() string

func (*StatusResponse) MarshalToSizedBufferVT

func (m *StatusResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*StatusResponse) MarshalToVT

func (m *StatusResponse) MarshalToVT(dAtA []byte) (int, error)

func (*StatusResponse) MarshalVT

func (m *StatusResponse) MarshalVT() (dAtA []byte, err error)

func (*StatusResponse) ProtoMessage

func (*StatusResponse) ProtoMessage()

func (*StatusResponse) ProtoReflect

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

func (*StatusResponse) Reset

func (x *StatusResponse) Reset()

func (*StatusResponse) SizeVT

func (m *StatusResponse) SizeVT() (n int)

func (*StatusResponse) String

func (x *StatusResponse) String() string

func (*StatusResponse) UnmarshalVT

func (m *StatusResponse) UnmarshalVT(dAtA []byte) error

type TxnRequest

type TxnRequest struct {

	// compare is a list of predicates representing a conjunction of terms.
	// If the comparisons succeed, then the success requests will be processed in order,
	// and the response will contain their respective responses in order.
	// If the comparisons fail, then the failure requests will be processed in order,
	// and the response will contain their respective responses in order.
	Compare []*Compare `protobuf:"bytes,1,rep,name=compare,proto3" json:"compare,omitempty"`
	// success is a list of requests which will be applied when compare evaluates to true.
	Success []*RequestOp `protobuf:"bytes,2,rep,name=success,proto3" json:"success,omitempty"`
	// failure is a list of requests which will be applied when compare evaluates to false.
	Failure []*RequestOp `protobuf:"bytes,3,rep,name=failure,proto3" json:"failure,omitempty"`
	// contains filtered or unexported fields
}

From google paxosdb paper: Our implementation hinges around a powerful primitive which we call MultiOp. All other database operations except for iteration are implemented as a single call to MultiOp. A MultiOp is applied atomically and consists of three components: 1. A list of tests called guard. Each test in guard checks a single entry in the database. It may check for the absence or presence of a value, or compare with a given value. Two different tests in the guard may apply to the same or different entries in the database. All tests in the guard are applied and MultiOp returns the results. If all tests are true, MultiOp executes t op (see item 2 below), otherwise it executes f op (see item 3 below). 2. A list of database operations called t op. Each operation in the list is either an insert, delete, or lookup operation, and applies to a single database entry. Two different operations in the list may apply to the same or different entries in the database. These operations are executed if guard evaluates to true. 3. A list of database operations called f op. Like t op, but executed if guard evaluates to false.

func (*TxnRequest) Descriptor deprecated

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

Deprecated: Use TxnRequest.ProtoReflect.Descriptor instead.

func (*TxnRequest) GetCompare

func (x *TxnRequest) GetCompare() []*Compare

func (*TxnRequest) GetFailure

func (x *TxnRequest) GetFailure() []*RequestOp

func (*TxnRequest) GetSuccess

func (x *TxnRequest) GetSuccess() []*RequestOp

func (*TxnRequest) MarshalToSizedBufferVT

func (m *TxnRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*TxnRequest) MarshalToVT

func (m *TxnRequest) MarshalToVT(dAtA []byte) (int, error)

func (*TxnRequest) MarshalVT

func (m *TxnRequest) MarshalVT() (dAtA []byte, err error)

func (*TxnRequest) ProtoMessage

func (*TxnRequest) ProtoMessage()

func (*TxnRequest) ProtoReflect

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

func (*TxnRequest) Reset

func (x *TxnRequest) Reset()

func (*TxnRequest) SizeVT

func (m *TxnRequest) SizeVT() (n int)

func (*TxnRequest) String

func (x *TxnRequest) String() string

func (*TxnRequest) UnmarshalVT

func (m *TxnRequest) UnmarshalVT(dAtA []byte) error

type TxnResponse

type TxnResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// succeeded is set to true if the compare evaluated to true or false otherwise.
	Succeeded bool `protobuf:"varint,2,opt,name=succeeded,proto3" json:"succeeded,omitempty"`
	// responses is a list of responses corresponding to the results from applying
	// success if succeeded is true or failure if succeeded is false.
	Responses []*ResponseOp `protobuf:"bytes,3,rep,name=responses,proto3" json:"responses,omitempty"`
	// contains filtered or unexported fields
}

func (*TxnResponse) Descriptor deprecated

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

Deprecated: Use TxnResponse.ProtoReflect.Descriptor instead.

func (*TxnResponse) GetHeader

func (x *TxnResponse) GetHeader() *ResponseHeader

func (*TxnResponse) GetResponses

func (x *TxnResponse) GetResponses() []*ResponseOp

func (*TxnResponse) GetSucceeded

func (x *TxnResponse) GetSucceeded() bool

func (*TxnResponse) MarshalToSizedBufferVT

func (m *TxnResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*TxnResponse) MarshalToVT

func (m *TxnResponse) MarshalToVT(dAtA []byte) (int, error)

func (*TxnResponse) MarshalVT

func (m *TxnResponse) MarshalVT() (dAtA []byte, err error)

func (*TxnResponse) ProtoMessage

func (*TxnResponse) ProtoMessage()

func (*TxnResponse) ProtoReflect

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

func (*TxnResponse) Reset

func (x *TxnResponse) Reset()

func (*TxnResponse) SizeVT

func (m *TxnResponse) SizeVT() (n int)

func (*TxnResponse) String

func (x *TxnResponse) String() string

func (*TxnResponse) UnmarshalVT

func (m *TxnResponse) UnmarshalVT(dAtA []byte) error

type WatchCancelRequest

type WatchCancelRequest struct {

	// watch_id is the watcher id to cancel so that no more events are transmitted.
	WatchId int64 `protobuf:"varint,1,opt,name=watch_id,json=watchId,proto3" json:"watch_id,omitempty"`
	// contains filtered or unexported fields
}

func (*WatchCancelRequest) Descriptor deprecated

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

Deprecated: Use WatchCancelRequest.ProtoReflect.Descriptor instead.

func (*WatchCancelRequest) GetWatchId

func (x *WatchCancelRequest) GetWatchId() int64

func (*WatchCancelRequest) MarshalToSizedBufferVT

func (m *WatchCancelRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*WatchCancelRequest) MarshalToVT

func (m *WatchCancelRequest) MarshalToVT(dAtA []byte) (int, error)

func (*WatchCancelRequest) MarshalVT

func (m *WatchCancelRequest) MarshalVT() (dAtA []byte, err error)

func (*WatchCancelRequest) ProtoMessage

func (*WatchCancelRequest) ProtoMessage()

func (*WatchCancelRequest) ProtoReflect

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

func (*WatchCancelRequest) Reset

func (x *WatchCancelRequest) Reset()

func (*WatchCancelRequest) SizeVT

func (m *WatchCancelRequest) SizeVT() (n int)

func (*WatchCancelRequest) String

func (x *WatchCancelRequest) String() string

func (*WatchCancelRequest) UnmarshalVT

func (m *WatchCancelRequest) UnmarshalVT(dAtA []byte) error

type WatchCreateRequest

type WatchCreateRequest struct {

	// key is the key to register for watching.
	Key []byte `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
	// range_end is the end of the range [key, range_end) to watch. If range_end is not given,
	// only the key argument is watched. If range_end is equal to '\0', all keys greater than
	// or equal to the key argument are watched.
	// If the range_end is one bit larger than the given key,
	// then all keys with the prefix (the given key) will be watched.
	RangeEnd []byte `protobuf:"bytes,2,opt,name=range_end,json=rangeEnd,proto3" json:"range_end,omitempty"`
	// start_revision is an optional revision to watch from (inclusive). No start_revision is "now".
	StartRevision int64 `protobuf:"varint,3,opt,name=start_revision,json=startRevision,proto3" json:"start_revision,omitempty"`
	// progress_notify is set so that the etcd server will periodically send a WatchResponse with
	// no events to the new watcher if there are no recent events. It is useful when clients
	// wish to recover a disconnected watcher starting from a recent known revision.
	// The etcd server may decide how often it will send notifications based on current load.
	ProgressNotify bool `protobuf:"varint,4,opt,name=progress_notify,json=progressNotify,proto3" json:"progress_notify,omitempty"`
	// filters filter the events at server side before it sends back to the watcher.
	Filters []WatchCreateRequest_FilterType `protobuf:"varint,5,rep,packed,name=filters,proto3,enum=etcdserverpb.WatchCreateRequest_FilterType" json:"filters,omitempty"`
	// If prev_kv is set, created watcher gets the previous KV before the event happens.
	// If the previous KV is already compacted, nothing will be returned.
	PrevKv bool `protobuf:"varint,6,opt,name=prev_kv,json=prevKv,proto3" json:"prev_kv,omitempty"`
	// If watch_id is provided and non-zero, it will be assigned to this watcher.
	// Since creating a watcher in etcd is not a synchronous operation,
	// this can be used ensure that ordering is correct when creating multiple
	// watchers on the same stream. Creating a watcher with an ID already in
	// use on the stream will cause an error to be returned.
	WatchId int64 `protobuf:"varint,7,opt,name=watch_id,json=watchId,proto3" json:"watch_id,omitempty"`
	// fragment enables splitting large revisions into multiple watch responses.
	Fragment bool `protobuf:"varint,8,opt,name=fragment,proto3" json:"fragment,omitempty"`
	// contains filtered or unexported fields
}

func (*WatchCreateRequest) Descriptor deprecated

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

Deprecated: Use WatchCreateRequest.ProtoReflect.Descriptor instead.

func (*WatchCreateRequest) GetFilters

func (*WatchCreateRequest) GetFragment

func (x *WatchCreateRequest) GetFragment() bool

func (*WatchCreateRequest) GetKey

func (x *WatchCreateRequest) GetKey() []byte

func (*WatchCreateRequest) GetPrevKv

func (x *WatchCreateRequest) GetPrevKv() bool

func (*WatchCreateRequest) GetProgressNotify

func (x *WatchCreateRequest) GetProgressNotify() bool

func (*WatchCreateRequest) GetRangeEnd

func (x *WatchCreateRequest) GetRangeEnd() []byte

func (*WatchCreateRequest) GetStartRevision

func (x *WatchCreateRequest) GetStartRevision() int64

func (*WatchCreateRequest) GetWatchId

func (x *WatchCreateRequest) GetWatchId() int64

func (*WatchCreateRequest) MarshalToSizedBufferVT

func (m *WatchCreateRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*WatchCreateRequest) MarshalToVT

func (m *WatchCreateRequest) MarshalToVT(dAtA []byte) (int, error)

func (*WatchCreateRequest) MarshalVT

func (m *WatchCreateRequest) MarshalVT() (dAtA []byte, err error)

func (*WatchCreateRequest) ProtoMessage

func (*WatchCreateRequest) ProtoMessage()

func (*WatchCreateRequest) ProtoReflect

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

func (*WatchCreateRequest) Reset

func (x *WatchCreateRequest) Reset()

func (*WatchCreateRequest) SizeVT

func (m *WatchCreateRequest) SizeVT() (n int)

func (*WatchCreateRequest) String

func (x *WatchCreateRequest) String() string

func (*WatchCreateRequest) UnmarshalVT

func (m *WatchCreateRequest) UnmarshalVT(dAtA []byte) error

type WatchCreateRequest_FilterType

type WatchCreateRequest_FilterType int32
const (
	// filter out put event.
	WatchCreateRequest_NOPUT WatchCreateRequest_FilterType = 0
	// filter out delete event.
	WatchCreateRequest_NODELETE WatchCreateRequest_FilterType = 1
)

func (WatchCreateRequest_FilterType) Descriptor

func (WatchCreateRequest_FilterType) Enum

func (WatchCreateRequest_FilterType) EnumDescriptor deprecated

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

Deprecated: Use WatchCreateRequest_FilterType.Descriptor instead.

func (WatchCreateRequest_FilterType) Number

func (WatchCreateRequest_FilterType) String

func (WatchCreateRequest_FilterType) Type

type WatchProgressRequest

type WatchProgressRequest struct {
	// contains filtered or unexported fields
}

Requests the a watch stream progress status be sent in the watch response stream as soon as possible.

func (*WatchProgressRequest) Descriptor deprecated

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

Deprecated: Use WatchProgressRequest.ProtoReflect.Descriptor instead.

func (*WatchProgressRequest) MarshalToSizedBufferVT

func (m *WatchProgressRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*WatchProgressRequest) MarshalToVT

func (m *WatchProgressRequest) MarshalToVT(dAtA []byte) (int, error)

func (*WatchProgressRequest) MarshalVT

func (m *WatchProgressRequest) MarshalVT() (dAtA []byte, err error)

func (*WatchProgressRequest) ProtoMessage

func (*WatchProgressRequest) ProtoMessage()

func (*WatchProgressRequest) ProtoReflect

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

func (*WatchProgressRequest) Reset

func (x *WatchProgressRequest) Reset()

func (*WatchProgressRequest) SizeVT

func (m *WatchProgressRequest) SizeVT() (n int)

func (*WatchProgressRequest) String

func (x *WatchProgressRequest) String() string

func (*WatchProgressRequest) UnmarshalVT

func (m *WatchProgressRequest) UnmarshalVT(dAtA []byte) error

type WatchRequest

type WatchRequest struct {

	// request_union is a request to either create a new watcher or cancel an existing watcher.
	//
	// Types that are assignable to RequestUnion:
	//
	//	*WatchRequest_CreateRequest
	//	*WatchRequest_CancelRequest
	//	*WatchRequest_ProgressRequest
	RequestUnion isWatchRequest_RequestUnion `protobuf_oneof:"request_union"`
	// contains filtered or unexported fields
}

func (*WatchRequest) Descriptor deprecated

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

Deprecated: Use WatchRequest.ProtoReflect.Descriptor instead.

func (*WatchRequest) GetCancelRequest

func (x *WatchRequest) GetCancelRequest() *WatchCancelRequest

func (*WatchRequest) GetCreateRequest

func (x *WatchRequest) GetCreateRequest() *WatchCreateRequest

func (*WatchRequest) GetProgressRequest

func (x *WatchRequest) GetProgressRequest() *WatchProgressRequest

func (*WatchRequest) GetRequestUnion

func (m *WatchRequest) GetRequestUnion() isWatchRequest_RequestUnion

func (*WatchRequest) MarshalToSizedBufferVT

func (m *WatchRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*WatchRequest) MarshalToVT

func (m *WatchRequest) MarshalToVT(dAtA []byte) (int, error)

func (*WatchRequest) MarshalVT

func (m *WatchRequest) MarshalVT() (dAtA []byte, err error)

func (*WatchRequest) ProtoMessage

func (*WatchRequest) ProtoMessage()

func (*WatchRequest) ProtoReflect

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

func (*WatchRequest) Reset

func (x *WatchRequest) Reset()

func (*WatchRequest) SizeVT

func (m *WatchRequest) SizeVT() (n int)

func (*WatchRequest) String

func (x *WatchRequest) String() string

func (*WatchRequest) UnmarshalVT

func (m *WatchRequest) UnmarshalVT(dAtA []byte) error

type WatchRequest_CancelRequest

type WatchRequest_CancelRequest struct {
	CancelRequest *WatchCancelRequest `protobuf:"bytes,2,opt,name=cancel_request,json=cancelRequest,proto3,oneof"`
}

func (*WatchRequest_CancelRequest) MarshalToSizedBufferVT

func (m *WatchRequest_CancelRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*WatchRequest_CancelRequest) MarshalToVT

func (m *WatchRequest_CancelRequest) MarshalToVT(dAtA []byte) (int, error)

func (*WatchRequest_CancelRequest) SizeVT

func (m *WatchRequest_CancelRequest) SizeVT() (n int)

type WatchRequest_CreateRequest

type WatchRequest_CreateRequest struct {
	CreateRequest *WatchCreateRequest `protobuf:"bytes,1,opt,name=create_request,json=createRequest,proto3,oneof"`
}

func (*WatchRequest_CreateRequest) MarshalToSizedBufferVT

func (m *WatchRequest_CreateRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*WatchRequest_CreateRequest) MarshalToVT

func (m *WatchRequest_CreateRequest) MarshalToVT(dAtA []byte) (int, error)

func (*WatchRequest_CreateRequest) SizeVT

func (m *WatchRequest_CreateRequest) SizeVT() (n int)

type WatchRequest_ProgressRequest

type WatchRequest_ProgressRequest struct {
	ProgressRequest *WatchProgressRequest `protobuf:"bytes,3,opt,name=progress_request,json=progressRequest,proto3,oneof"`
}

func (*WatchRequest_ProgressRequest) MarshalToSizedBufferVT

func (m *WatchRequest_ProgressRequest) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*WatchRequest_ProgressRequest) MarshalToVT

func (m *WatchRequest_ProgressRequest) MarshalToVT(dAtA []byte) (int, error)

func (*WatchRequest_ProgressRequest) SizeVT

func (m *WatchRequest_ProgressRequest) SizeVT() (n int)

type WatchResponse

type WatchResponse struct {
	Header *ResponseHeader `protobuf:"bytes,1,opt,name=header,proto3" json:"header,omitempty"`
	// watch_id is the ID of the watcher that corresponds to the response.
	WatchId int64 `protobuf:"varint,2,opt,name=watch_id,json=watchId,proto3" json:"watch_id,omitempty"`
	// created is set to true if the response is for a create watch request.
	// The client should record the watch_id and expect to receive events for
	// the created watcher from the same stream.
	// All events sent to the created watcher will attach with the same watch_id.
	Created bool `protobuf:"varint,3,opt,name=created,proto3" json:"created,omitempty"`
	// canceled is set to true if the response is for a cancel watch request.
	// No further events will be sent to the canceled watcher.
	Canceled bool `protobuf:"varint,4,opt,name=canceled,proto3" json:"canceled,omitempty"`
	// compact_revision is set to the minimum index if a watcher tries to watch
	// at a compacted index.
	//
	// This happens when creating a watcher at a compacted revision or the watcher cannot
	// catch up with the progress of the key-value store.
	//
	// The client should treat the watcher as canceled and should not try to create any
	// watcher with the same start_revision again.
	CompactRevision int64 `protobuf:"varint,5,opt,name=compact_revision,json=compactRevision,proto3" json:"compact_revision,omitempty"`
	// cancel_reason indicates the reason for canceling the watcher.
	CancelReason string `protobuf:"bytes,6,opt,name=cancel_reason,json=cancelReason,proto3" json:"cancel_reason,omitempty"`
	// framgment is true if large watch response was split over multiple responses.
	Fragment bool            `protobuf:"varint,7,opt,name=fragment,proto3" json:"fragment,omitempty"`
	Events   []*mvccpb.Event `protobuf:"bytes,11,rep,name=events,proto3" json:"events,omitempty"`
	// contains filtered or unexported fields
}

func (*WatchResponse) Descriptor deprecated

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

Deprecated: Use WatchResponse.ProtoReflect.Descriptor instead.

func (*WatchResponse) GetCancelReason

func (x *WatchResponse) GetCancelReason() string

func (*WatchResponse) GetCanceled

func (x *WatchResponse) GetCanceled() bool

func (*WatchResponse) GetCompactRevision

func (x *WatchResponse) GetCompactRevision() int64

func (*WatchResponse) GetCreated

func (x *WatchResponse) GetCreated() bool

func (*WatchResponse) GetEvents

func (x *WatchResponse) GetEvents() []*mvccpb.Event

func (*WatchResponse) GetFragment

func (x *WatchResponse) GetFragment() bool

func (*WatchResponse) GetHeader

func (x *WatchResponse) GetHeader() *ResponseHeader

func (*WatchResponse) GetWatchId

func (x *WatchResponse) GetWatchId() int64

func (*WatchResponse) MarshalToSizedBufferVT

func (m *WatchResponse) MarshalToSizedBufferVT(dAtA []byte) (int, error)

func (*WatchResponse) MarshalToVT

func (m *WatchResponse) MarshalToVT(dAtA []byte) (int, error)

func (*WatchResponse) MarshalVT

func (m *WatchResponse) MarshalVT() (dAtA []byte, err error)

func (*WatchResponse) ProtoMessage

func (*WatchResponse) ProtoMessage()

func (*WatchResponse) ProtoReflect

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

func (*WatchResponse) Reset

func (x *WatchResponse) Reset()

func (*WatchResponse) SizeVT

func (m *WatchResponse) SizeVT() (n int)

func (*WatchResponse) String

func (x *WatchResponse) String() string

func (*WatchResponse) UnmarshalVT

func (m *WatchResponse) UnmarshalVT(dAtA []byte) error

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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