cds_cabinet_v1

package
v0.0.0-...-9f7a181 Latest Latest
Warning

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

Go to latest
Published: Oct 11, 2019 License: MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var CheckOperators_name = map[int32]string{
	0: "EXISTS",
	8: "TOUCH",
	1: "EQUAL",
	2: "NOT_EQUAL",
}
View Source
var CheckOperators_value = map[string]int32{
	"EXISTS":    0,
	"TOUCH":     8,
	"EQUAL":     1,
	"NOT_EQUAL": 2,
}
View Source
var ListRange_name = map[int32]string{
	0: "UNDEFINED",
	1: "ALL",
	2: "EXACT_RANGE",
	3: "START_WITH",
}
View Source
var ListRange_value = map[string]int32{
	"UNDEFINED":   0,
	"ALL":         1,
	"EXACT_RANGE": 2,
	"START_WITH":  3,
}
View Source
var MutationStatus_name = map[int32]string{
	0:  "SUCCESS",
	10: "GENERIC_FAILURE",
	11: "CONNECTION_FAILURE",
	12: "PROCESSING_FAILURE",
	13: "READ_CHECK_FAILURE",
	14: "MUTATION_FAILURE",
}
View Source
var MutationStatus_value = map[string]int32{
	"SUCCESS":            0,
	"GENERIC_FAILURE":    10,
	"CONNECTION_FAILURE": 11,
	"PROCESSING_FAILURE": 12,
	"READ_CHECK_FAILURE": 13,
	"MUTATION_FAILURE":   14,
}

Functions

func RegisterCDSCabinetServer

func RegisterCDSCabinetServer(s *grpc.Server, srv CDSCabinetServer)

Types

type CDSCabinetClient

type CDSCabinetClient interface {
	CounterGet(ctx context.Context, in *Counter, opts ...grpc.CallOption) (*CounterValueResponse, error)
	EdgeGet(ctx context.Context, in *EdgeGetRequest, opts ...grpc.CallOption) (*Edge, error)
	EdgeList(ctx context.Context, in *EdgeListRequest, opts ...grpc.CallOption) (CDSCabinet_EdgeListClient, error)
	IndexGet(ctx context.Context, in *IndexGetRequest, opts ...grpc.CallOption) (*Index, error)
	IndexList(ctx context.Context, in *IndexListRequest, opts ...grpc.CallOption) (CDSCabinet_IndexListClient, error)
	IndexChoices(ctx context.Context, in *IndexChoiceRequest, opts ...grpc.CallOption) (CDSCabinet_IndexChoicesClient, error)
	IndexDrop(ctx context.Context, in *IndexDropRequest, opts ...grpc.CallOption) (*MutationResponse, error)
	MetaGet(ctx context.Context, in *Meta, opts ...grpc.CallOption) (*MetaGetResponse, error)
	MetaList(ctx context.Context, in *MetaListRequest, opts ...grpc.CallOption) (CDSCabinet_MetaListClient, error)
	NodeGet(ctx context.Context, in *NodeGetRequest, opts ...grpc.CallOption) (*Node, error)
	NodeList(ctx context.Context, in *NodeListRequest, opts ...grpc.CallOption) (CDSCabinet_NodeListClient, error)
	Transaction(ctx context.Context, opts ...grpc.CallOption) (CDSCabinet_TransactionClient, error)
	ReadCheck(ctx context.Context, in *ReadCheckRequest, opts ...grpc.CallOption) (*ReadCheckResponse, error)
	SequentialCreate(ctx context.Context, in *Sequential, opts ...grpc.CallOption) (*Sequential, error)
	SequentialDelete(ctx context.Context, in *Sequential, opts ...grpc.CallOption) (*MutationResponse, error)
	SequentialGet(ctx context.Context, in *Sequential, opts ...grpc.CallOption) (*Sequential, error)
	SequentialList(ctx context.Context, in *SequentialListRequest, opts ...grpc.CallOption) (CDSCabinet_SequentialListClient, error)
}

CDSCabinetClient is the client API for CDSCabinet service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.

func NewCDSCabinetClient

func NewCDSCabinetClient(cc *grpc.ClientConn) CDSCabinetClient

type CDSCabinet_EdgeListClient

type CDSCabinet_EdgeListClient interface {
	Recv() (*Edge, error)
	grpc.ClientStream
}

type CDSCabinet_EdgeListServer

type CDSCabinet_EdgeListServer interface {
	Send(*Edge) error
	grpc.ServerStream
}

type CDSCabinet_IndexChoicesClient

type CDSCabinet_IndexChoicesClient interface {
	Recv() (*IndexChoice, error)
	grpc.ClientStream
}

type CDSCabinet_IndexChoicesServer

type CDSCabinet_IndexChoicesServer interface {
	Send(*IndexChoice) error
	grpc.ServerStream
}

type CDSCabinet_IndexListClient

type CDSCabinet_IndexListClient interface {
	Recv() (*Index, error)
	grpc.ClientStream
}

type CDSCabinet_IndexListServer

type CDSCabinet_IndexListServer interface {
	Send(*Index) error
	grpc.ServerStream
}

type CDSCabinet_MetaListClient

type CDSCabinet_MetaListClient interface {
	Recv() (*Meta, error)
	grpc.ClientStream
}

type CDSCabinet_MetaListServer

type CDSCabinet_MetaListServer interface {
	Send(*Meta) error
	grpc.ServerStream
}

type CDSCabinet_NodeListClient

type CDSCabinet_NodeListClient interface {
	Recv() (*Node, error)
	grpc.ClientStream
}

type CDSCabinet_NodeListServer

type CDSCabinet_NodeListServer interface {
	Send(*Node) error
	grpc.ServerStream
}

type CDSCabinet_SequentialListClient

type CDSCabinet_SequentialListClient interface {
	Recv() (*Sequential, error)
	grpc.ClientStream
}

type CDSCabinet_SequentialListServer

type CDSCabinet_SequentialListServer interface {
	Send(*Sequential) error
	grpc.ServerStream
}

type CDSCabinet_TransactionClient

type CDSCabinet_TransactionClient interface {
	Send(*TransactionAction) error
	Recv() (*TransactionActionResponse, error)
	grpc.ClientStream
}

type CDSCabinet_TransactionServer

type CDSCabinet_TransactionServer interface {
	Send(*TransactionActionResponse) error
	Recv() (*TransactionAction, error)
	grpc.ServerStream
}

type CheckOperators

type CheckOperators int32
const (
	CheckOperators_EXISTS    CheckOperators = 0
	CheckOperators_TOUCH     CheckOperators = 8
	CheckOperators_EQUAL     CheckOperators = 1
	CheckOperators_NOT_EQUAL CheckOperators = 2
)

func (CheckOperators) EnumDescriptor

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

func (CheckOperators) String

func (x CheckOperators) String() string

type CheckTarget

type CheckTarget struct {
	// Types that are valid to be assigned to Target:
	//	*CheckTarget_Val
	//	*CheckTarget_Iri
	Target               isCheckTarget_Target `protobuf_oneof:"target"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
}

func (*CheckTarget) Descriptor

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

func (*CheckTarget) GetIri

func (m *CheckTarget) GetIri() string

func (*CheckTarget) GetTarget

func (m *CheckTarget) GetTarget() isCheckTarget_Target

func (*CheckTarget) GetVal

func (m *CheckTarget) GetVal() string

func (*CheckTarget) ProtoMessage

func (*CheckTarget) ProtoMessage()

func (*CheckTarget) Reset

func (m *CheckTarget) Reset()

func (*CheckTarget) String

func (m *CheckTarget) String() string

func (*CheckTarget) XXX_DiscardUnknown

func (m *CheckTarget) XXX_DiscardUnknown()

func (*CheckTarget) XXX_Marshal

func (m *CheckTarget) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CheckTarget) XXX_Merge

func (m *CheckTarget) XXX_Merge(src proto.Message)

func (*CheckTarget) XXX_OneofWrappers

func (*CheckTarget) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*CheckTarget) XXX_Size

func (m *CheckTarget) XXX_Size() int

func (*CheckTarget) XXX_Unmarshal

func (m *CheckTarget) XXX_Unmarshal(b []byte) error

type CheckTarget_Iri

type CheckTarget_Iri struct {
	Iri string `protobuf:"bytes,2,opt,name=iri,proto3,oneof"`
}

type CheckTarget_Val

type CheckTarget_Val struct {
	Val string `protobuf:"bytes,1,opt,name=val,proto3,oneof"`
}

type Counter

type Counter struct {
	// Types that are valid to be assigned to Object:
	//	*Counter_Node
	//	*Counter_Edge
	Object               isCounter_Object `protobuf_oneof:"object"`
	Counter              uint32           `protobuf:"varint,10,opt,name=counter,proto3" json:"counter,omitempty"`
	Value                int64            `protobuf:"varint,11,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (*Counter) Descriptor

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

func (*Counter) GetCounter

func (m *Counter) GetCounter() uint32

func (*Counter) GetEdge

func (m *Counter) GetEdge() *Edge

func (*Counter) GetNode

func (m *Counter) GetNode() string

func (*Counter) GetObject

func (m *Counter) GetObject() isCounter_Object

func (*Counter) GetValue

func (m *Counter) GetValue() int64

func (*Counter) ProtoMessage

func (*Counter) ProtoMessage()

func (*Counter) Reset

func (m *Counter) Reset()

func (*Counter) String

func (m *Counter) String() string

func (*Counter) XXX_DiscardUnknown

func (m *Counter) XXX_DiscardUnknown()

func (*Counter) XXX_Marshal

func (m *Counter) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Counter) XXX_Merge

func (m *Counter) XXX_Merge(src proto.Message)

func (*Counter) XXX_OneofWrappers

func (*Counter) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*Counter) XXX_Size

func (m *Counter) XXX_Size() int

func (*Counter) XXX_Unmarshal

func (m *Counter) XXX_Unmarshal(b []byte) error

type CounterValueResponse

type CounterValueResponse struct {
	Value                int64    `protobuf:"varint,1,opt,name=value,proto3" json:"value,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*CounterValueResponse) Descriptor

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

func (*CounterValueResponse) GetValue

func (m *CounterValueResponse) GetValue() int64

func (*CounterValueResponse) ProtoMessage

func (*CounterValueResponse) ProtoMessage()

func (*CounterValueResponse) Reset

func (m *CounterValueResponse) Reset()

func (*CounterValueResponse) String

func (m *CounterValueResponse) String() string

func (*CounterValueResponse) XXX_DiscardUnknown

func (m *CounterValueResponse) XXX_DiscardUnknown()

func (*CounterValueResponse) XXX_Marshal

func (m *CounterValueResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*CounterValueResponse) XXX_Merge

func (m *CounterValueResponse) XXX_Merge(src proto.Message)

func (*CounterValueResponse) XXX_Size

func (m *CounterValueResponse) XXX_Size() int

func (*CounterValueResponse) XXX_Unmarshal

func (m *CounterValueResponse) XXX_Unmarshal(b []byte) error

type Counter_Edge

type Counter_Edge struct {
	Edge *Edge `protobuf:"bytes,2,opt,name=edge,proto3,oneof"`
}

type Counter_Node

type Counter_Node struct {
	Node string `protobuf:"bytes,1,opt,name=node,proto3,oneof"`
}

type Edge

type Edge struct {
	Subject              string   `protobuf:"bytes,1,opt,name=subject,proto3" json:"subject,omitempty"`
	Predicate            uint32   `protobuf:"varint,2,opt,name=predicate,proto3" json:"predicate,omitempty"`
	Target               string   `protobuf:"bytes,3,opt,name=target,proto3" json:"target,omitempty"`
	Properties           []byte   `protobuf:"bytes,10,opt,name=properties,proto3" json:"properties,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Edge) Descriptor

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

func (*Edge) GetPredicate

func (m *Edge) GetPredicate() uint32

func (*Edge) GetProperties

func (m *Edge) GetProperties() []byte

func (*Edge) GetSubject

func (m *Edge) GetSubject() string

func (*Edge) GetTarget

func (m *Edge) GetTarget() string

func (*Edge) ProtoMessage

func (*Edge) ProtoMessage()

func (*Edge) Reset

func (m *Edge) Reset()

func (*Edge) String

func (m *Edge) String() string

func (*Edge) XXX_DiscardUnknown

func (m *Edge) XXX_DiscardUnknown()

func (*Edge) XXX_Marshal

func (m *Edge) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Edge) XXX_Merge

func (m *Edge) XXX_Merge(src proto.Message)

func (*Edge) XXX_Size

func (m *Edge) XXX_Size() int

func (*Edge) XXX_Unmarshal

func (m *Edge) XXX_Unmarshal(b []byte) error

type EdgeGetRequest

type EdgeGetRequest struct {
	Edge                 *Edge    `protobuf:"bytes,2,opt,name=edge,proto3" json:"edge,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*EdgeGetRequest) Descriptor

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

func (*EdgeGetRequest) GetEdge

func (m *EdgeGetRequest) GetEdge() *Edge

func (*EdgeGetRequest) ProtoMessage

func (*EdgeGetRequest) ProtoMessage()

func (*EdgeGetRequest) Reset

func (m *EdgeGetRequest) Reset()

func (*EdgeGetRequest) String

func (m *EdgeGetRequest) String() string

func (*EdgeGetRequest) XXX_DiscardUnknown

func (m *EdgeGetRequest) XXX_DiscardUnknown()

func (*EdgeGetRequest) XXX_Marshal

func (m *EdgeGetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EdgeGetRequest) XXX_Merge

func (m *EdgeGetRequest) XXX_Merge(src proto.Message)

func (*EdgeGetRequest) XXX_Size

func (m *EdgeGetRequest) XXX_Size() int

func (*EdgeGetRequest) XXX_Unmarshal

func (m *EdgeGetRequest) XXX_Unmarshal(b []byte) error

type EdgeListRequest

type EdgeListRequest struct {
	Opt                  *ListOptions `protobuf:"bytes,1,opt,name=opt,proto3" json:"opt,omitempty"`
	Subject              string       `protobuf:"bytes,10,opt,name=subject,proto3" json:"subject,omitempty"`
	Predicate            uint32       `protobuf:"varint,11,opt,name=predicate,proto3" json:"predicate,omitempty"`
	IncludeSubject       bool         `protobuf:"varint,20,opt,name=include_subject,json=includeSubject,proto3" json:"include_subject,omitempty"`
	IncludePredicate     bool         `protobuf:"varint,21,opt,name=include_predicate,json=includePredicate,proto3" json:"include_predicate,omitempty"`
	IncludeTarget        bool         `protobuf:"varint,22,opt,name=include_target,json=includeTarget,proto3" json:"include_target,omitempty"`
	IncludeProp          bool         `protobuf:"varint,23,opt,name=include_prop,json=includeProp,proto3" json:"include_prop,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*EdgeListRequest) Descriptor

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

func (*EdgeListRequest) GetIncludePredicate

func (m *EdgeListRequest) GetIncludePredicate() bool

func (*EdgeListRequest) GetIncludeProp

func (m *EdgeListRequest) GetIncludeProp() bool

func (*EdgeListRequest) GetIncludeSubject

func (m *EdgeListRequest) GetIncludeSubject() bool

func (*EdgeListRequest) GetIncludeTarget

func (m *EdgeListRequest) GetIncludeTarget() bool

func (*EdgeListRequest) GetOpt

func (m *EdgeListRequest) GetOpt() *ListOptions

func (*EdgeListRequest) GetPredicate

func (m *EdgeListRequest) GetPredicate() uint32

func (*EdgeListRequest) GetSubject

func (m *EdgeListRequest) GetSubject() string

func (*EdgeListRequest) ProtoMessage

func (*EdgeListRequest) ProtoMessage()

func (*EdgeListRequest) Reset

func (m *EdgeListRequest) Reset()

func (*EdgeListRequest) String

func (m *EdgeListRequest) String() string

func (*EdgeListRequest) XXX_DiscardUnknown

func (m *EdgeListRequest) XXX_DiscardUnknown()

func (*EdgeListRequest) XXX_Marshal

func (m *EdgeListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*EdgeListRequest) XXX_Merge

func (m *EdgeListRequest) XXX_Merge(src proto.Message)

func (*EdgeListRequest) XXX_Size

func (m *EdgeListRequest) XXX_Size() int

func (*EdgeListRequest) XXX_Unmarshal

func (m *EdgeListRequest) XXX_Unmarshal(b []byte) error

type Index

type Index struct {
	Type                 uint32   `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
	Node                 string   `protobuf:"bytes,3,opt,name=node,proto3" json:"node,omitempty"`
	Value                string   `protobuf:"bytes,4,opt,name=value,proto3" json:"value,omitempty"`
	Properties           []byte   `protobuf:"bytes,10,opt,name=properties,proto3" json:"properties,omitempty"`
	Unique               bool     `protobuf:"varint,11,opt,name=unique,proto3" json:"unique,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Index) Descriptor

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

func (*Index) GetNode

func (m *Index) GetNode() string

func (*Index) GetProperties

func (m *Index) GetProperties() []byte

func (*Index) GetType

func (m *Index) GetType() uint32

func (*Index) GetUnique

func (m *Index) GetUnique() bool

func (*Index) GetValue

func (m *Index) GetValue() string

func (*Index) ProtoMessage

func (*Index) ProtoMessage()

func (*Index) Reset

func (m *Index) Reset()

func (*Index) String

func (m *Index) String() string

func (*Index) XXX_DiscardUnknown

func (m *Index) XXX_DiscardUnknown()

func (*Index) XXX_Marshal

func (m *Index) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Index) XXX_Merge

func (m *Index) XXX_Merge(src proto.Message)

func (*Index) XXX_Size

func (m *Index) XXX_Size() int

func (*Index) XXX_Unmarshal

func (m *Index) XXX_Unmarshal(b []byte) error

type IndexChoice

type IndexChoice struct {
	Value                string   `protobuf:"bytes,1,opt,name=value,proto3" json:"value,omitempty"`
	Count                uint32   `protobuf:"varint,2,opt,name=count,proto3" json:"count,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*IndexChoice) Descriptor

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

func (*IndexChoice) GetCount

func (m *IndexChoice) GetCount() uint32

func (*IndexChoice) GetValue

func (m *IndexChoice) GetValue() string

func (*IndexChoice) ProtoMessage

func (*IndexChoice) ProtoMessage()

func (*IndexChoice) Reset

func (m *IndexChoice) Reset()

func (*IndexChoice) String

func (m *IndexChoice) String() string

func (*IndexChoice) XXX_DiscardUnknown

func (m *IndexChoice) XXX_DiscardUnknown()

func (*IndexChoice) XXX_Marshal

func (m *IndexChoice) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IndexChoice) XXX_Merge

func (m *IndexChoice) XXX_Merge(src proto.Message)

func (*IndexChoice) XXX_Size

func (m *IndexChoice) XXX_Size() int

func (*IndexChoice) XXX_Unmarshal

func (m *IndexChoice) XXX_Unmarshal(b []byte) error

type IndexChoiceRequest

type IndexChoiceRequest struct {
	Opt                  *ListOptions `protobuf:"bytes,1,opt,name=opt,proto3" json:"opt,omitempty"`
	Index                uint32       `protobuf:"varint,2,opt,name=index,proto3" json:"index,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*IndexChoiceRequest) Descriptor

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

func (*IndexChoiceRequest) GetIndex

func (m *IndexChoiceRequest) GetIndex() uint32

func (*IndexChoiceRequest) GetOpt

func (m *IndexChoiceRequest) GetOpt() *ListOptions

func (*IndexChoiceRequest) ProtoMessage

func (*IndexChoiceRequest) ProtoMessage()

func (*IndexChoiceRequest) Reset

func (m *IndexChoiceRequest) Reset()

func (*IndexChoiceRequest) String

func (m *IndexChoiceRequest) String() string

func (*IndexChoiceRequest) XXX_DiscardUnknown

func (m *IndexChoiceRequest) XXX_DiscardUnknown()

func (*IndexChoiceRequest) XXX_Marshal

func (m *IndexChoiceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IndexChoiceRequest) XXX_Merge

func (m *IndexChoiceRequest) XXX_Merge(src proto.Message)

func (*IndexChoiceRequest) XXX_Size

func (m *IndexChoiceRequest) XXX_Size() int

func (*IndexChoiceRequest) XXX_Unmarshal

func (m *IndexChoiceRequest) XXX_Unmarshal(b []byte) error

type IndexDropRequest

type IndexDropRequest struct {
	Index                uint32   `protobuf:"varint,1,opt,name=index,proto3" json:"index,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*IndexDropRequest) Descriptor

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

func (*IndexDropRequest) GetIndex

func (m *IndexDropRequest) GetIndex() uint32

func (*IndexDropRequest) ProtoMessage

func (*IndexDropRequest) ProtoMessage()

func (*IndexDropRequest) Reset

func (m *IndexDropRequest) Reset()

func (*IndexDropRequest) String

func (m *IndexDropRequest) String() string

func (*IndexDropRequest) XXX_DiscardUnknown

func (m *IndexDropRequest) XXX_DiscardUnknown()

func (*IndexDropRequest) XXX_Marshal

func (m *IndexDropRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IndexDropRequest) XXX_Merge

func (m *IndexDropRequest) XXX_Merge(src proto.Message)

func (*IndexDropRequest) XXX_Size

func (m *IndexDropRequest) XXX_Size() int

func (*IndexDropRequest) XXX_Unmarshal

func (m *IndexDropRequest) XXX_Unmarshal(b []byte) error

type IndexGetRequest

type IndexGetRequest struct {
	Index                *Index   `protobuf:"bytes,1,opt,name=index,proto3" json:"index,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*IndexGetRequest) Descriptor

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

func (*IndexGetRequest) GetIndex

func (m *IndexGetRequest) GetIndex() *Index

func (*IndexGetRequest) ProtoMessage

func (*IndexGetRequest) ProtoMessage()

func (*IndexGetRequest) Reset

func (m *IndexGetRequest) Reset()

func (*IndexGetRequest) String

func (m *IndexGetRequest) String() string

func (*IndexGetRequest) XXX_DiscardUnknown

func (m *IndexGetRequest) XXX_DiscardUnknown()

func (*IndexGetRequest) XXX_Marshal

func (m *IndexGetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IndexGetRequest) XXX_Merge

func (m *IndexGetRequest) XXX_Merge(src proto.Message)

func (*IndexGetRequest) XXX_Size

func (m *IndexGetRequest) XXX_Size() int

func (*IndexGetRequest) XXX_Unmarshal

func (m *IndexGetRequest) XXX_Unmarshal(b []byte) error

type IndexListRequest

type IndexListRequest struct {
	Opt                  *ListOptions `protobuf:"bytes,1,opt,name=opt,proto3" json:"opt,omitempty"`
	Index                uint32       `protobuf:"varint,10,opt,name=index,proto3" json:"index,omitempty"`
	Value                string       `protobuf:"bytes,11,opt,name=value,proto3" json:"value,omitempty"`
	IncludeIndex         bool         `protobuf:"varint,20,opt,name=include_index,json=includeIndex,proto3" json:"include_index,omitempty"`
	IncludeValue         bool         `protobuf:"varint,21,opt,name=include_value,json=includeValue,proto3" json:"include_value,omitempty"`
	IncludeProp          bool         `protobuf:"varint,22,opt,name=include_prop,json=includeProp,proto3" json:"include_prop,omitempty"`
	IncludeNode          bool         `protobuf:"varint,23,opt,name=include_node,json=includeNode,proto3" json:"include_node,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*IndexListRequest) Descriptor

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

func (*IndexListRequest) GetIncludeIndex

func (m *IndexListRequest) GetIncludeIndex() bool

func (*IndexListRequest) GetIncludeNode

func (m *IndexListRequest) GetIncludeNode() bool

func (*IndexListRequest) GetIncludeProp

func (m *IndexListRequest) GetIncludeProp() bool

func (*IndexListRequest) GetIncludeValue

func (m *IndexListRequest) GetIncludeValue() bool

func (*IndexListRequest) GetIndex

func (m *IndexListRequest) GetIndex() uint32

func (*IndexListRequest) GetOpt

func (m *IndexListRequest) GetOpt() *ListOptions

func (*IndexListRequest) GetValue

func (m *IndexListRequest) GetValue() string

func (*IndexListRequest) ProtoMessage

func (*IndexListRequest) ProtoMessage()

func (*IndexListRequest) Reset

func (m *IndexListRequest) Reset()

func (*IndexListRequest) String

func (m *IndexListRequest) String() string

func (*IndexListRequest) XXX_DiscardUnknown

func (m *IndexListRequest) XXX_DiscardUnknown()

func (*IndexListRequest) XXX_Marshal

func (m *IndexListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*IndexListRequest) XXX_Merge

func (m *IndexListRequest) XXX_Merge(src proto.Message)

func (*IndexListRequest) XXX_Size

func (m *IndexListRequest) XXX_Size() int

func (*IndexListRequest) XXX_Unmarshal

func (m *IndexListRequest) XXX_Unmarshal(b []byte) error

type ListOptions

type ListOptions struct {
	PageSize             uint32    `protobuf:"varint,3,opt,name=page_size,json=pageSize,proto3" json:"page_size,omitempty"`
	Mode                 ListRange `protobuf:"varint,4,opt,name=mode,proto3,enum=cds.cabinet.v1.ListRange" json:"mode,omitempty"`
	KeyStart             string    `protobuf:"bytes,10,opt,name=key_start,json=keyStart,proto3" json:"key_start,omitempty"`
	KeyEnd               string    `protobuf:"bytes,11,opt,name=key_end,json=keyEnd,proto3" json:"key_end,omitempty"`
	Reverse              bool      `protobuf:"varint,12,opt,name=reverse,proto3" json:"reverse,omitempty"`
	XXX_NoUnkeyedLiteral struct{}  `json:"-"`
	XXX_unrecognized     []byte    `json:"-"`
	XXX_sizecache        int32     `json:"-"`
}

func (*ListOptions) Descriptor

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

func (*ListOptions) GetKeyEnd

func (m *ListOptions) GetKeyEnd() string

func (*ListOptions) GetKeyStart

func (m *ListOptions) GetKeyStart() string

func (*ListOptions) GetMode

func (m *ListOptions) GetMode() ListRange

func (*ListOptions) GetPageSize

func (m *ListOptions) GetPageSize() uint32

func (*ListOptions) GetReverse

func (m *ListOptions) GetReverse() bool

func (*ListOptions) ProtoMessage

func (*ListOptions) ProtoMessage()

func (*ListOptions) Reset

func (m *ListOptions) Reset()

func (*ListOptions) String

func (m *ListOptions) String() string

func (*ListOptions) XXX_DiscardUnknown

func (m *ListOptions) XXX_DiscardUnknown()

func (*ListOptions) XXX_Marshal

func (m *ListOptions) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ListOptions) XXX_Merge

func (m *ListOptions) XXX_Merge(src proto.Message)

func (*ListOptions) XXX_Size

func (m *ListOptions) XXX_Size() int

func (*ListOptions) XXX_Unmarshal

func (m *ListOptions) XXX_Unmarshal(b []byte) error

type ListRange

type ListRange int32
const (
	ListRange_UNDEFINED   ListRange = 0
	ListRange_ALL         ListRange = 1
	ListRange_EXACT_RANGE ListRange = 2
	ListRange_START_WITH  ListRange = 3
)

func (ListRange) EnumDescriptor

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

func (ListRange) String

func (x ListRange) String() string

type Meta

type Meta struct {
	// Types that are valid to be assigned to Object:
	//	*Meta_Edge
	//	*Meta_Node
	Object               isMeta_Object `protobuf_oneof:"object"`
	Key                  uint32        `protobuf:"varint,10,opt,name=key,proto3" json:"key,omitempty"`
	Val                  []byte        `protobuf:"bytes,11,opt,name=val,proto3" json:"val,omitempty"`
	XXX_NoUnkeyedLiteral struct{}      `json:"-"`
	XXX_unrecognized     []byte        `json:"-"`
	XXX_sizecache        int32         `json:"-"`
}

func (*Meta) Descriptor

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

func (*Meta) GetEdge

func (m *Meta) GetEdge() *Edge

func (*Meta) GetKey

func (m *Meta) GetKey() uint32

func (*Meta) GetNode

func (m *Meta) GetNode() string

func (*Meta) GetObject

func (m *Meta) GetObject() isMeta_Object

func (*Meta) GetVal

func (m *Meta) GetVal() []byte

func (*Meta) ProtoMessage

func (*Meta) ProtoMessage()

func (*Meta) Reset

func (m *Meta) Reset()

func (*Meta) String

func (m *Meta) String() string

func (*Meta) XXX_DiscardUnknown

func (m *Meta) XXX_DiscardUnknown()

func (*Meta) XXX_Marshal

func (m *Meta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Meta) XXX_Merge

func (m *Meta) XXX_Merge(src proto.Message)

func (*Meta) XXX_OneofWrappers

func (*Meta) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*Meta) XXX_Size

func (m *Meta) XXX_Size() int

func (*Meta) XXX_Unmarshal

func (m *Meta) XXX_Unmarshal(b []byte) error

type MetaGetResponse

type MetaGetResponse struct {
	Val                  []byte   `protobuf:"bytes,1,opt,name=val,proto3" json:"val,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*MetaGetResponse) Descriptor

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

func (*MetaGetResponse) GetVal

func (m *MetaGetResponse) GetVal() []byte

func (*MetaGetResponse) ProtoMessage

func (*MetaGetResponse) ProtoMessage()

func (*MetaGetResponse) Reset

func (m *MetaGetResponse) Reset()

func (*MetaGetResponse) String

func (m *MetaGetResponse) String() string

func (*MetaGetResponse) XXX_DiscardUnknown

func (m *MetaGetResponse) XXX_DiscardUnknown()

func (*MetaGetResponse) XXX_Marshal

func (m *MetaGetResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MetaGetResponse) XXX_Merge

func (m *MetaGetResponse) XXX_Merge(src proto.Message)

func (*MetaGetResponse) XXX_Size

func (m *MetaGetResponse) XXX_Size() int

func (*MetaGetResponse) XXX_Unmarshal

func (m *MetaGetResponse) XXX_Unmarshal(b []byte) error

type MetaListRequest

type MetaListRequest struct {
	Opt                  *ListOptions `protobuf:"bytes,1,opt,name=opt,proto3" json:"opt,omitempty"`
	Meta                 *Meta        `protobuf:"bytes,10,opt,name=meta,proto3" json:"meta,omitempty"`
	IncludeNode          bool         `protobuf:"varint,20,opt,name=include_node,json=includeNode,proto3" json:"include_node,omitempty"`
	IncludeProperty      bool         `protobuf:"varint,21,opt,name=include_property,json=includeProperty,proto3" json:"include_property,omitempty"`
	IncludeValue         bool         `protobuf:"varint,22,opt,name=include_value,json=includeValue,proto3" json:"include_value,omitempty"`
	IncludeSubject       bool         `protobuf:"varint,23,opt,name=include_subject,json=includeSubject,proto3" json:"include_subject,omitempty"`
	IncludePredicate     bool         `protobuf:"varint,24,opt,name=include_predicate,json=includePredicate,proto3" json:"include_predicate,omitempty"`
	IncludeTarget        bool         `protobuf:"varint,25,opt,name=include_target,json=includeTarget,proto3" json:"include_target,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*MetaListRequest) Descriptor

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

func (*MetaListRequest) GetIncludeNode

func (m *MetaListRequest) GetIncludeNode() bool

func (*MetaListRequest) GetIncludePredicate

func (m *MetaListRequest) GetIncludePredicate() bool

func (*MetaListRequest) GetIncludeProperty

func (m *MetaListRequest) GetIncludeProperty() bool

func (*MetaListRequest) GetIncludeSubject

func (m *MetaListRequest) GetIncludeSubject() bool

func (*MetaListRequest) GetIncludeTarget

func (m *MetaListRequest) GetIncludeTarget() bool

func (*MetaListRequest) GetIncludeValue

func (m *MetaListRequest) GetIncludeValue() bool

func (*MetaListRequest) GetMeta

func (m *MetaListRequest) GetMeta() *Meta

func (*MetaListRequest) GetOpt

func (m *MetaListRequest) GetOpt() *ListOptions

func (*MetaListRequest) ProtoMessage

func (*MetaListRequest) ProtoMessage()

func (*MetaListRequest) Reset

func (m *MetaListRequest) Reset()

func (*MetaListRequest) String

func (m *MetaListRequest) String() string

func (*MetaListRequest) XXX_DiscardUnknown

func (m *MetaListRequest) XXX_DiscardUnknown()

func (*MetaListRequest) XXX_Marshal

func (m *MetaListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MetaListRequest) XXX_Merge

func (m *MetaListRequest) XXX_Merge(src proto.Message)

func (*MetaListRequest) XXX_Size

func (m *MetaListRequest) XXX_Size() int

func (*MetaListRequest) XXX_Unmarshal

func (m *MetaListRequest) XXX_Unmarshal(b []byte) error

type Meta_Edge

type Meta_Edge struct {
	Edge *Edge `protobuf:"bytes,1,opt,name=edge,proto3,oneof"`
}

type Meta_Node

type Meta_Node struct {
	Node string `protobuf:"bytes,2,opt,name=node,proto3,oneof"`
}

type MutationResponse

type MutationResponse struct {
	Status               MutationStatus `protobuf:"varint,1,opt,name=status,proto3,enum=cds.cabinet.v1.MutationStatus" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*MutationResponse) Descriptor

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

func (*MutationResponse) GetStatus

func (m *MutationResponse) GetStatus() MutationStatus

func (*MutationResponse) ProtoMessage

func (*MutationResponse) ProtoMessage()

func (*MutationResponse) Reset

func (m *MutationResponse) Reset()

func (*MutationResponse) String

func (m *MutationResponse) String() string

func (*MutationResponse) XXX_DiscardUnknown

func (m *MutationResponse) XXX_DiscardUnknown()

func (*MutationResponse) XXX_Marshal

func (m *MutationResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*MutationResponse) XXX_Merge

func (m *MutationResponse) XXX_Merge(src proto.Message)

func (*MutationResponse) XXX_Size

func (m *MutationResponse) XXX_Size() int

func (*MutationResponse) XXX_Unmarshal

func (m *MutationResponse) XXX_Unmarshal(b []byte) error

type MutationStatus

type MutationStatus int32
const (
	MutationStatus_SUCCESS            MutationStatus = 0
	MutationStatus_GENERIC_FAILURE    MutationStatus = 10
	MutationStatus_CONNECTION_FAILURE MutationStatus = 11
	MutationStatus_PROCESSING_FAILURE MutationStatus = 12
	MutationStatus_READ_CHECK_FAILURE MutationStatus = 13
	MutationStatus_MUTATION_FAILURE   MutationStatus = 14
)

func (MutationStatus) EnumDescriptor

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

func (MutationStatus) String

func (x MutationStatus) String() string

type Node

type Node struct {
	Type                 uint32   `protobuf:"varint,1,opt,name=type,proto3" json:"type,omitempty"`
	Id                   string   `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	Version              uint32   `protobuf:"varint,3,opt,name=version,proto3" json:"version,omitempty"`
	Created              uint32   `protobuf:"varint,4,opt,name=created,proto3" json:"created,omitempty"`
	Updated              uint32   `protobuf:"varint,5,opt,name=updated,proto3" json:"updated,omitempty"`
	Properties           []byte   `protobuf:"bytes,10,opt,name=properties,proto3" json:"properties,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Node) Descriptor

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

func (*Node) GetCreated

func (m *Node) GetCreated() uint32

func (*Node) GetId

func (m *Node) GetId() string

func (*Node) GetProperties

func (m *Node) GetProperties() []byte

func (*Node) GetType

func (m *Node) GetType() uint32

func (*Node) GetUpdated

func (m *Node) GetUpdated() uint32

func (*Node) GetVersion

func (m *Node) GetVersion() uint32

func (*Node) ProtoMessage

func (*Node) ProtoMessage()

func (*Node) Reset

func (m *Node) Reset()

func (*Node) String

func (m *Node) String() string

func (*Node) XXX_DiscardUnknown

func (m *Node) XXX_DiscardUnknown()

func (*Node) XXX_Marshal

func (m *Node) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Node) XXX_Merge

func (m *Node) XXX_Merge(src proto.Message)

func (*Node) XXX_Size

func (m *Node) XXX_Size() int

func (*Node) XXX_Unmarshal

func (m *Node) XXX_Unmarshal(b []byte) error

type NodeCreateResponse

type NodeCreateResponse struct {
	Status               MutationStatus `protobuf:"varint,1,opt,name=status,proto3,enum=cds.cabinet.v1.MutationStatus" json:"status,omitempty"`
	Id                   string         `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*NodeCreateResponse) Descriptor

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

func (*NodeCreateResponse) GetId

func (m *NodeCreateResponse) GetId() string

func (*NodeCreateResponse) GetStatus

func (m *NodeCreateResponse) GetStatus() MutationStatus

func (*NodeCreateResponse) ProtoMessage

func (*NodeCreateResponse) ProtoMessage()

func (*NodeCreateResponse) Reset

func (m *NodeCreateResponse) Reset()

func (*NodeCreateResponse) String

func (m *NodeCreateResponse) String() string

func (*NodeCreateResponse) XXX_DiscardUnknown

func (m *NodeCreateResponse) XXX_DiscardUnknown()

func (*NodeCreateResponse) XXX_Marshal

func (m *NodeCreateResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NodeCreateResponse) XXX_Merge

func (m *NodeCreateResponse) XXX_Merge(src proto.Message)

func (*NodeCreateResponse) XXX_Size

func (m *NodeCreateResponse) XXX_Size() int

func (*NodeCreateResponse) XXX_Unmarshal

func (m *NodeCreateResponse) XXX_Unmarshal(b []byte) error

type NodeGetRequest

type NodeGetRequest struct {
	Id                   string   `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
	NodeType             uint32   `protobuf:"varint,3,opt,name=node_type,json=nodeType,proto3" json:"node_type,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*NodeGetRequest) Descriptor

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

func (*NodeGetRequest) GetId

func (m *NodeGetRequest) GetId() string

func (*NodeGetRequest) GetNodeType

func (m *NodeGetRequest) GetNodeType() uint32

func (*NodeGetRequest) ProtoMessage

func (*NodeGetRequest) ProtoMessage()

func (*NodeGetRequest) Reset

func (m *NodeGetRequest) Reset()

func (*NodeGetRequest) String

func (m *NodeGetRequest) String() string

func (*NodeGetRequest) XXX_DiscardUnknown

func (m *NodeGetRequest) XXX_DiscardUnknown()

func (*NodeGetRequest) XXX_Marshal

func (m *NodeGetRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NodeGetRequest) XXX_Merge

func (m *NodeGetRequest) XXX_Merge(src proto.Message)

func (*NodeGetRequest) XXX_Size

func (m *NodeGetRequest) XXX_Size() int

func (*NodeGetRequest) XXX_Unmarshal

func (m *NodeGetRequest) XXX_Unmarshal(b []byte) error

type NodeListRequest

type NodeListRequest struct {
	Opt                  *ListOptions `protobuf:"bytes,1,opt,name=opt,proto3" json:"opt,omitempty"`
	NodeType             uint32       `protobuf:"varint,2,opt,name=node_type,json=nodeType,proto3" json:"node_type,omitempty"`
	IncludeType          bool         `protobuf:"varint,20,opt,name=include_type,json=includeType,proto3" json:"include_type,omitempty"`
	IncludeId            bool         `protobuf:"varint,21,opt,name=include_id,json=includeId,proto3" json:"include_id,omitempty"`
	IncludeProp          bool         `protobuf:"varint,22,opt,name=include_prop,json=includeProp,proto3" json:"include_prop,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*NodeListRequest) Descriptor

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

func (*NodeListRequest) GetIncludeId

func (m *NodeListRequest) GetIncludeId() bool

func (*NodeListRequest) GetIncludeProp

func (m *NodeListRequest) GetIncludeProp() bool

func (*NodeListRequest) GetIncludeType

func (m *NodeListRequest) GetIncludeType() bool

func (*NodeListRequest) GetNodeType

func (m *NodeListRequest) GetNodeType() uint32

func (*NodeListRequest) GetOpt

func (m *NodeListRequest) GetOpt() *ListOptions

func (*NodeListRequest) ProtoMessage

func (*NodeListRequest) ProtoMessage()

func (*NodeListRequest) Reset

func (m *NodeListRequest) Reset()

func (*NodeListRequest) String

func (m *NodeListRequest) String() string

func (*NodeListRequest) XXX_DiscardUnknown

func (m *NodeListRequest) XXX_DiscardUnknown()

func (*NodeListRequest) XXX_Marshal

func (m *NodeListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*NodeListRequest) XXX_Merge

func (m *NodeListRequest) XXX_Merge(src proto.Message)

func (*NodeListRequest) XXX_Size

func (m *NodeListRequest) XXX_Size() int

func (*NodeListRequest) XXX_Unmarshal

func (m *NodeListRequest) XXX_Unmarshal(b []byte) error

type ReadCheckRequest

type ReadCheckRequest struct {
	Source               string         `protobuf:"bytes,1,opt,name=source,proto3" json:"source,omitempty"`
	Operator             CheckOperators `protobuf:"varint,2,opt,name=operator,proto3,enum=cds.cabinet.v1.CheckOperators" json:"operator,omitempty"`
	Target               *CheckTarget   `protobuf:"bytes,3,opt,name=target,proto3" json:"target,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (*ReadCheckRequest) Descriptor

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

func (*ReadCheckRequest) GetOperator

func (m *ReadCheckRequest) GetOperator() CheckOperators

func (*ReadCheckRequest) GetSource

func (m *ReadCheckRequest) GetSource() string

func (*ReadCheckRequest) GetTarget

func (m *ReadCheckRequest) GetTarget() *CheckTarget

func (*ReadCheckRequest) ProtoMessage

func (*ReadCheckRequest) ProtoMessage()

func (*ReadCheckRequest) Reset

func (m *ReadCheckRequest) Reset()

func (*ReadCheckRequest) String

func (m *ReadCheckRequest) String() string

func (*ReadCheckRequest) XXX_DiscardUnknown

func (m *ReadCheckRequest) XXX_DiscardUnknown()

func (*ReadCheckRequest) XXX_Marshal

func (m *ReadCheckRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadCheckRequest) XXX_Merge

func (m *ReadCheckRequest) XXX_Merge(src proto.Message)

func (*ReadCheckRequest) XXX_Size

func (m *ReadCheckRequest) XXX_Size() int

func (*ReadCheckRequest) XXX_Unmarshal

func (m *ReadCheckRequest) XXX_Unmarshal(b []byte) error

type ReadCheckResponse

type ReadCheckResponse struct {
	Result               bool     `protobuf:"varint,1,opt,name=result,proto3" json:"result,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*ReadCheckResponse) Descriptor

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

func (*ReadCheckResponse) GetResult

func (m *ReadCheckResponse) GetResult() bool

func (*ReadCheckResponse) ProtoMessage

func (*ReadCheckResponse) ProtoMessage()

func (*ReadCheckResponse) Reset

func (m *ReadCheckResponse) Reset()

func (*ReadCheckResponse) String

func (m *ReadCheckResponse) String() string

func (*ReadCheckResponse) XXX_DiscardUnknown

func (m *ReadCheckResponse) XXX_DiscardUnknown()

func (*ReadCheckResponse) XXX_Marshal

func (m *ReadCheckResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*ReadCheckResponse) XXX_Merge

func (m *ReadCheckResponse) XXX_Merge(src proto.Message)

func (*ReadCheckResponse) XXX_Size

func (m *ReadCheckResponse) XXX_Size() int

func (*ReadCheckResponse) XXX_Unmarshal

func (m *ReadCheckResponse) XXX_Unmarshal(b []byte) error

type Sequential

type Sequential struct {
	Type                 string   `protobuf:"bytes,1,opt,name=type,proto3" json:"type,omitempty"`
	Seqid                uint32   `protobuf:"varint,2,opt,name=seqid,proto3" json:"seqid,omitempty"`
	Uuid                 string   `protobuf:"bytes,4,opt,name=uuid,proto3" json:"uuid,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (*Sequential) Descriptor

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

func (*Sequential) GetSeqid

func (m *Sequential) GetSeqid() uint32

func (*Sequential) GetType

func (m *Sequential) GetType() string

func (*Sequential) GetUuid

func (m *Sequential) GetUuid() string

func (*Sequential) ProtoMessage

func (*Sequential) ProtoMessage()

func (*Sequential) Reset

func (m *Sequential) Reset()

func (*Sequential) String

func (m *Sequential) String() string

func (*Sequential) XXX_DiscardUnknown

func (m *Sequential) XXX_DiscardUnknown()

func (*Sequential) XXX_Marshal

func (m *Sequential) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*Sequential) XXX_Merge

func (m *Sequential) XXX_Merge(src proto.Message)

func (*Sequential) XXX_Size

func (m *Sequential) XXX_Size() int

func (*Sequential) XXX_Unmarshal

func (m *Sequential) XXX_Unmarshal(b []byte) error

type SequentialListRequest

type SequentialListRequest struct {
	Opt                  *ListOptions `protobuf:"bytes,1,opt,name=opt,proto3" json:"opt,omitempty"`
	Type                 string       `protobuf:"bytes,10,opt,name=type,proto3" json:"type,omitempty"`
	IncludeType          bool         `protobuf:"varint,20,opt,name=include_type,json=includeType,proto3" json:"include_type,omitempty"`
	IncludeSeqid         bool         `protobuf:"varint,21,opt,name=include_seqid,json=includeSeqid,proto3" json:"include_seqid,omitempty"`
	IncludeUuid          bool         `protobuf:"varint,22,opt,name=include_uuid,json=includeUuid,proto3" json:"include_uuid,omitempty"`
	XXX_NoUnkeyedLiteral struct{}     `json:"-"`
	XXX_unrecognized     []byte       `json:"-"`
	XXX_sizecache        int32        `json:"-"`
}

func (*SequentialListRequest) Descriptor

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

func (*SequentialListRequest) GetIncludeSeqid

func (m *SequentialListRequest) GetIncludeSeqid() bool

func (*SequentialListRequest) GetIncludeType

func (m *SequentialListRequest) GetIncludeType() bool

func (*SequentialListRequest) GetIncludeUuid

func (m *SequentialListRequest) GetIncludeUuid() bool

func (*SequentialListRequest) GetOpt

func (m *SequentialListRequest) GetOpt() *ListOptions

func (*SequentialListRequest) GetType

func (m *SequentialListRequest) GetType() string

func (*SequentialListRequest) ProtoMessage

func (*SequentialListRequest) ProtoMessage()

func (*SequentialListRequest) Reset

func (m *SequentialListRequest) Reset()

func (*SequentialListRequest) String

func (m *SequentialListRequest) String() string

func (*SequentialListRequest) XXX_DiscardUnknown

func (m *SequentialListRequest) XXX_DiscardUnknown()

func (*SequentialListRequest) XXX_Marshal

func (m *SequentialListRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*SequentialListRequest) XXX_Merge

func (m *SequentialListRequest) XXX_Merge(src proto.Message)

func (*SequentialListRequest) XXX_Size

func (m *SequentialListRequest) XXX_Size() int

func (*SequentialListRequest) XXX_Unmarshal

func (m *SequentialListRequest) XXX_Unmarshal(b []byte) error

type TransactionAction

type TransactionAction struct {
	// Types that are valid to be assigned to Action:
	//	*TransactionAction_CounterIncrement
	//	*TransactionAction_CounterDelete
	//	*TransactionAction_CounterRegister
	//	*TransactionAction_EdgeUpdate
	//	*TransactionAction_EdgeDelete
	//	*TransactionAction_EdgeClear
	//	*TransactionAction_IndexCreate
	//	*TransactionAction_IndexDelete
	//	*TransactionAction_MetaUpdate
	//	*TransactionAction_MetaDelete
	//	*TransactionAction_MetaClear
	//	*TransactionAction_NodeCreate
	//	*TransactionAction_NodeUpdate
	//	*TransactionAction_NodeDelete
	//	*TransactionAction_ReadCheck
	Action               isTransactionAction_Action `protobuf_oneof:"action"`
	ActionId             uint32                     `protobuf:"varint,80,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
}

func (*TransactionAction) Descriptor

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

func (*TransactionAction) GetAction

func (m *TransactionAction) GetAction() isTransactionAction_Action

func (*TransactionAction) GetActionId

func (m *TransactionAction) GetActionId() uint32

func (*TransactionAction) GetCounterDelete

func (m *TransactionAction) GetCounterDelete() *Counter

func (*TransactionAction) GetCounterIncrement

func (m *TransactionAction) GetCounterIncrement() *Counter

func (*TransactionAction) GetCounterRegister

func (m *TransactionAction) GetCounterRegister() *Counter

func (*TransactionAction) GetEdgeClear

func (m *TransactionAction) GetEdgeClear() *Edge

func (*TransactionAction) GetEdgeDelete

func (m *TransactionAction) GetEdgeDelete() *Edge

func (*TransactionAction) GetEdgeUpdate

func (m *TransactionAction) GetEdgeUpdate() *Edge

func (*TransactionAction) GetIndexCreate

func (m *TransactionAction) GetIndexCreate() *Index

func (*TransactionAction) GetIndexDelete

func (m *TransactionAction) GetIndexDelete() *Index

func (*TransactionAction) GetMetaClear

func (m *TransactionAction) GetMetaClear() *Meta

func (*TransactionAction) GetMetaDelete

func (m *TransactionAction) GetMetaDelete() *Meta

func (*TransactionAction) GetMetaUpdate

func (m *TransactionAction) GetMetaUpdate() *Meta

func (*TransactionAction) GetNodeCreate

func (m *TransactionAction) GetNodeCreate() *Node

func (*TransactionAction) GetNodeDelete

func (m *TransactionAction) GetNodeDelete() *Node

func (*TransactionAction) GetNodeUpdate

func (m *TransactionAction) GetNodeUpdate() *Node

func (*TransactionAction) GetReadCheck

func (m *TransactionAction) GetReadCheck() *ReadCheckRequest

func (*TransactionAction) ProtoMessage

func (*TransactionAction) ProtoMessage()

func (*TransactionAction) Reset

func (m *TransactionAction) Reset()

func (*TransactionAction) String

func (m *TransactionAction) String() string

func (*TransactionAction) XXX_DiscardUnknown

func (m *TransactionAction) XXX_DiscardUnknown()

func (*TransactionAction) XXX_Marshal

func (m *TransactionAction) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TransactionAction) XXX_Merge

func (m *TransactionAction) XXX_Merge(src proto.Message)

func (*TransactionAction) XXX_OneofWrappers

func (*TransactionAction) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*TransactionAction) XXX_Size

func (m *TransactionAction) XXX_Size() int

func (*TransactionAction) XXX_Unmarshal

func (m *TransactionAction) XXX_Unmarshal(b []byte) error

type TransactionActionResponse

type TransactionActionResponse struct {
	Status   MutationStatus `protobuf:"varint,1,opt,name=status,proto3,enum=cds.cabinet.v1.MutationStatus" json:"status,omitempty"`
	ActionId uint32         `protobuf:"varint,2,opt,name=action_id,json=actionId,proto3" json:"action_id,omitempty"`
	Error    string         `protobuf:"bytes,3,opt,name=error,proto3" json:"error,omitempty"`
	// Types that are valid to be assigned to Response:
	//	*TransactionActionResponse_NodeCreate
	//	*TransactionActionResponse_ReadCheck
	Response             isTransactionActionResponse_Response `protobuf_oneof:"response"`
	XXX_NoUnkeyedLiteral struct{}                             `json:"-"`
	XXX_unrecognized     []byte                               `json:"-"`
	XXX_sizecache        int32                                `json:"-"`
}

func (*TransactionActionResponse) Descriptor

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

func (*TransactionActionResponse) GetActionId

func (m *TransactionActionResponse) GetActionId() uint32

func (*TransactionActionResponse) GetError

func (m *TransactionActionResponse) GetError() string

func (*TransactionActionResponse) GetNodeCreate

func (m *TransactionActionResponse) GetNodeCreate() *NodeCreateResponse

func (*TransactionActionResponse) GetReadCheck

func (m *TransactionActionResponse) GetReadCheck() *ReadCheckResponse

func (*TransactionActionResponse) GetResponse

func (m *TransactionActionResponse) GetResponse() isTransactionActionResponse_Response

func (*TransactionActionResponse) GetStatus

func (*TransactionActionResponse) ProtoMessage

func (*TransactionActionResponse) ProtoMessage()

func (*TransactionActionResponse) Reset

func (m *TransactionActionResponse) Reset()

func (*TransactionActionResponse) String

func (m *TransactionActionResponse) String() string

func (*TransactionActionResponse) XXX_DiscardUnknown

func (m *TransactionActionResponse) XXX_DiscardUnknown()

func (*TransactionActionResponse) XXX_Marshal

func (m *TransactionActionResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error)

func (*TransactionActionResponse) XXX_Merge

func (m *TransactionActionResponse) XXX_Merge(src proto.Message)

func (*TransactionActionResponse) XXX_OneofWrappers

func (*TransactionActionResponse) XXX_OneofWrappers() []interface{}

XXX_OneofWrappers is for the internal use of the proto package.

func (*TransactionActionResponse) XXX_Size

func (m *TransactionActionResponse) XXX_Size() int

func (*TransactionActionResponse) XXX_Unmarshal

func (m *TransactionActionResponse) XXX_Unmarshal(b []byte) error

type TransactionActionResponse_NodeCreate

type TransactionActionResponse_NodeCreate struct {
	NodeCreate *NodeCreateResponse `protobuf:"bytes,20,opt,name=node_create,json=nodeCreate,proto3,oneof"`
}

type TransactionActionResponse_ReadCheck

type TransactionActionResponse_ReadCheck struct {
	ReadCheck *ReadCheckResponse `protobuf:"bytes,30,opt,name=read_check,json=readCheck,proto3,oneof"`
}

type TransactionAction_CounterDelete

type TransactionAction_CounterDelete struct {
	CounterDelete *Counter `protobuf:"bytes,2,opt,name=counter_delete,json=counterDelete,proto3,oneof"`
}

type TransactionAction_CounterIncrement

type TransactionAction_CounterIncrement struct {
	CounterIncrement *Counter `protobuf:"bytes,1,opt,name=counter_increment,json=counterIncrement,proto3,oneof"`
}

type TransactionAction_CounterRegister

type TransactionAction_CounterRegister struct {
	CounterRegister *Counter `protobuf:"bytes,3,opt,name=counter_register,json=counterRegister,proto3,oneof"`
}

type TransactionAction_EdgeClear

type TransactionAction_EdgeClear struct {
	EdgeClear *Edge `protobuf:"bytes,13,opt,name=edge_clear,json=edgeClear,proto3,oneof"`
}

type TransactionAction_EdgeDelete

type TransactionAction_EdgeDelete struct {
	EdgeDelete *Edge `protobuf:"bytes,12,opt,name=edge_delete,json=edgeDelete,proto3,oneof"`
}

type TransactionAction_EdgeUpdate

type TransactionAction_EdgeUpdate struct {
	EdgeUpdate *Edge `protobuf:"bytes,11,opt,name=edge_update,json=edgeUpdate,proto3,oneof"`
}

type TransactionAction_IndexCreate

type TransactionAction_IndexCreate struct {
	IndexCreate *Index `protobuf:"bytes,21,opt,name=index_create,json=indexCreate,proto3,oneof"`
}

type TransactionAction_IndexDelete

type TransactionAction_IndexDelete struct {
	IndexDelete *Index `protobuf:"bytes,22,opt,name=index_delete,json=indexDelete,proto3,oneof"`
}

type TransactionAction_MetaClear

type TransactionAction_MetaClear struct {
	MetaClear *Meta `protobuf:"bytes,33,opt,name=meta_clear,json=metaClear,proto3,oneof"`
}

type TransactionAction_MetaDelete

type TransactionAction_MetaDelete struct {
	MetaDelete *Meta `protobuf:"bytes,32,opt,name=meta_delete,json=metaDelete,proto3,oneof"`
}

type TransactionAction_MetaUpdate

type TransactionAction_MetaUpdate struct {
	MetaUpdate *Meta `protobuf:"bytes,31,opt,name=meta_update,json=metaUpdate,proto3,oneof"`
}

type TransactionAction_NodeCreate

type TransactionAction_NodeCreate struct {
	NodeCreate *Node `protobuf:"bytes,40,opt,name=node_create,json=nodeCreate,proto3,oneof"`
}

type TransactionAction_NodeDelete

type TransactionAction_NodeDelete struct {
	NodeDelete *Node `protobuf:"bytes,42,opt,name=node_delete,json=nodeDelete,proto3,oneof"`
}

type TransactionAction_NodeUpdate

type TransactionAction_NodeUpdate struct {
	NodeUpdate *Node `protobuf:"bytes,41,opt,name=node_update,json=nodeUpdate,proto3,oneof"`
}

type TransactionAction_ReadCheck

type TransactionAction_ReadCheck struct {
	ReadCheck *ReadCheckRequest `protobuf:"bytes,50,opt,name=read_check,json=readCheck,proto3,oneof"`
}

Jump to

Keyboard shortcuts

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