Documentation ¶
Index ¶
- Variables
- func RegisterValidateIdTokenServiceServer(s *grpc.Server, srv ValidateIdTokenServiceServer)
- type UnimplementedValidateIdTokenServiceServer
- type ValidateIdTokenRequest
- func (*ValidateIdTokenRequest) Descriptor() ([]byte, []int)deprecated
- func (x *ValidateIdTokenRequest) GetToken() string
- func (*ValidateIdTokenRequest) ProtoMessage()
- func (x *ValidateIdTokenRequest) ProtoReflect() protoreflect.Message
- func (x *ValidateIdTokenRequest) Reset()
- func (x *ValidateIdTokenRequest) String() string
- type ValidateIdTokenResponse
- func (*ValidateIdTokenResponse) Descriptor() ([]byte, []int)deprecated
- func (x *ValidateIdTokenResponse) GetIsInvalid() bool
- func (*ValidateIdTokenResponse) ProtoMessage()
- func (x *ValidateIdTokenResponse) ProtoReflect() protoreflect.Message
- func (x *ValidateIdTokenResponse) Reset()
- func (x *ValidateIdTokenResponse) String() string
- type ValidateIdTokenServiceClient
- type ValidateIdTokenServiceServer
Constants ¶
This section is empty.
Variables ¶
View Source
var File_interservice_id_token_id_token_proto protoreflect.FileDescriptor
Functions ¶
func RegisterValidateIdTokenServiceServer ¶
func RegisterValidateIdTokenServiceServer(s *grpc.Server, srv ValidateIdTokenServiceServer)
Types ¶
type UnimplementedValidateIdTokenServiceServer ¶
type UnimplementedValidateIdTokenServiceServer struct { }
UnimplementedValidateIdTokenServiceServer can be embedded to have forward compatible implementations.
func (*UnimplementedValidateIdTokenServiceServer) ValidateIdToken ¶
func (*UnimplementedValidateIdTokenServiceServer) ValidateIdToken(context.Context, *ValidateIdTokenRequest) (*ValidateIdTokenResponse, error)
type ValidateIdTokenRequest ¶
type ValidateIdTokenRequest struct { // id_token Token string `protobuf:"bytes,1,opt,name=token,proto3" json:"token,omitempty" toml:"token,omitempty" mapstructure:"token,omitempty"` // contains filtered or unexported fields }
func (*ValidateIdTokenRequest) Descriptor
deprecated
func (*ValidateIdTokenRequest) Descriptor() ([]byte, []int)
Deprecated: Use ValidateIdTokenRequest.ProtoReflect.Descriptor instead.
func (*ValidateIdTokenRequest) GetToken ¶
func (x *ValidateIdTokenRequest) GetToken() string
func (*ValidateIdTokenRequest) ProtoMessage ¶
func (*ValidateIdTokenRequest) ProtoMessage()
func (*ValidateIdTokenRequest) ProtoReflect ¶
func (x *ValidateIdTokenRequest) ProtoReflect() protoreflect.Message
func (*ValidateIdTokenRequest) Reset ¶
func (x *ValidateIdTokenRequest) Reset()
func (*ValidateIdTokenRequest) String ¶
func (x *ValidateIdTokenRequest) String() string
type ValidateIdTokenResponse ¶
type ValidateIdTokenResponse struct { IsInvalid bool `` /* 153-byte string literal not displayed */ // contains filtered or unexported fields }
func (*ValidateIdTokenResponse) Descriptor
deprecated
func (*ValidateIdTokenResponse) Descriptor() ([]byte, []int)
Deprecated: Use ValidateIdTokenResponse.ProtoReflect.Descriptor instead.
func (*ValidateIdTokenResponse) GetIsInvalid ¶
func (x *ValidateIdTokenResponse) GetIsInvalid() bool
func (*ValidateIdTokenResponse) ProtoMessage ¶
func (*ValidateIdTokenResponse) ProtoMessage()
func (*ValidateIdTokenResponse) ProtoReflect ¶
func (x *ValidateIdTokenResponse) ProtoReflect() protoreflect.Message
func (*ValidateIdTokenResponse) Reset ¶
func (x *ValidateIdTokenResponse) Reset()
func (*ValidateIdTokenResponse) String ¶
func (x *ValidateIdTokenResponse) String() string
type ValidateIdTokenServiceClient ¶
type ValidateIdTokenServiceClient interface {
ValidateIdToken(ctx context.Context, in *ValidateIdTokenRequest, opts ...grpc.CallOption) (*ValidateIdTokenResponse, error)
}
ValidateIdTokenServiceClient is the client API for ValidateIdTokenService service.
For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
func NewValidateIdTokenServiceClient ¶
func NewValidateIdTokenServiceClient(cc grpc.ClientConnInterface) ValidateIdTokenServiceClient
type ValidateIdTokenServiceServer ¶
type ValidateIdTokenServiceServer interface {
ValidateIdToken(context.Context, *ValidateIdTokenRequest) (*ValidateIdTokenResponse, error)
}
ValidateIdTokenServiceServer is the server API for ValidateIdTokenService service.
Click to show internal directories.
Click to hide internal directories.