pb

package
v1.0.4 Latest Latest
Warning

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

Go to latest
Published: Oct 31, 2022 License: MIT Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var BigTestService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "pb.BigTestService",
	HandlerType: (*BigTestServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "CreateHaveAll",
			Handler:    _BigTestService_CreateHaveAll_Handler,
		},
		{
			MethodName: "GetHaveAll",
			Handler:    _BigTestService_GetHaveAll_Handler,
		},
		{
			MethodName: "DeepPath",
			Handler:    _BigTestService_DeepPath_Handler,
		},
		{
			MethodName: "DoNotCreate",
			Handler:    _BigTestService_DoNotCreate_Handler,
		},
		{
			MethodName: "GetSmall",
			Handler:    _BigTestService_GetSmall_Handler,
		},
		{
			MethodName: "GetSmall1",
			Handler:    _BigTestService_GetSmall1_Handler,
		},
		{
			MethodName: "PutSmall",
			Handler:    _BigTestService_PutSmall_Handler,
		},
		{
			MethodName: "PostSmall",
			Handler:    _BigTestService_PostSmall_Handler,
		},
		{
			MethodName: "DeleteSmall",
			Handler:    _BigTestService_DeleteSmall_Handler,
		},
		{
			MethodName: "GetLongPath",
			Handler:    _BigTestService_GetLongPath_Handler,
		},
		{
			MethodName: "GetPathPath",
			Handler:    _BigTestService_GetPathPath_Handler,
		},
		{
			MethodName: "EmptyRequestMessage",
			Handler:    _BigTestService_EmptyRequestMessage_Handler,
		},
		{
			MethodName: "PageSortFilter",
			Handler:    _BigTestService_PageSortFilter_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "pb/samplesvc.proto",
}

BigTestService_ServiceDesc is the grpc.ServiceDesc for BigTestService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)

View Source
var File_pb_samplesvc_proto protoreflect.FileDescriptor

Functions

func RegisterBigTestServiceServer

func RegisterBigTestServiceServer(s grpc.ServiceRegistrar, srv BigTestServiceServer)

Types

type BigTestServiceClient

type BigTestServiceClient interface {
	// CreateHaveAll tests the put http method with body.
	CreateHaveAll(ctx context.Context, in *CreateHaveAllRequest, opts ...grpc.CallOption) (*CreateHaveAllResponse, error)
	// GetHaveAll should retrieve the HaveAll message with the id given in the path
	// Excluded from HaveAll are the "repeated"-fields (slices). This is not supported at the moment.
	GetHaveAll(ctx context.Context, in *GetHaveAllRequest, opts ...grpc.CallOption) (*GetHaveAllResponse, error)
	// DeepPath tests a query string given a value deeply nested in in structs.
	DeepPath(ctx context.Context, in *DeepHaveAllRequest, opts ...grpc.CallOption) (*DeepHaveAllResponse, error)
	// DoNotCreate is a testcase for a method without an method_map option. Therefore no REST frontend should be generated
	DoNotCreate(ctx context.Context, in *DoNotCreateRequest, opts ...grpc.CallOption) (*DoNotCreateResponse, error)
	// GetSmall tests path parameter.
	GetSmall(ctx context.Context, in *GetSmallRequest, opts ...grpc.CallOption) (*GetSmallResponse, error)
	// GetSmall1 tests path parameter in the middle of a path.
	GetSmall1(ctx context.Context, in *GetSmallRequest, opts ...grpc.CallOption) (*GetSmallResponse, error)
	// PutSmall tests the put http method.
	PutSmall(ctx context.Context, in *PutSmallRequest, opts ...grpc.CallOption) (*PutSmallResponse, error)
	// Flaw: id of the updated resource should be in the URI. An id from the URI should be mapped into posted objects.
	PostSmall(ctx context.Context, in *PostSmallRequest, opts ...grpc.CallOption) (*PostSmallResponse, error)
	// DeleteSmall tests the delete http method.
	DeleteSmall(ctx context.Context, in *DeleteSmallRequest, opts ...grpc.CallOption) (*DeleteSmallResponse, error)
	// GetLongPath is the testcase to assign more than one path parameter to the correct corresponding field.
	GetLongPath(ctx context.Context, in *GetLongPathRequest, opts ...grpc.CallOption) (*GetLongPathResponse, error)
	// GetPathPath tests if a path parameter can also be nested deeply into structs.
	GetPathPath(ctx context.Context, in *DeepPathPathRequest, opts ...grpc.CallOption) (*DeepPathPathResponse, error)
	// EmptyRequestMessage takes an empty request message and returns an empty request message.
	EmptyRequestMessage(ctx context.Context, in *EmptyRequestMessageRequest, opts ...grpc.CallOption) (*EmptyRequestMessageResponse, error)
	// PageSortFilter depends on other messages defined in other protobuf definitions
	// (here: Page-, Sort- and Filtermessage in pbmap/map.proto).
	PageSortFilter(ctx context.Context, in *PageSortFilterRequest, opts ...grpc.CallOption) (*PageSortFilterResponse, error)
}

BigTestServiceClient is the client API for BigTestService service.

For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.

type BigTestServiceServer

type BigTestServiceServer interface {
	// CreateHaveAll tests the put http method with body.
	CreateHaveAll(context.Context, *CreateHaveAllRequest) (*CreateHaveAllResponse, error)
	// GetHaveAll should retrieve the HaveAll message with the id given in the path
	// Excluded from HaveAll are the "repeated"-fields (slices). This is not supported at the moment.
	GetHaveAll(context.Context, *GetHaveAllRequest) (*GetHaveAllResponse, error)
	// DeepPath tests a query string given a value deeply nested in in structs.
	DeepPath(context.Context, *DeepHaveAllRequest) (*DeepHaveAllResponse, error)
	// DoNotCreate is a testcase for a method without an method_map option. Therefore no REST frontend should be generated
	DoNotCreate(context.Context, *DoNotCreateRequest) (*DoNotCreateResponse, error)
	// GetSmall tests path parameter.
	GetSmall(context.Context, *GetSmallRequest) (*GetSmallResponse, error)
	// GetSmall1 tests path parameter in the middle of a path.
	GetSmall1(context.Context, *GetSmallRequest) (*GetSmallResponse, error)
	// PutSmall tests the put http method.
	PutSmall(context.Context, *PutSmallRequest) (*PutSmallResponse, error)
	// Flaw: id of the updated resource should be in the URI. An id from the URI should be mapped into posted objects.
	PostSmall(context.Context, *PostSmallRequest) (*PostSmallResponse, error)
	// DeleteSmall tests the delete http method.
	DeleteSmall(context.Context, *DeleteSmallRequest) (*DeleteSmallResponse, error)
	// GetLongPath is the testcase to assign more than one path parameter to the correct corresponding field.
	GetLongPath(context.Context, *GetLongPathRequest) (*GetLongPathResponse, error)
	// GetPathPath tests if a path parameter can also be nested deeply into structs.
	GetPathPath(context.Context, *DeepPathPathRequest) (*DeepPathPathResponse, error)
	// EmptyRequestMessage takes an empty request message and returns an empty request message.
	EmptyRequestMessage(context.Context, *EmptyRequestMessageRequest) (*EmptyRequestMessageResponse, error)
	// PageSortFilter depends on other messages defined in other protobuf definitions
	// (here: Page-, Sort- and Filtermessage in pbmap/map.proto).
	PageSortFilter(context.Context, *PageSortFilterRequest) (*PageSortFilterResponse, error)
	// contains filtered or unexported methods
}

BigTestServiceServer is the server API for BigTestService service. All implementations must embed UnimplementedBigTestServiceServer for forward compatibility

type CreateHaveAllRequest

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

func (*CreateHaveAllRequest) Descriptor deprecated

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

Deprecated: Use CreateHaveAllRequest.ProtoReflect.Descriptor instead.

func (*CreateHaveAllRequest) GetHaveAll

func (x *CreateHaveAllRequest) GetHaveAll() *HaveAll

func (*CreateHaveAllRequest) ProtoMessage

func (*CreateHaveAllRequest) ProtoMessage()

func (*CreateHaveAllRequest) ProtoReflect added in v1.0.3

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

func (*CreateHaveAllRequest) Reset

func (x *CreateHaveAllRequest) Reset()

func (*CreateHaveAllRequest) String

func (x *CreateHaveAllRequest) String() string

type CreateHaveAllResponse

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

func (*CreateHaveAllResponse) Descriptor deprecated

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

Deprecated: Use CreateHaveAllResponse.ProtoReflect.Descriptor instead.

func (*CreateHaveAllResponse) GetHaveAll

func (x *CreateHaveAllResponse) GetHaveAll() *HaveAll

func (*CreateHaveAllResponse) ProtoMessage

func (*CreateHaveAllResponse) ProtoMessage()

func (*CreateHaveAllResponse) ProtoReflect added in v1.0.3

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

func (*CreateHaveAllResponse) Reset

func (x *CreateHaveAllResponse) Reset()

func (*CreateHaveAllResponse) String

func (x *CreateHaveAllResponse) String() string

type DeepHaveAllRequest

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

func (*DeepHaveAllRequest) Descriptor deprecated

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

Deprecated: Use DeepHaveAllRequest.ProtoReflect.Descriptor instead.

func (*DeepHaveAllRequest) GetHaveAll

func (x *DeepHaveAllRequest) GetHaveAll() *HaveAll

func (*DeepHaveAllRequest) ProtoMessage

func (*DeepHaveAllRequest) ProtoMessage()

func (*DeepHaveAllRequest) ProtoReflect added in v1.0.3

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

func (*DeepHaveAllRequest) Reset

func (x *DeepHaveAllRequest) Reset()

func (*DeepHaveAllRequest) String

func (x *DeepHaveAllRequest) String() string

type DeepHaveAllResponse

type DeepHaveAllResponse struct {
	Id uint32 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeepHaveAllResponse) Descriptor deprecated

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

Deprecated: Use DeepHaveAllResponse.ProtoReflect.Descriptor instead.

func (*DeepHaveAllResponse) GetId

func (x *DeepHaveAllResponse) GetId() uint32

func (*DeepHaveAllResponse) ProtoMessage

func (*DeepHaveAllResponse) ProtoMessage()

func (*DeepHaveAllResponse) ProtoReflect added in v1.0.3

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

func (*DeepHaveAllResponse) Reset

func (x *DeepHaveAllResponse) Reset()

func (*DeepHaveAllResponse) String

func (x *DeepHaveAllResponse) String() string

type DeepPathPathRequest

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

func (*DeepPathPathRequest) Descriptor deprecated

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

Deprecated: Use DeepPathPathRequest.ProtoReflect.Descriptor instead.

func (*DeepPathPathRequest) GetHaveAll

func (x *DeepPathPathRequest) GetHaveAll() *HaveAll

func (*DeepPathPathRequest) ProtoMessage

func (*DeepPathPathRequest) ProtoMessage()

func (*DeepPathPathRequest) ProtoReflect added in v1.0.3

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

func (*DeepPathPathRequest) Reset

func (x *DeepPathPathRequest) Reset()

func (*DeepPathPathRequest) String

func (x *DeepPathPathRequest) String() string

type DeepPathPathResponse

type DeepPathPathResponse struct {
	Id uint32 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeepPathPathResponse) Descriptor deprecated

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

Deprecated: Use DeepPathPathResponse.ProtoReflect.Descriptor instead.

func (*DeepPathPathResponse) GetId

func (x *DeepPathPathResponse) GetId() uint32

func (*DeepPathPathResponse) ProtoMessage

func (*DeepPathPathResponse) ProtoMessage()

func (*DeepPathPathResponse) ProtoReflect added in v1.0.3

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

func (*DeepPathPathResponse) Reset

func (x *DeepPathPathResponse) Reset()

func (*DeepPathPathResponse) String

func (x *DeepPathPathResponse) String() string

type DeleteSmallRequest

type DeleteSmallRequest struct {
	Id uint32 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
	// contains filtered or unexported fields
}

func (*DeleteSmallRequest) Descriptor deprecated

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

Deprecated: Use DeleteSmallRequest.ProtoReflect.Descriptor instead.

func (*DeleteSmallRequest) GetId

func (x *DeleteSmallRequest) GetId() uint32

func (*DeleteSmallRequest) ProtoMessage

func (*DeleteSmallRequest) ProtoMessage()

func (*DeleteSmallRequest) ProtoReflect added in v1.0.3

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

func (*DeleteSmallRequest) Reset

func (x *DeleteSmallRequest) Reset()

func (*DeleteSmallRequest) String

func (x *DeleteSmallRequest) String() string

type DeleteSmallResponse

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

func (*DeleteSmallResponse) Descriptor deprecated

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

Deprecated: Use DeleteSmallResponse.ProtoReflect.Descriptor instead.

func (*DeleteSmallResponse) ProtoMessage

func (*DeleteSmallResponse) ProtoMessage()

func (*DeleteSmallResponse) ProtoReflect added in v1.0.3

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

func (*DeleteSmallResponse) Reset

func (x *DeleteSmallResponse) Reset()

func (*DeleteSmallResponse) String

func (x *DeleteSmallResponse) String() string

type DoNotCreateRequest

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

func (*DoNotCreateRequest) Descriptor deprecated

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

Deprecated: Use DoNotCreateRequest.ProtoReflect.Descriptor instead.

func (*DoNotCreateRequest) ProtoMessage

func (*DoNotCreateRequest) ProtoMessage()

func (*DoNotCreateRequest) ProtoReflect added in v1.0.3

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

func (*DoNotCreateRequest) Reset

func (x *DoNotCreateRequest) Reset()

func (*DoNotCreateRequest) String

func (x *DoNotCreateRequest) String() string

type DoNotCreateResponse

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

func (*DoNotCreateResponse) Descriptor deprecated

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

Deprecated: Use DoNotCreateResponse.ProtoReflect.Descriptor instead.

func (*DoNotCreateResponse) ProtoMessage

func (*DoNotCreateResponse) ProtoMessage()

func (*DoNotCreateResponse) ProtoReflect added in v1.0.3

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

func (*DoNotCreateResponse) Reset

func (x *DoNotCreateResponse) Reset()

func (*DoNotCreateResponse) String

func (x *DoNotCreateResponse) String() string

type Embedded

type Embedded struct {
	Id       uint32    `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
	Text     string    `protobuf:"bytes,2,opt,name=Text,proto3" json:"Text,omitempty"`
	Embedded *Embedded `protobuf:"bytes,3,opt,name=Embedded,proto3" json:"Embedded,omitempty"`
	// contains filtered or unexported fields
}

func (*Embedded) Descriptor deprecated

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

Deprecated: Use Embedded.ProtoReflect.Descriptor instead.

func (*Embedded) GetEmbedded

func (x *Embedded) GetEmbedded() *Embedded

func (*Embedded) GetId

func (x *Embedded) GetId() uint32

func (*Embedded) GetText

func (x *Embedded) GetText() string

func (*Embedded) ProtoMessage

func (*Embedded) ProtoMessage()

func (*Embedded) ProtoReflect added in v1.0.3

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

func (*Embedded) Reset

func (x *Embedded) Reset()

func (*Embedded) String

func (x *Embedded) String() string

type Embedded2

type Embedded2 struct {
	Id uint32 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
	// contains filtered or unexported fields
}

func (*Embedded2) Descriptor deprecated

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

Deprecated: Use Embedded2.ProtoReflect.Descriptor instead.

func (*Embedded2) GetId

func (x *Embedded2) GetId() uint32

func (*Embedded2) ProtoMessage

func (*Embedded2) ProtoMessage()

func (*Embedded2) ProtoReflect added in v1.0.3

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

func (*Embedded2) Reset

func (x *Embedded2) Reset()

func (*Embedded2) String

func (x *Embedded2) String() string

type EmptyRequestMessageRequest

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

func (*EmptyRequestMessageRequest) Descriptor deprecated

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

Deprecated: Use EmptyRequestMessageRequest.ProtoReflect.Descriptor instead.

func (*EmptyRequestMessageRequest) ProtoMessage

func (*EmptyRequestMessageRequest) ProtoMessage()

func (*EmptyRequestMessageRequest) ProtoReflect added in v1.0.3

func (*EmptyRequestMessageRequest) Reset

func (x *EmptyRequestMessageRequest) Reset()

func (*EmptyRequestMessageRequest) String

func (x *EmptyRequestMessageRequest) String() string

type EmptyRequestMessageResponse

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

func (*EmptyRequestMessageResponse) Descriptor deprecated

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

Deprecated: Use EmptyRequestMessageResponse.ProtoReflect.Descriptor instead.

func (*EmptyRequestMessageResponse) ProtoMessage

func (*EmptyRequestMessageResponse) ProtoMessage()

func (*EmptyRequestMessageResponse) ProtoReflect added in v1.0.3

func (*EmptyRequestMessageResponse) Reset

func (x *EmptyRequestMessageResponse) Reset()

func (*EmptyRequestMessageResponse) String

func (x *EmptyRequestMessageResponse) String() string

type GetHaveAllRequest

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

func (*GetHaveAllRequest) Descriptor deprecated

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

Deprecated: Use GetHaveAllRequest.ProtoReflect.Descriptor instead.

func (*GetHaveAllRequest) GetHaveAll

func (x *GetHaveAllRequest) GetHaveAll() *HaveAll

func (*GetHaveAllRequest) ProtoMessage

func (*GetHaveAllRequest) ProtoMessage()

func (*GetHaveAllRequest) ProtoReflect added in v1.0.3

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

func (*GetHaveAllRequest) Reset

func (x *GetHaveAllRequest) Reset()

func (*GetHaveAllRequest) String

func (x *GetHaveAllRequest) String() string

type GetHaveAllResponse

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

func (*GetHaveAllResponse) Descriptor deprecated

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

Deprecated: Use GetHaveAllResponse.ProtoReflect.Descriptor instead.

func (*GetHaveAllResponse) GetHaveAll

func (x *GetHaveAllResponse) GetHaveAll() *HaveAll

func (*GetHaveAllResponse) ProtoMessage

func (*GetHaveAllResponse) ProtoMessage()

func (*GetHaveAllResponse) ProtoReflect added in v1.0.3

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

func (*GetHaveAllResponse) Reset

func (x *GetHaveAllResponse) Reset()

func (*GetHaveAllResponse) String

func (x *GetHaveAllResponse) String() string

type GetLongPathRequest

type GetLongPathRequest struct {
	Ida uint32 `protobuf:"varint,1,opt,name=Ida,proto3" json:"Ida,omitempty"`
	Idb string `protobuf:"bytes,2,opt,name=Idb,proto3" json:"Idb,omitempty"`
	Idc uint64 `protobuf:"varint,3,opt,name=Idc,proto3" json:"Idc,omitempty"`
	Idd int32  `protobuf:"varint,4,opt,name=Idd,proto3" json:"Idd,omitempty"`
	Ide string `protobuf:"bytes,5,opt,name=Ide,proto3" json:"Ide,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLongPathRequest) Descriptor deprecated

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

Deprecated: Use GetLongPathRequest.ProtoReflect.Descriptor instead.

func (*GetLongPathRequest) GetIda

func (x *GetLongPathRequest) GetIda() uint32

func (*GetLongPathRequest) GetIdb

func (x *GetLongPathRequest) GetIdb() string

func (*GetLongPathRequest) GetIdc

func (x *GetLongPathRequest) GetIdc() uint64

func (*GetLongPathRequest) GetIdd

func (x *GetLongPathRequest) GetIdd() int32

func (*GetLongPathRequest) GetIde

func (x *GetLongPathRequest) GetIde() string

func (*GetLongPathRequest) ProtoMessage

func (*GetLongPathRequest) ProtoMessage()

func (*GetLongPathRequest) ProtoReflect added in v1.0.3

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

func (*GetLongPathRequest) Reset

func (x *GetLongPathRequest) Reset()

func (*GetLongPathRequest) String

func (x *GetLongPathRequest) String() string

type GetLongPathResponse

type GetLongPathResponse struct {
	Idf uint32 `protobuf:"varint,1,opt,name=Idf,proto3" json:"Idf,omitempty"`
	// contains filtered or unexported fields
}

func (*GetLongPathResponse) Descriptor deprecated

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

Deprecated: Use GetLongPathResponse.ProtoReflect.Descriptor instead.

func (*GetLongPathResponse) GetIdf

func (x *GetLongPathResponse) GetIdf() uint32

func (*GetLongPathResponse) ProtoMessage

func (*GetLongPathResponse) ProtoMessage()

func (*GetLongPathResponse) ProtoReflect added in v1.0.3

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

func (*GetLongPathResponse) Reset

func (x *GetLongPathResponse) Reset()

func (*GetLongPathResponse) String

func (x *GetLongPathResponse) String() string

type GetSmallRequest

type GetSmallRequest struct {
	Id     uint32 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
	Idtest uint32 `protobuf:"varint,2,opt,name=Idtest,proto3" json:"Idtest,omitempty"`
	// contains filtered or unexported fields
}

func (*GetSmallRequest) Descriptor deprecated

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

Deprecated: Use GetSmallRequest.ProtoReflect.Descriptor instead.

func (*GetSmallRequest) GetId

func (x *GetSmallRequest) GetId() uint32

func (*GetSmallRequest) GetIdtest

func (x *GetSmallRequest) GetIdtest() uint32

func (*GetSmallRequest) ProtoMessage

func (*GetSmallRequest) ProtoMessage()

func (*GetSmallRequest) ProtoReflect added in v1.0.3

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

func (*GetSmallRequest) Reset

func (x *GetSmallRequest) Reset()

func (*GetSmallRequest) String

func (x *GetSmallRequest) String() string

type GetSmallResponse

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

func (*GetSmallResponse) Descriptor deprecated

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

Deprecated: Use GetSmallResponse.ProtoReflect.Descriptor instead.

func (*GetSmallResponse) GetSmall

func (x *GetSmallResponse) GetSmall() *Small

func (*GetSmallResponse) ProtoMessage

func (*GetSmallResponse) ProtoMessage()

func (*GetSmallResponse) ProtoReflect added in v1.0.3

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

func (*GetSmallResponse) Reset

func (x *GetSmallResponse) Reset()

func (*GetSmallResponse) String

func (x *GetSmallResponse) String() string

type HaveAll

type HaveAll struct {
	Id                     uint32               `protobuf:"varint,19,opt,name=Id,proto3" json:"Id,omitempty"`
	DoubleField            float64              `protobuf:"fixed64,1,opt,name=DoubleField,proto3" json:"DoubleField,omitempty"`
	Float                  float32              `protobuf:"fixed32,2,opt,name=Float,proto3" json:"Float,omitempty"`
	Int32                  int32                `protobuf:"varint,3,opt,name=Int32,proto3" json:"Int32,omitempty"`
	Int64                  int64                `protobuf:"varint,4,opt,name=Int64,proto3" json:"Int64,omitempty"`
	UInt32                 uint32               `protobuf:"varint,5,opt,name=UInt32,proto3" json:"UInt32,omitempty"`
	UInt64                 uint64               `protobuf:"varint,6,opt,name=UInt64,proto3" json:"UInt64,omitempty"`
	SInt64                 int64                `protobuf:"zigzag64,7,opt,name=SInt64,proto3" json:"SInt64,omitempty"`
	SInt32                 int32                `protobuf:"zigzag32,8,opt,name=SInt32,proto3" json:"SInt32,omitempty"`
	SFixed                 uint32               `protobuf:"fixed32,9,opt,name=SFixed,proto3" json:"SFixed,omitempty"`
	Fixed64                uint64               `protobuf:"fixed64,10,opt,name=Fixed64,proto3" json:"Fixed64,omitempty"`
	SFixed32               int32                `protobuf:"fixed32,11,opt,name=SFixed32,proto3" json:"SFixed32,omitempty"`
	SFixed64               int64                `protobuf:"fixed64,12,opt,name=SFixed64,proto3" json:"SFixed64,omitempty"`
	BoolField              bool                 `protobuf:"varint,13,opt,name=BoolField,proto3" json:"BoolField,omitempty"`
	StringField            string               `protobuf:"bytes,14,opt,name=StringField,proto3" json:"StringField,omitempty"`
	BytesField             []byte               `protobuf:"bytes,15,opt,name=BytesField,proto3" json:"BytesField,omitempty"`
	Embedded               *Embedded            `protobuf:"bytes,16,opt,name=Embedded,proto3" json:"Embedded,omitempty"`
	RepeatedString         []string             `protobuf:"bytes,17,rep,name=RepeatedString,proto3" json:"RepeatedString,omitempty"`
	RepeatedBytes          [][]byte             `protobuf:"bytes,20,rep,name=RepeatedBytes,proto3" json:"RepeatedBytes,omitempty"`
	RepeatedEmbedded       []*Embedded          `protobuf:"bytes,18,rep,name=RepeatedEmbedded,proto3" json:"RepeatedEmbedded,omitempty"`
	MapStringStringField   map[string]string    `` /* 182-byte string literal not displayed */
	MapStringEmbeddedField map[string]*Embedded `` /* 186-byte string literal not displayed */
	// contains filtered or unexported fields
}

func (*HaveAll) Descriptor deprecated

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

Deprecated: Use HaveAll.ProtoReflect.Descriptor instead.

func (*HaveAll) GetBoolField

func (x *HaveAll) GetBoolField() bool

func (*HaveAll) GetBytesField

func (x *HaveAll) GetBytesField() []byte

func (*HaveAll) GetDoubleField

func (x *HaveAll) GetDoubleField() float64

func (*HaveAll) GetEmbedded

func (x *HaveAll) GetEmbedded() *Embedded

func (*HaveAll) GetFixed64

func (x *HaveAll) GetFixed64() uint64

func (*HaveAll) GetFloat

func (x *HaveAll) GetFloat() float32

func (*HaveAll) GetId

func (x *HaveAll) GetId() uint32

func (*HaveAll) GetInt32

func (x *HaveAll) GetInt32() int32

func (*HaveAll) GetInt64

func (x *HaveAll) GetInt64() int64

func (*HaveAll) GetMapStringEmbeddedField

func (x *HaveAll) GetMapStringEmbeddedField() map[string]*Embedded

func (*HaveAll) GetMapStringStringField

func (x *HaveAll) GetMapStringStringField() map[string]string

func (*HaveAll) GetRepeatedBytes

func (x *HaveAll) GetRepeatedBytes() [][]byte

func (*HaveAll) GetRepeatedEmbedded

func (x *HaveAll) GetRepeatedEmbedded() []*Embedded

func (*HaveAll) GetRepeatedString

func (x *HaveAll) GetRepeatedString() []string

func (*HaveAll) GetSFixed

func (x *HaveAll) GetSFixed() uint32

func (*HaveAll) GetSFixed32

func (x *HaveAll) GetSFixed32() int32

func (*HaveAll) GetSFixed64

func (x *HaveAll) GetSFixed64() int64

func (*HaveAll) GetSInt32

func (x *HaveAll) GetSInt32() int32

func (*HaveAll) GetSInt64

func (x *HaveAll) GetSInt64() int64

func (*HaveAll) GetStringField

func (x *HaveAll) GetStringField() string

func (*HaveAll) GetUInt32

func (x *HaveAll) GetUInt32() uint32

func (*HaveAll) GetUInt64

func (x *HaveAll) GetUInt64() uint64

func (*HaveAll) ProtoMessage

func (*HaveAll) ProtoMessage()

func (*HaveAll) ProtoReflect added in v1.0.3

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

func (*HaveAll) Reset

func (x *HaveAll) Reset()

func (*HaveAll) String

func (x *HaveAll) String() string

type PageSortFilterRequest

type PageSortFilterRequest struct {
	Page   *pbmap.Page   `protobuf:"bytes,1,opt,name=Page,proto3" json:"Page,omitempty"`
	Sort   *pbmap.Sort   `protobuf:"bytes,2,opt,name=Sort,proto3" json:"Sort,omitempty"`
	Filter *pbmap.Filter `protobuf:"bytes,3,opt,name=Filter,proto3" json:"Filter,omitempty"`
	// contains filtered or unexported fields
}

func (*PageSortFilterRequest) Descriptor deprecated

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

Deprecated: Use PageSortFilterRequest.ProtoReflect.Descriptor instead.

func (*PageSortFilterRequest) GetFilter

func (x *PageSortFilterRequest) GetFilter() *pbmap.Filter

func (*PageSortFilterRequest) GetPage

func (x *PageSortFilterRequest) GetPage() *pbmap.Page

func (*PageSortFilterRequest) GetSort

func (x *PageSortFilterRequest) GetSort() *pbmap.Sort

func (*PageSortFilterRequest) ProtoMessage

func (*PageSortFilterRequest) ProtoMessage()

func (*PageSortFilterRequest) ProtoReflect added in v1.0.3

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

func (*PageSortFilterRequest) Reset

func (x *PageSortFilterRequest) Reset()

func (*PageSortFilterRequest) String

func (x *PageSortFilterRequest) String() string

type PageSortFilterResponse

type PageSortFilterResponse struct {
	PageLimit   uint64 `protobuf:"varint,1,opt,name=PageLimit,proto3" json:"PageLimit,omitempty"`
	PageOffset  uint64 `protobuf:"varint,2,opt,name=PageOffset,proto3" json:"PageOffset,omitempty"`
	SortField   string `protobuf:"bytes,3,opt,name=SortField,proto3" json:"SortField,omitempty"`
	SortDesc    bool   `protobuf:"varint,4,opt,name=SortDesc,proto3" json:"SortDesc,omitempty"`
	FilterQuery string `protobuf:"bytes,5,opt,name=FilterQuery,proto3" json:"FilterQuery,omitempty"`
	// contains filtered or unexported fields
}

func (*PageSortFilterResponse) Descriptor deprecated

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

Deprecated: Use PageSortFilterResponse.ProtoReflect.Descriptor instead.

func (*PageSortFilterResponse) GetFilterQuery

func (x *PageSortFilterResponse) GetFilterQuery() string

func (*PageSortFilterResponse) GetPageLimit

func (x *PageSortFilterResponse) GetPageLimit() uint64

func (*PageSortFilterResponse) GetPageOffset

func (x *PageSortFilterResponse) GetPageOffset() uint64

func (*PageSortFilterResponse) GetSortDesc

func (x *PageSortFilterResponse) GetSortDesc() bool

func (*PageSortFilterResponse) GetSortField

func (x *PageSortFilterResponse) GetSortField() string

func (*PageSortFilterResponse) ProtoMessage

func (*PageSortFilterResponse) ProtoMessage()

func (*PageSortFilterResponse) ProtoReflect added in v1.0.3

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

func (*PageSortFilterResponse) Reset

func (x *PageSortFilterResponse) Reset()

func (*PageSortFilterResponse) String

func (x *PageSortFilterResponse) String() string

type PostSmallRequest

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

func (*PostSmallRequest) Descriptor deprecated

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

Deprecated: Use PostSmallRequest.ProtoReflect.Descriptor instead.

func (*PostSmallRequest) GetSmall

func (x *PostSmallRequest) GetSmall() *Small

func (*PostSmallRequest) ProtoMessage

func (*PostSmallRequest) ProtoMessage()

func (*PostSmallRequest) ProtoReflect added in v1.0.3

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

func (*PostSmallRequest) Reset

func (x *PostSmallRequest) Reset()

func (*PostSmallRequest) String

func (x *PostSmallRequest) String() string

type PostSmallResponse

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

func (*PostSmallResponse) Descriptor deprecated

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

Deprecated: Use PostSmallResponse.ProtoReflect.Descriptor instead.

func (*PostSmallResponse) ProtoMessage

func (*PostSmallResponse) ProtoMessage()

func (*PostSmallResponse) ProtoReflect added in v1.0.3

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

func (*PostSmallResponse) Reset

func (x *PostSmallResponse) Reset()

func (*PostSmallResponse) String

func (x *PostSmallResponse) String() string

type PutSmallRequest

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

func (*PutSmallRequest) Descriptor deprecated

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

Deprecated: Use PutSmallRequest.ProtoReflect.Descriptor instead.

func (*PutSmallRequest) GetSmall

func (x *PutSmallRequest) GetSmall() *Small

func (*PutSmallRequest) ProtoMessage

func (*PutSmallRequest) ProtoMessage()

func (*PutSmallRequest) ProtoReflect added in v1.0.3

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

func (*PutSmallRequest) Reset

func (x *PutSmallRequest) Reset()

func (*PutSmallRequest) String

func (x *PutSmallRequest) String() string

type PutSmallResponse

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

func (*PutSmallResponse) Descriptor deprecated

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

Deprecated: Use PutSmallResponse.ProtoReflect.Descriptor instead.

func (*PutSmallResponse) ProtoMessage

func (*PutSmallResponse) ProtoMessage()

func (*PutSmallResponse) ProtoReflect added in v1.0.3

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

func (*PutSmallResponse) Reset

func (x *PutSmallResponse) Reset()

func (*PutSmallResponse) String

func (x *PutSmallResponse) String() string

type Small

type Small struct {
	Id   uint32 `protobuf:"varint,1,opt,name=Id,proto3" json:"Id,omitempty"`
	Text string `protobuf:"bytes,2,opt,name=Text,proto3" json:"Text,omitempty"`
	// contains filtered or unexported fields
}

func (*Small) Descriptor deprecated

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

Deprecated: Use Small.ProtoReflect.Descriptor instead.

func (*Small) GetId

func (x *Small) GetId() uint32

func (*Small) GetText

func (x *Small) GetText() string

func (*Small) ProtoMessage

func (*Small) ProtoMessage()

func (*Small) ProtoReflect added in v1.0.3

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

func (*Small) Reset

func (x *Small) Reset()

func (*Small) String

func (x *Small) String() string

type UnimplementedBigTestServiceServer added in v1.0.3

type UnimplementedBigTestServiceServer struct {
}

UnimplementedBigTestServiceServer must be embedded to have forward compatible implementations.

func (UnimplementedBigTestServiceServer) CreateHaveAll added in v1.0.3

func (UnimplementedBigTestServiceServer) DeepPath added in v1.0.3

func (UnimplementedBigTestServiceServer) DeleteSmall added in v1.0.3

func (UnimplementedBigTestServiceServer) DoNotCreate added in v1.0.3

func (UnimplementedBigTestServiceServer) EmptyRequestMessage added in v1.0.3

func (UnimplementedBigTestServiceServer) GetHaveAll added in v1.0.3

func (UnimplementedBigTestServiceServer) GetLongPath added in v1.0.3

func (UnimplementedBigTestServiceServer) GetPathPath added in v1.0.3

func (UnimplementedBigTestServiceServer) GetSmall added in v1.0.3

func (UnimplementedBigTestServiceServer) GetSmall1 added in v1.0.3

func (UnimplementedBigTestServiceServer) PageSortFilter added in v1.0.3

func (UnimplementedBigTestServiceServer) PostSmall added in v1.0.3

func (UnimplementedBigTestServiceServer) PutSmall added in v1.0.3

type UnsafeBigTestServiceServer added in v1.0.3

type UnsafeBigTestServiceServer interface {
	// contains filtered or unexported methods
}

UnsafeBigTestServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to BigTestServiceServer will result in compilation errors.

Jump to

Keyboard shortcuts

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