Documentation ¶
Index ¶
- Variables
- func RegisterHandlesServiceServer(s grpc.ServiceRegistrar, srv HandlesServiceServer)
- type HandlesServiceClient
- type HandlesServiceServer
- type ListInstallationHandlesRequest
- func (*ListInstallationHandlesRequest) Descriptor() ([]byte, []int)deprecated
- func (x *ListInstallationHandlesRequest) GetInstallationId() string
- func (*ListInstallationHandlesRequest) ProtoMessage()
- func (x *ListInstallationHandlesRequest) ProtoReflect() protoreflect.Message
- func (x *ListInstallationHandlesRequest) Reset()
- func (x *ListInstallationHandlesRequest) String() string
- type ListInstallationHandlesResponse
- func (*ListInstallationHandlesResponse) Descriptor() ([]byte, []int)deprecated
- func (x *ListInstallationHandlesResponse) GetInstallationHandles() []string
- func (*ListInstallationHandlesResponse) ProtoMessage()
- func (x *ListInstallationHandlesResponse) ProtoReflect() protoreflect.Message
- func (x *ListInstallationHandlesResponse) Reset()
- func (x *ListInstallationHandlesResponse) String() string
- type UnimplementedHandlesServiceServer
- type UnsafeHandlesServiceServer
Constants ¶
This section is empty.
Variables ¶
var File_strmprivacy_api_handles_v1_handles_v1_proto protoreflect.FileDescriptor
var HandlesService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "strmprivacy.api.handles.v1.HandlesService", HandlerType: (*HandlesServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "ListInstallationHandles", Handler: _HandlesService_ListInstallationHandles_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "strmprivacy/api/handles/v1/handles_v1.proto", }
HandlesService_ServiceDesc is the grpc.ServiceDesc for HandlesService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
Functions ¶
func RegisterHandlesServiceServer ¶
func RegisterHandlesServiceServer(s grpc.ServiceRegistrar, srv HandlesServiceServer)
Types ¶
type HandlesServiceClient ¶
type HandlesServiceClient interface {
ListInstallationHandles(ctx context.Context, in *ListInstallationHandlesRequest, opts ...grpc.CallOption) (*ListInstallationHandlesResponse, error)
}
HandlesServiceClient is the client API for HandlesService 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 NewHandlesServiceClient ¶
func NewHandlesServiceClient(cc grpc.ClientConnInterface) HandlesServiceClient
type HandlesServiceServer ¶
type HandlesServiceServer interface {
ListInstallationHandles(context.Context, *ListInstallationHandlesRequest) (*ListInstallationHandlesResponse, error)
}
HandlesServiceServer is the server API for HandlesService service. All implementations should embed UnimplementedHandlesServiceServer for forward compatibility
type ListInstallationHandlesRequest ¶
type ListInstallationHandlesRequest struct { InstallationId string `protobuf:"bytes,1,opt,name=installation_id,json=installationId,proto3" json:"installation_id,omitempty"` // contains filtered or unexported fields }
func (*ListInstallationHandlesRequest) Descriptor
deprecated
func (*ListInstallationHandlesRequest) Descriptor() ([]byte, []int)
Deprecated: Use ListInstallationHandlesRequest.ProtoReflect.Descriptor instead.
func (*ListInstallationHandlesRequest) GetInstallationId ¶
func (x *ListInstallationHandlesRequest) GetInstallationId() string
func (*ListInstallationHandlesRequest) ProtoMessage ¶
func (*ListInstallationHandlesRequest) ProtoMessage()
func (*ListInstallationHandlesRequest) ProtoReflect ¶
func (x *ListInstallationHandlesRequest) ProtoReflect() protoreflect.Message
func (*ListInstallationHandlesRequest) Reset ¶
func (x *ListInstallationHandlesRequest) Reset()
func (*ListInstallationHandlesRequest) String ¶
func (x *ListInstallationHandlesRequest) String() string
type ListInstallationHandlesResponse ¶
type ListInstallationHandlesResponse struct { InstallationHandles []string `protobuf:"bytes,1,rep,name=installation_handles,json=installationHandles,proto3" json:"installation_handles,omitempty"` // contains filtered or unexported fields }
func (*ListInstallationHandlesResponse) Descriptor
deprecated
func (*ListInstallationHandlesResponse) Descriptor() ([]byte, []int)
Deprecated: Use ListInstallationHandlesResponse.ProtoReflect.Descriptor instead.
func (*ListInstallationHandlesResponse) GetInstallationHandles ¶
func (x *ListInstallationHandlesResponse) GetInstallationHandles() []string
func (*ListInstallationHandlesResponse) ProtoMessage ¶
func (*ListInstallationHandlesResponse) ProtoMessage()
func (*ListInstallationHandlesResponse) ProtoReflect ¶
func (x *ListInstallationHandlesResponse) ProtoReflect() protoreflect.Message
func (*ListInstallationHandlesResponse) Reset ¶
func (x *ListInstallationHandlesResponse) Reset()
func (*ListInstallationHandlesResponse) String ¶
func (x *ListInstallationHandlesResponse) String() string
type UnimplementedHandlesServiceServer ¶
type UnimplementedHandlesServiceServer struct { }
UnimplementedHandlesServiceServer should be embedded to have forward compatible implementations.
func (UnimplementedHandlesServiceServer) ListInstallationHandles ¶
func (UnimplementedHandlesServiceServer) ListInstallationHandles(context.Context, *ListInstallationHandlesRequest) (*ListInstallationHandlesResponse, error)
type UnsafeHandlesServiceServer ¶
type UnsafeHandlesServiceServer interface {
// contains filtered or unexported methods
}
UnsafeHandlesServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to HandlesServiceServer will result in compilation errors.