proto

package
v0.0.0-...-ef636f8 Latest Latest
Warning

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

Go to latest
Published: Mar 14, 2024 License: MIT Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrInvalidLength        = fmt.Errorf("proto: negative length found during unmarshaling")
	ErrIntOverflow          = fmt.Errorf("proto: integer overflow")
	ErrUnexpectedEndOfGroup = fmt.Errorf("proto: unexpected end of group")
)
View Source
var File_github_com_element_of_surprise_examples_testing_servwithclients_server_proto_server_proto protoreflect.FileDescriptor
View Source
var RPC_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "service.RPC",
	HandlerType: (*RPCServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "SayHello",
			Handler:    _RPC_SayHello_Handler,
		},
		{
			MethodName: "CreateResourceGroup",
			Handler:    _RPC_CreateResourceGroup_Handler,
		},
		{
			MethodName: "ReadResourceGroup",
			Handler:    _RPC_ReadResourceGroup_Handler,
		},
		{
			MethodName: "UpdateResourceGroup",
			Handler:    _RPC_UpdateResourceGroup_Handler,
		},
		{
			MethodName: "DeleteResourceGroup",
			Handler:    _RPC_DeleteResourceGroup_Handler,
		},
		{
			MethodName: "ListResourceGroups",
			Handler:    _RPC_ListResourceGroups_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "github.com/element-of-surprise/examples/testing/servwithclients/server/proto/server.proto",
}

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

Functions

func RegisterRPCServer

func RegisterRPCServer(s grpc.ServiceRegistrar, srv RPCServer)

Types

type Address

type Address struct {
	Street  string `protobuf:"bytes,1,opt,name=street,proto3" json:"street,omitempty"`
	City    string `protobuf:"bytes,2,opt,name=city,proto3" json:"city,omitempty"`
	State   string `protobuf:"bytes,3,opt,name=state,proto3" json:"state,omitempty"`
	Zipcode int32  `protobuf:"varint,4,opt,name=zipcode,proto3" json:"zipcode,omitempty"`
	// contains filtered or unexported fields
}

func (*Address) CloneMessageVT

func (m *Address) CloneMessageVT() proto.Message

func (*Address) CloneVT

func (m *Address) CloneVT() *Address

func (*Address) Descriptor deprecated

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

Deprecated: Use Address.ProtoReflect.Descriptor instead.

func (*Address) EqualMessageVT

func (this *Address) EqualMessageVT(thatMsg proto.Message) bool

func (*Address) EqualVT

func (this *Address) EqualVT(that *Address) bool

func (*Address) GetCity

func (x *Address) GetCity() string

func (*Address) GetState

func (x *Address) GetState() string

func (*Address) GetStreet

func (x *Address) GetStreet() string

func (*Address) GetZipcode

func (x *Address) GetZipcode() int32

func (*Address) MarshalToSizedBufferVT

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

func (*Address) MarshalToSizedBufferVTStrict

func (m *Address) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*Address) MarshalToVT

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

func (*Address) MarshalToVTStrict

func (m *Address) MarshalToVTStrict(dAtA []byte) (int, error)

func (*Address) MarshalVT

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

func (*Address) MarshalVTStrict

func (m *Address) MarshalVTStrict() (dAtA []byte, err error)

func (*Address) ProtoMessage

func (*Address) ProtoMessage()

func (*Address) ProtoReflect

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

func (*Address) Reset

func (x *Address) Reset()

func (*Address) SizeVT

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

func (*Address) String

func (x *Address) String() string

func (*Address) UnmarshalVT

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

type CreateResourceGroupReply

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

func (*CreateResourceGroupReply) CloneMessageVT

func (m *CreateResourceGroupReply) CloneMessageVT() proto.Message

func (*CreateResourceGroupReply) CloneVT

func (*CreateResourceGroupReply) Descriptor deprecated

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

Deprecated: Use CreateResourceGroupReply.ProtoReflect.Descriptor instead.

func (*CreateResourceGroupReply) EqualMessageVT

func (this *CreateResourceGroupReply) EqualMessageVT(thatMsg proto.Message) bool

func (*CreateResourceGroupReply) EqualVT

func (*CreateResourceGroupReply) GetStatus

func (x *CreateResourceGroupReply) GetStatus() string

func (*CreateResourceGroupReply) MarshalToSizedBufferVT

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

func (*CreateResourceGroupReply) MarshalToSizedBufferVTStrict

func (m *CreateResourceGroupReply) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*CreateResourceGroupReply) MarshalToVT

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

func (*CreateResourceGroupReply) MarshalToVTStrict

func (m *CreateResourceGroupReply) MarshalToVTStrict(dAtA []byte) (int, error)

func (*CreateResourceGroupReply) MarshalVT

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

func (*CreateResourceGroupReply) MarshalVTStrict

func (m *CreateResourceGroupReply) MarshalVTStrict() (dAtA []byte, err error)

func (*CreateResourceGroupReply) ProtoMessage

func (*CreateResourceGroupReply) ProtoMessage()

func (*CreateResourceGroupReply) ProtoReflect

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

func (*CreateResourceGroupReply) Reset

func (x *CreateResourceGroupReply) Reset()

func (*CreateResourceGroupReply) SizeVT

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

func (*CreateResourceGroupReply) String

func (x *CreateResourceGroupReply) String() string

func (*CreateResourceGroupReply) UnmarshalVT

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

type CreateResourceGroupRequest

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

func (*CreateResourceGroupRequest) CloneMessageVT

func (m *CreateResourceGroupRequest) CloneMessageVT() proto.Message

func (*CreateResourceGroupRequest) CloneVT

func (*CreateResourceGroupRequest) Descriptor deprecated

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

Deprecated: Use CreateResourceGroupRequest.ProtoReflect.Descriptor instead.

func (*CreateResourceGroupRequest) EqualMessageVT

func (this *CreateResourceGroupRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*CreateResourceGroupRequest) EqualVT

func (*CreateResourceGroupRequest) GetName

func (x *CreateResourceGroupRequest) GetName() string

func (*CreateResourceGroupRequest) GetRegion

func (x *CreateResourceGroupRequest) GetRegion() string

func (*CreateResourceGroupRequest) MarshalToSizedBufferVT

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

func (*CreateResourceGroupRequest) MarshalToSizedBufferVTStrict

func (m *CreateResourceGroupRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*CreateResourceGroupRequest) MarshalToVT

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

func (*CreateResourceGroupRequest) MarshalToVTStrict

func (m *CreateResourceGroupRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*CreateResourceGroupRequest) MarshalVT

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

func (*CreateResourceGroupRequest) MarshalVTStrict

func (m *CreateResourceGroupRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*CreateResourceGroupRequest) ProtoMessage

func (*CreateResourceGroupRequest) ProtoMessage()

func (*CreateResourceGroupRequest) ProtoReflect

func (*CreateResourceGroupRequest) Reset

func (x *CreateResourceGroupRequest) Reset()

func (*CreateResourceGroupRequest) SizeVT

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

func (*CreateResourceGroupRequest) String

func (x *CreateResourceGroupRequest) String() string

func (*CreateResourceGroupRequest) UnmarshalVT

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

type DeleteResourceGroupReply

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

func (*DeleteResourceGroupReply) CloneMessageVT

func (m *DeleteResourceGroupReply) CloneMessageVT() proto.Message

func (*DeleteResourceGroupReply) CloneVT

func (*DeleteResourceGroupReply) Descriptor deprecated

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

Deprecated: Use DeleteResourceGroupReply.ProtoReflect.Descriptor instead.

func (*DeleteResourceGroupReply) EqualMessageVT

func (this *DeleteResourceGroupReply) EqualMessageVT(thatMsg proto.Message) bool

func (*DeleteResourceGroupReply) EqualVT

func (*DeleteResourceGroupReply) GetStatus

func (x *DeleteResourceGroupReply) GetStatus() string

func (*DeleteResourceGroupReply) MarshalToSizedBufferVT

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

func (*DeleteResourceGroupReply) MarshalToSizedBufferVTStrict

func (m *DeleteResourceGroupReply) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*DeleteResourceGroupReply) MarshalToVT

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

func (*DeleteResourceGroupReply) MarshalToVTStrict

func (m *DeleteResourceGroupReply) MarshalToVTStrict(dAtA []byte) (int, error)

func (*DeleteResourceGroupReply) MarshalVT

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

func (*DeleteResourceGroupReply) MarshalVTStrict

func (m *DeleteResourceGroupReply) MarshalVTStrict() (dAtA []byte, err error)

func (*DeleteResourceGroupReply) ProtoMessage

func (*DeleteResourceGroupReply) ProtoMessage()

func (*DeleteResourceGroupReply) ProtoReflect

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

func (*DeleteResourceGroupReply) Reset

func (x *DeleteResourceGroupReply) Reset()

func (*DeleteResourceGroupReply) SizeVT

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

func (*DeleteResourceGroupReply) String

func (x *DeleteResourceGroupReply) String() string

func (*DeleteResourceGroupReply) UnmarshalVT

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

type DeleteResourceGroupRequest

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

func (*DeleteResourceGroupRequest) CloneMessageVT

func (m *DeleteResourceGroupRequest) CloneMessageVT() proto.Message

func (*DeleteResourceGroupRequest) CloneVT

func (*DeleteResourceGroupRequest) Descriptor deprecated

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

Deprecated: Use DeleteResourceGroupRequest.ProtoReflect.Descriptor instead.

func (*DeleteResourceGroupRequest) EqualMessageVT

func (this *DeleteResourceGroupRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*DeleteResourceGroupRequest) EqualVT

func (*DeleteResourceGroupRequest) GetId

func (*DeleteResourceGroupRequest) MarshalToSizedBufferVT

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

func (*DeleteResourceGroupRequest) MarshalToSizedBufferVTStrict

func (m *DeleteResourceGroupRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*DeleteResourceGroupRequest) MarshalToVT

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

func (*DeleteResourceGroupRequest) MarshalToVTStrict

func (m *DeleteResourceGroupRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*DeleteResourceGroupRequest) MarshalVT

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

func (*DeleteResourceGroupRequest) MarshalVTStrict

func (m *DeleteResourceGroupRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*DeleteResourceGroupRequest) ProtoMessage

func (*DeleteResourceGroupRequest) ProtoMessage()

func (*DeleteResourceGroupRequest) ProtoReflect

func (*DeleteResourceGroupRequest) Reset

func (x *DeleteResourceGroupRequest) Reset()

func (*DeleteResourceGroupRequest) SizeVT

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

func (*DeleteResourceGroupRequest) String

func (x *DeleteResourceGroupRequest) String() string

func (*DeleteResourceGroupRequest) UnmarshalVT

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

type HelloReply

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

The response message containing the greetings

func (*HelloReply) CloneMessageVT

func (m *HelloReply) CloneMessageVT() proto.Message

func (*HelloReply) CloneVT

func (m *HelloReply) CloneVT() *HelloReply

func (*HelloReply) Descriptor deprecated

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

Deprecated: Use HelloReply.ProtoReflect.Descriptor instead.

func (*HelloReply) EqualMessageVT

func (this *HelloReply) EqualMessageVT(thatMsg proto.Message) bool

func (*HelloReply) EqualVT

func (this *HelloReply) EqualVT(that *HelloReply) bool

func (*HelloReply) GetMessage

func (x *HelloReply) GetMessage() string

func (*HelloReply) MarshalToSizedBufferVT

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

func (*HelloReply) MarshalToSizedBufferVTStrict

func (m *HelloReply) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*HelloReply) MarshalToVT

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

func (*HelloReply) MarshalToVTStrict

func (m *HelloReply) MarshalToVTStrict(dAtA []byte) (int, error)

func (*HelloReply) MarshalVT

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

func (*HelloReply) MarshalVTStrict

func (m *HelloReply) MarshalVTStrict() (dAtA []byte, err error)

func (*HelloReply) ProtoMessage

func (*HelloReply) ProtoMessage()

func (*HelloReply) ProtoReflect

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

func (*HelloReply) Reset

func (x *HelloReply) Reset()

func (*HelloReply) SizeVT

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

func (*HelloReply) String

func (x *HelloReply) String() string

func (*HelloReply) UnmarshalVT

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

type HelloRequest

type HelloRequest struct {
	Name    string   `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
	Age     int32    `protobuf:"varint,2,opt,name=age,proto3" json:"age,omitempty"`
	Address *Address `protobuf:"bytes,3,opt,name=address,proto3" json:"address,omitempty"`
	// contains filtered or unexported fields
}

The request message containing the user's name.

func (*HelloRequest) CloneMessageVT

func (m *HelloRequest) CloneMessageVT() proto.Message

func (*HelloRequest) CloneVT

func (m *HelloRequest) CloneVT() *HelloRequest

func (*HelloRequest) Descriptor deprecated

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

Deprecated: Use HelloRequest.ProtoReflect.Descriptor instead.

func (*HelloRequest) EqualMessageVT

func (this *HelloRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*HelloRequest) EqualVT

func (this *HelloRequest) EqualVT(that *HelloRequest) bool

func (*HelloRequest) GetAddress

func (x *HelloRequest) GetAddress() *Address

func (*HelloRequest) GetAge

func (x *HelloRequest) GetAge() int32

func (*HelloRequest) GetName

func (x *HelloRequest) GetName() string

func (*HelloRequest) MarshalToSizedBufferVT

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

func (*HelloRequest) MarshalToSizedBufferVTStrict

func (m *HelloRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*HelloRequest) MarshalToVT

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

func (*HelloRequest) MarshalToVTStrict

func (m *HelloRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*HelloRequest) MarshalVT

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

func (*HelloRequest) MarshalVTStrict

func (m *HelloRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*HelloRequest) ProtoMessage

func (*HelloRequest) ProtoMessage()

func (*HelloRequest) ProtoReflect

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

func (*HelloRequest) Reset

func (x *HelloRequest) Reset()

func (*HelloRequest) SizeVT

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

func (*HelloRequest) String

func (x *HelloRequest) String() string

func (*HelloRequest) UnmarshalVT

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

type ListResourceGroupsReply

type ListResourceGroupsReply struct {
	ResourceGroups []*ResourceGroup `protobuf:"bytes,1,rep,name=resourceGroups,proto3" json:"resourceGroups,omitempty"`
	// contains filtered or unexported fields
}

func (*ListResourceGroupsReply) CloneMessageVT

func (m *ListResourceGroupsReply) CloneMessageVT() proto.Message

func (*ListResourceGroupsReply) CloneVT

func (*ListResourceGroupsReply) Descriptor deprecated

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

Deprecated: Use ListResourceGroupsReply.ProtoReflect.Descriptor instead.

func (*ListResourceGroupsReply) EqualMessageVT

func (this *ListResourceGroupsReply) EqualMessageVT(thatMsg proto.Message) bool

func (*ListResourceGroupsReply) EqualVT

func (*ListResourceGroupsReply) GetResourceGroups

func (x *ListResourceGroupsReply) GetResourceGroups() []*ResourceGroup

func (*ListResourceGroupsReply) MarshalToSizedBufferVT

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

func (*ListResourceGroupsReply) MarshalToSizedBufferVTStrict

func (m *ListResourceGroupsReply) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*ListResourceGroupsReply) MarshalToVT

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

func (*ListResourceGroupsReply) MarshalToVTStrict

func (m *ListResourceGroupsReply) MarshalToVTStrict(dAtA []byte) (int, error)

func (*ListResourceGroupsReply) MarshalVT

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

func (*ListResourceGroupsReply) MarshalVTStrict

func (m *ListResourceGroupsReply) MarshalVTStrict() (dAtA []byte, err error)

func (*ListResourceGroupsReply) ProtoMessage

func (*ListResourceGroupsReply) ProtoMessage()

func (*ListResourceGroupsReply) ProtoReflect

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

func (*ListResourceGroupsReply) Reset

func (x *ListResourceGroupsReply) Reset()

func (*ListResourceGroupsReply) SizeVT

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

func (*ListResourceGroupsReply) String

func (x *ListResourceGroupsReply) String() string

func (*ListResourceGroupsReply) UnmarshalVT

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

type ListResourceGroupsRequest

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

func (*ListResourceGroupsRequest) CloneMessageVT

func (m *ListResourceGroupsRequest) CloneMessageVT() proto.Message

func (*ListResourceGroupsRequest) CloneVT

func (*ListResourceGroupsRequest) Descriptor deprecated

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

Deprecated: Use ListResourceGroupsRequest.ProtoReflect.Descriptor instead.

func (*ListResourceGroupsRequest) EqualMessageVT

func (this *ListResourceGroupsRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*ListResourceGroupsRequest) EqualVT

func (*ListResourceGroupsRequest) GetName

func (x *ListResourceGroupsRequest) GetName() string

func (*ListResourceGroupsRequest) MarshalToSizedBufferVT

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

func (*ListResourceGroupsRequest) MarshalToSizedBufferVTStrict

func (m *ListResourceGroupsRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*ListResourceGroupsRequest) MarshalToVT

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

func (*ListResourceGroupsRequest) MarshalToVTStrict

func (m *ListResourceGroupsRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*ListResourceGroupsRequest) MarshalVT

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

func (*ListResourceGroupsRequest) MarshalVTStrict

func (m *ListResourceGroupsRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*ListResourceGroupsRequest) ProtoMessage

func (*ListResourceGroupsRequest) ProtoMessage()

func (*ListResourceGroupsRequest) ProtoReflect

func (*ListResourceGroupsRequest) Reset

func (x *ListResourceGroupsRequest) Reset()

func (*ListResourceGroupsRequest) SizeVT

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

func (*ListResourceGroupsRequest) String

func (x *ListResourceGroupsRequest) String() string

func (*ListResourceGroupsRequest) UnmarshalVT

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

type RPCClient

type RPCClient interface {
	SayHello(ctx context.Context, in *proto1.HelloRequest, opts ...grpc.CallOption) (*proto1.HelloReply, error)
	CreateResourceGroup(ctx context.Context, in *CreateResourceGroupRequest, opts ...grpc.CallOption) (*CreateResourceGroupReply, error)
	ReadResourceGroup(ctx context.Context, in *ReadResourceGroupRequest, opts ...grpc.CallOption) (*ReadResourceGroupReply, error)
	UpdateResourceGroup(ctx context.Context, in *UpdateResourceGroupRequest, opts ...grpc.CallOption) (*UpdateResourceGroupReply, error)
	DeleteResourceGroup(ctx context.Context, in *DeleteResourceGroupRequest, opts ...grpc.CallOption) (*DeleteResourceGroupReply, error)
	ListResourceGroups(ctx context.Context, in *ListResourceGroupsRequest, opts ...grpc.CallOption) (*ListResourceGroupsReply, error)
}

RPCClient is the client API for RPC 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.

func NewRPCClient

func NewRPCClient(cc grpc.ClientConnInterface) RPCClient

type RPCServer

RPCServer is the server API for RPC service. All implementations must embed UnimplementedRPCServer for forward compatibility

type ReadResourceGroupReply

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

func (*ReadResourceGroupReply) CloneMessageVT

func (m *ReadResourceGroupReply) CloneMessageVT() proto.Message

func (*ReadResourceGroupReply) CloneVT

func (*ReadResourceGroupReply) Descriptor deprecated

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

Deprecated: Use ReadResourceGroupReply.ProtoReflect.Descriptor instead.

func (*ReadResourceGroupReply) EqualMessageVT

func (this *ReadResourceGroupReply) EqualMessageVT(thatMsg proto.Message) bool

func (*ReadResourceGroupReply) EqualVT

func (this *ReadResourceGroupReply) EqualVT(that *ReadResourceGroupReply) bool

func (*ReadResourceGroupReply) GetStatus

func (x *ReadResourceGroupReply) GetStatus() string

func (*ReadResourceGroupReply) MarshalToSizedBufferVT

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

func (*ReadResourceGroupReply) MarshalToSizedBufferVTStrict

func (m *ReadResourceGroupReply) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*ReadResourceGroupReply) MarshalToVT

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

func (*ReadResourceGroupReply) MarshalToVTStrict

func (m *ReadResourceGroupReply) MarshalToVTStrict(dAtA []byte) (int, error)

func (*ReadResourceGroupReply) MarshalVT

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

func (*ReadResourceGroupReply) MarshalVTStrict

func (m *ReadResourceGroupReply) MarshalVTStrict() (dAtA []byte, err error)

func (*ReadResourceGroupReply) ProtoMessage

func (*ReadResourceGroupReply) ProtoMessage()

func (*ReadResourceGroupReply) ProtoReflect

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

func (*ReadResourceGroupReply) Reset

func (x *ReadResourceGroupReply) Reset()

func (*ReadResourceGroupReply) SizeVT

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

func (*ReadResourceGroupReply) String

func (x *ReadResourceGroupReply) String() string

func (*ReadResourceGroupReply) UnmarshalVT

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

type ReadResourceGroupRequest

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

func (*ReadResourceGroupRequest) CloneMessageVT

func (m *ReadResourceGroupRequest) CloneMessageVT() proto.Message

func (*ReadResourceGroupRequest) CloneVT

func (*ReadResourceGroupRequest) Descriptor deprecated

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

Deprecated: Use ReadResourceGroupRequest.ProtoReflect.Descriptor instead.

func (*ReadResourceGroupRequest) EqualMessageVT

func (this *ReadResourceGroupRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*ReadResourceGroupRequest) EqualVT

func (*ReadResourceGroupRequest) GetId

func (x *ReadResourceGroupRequest) GetId() string

func (*ReadResourceGroupRequest) MarshalToSizedBufferVT

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

func (*ReadResourceGroupRequest) MarshalToSizedBufferVTStrict

func (m *ReadResourceGroupRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*ReadResourceGroupRequest) MarshalToVT

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

func (*ReadResourceGroupRequest) MarshalToVTStrict

func (m *ReadResourceGroupRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*ReadResourceGroupRequest) MarshalVT

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

func (*ReadResourceGroupRequest) MarshalVTStrict

func (m *ReadResourceGroupRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*ReadResourceGroupRequest) ProtoMessage

func (*ReadResourceGroupRequest) ProtoMessage()

func (*ReadResourceGroupRequest) ProtoReflect

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

func (*ReadResourceGroupRequest) Reset

func (x *ReadResourceGroupRequest) Reset()

func (*ReadResourceGroupRequest) SizeVT

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

func (*ReadResourceGroupRequest) String

func (x *ReadResourceGroupRequest) String() string

func (*ReadResourceGroupRequest) UnmarshalVT

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

type ResourceGroup

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

func (*ResourceGroup) CloneMessageVT

func (m *ResourceGroup) CloneMessageVT() proto.Message

func (*ResourceGroup) CloneVT

func (m *ResourceGroup) CloneVT() *ResourceGroup

func (*ResourceGroup) Descriptor deprecated

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

Deprecated: Use ResourceGroup.ProtoReflect.Descriptor instead.

func (*ResourceGroup) EqualMessageVT

func (this *ResourceGroup) EqualMessageVT(thatMsg proto.Message) bool

func (*ResourceGroup) EqualVT

func (this *ResourceGroup) EqualVT(that *ResourceGroup) bool

func (*ResourceGroup) GetId

func (x *ResourceGroup) GetId() string

func (*ResourceGroup) GetName

func (x *ResourceGroup) GetName() string

func (*ResourceGroup) GetRegion

func (x *ResourceGroup) GetRegion() string

func (*ResourceGroup) MarshalToSizedBufferVT

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

func (*ResourceGroup) MarshalToSizedBufferVTStrict

func (m *ResourceGroup) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*ResourceGroup) MarshalToVT

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

func (*ResourceGroup) MarshalToVTStrict

func (m *ResourceGroup) MarshalToVTStrict(dAtA []byte) (int, error)

func (*ResourceGroup) MarshalVT

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

func (*ResourceGroup) MarshalVTStrict

func (m *ResourceGroup) MarshalVTStrict() (dAtA []byte, err error)

func (*ResourceGroup) ProtoMessage

func (*ResourceGroup) ProtoMessage()

func (*ResourceGroup) ProtoReflect

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

func (*ResourceGroup) Reset

func (x *ResourceGroup) Reset()

func (*ResourceGroup) SizeVT

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

func (*ResourceGroup) String

func (x *ResourceGroup) String() string

func (*ResourceGroup) UnmarshalVT

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

type UnimplementedRPCServer

type UnimplementedRPCServer struct {
}

UnimplementedRPCServer must be embedded to have forward compatible implementations.

func (UnimplementedRPCServer) ReadResourceGroup

func (UnimplementedRPCServer) SayHello

type UnsafeRPCServer

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

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

type UpdateResourceGroupReply

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

func (*UpdateResourceGroupReply) CloneMessageVT

func (m *UpdateResourceGroupReply) CloneMessageVT() proto.Message

func (*UpdateResourceGroupReply) CloneVT

func (*UpdateResourceGroupReply) Descriptor deprecated

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

Deprecated: Use UpdateResourceGroupReply.ProtoReflect.Descriptor instead.

func (*UpdateResourceGroupReply) EqualMessageVT

func (this *UpdateResourceGroupReply) EqualMessageVT(thatMsg proto.Message) bool

func (*UpdateResourceGroupReply) EqualVT

func (*UpdateResourceGroupReply) GetStatus

func (x *UpdateResourceGroupReply) GetStatus() string

func (*UpdateResourceGroupReply) MarshalToSizedBufferVT

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

func (*UpdateResourceGroupReply) MarshalToSizedBufferVTStrict

func (m *UpdateResourceGroupReply) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*UpdateResourceGroupReply) MarshalToVT

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

func (*UpdateResourceGroupReply) MarshalToVTStrict

func (m *UpdateResourceGroupReply) MarshalToVTStrict(dAtA []byte) (int, error)

func (*UpdateResourceGroupReply) MarshalVT

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

func (*UpdateResourceGroupReply) MarshalVTStrict

func (m *UpdateResourceGroupReply) MarshalVTStrict() (dAtA []byte, err error)

func (*UpdateResourceGroupReply) ProtoMessage

func (*UpdateResourceGroupReply) ProtoMessage()

func (*UpdateResourceGroupReply) ProtoReflect

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

func (*UpdateResourceGroupReply) Reset

func (x *UpdateResourceGroupReply) Reset()

func (*UpdateResourceGroupReply) SizeVT

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

func (*UpdateResourceGroupReply) String

func (x *UpdateResourceGroupReply) String() string

func (*UpdateResourceGroupReply) UnmarshalVT

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

type UpdateResourceGroupRequest

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

func (*UpdateResourceGroupRequest) CloneMessageVT

func (m *UpdateResourceGroupRequest) CloneMessageVT() proto.Message

func (*UpdateResourceGroupRequest) CloneVT

func (*UpdateResourceGroupRequest) Descriptor deprecated

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

Deprecated: Use UpdateResourceGroupRequest.ProtoReflect.Descriptor instead.

func (*UpdateResourceGroupRequest) EqualMessageVT

func (this *UpdateResourceGroupRequest) EqualMessageVT(thatMsg proto.Message) bool

func (*UpdateResourceGroupRequest) EqualVT

func (*UpdateResourceGroupRequest) GetId

func (*UpdateResourceGroupRequest) GetName

func (x *UpdateResourceGroupRequest) GetName() string

func (*UpdateResourceGroupRequest) GetRegion

func (x *UpdateResourceGroupRequest) GetRegion() string

func (*UpdateResourceGroupRequest) MarshalToSizedBufferVT

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

func (*UpdateResourceGroupRequest) MarshalToSizedBufferVTStrict

func (m *UpdateResourceGroupRequest) MarshalToSizedBufferVTStrict(dAtA []byte) (int, error)

func (*UpdateResourceGroupRequest) MarshalToVT

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

func (*UpdateResourceGroupRequest) MarshalToVTStrict

func (m *UpdateResourceGroupRequest) MarshalToVTStrict(dAtA []byte) (int, error)

func (*UpdateResourceGroupRequest) MarshalVT

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

func (*UpdateResourceGroupRequest) MarshalVTStrict

func (m *UpdateResourceGroupRequest) MarshalVTStrict() (dAtA []byte, err error)

func (*UpdateResourceGroupRequest) ProtoMessage

func (*UpdateResourceGroupRequest) ProtoMessage()

func (*UpdateResourceGroupRequest) ProtoReflect

func (*UpdateResourceGroupRequest) Reset

func (x *UpdateResourceGroupRequest) Reset()

func (*UpdateResourceGroupRequest) SizeVT

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

func (*UpdateResourceGroupRequest) String

func (x *UpdateResourceGroupRequest) String() string

func (*UpdateResourceGroupRequest) UnmarshalVT

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

Jump to

Keyboard shortcuts

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