Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
var File_proto_sts_sts_proto protoreflect.FileDescriptor
var STS_ServiceDesc = grpc.ServiceDesc{ ServiceName: "sts.STS", HandlerType: (*STSServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "Health", Handler: _STS_Health_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "proto/sts/sts.proto", }
STS_ServiceDesc is the grpc.ServiceDesc for STS service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
Functions ¶
func RegisterSTSServer ¶
func RegisterSTSServer(s grpc.ServiceRegistrar, srv STSServer)
Types ¶
type HealthRequest ¶
type HealthRequest struct {
// contains filtered or unexported fields
}
func (*HealthRequest) Descriptor
deprecated
func (*HealthRequest) Descriptor() ([]byte, []int)
Deprecated: Use HealthRequest.ProtoReflect.Descriptor instead.
func (*HealthRequest) ProtoMessage ¶
func (*HealthRequest) ProtoMessage()
func (*HealthRequest) ProtoReflect ¶
func (x *HealthRequest) ProtoReflect() protoreflect.Message
func (*HealthRequest) Reset ¶
func (x *HealthRequest) Reset()
func (*HealthRequest) String ¶
func (x *HealthRequest) String() string
type HealthResponse ¶
type HealthResponse struct {
Status string `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
// contains filtered or unexported fields
}
func (*HealthResponse) Descriptor
deprecated
func (*HealthResponse) Descriptor() ([]byte, []int)
Deprecated: Use HealthResponse.ProtoReflect.Descriptor instead.
func (*HealthResponse) GetStatus ¶
func (x *HealthResponse) GetStatus() string
func (*HealthResponse) ProtoMessage ¶
func (*HealthResponse) ProtoMessage()
func (*HealthResponse) ProtoReflect ¶
func (x *HealthResponse) ProtoReflect() protoreflect.Message
func (*HealthResponse) Reset ¶
func (x *HealthResponse) Reset()
func (*HealthResponse) String ¶
func (x *HealthResponse) String() string
type STSClient ¶
type STSClient interface {
Health(ctx context.Context, in *HealthRequest, opts ...grpc.CallOption) (*HealthResponse, error)
}
STSClient is the client API for STS 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 NewSTSClient ¶
func NewSTSClient(cc grpc.ClientConnInterface) STSClient
type STSServer ¶
type STSServer interface {
Health(context.Context, *HealthRequest) (*HealthResponse, error)
// contains filtered or unexported methods
}
STSServer is the server API for STS service. All implementations must embed UnimplementedSTSServer for forward compatibility
type UnimplementedSTSServer ¶
type UnimplementedSTSServer struct {
}
UnimplementedSTSServer must be embedded to have forward compatible implementations.
func (UnimplementedSTSServer) Health ¶
func (UnimplementedSTSServer) Health(context.Context, *HealthRequest) (*HealthResponse, error)
type UnsafeSTSServer ¶
type UnsafeSTSServer interface {
// contains filtered or unexported methods
}
UnsafeSTSServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to STSServer will result in compilation errors.