Documentation ¶
Overview ¶
Package peersv1 is a reverse proxy.
It translates gRPC into RESTful JSON APIs.
Code generated by protoc-gen-deepcopy. DO NOT EDIT.
Index ¶
- Variables
- func RegisterPeerDiscoveryServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error
- func RegisterPeerDiscoveryServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client PeerDiscoveryServiceClient) error
- func RegisterPeerDiscoveryServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, ...) (err error)
- func RegisterPeerDiscoveryServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server PeerDiscoveryServiceServer) error
- func RegisterPeerDiscoveryServiceServer(s grpc.ServiceRegistrar, srv PeerDiscoveryServiceServer)
- type Peer
- func (in *Peer) DeepCopy() *Peer
- func (in *Peer) DeepCopyInterface() interface{}
- func (in *Peer) DeepCopyInto(out *Peer)
- func (*Peer) Descriptor() ([]byte, []int)deprecated
- func (x *Peer) GetAddress() string
- func (x *Peer) GetHostname() string
- func (x *Peer) GetServices() map[string]string
- func (msg *Peer) MarshalJSON() ([]byte, error)
- func (*Peer) ProtoMessage()
- func (x *Peer) ProtoReflect() protoreflect.Message
- func (x *Peer) Reset()
- func (x *Peer) String() string
- func (msg *Peer) UnmarshalJSON(b []byte) error
- type PeerDiscoveryServiceClient
- type PeerDiscoveryServiceServer
- type PeerRequest
- func (in *PeerRequest) DeepCopy() *PeerRequest
- func (in *PeerRequest) DeepCopyInterface() interface{}
- func (in *PeerRequest) DeepCopyInto(out *PeerRequest)
- func (*PeerRequest) Descriptor() ([]byte, []int)deprecated
- func (x *PeerRequest) GetAddress() string
- func (msg *PeerRequest) MarshalJSON() ([]byte, error)
- func (*PeerRequest) ProtoMessage()
- func (x *PeerRequest) ProtoReflect() protoreflect.Message
- func (x *PeerRequest) Reset()
- func (x *PeerRequest) String() string
- func (msg *PeerRequest) UnmarshalJSON(b []byte) error
- type Peers
- func (in *Peers) DeepCopy() *Peers
- func (in *Peers) DeepCopyInterface() interface{}
- func (in *Peers) DeepCopyInto(out *Peers)
- func (*Peers) Descriptor() ([]byte, []int)deprecated
- func (x *Peers) GetPeers() map[string]*Peer
- func (x *Peers) GetSelfPeer() *Peer
- func (msg *Peers) MarshalJSON() ([]byte, error)
- func (*Peers) ProtoMessage()
- func (x *Peers) ProtoReflect() protoreflect.Message
- func (x *Peers) Reset()
- func (x *Peers) String() string
- func (msg *Peers) UnmarshalJSON(b []byte) error
- type UnimplementedPeerDiscoveryServiceServer
- type UnsafePeerDiscoveryServiceServer
Constants ¶
This section is empty.
Variables ¶
var File_aperture_peers_v1_peers_proto protoreflect.FileDescriptor
var PeerDiscoveryService_ServiceDesc = grpc.ServiceDesc{ ServiceName: "aperture.peers.v1.PeerDiscoveryService", HandlerType: (*PeerDiscoveryServiceServer)(nil), Methods: []grpc.MethodDesc{ { MethodName: "GetPeers", Handler: _PeerDiscoveryService_GetPeers_Handler, }, { MethodName: "GetPeer", Handler: _PeerDiscoveryService_GetPeer_Handler, }, }, Streams: []grpc.StreamDesc{}, Metadata: "aperture/peers/v1/peers.proto", }
PeerDiscoveryService_ServiceDesc is the grpc.ServiceDesc for PeerDiscoveryService service. It's only intended for direct use with grpc.RegisterService, and not to be introspected or modified (even as a copy)
Functions ¶
func RegisterPeerDiscoveryServiceHandler ¶
func RegisterPeerDiscoveryServiceHandler(ctx context.Context, mux *runtime.ServeMux, conn *grpc.ClientConn) error
RegisterPeerDiscoveryServiceHandler registers the http handlers for service PeerDiscoveryService to "mux". The handlers forward requests to the grpc endpoint over "conn".
func RegisterPeerDiscoveryServiceHandlerClient ¶
func RegisterPeerDiscoveryServiceHandlerClient(ctx context.Context, mux *runtime.ServeMux, client PeerDiscoveryServiceClient) error
RegisterPeerDiscoveryServiceHandlerClient registers the http handlers for service PeerDiscoveryService to "mux". The handlers forward requests to the grpc endpoint over the given implementation of "PeerDiscoveryServiceClient". Note: the gRPC framework executes interceptors within the gRPC handler. If the passed in "PeerDiscoveryServiceClient" doesn't go through the normal gRPC flow (creating a gRPC client etc.) then it will be up to the passed in "PeerDiscoveryServiceClient" to call the correct interceptors.
func RegisterPeerDiscoveryServiceHandlerFromEndpoint ¶
func RegisterPeerDiscoveryServiceHandlerFromEndpoint(ctx context.Context, mux *runtime.ServeMux, endpoint string, opts []grpc.DialOption) (err error)
RegisterPeerDiscoveryServiceHandlerFromEndpoint is same as RegisterPeerDiscoveryServiceHandler but automatically dials to "endpoint" and closes the connection when "ctx" gets done.
func RegisterPeerDiscoveryServiceHandlerServer ¶
func RegisterPeerDiscoveryServiceHandlerServer(ctx context.Context, mux *runtime.ServeMux, server PeerDiscoveryServiceServer) error
RegisterPeerDiscoveryServiceHandlerServer registers the http handlers for service PeerDiscoveryService to "mux". UnaryRPC :call PeerDiscoveryServiceServer directly. StreamingRPC :currently unsupported pending https://github.com/grpc/grpc-go/issues/906. Note that using this registration option will cause many gRPC library features to stop working. Consider using RegisterPeerDiscoveryServiceHandlerFromEndpoint instead.
func RegisterPeerDiscoveryServiceServer ¶
func RegisterPeerDiscoveryServiceServer(s grpc.ServiceRegistrar, srv PeerDiscoveryServiceServer)
Types ¶
type Peer ¶
type Peer struct { Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` Hostname string `protobuf:"bytes,2,opt,name=hostname,proto3" json:"hostname,omitempty"` Services map[string]string `` /* 157-byte string literal not displayed */ // contains filtered or unexported fields }
Peer holds peer info and services.
func (*Peer) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Peer. Required by controller-gen.
func (*Peer) DeepCopyInterface ¶
func (in *Peer) DeepCopyInterface() interface{}
DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new Peer. Required by controller-gen.
func (*Peer) DeepCopyInto ¶
DeepCopyInto supports using Peer within kubernetes types, where deepcopy-gen is used.
func (*Peer) Descriptor
deprecated
func (*Peer) GetAddress ¶
func (*Peer) GetHostname ¶
func (*Peer) GetServices ¶
func (*Peer) MarshalJSON ¶
MarshalJSON implements json.Marshaler
func (*Peer) ProtoMessage ¶
func (*Peer) ProtoMessage()
func (*Peer) ProtoReflect ¶
func (x *Peer) ProtoReflect() protoreflect.Message
func (*Peer) UnmarshalJSON ¶
UnmarshalJSON implements json.Unmarshaler
type PeerDiscoveryServiceClient ¶
type PeerDiscoveryServiceClient interface { GetPeers(ctx context.Context, in *emptypb.Empty, opts ...grpc.CallOption) (*Peers, error) GetPeer(ctx context.Context, in *PeerRequest, opts ...grpc.CallOption) (*Peer, error) }
PeerDiscoveryServiceClient is the client API for PeerDiscoveryService 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 NewPeerDiscoveryServiceClient ¶
func NewPeerDiscoveryServiceClient(cc grpc.ClientConnInterface) PeerDiscoveryServiceClient
type PeerDiscoveryServiceServer ¶
type PeerDiscoveryServiceServer interface { GetPeers(context.Context, *emptypb.Empty) (*Peers, error) GetPeer(context.Context, *PeerRequest) (*Peer, error) }
PeerDiscoveryServiceServer is the server API for PeerDiscoveryService service. All implementations should embed UnimplementedPeerDiscoveryServiceServer for forward compatibility
type PeerRequest ¶
type PeerRequest struct { Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"` // contains filtered or unexported fields }
func (*PeerRequest) DeepCopy ¶
func (in *PeerRequest) DeepCopy() *PeerRequest
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new PeerRequest. Required by controller-gen.
func (*PeerRequest) DeepCopyInterface ¶
func (in *PeerRequest) DeepCopyInterface() interface{}
DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new PeerRequest. Required by controller-gen.
func (*PeerRequest) DeepCopyInto ¶
func (in *PeerRequest) DeepCopyInto(out *PeerRequest)
DeepCopyInto supports using PeerRequest within kubernetes types, where deepcopy-gen is used.
func (*PeerRequest) Descriptor
deprecated
func (*PeerRequest) Descriptor() ([]byte, []int)
Deprecated: Use PeerRequest.ProtoReflect.Descriptor instead.
func (*PeerRequest) GetAddress ¶
func (x *PeerRequest) GetAddress() string
func (*PeerRequest) MarshalJSON ¶
func (msg *PeerRequest) MarshalJSON() ([]byte, error)
MarshalJSON implements json.Marshaler
func (*PeerRequest) ProtoMessage ¶
func (*PeerRequest) ProtoMessage()
func (*PeerRequest) ProtoReflect ¶
func (x *PeerRequest) ProtoReflect() protoreflect.Message
func (*PeerRequest) Reset ¶
func (x *PeerRequest) Reset()
func (*PeerRequest) String ¶
func (x *PeerRequest) String() string
func (*PeerRequest) UnmarshalJSON ¶
func (msg *PeerRequest) UnmarshalJSON(b []byte) error
UnmarshalJSON implements json.Unmarshaler
type Peers ¶
type Peers struct { SelfPeer *Peer `protobuf:"bytes,1,opt,name=self_peer,json=selfPeer,proto3" json:"self_peer,omitempty"` Peers map[string]*Peer `` /* 151-byte string literal not displayed */ // contains filtered or unexported fields }
Peers holds the peer info of this peer and a mapping of address to other peers.
func (*Peers) DeepCopy ¶
DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new Peers. Required by controller-gen.
func (*Peers) DeepCopyInterface ¶
func (in *Peers) DeepCopyInterface() interface{}
DeepCopyInterface is an autogenerated deepcopy function, copying the receiver, creating a new Peers. Required by controller-gen.
func (*Peers) DeepCopyInto ¶
DeepCopyInto supports using Peers within kubernetes types, where deepcopy-gen is used.
func (*Peers) Descriptor
deprecated
func (*Peers) GetSelfPeer ¶
func (*Peers) MarshalJSON ¶
MarshalJSON implements json.Marshaler
func (*Peers) ProtoMessage ¶
func (*Peers) ProtoMessage()
func (*Peers) ProtoReflect ¶
func (x *Peers) ProtoReflect() protoreflect.Message
func (*Peers) UnmarshalJSON ¶
UnmarshalJSON implements json.Unmarshaler
type UnimplementedPeerDiscoveryServiceServer ¶
type UnimplementedPeerDiscoveryServiceServer struct { }
UnimplementedPeerDiscoveryServiceServer should be embedded to have forward compatible implementations.
func (UnimplementedPeerDiscoveryServiceServer) GetPeer ¶
func (UnimplementedPeerDiscoveryServiceServer) GetPeer(context.Context, *PeerRequest) (*Peer, error)
type UnsafePeerDiscoveryServiceServer ¶
type UnsafePeerDiscoveryServiceServer interface {
// contains filtered or unexported methods
}
UnsafePeerDiscoveryServiceServer may be embedded to opt out of forward compatibility for this service. Use of this interface is not recommended, as added methods to PeerDiscoveryServiceServer will result in compilation errors.