peersv1

package
v1.6.0 Latest Latest
Warning

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

Go to latest
Published: May 2, 2023 License: Apache-2.0 Imports: 31 Imported by: 0

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

Constants

View Source
const (
	PeerDiscoveryService_GetPeers_FullMethodName = "/aperture.peers.v1.PeerDiscoveryService/GetPeers"
	PeerDiscoveryService_GetPeer_FullMethodName  = "/aperture.peers.v1.PeerDiscoveryService/GetPeer"
)

Variables

View Source
var File_aperture_peers_v1_peers_proto protoreflect.FileDescriptor
View Source
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

func (in *Peer) DeepCopy() *Peer

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

func (in *Peer) DeepCopyInto(out *Peer)

DeepCopyInto supports using Peer within kubernetes types, where deepcopy-gen is used.

func (*Peer) Descriptor deprecated

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

Deprecated: Use Peer.ProtoReflect.Descriptor instead.

func (*Peer) GetAddress

func (x *Peer) GetAddress() string

func (*Peer) GetHostname

func (x *Peer) GetHostname() string

func (*Peer) GetServices

func (x *Peer) GetServices() map[string]string

func (*Peer) MarshalJSON

func (msg *Peer) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*Peer) ProtoMessage

func (*Peer) ProtoMessage()

func (*Peer) ProtoReflect

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

func (*Peer) Reset

func (x *Peer) Reset()

func (*Peer) String

func (x *Peer) String() string

func (*Peer) UnmarshalJSON

func (msg *Peer) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

func (*Peer) Validate added in v1.2.0

func (m *Peer) Validate() error

Validate checks the field values on Peer with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Peer) ValidateAll added in v1.2.0

func (m *Peer) ValidateAll() error

ValidateAll checks the field values on Peer with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PeerMultiError, or nil if none found.

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.

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 PeerMultiError added in v1.2.0

type PeerMultiError []error

PeerMultiError is an error wrapping multiple validation errors returned by Peer.ValidateAll() if the designated constraints aren't met.

func (PeerMultiError) AllErrors added in v1.2.0

func (m PeerMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PeerMultiError) Error added in v1.2.0

func (m PeerMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

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

func (*PeerRequest) Validate added in v1.2.0

func (m *PeerRequest) Validate() error

Validate checks the field values on PeerRequest with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*PeerRequest) ValidateAll added in v1.2.0

func (m *PeerRequest) ValidateAll() error

ValidateAll checks the field values on PeerRequest with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PeerRequestMultiError, or nil if none found.

type PeerRequestMultiError added in v1.2.0

type PeerRequestMultiError []error

PeerRequestMultiError is an error wrapping multiple validation errors returned by PeerRequest.ValidateAll() if the designated constraints aren't met.

func (PeerRequestMultiError) AllErrors added in v1.2.0

func (m PeerRequestMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PeerRequestMultiError) Error added in v1.2.0

func (m PeerRequestMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PeerRequestValidationError added in v1.2.0

type PeerRequestValidationError struct {
	// contains filtered or unexported fields
}

PeerRequestValidationError is the validation error returned by PeerRequest.Validate if the designated constraints aren't met.

func (PeerRequestValidationError) Cause added in v1.2.0

Cause function returns cause value.

func (PeerRequestValidationError) Error added in v1.2.0

Error satisfies the builtin error interface

func (PeerRequestValidationError) ErrorName added in v1.2.0

func (e PeerRequestValidationError) ErrorName() string

ErrorName returns error name.

func (PeerRequestValidationError) Field added in v1.2.0

Field function returns field value.

func (PeerRequestValidationError) Key added in v1.2.0

Key function returns key value.

func (PeerRequestValidationError) Reason added in v1.2.0

Reason function returns reason value.

type PeerValidationError added in v1.2.0

type PeerValidationError struct {
	// contains filtered or unexported fields
}

PeerValidationError is the validation error returned by Peer.Validate if the designated constraints aren't met.

func (PeerValidationError) Cause added in v1.2.0

func (e PeerValidationError) Cause() error

Cause function returns cause value.

func (PeerValidationError) Error added in v1.2.0

func (e PeerValidationError) Error() string

Error satisfies the builtin error interface

func (PeerValidationError) ErrorName added in v1.2.0

func (e PeerValidationError) ErrorName() string

ErrorName returns error name.

func (PeerValidationError) Field added in v1.2.0

func (e PeerValidationError) Field() string

Field function returns field value.

func (PeerValidationError) Key added in v1.2.0

func (e PeerValidationError) Key() bool

Key function returns key value.

func (PeerValidationError) Reason added in v1.2.0

func (e PeerValidationError) Reason() string

Reason function returns reason value.

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

func (in *Peers) DeepCopy() *Peers

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

func (in *Peers) DeepCopyInto(out *Peers)

DeepCopyInto supports using Peers within kubernetes types, where deepcopy-gen is used.

func (*Peers) Descriptor deprecated

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

Deprecated: Use Peers.ProtoReflect.Descriptor instead.

func (*Peers) GetPeers

func (x *Peers) GetPeers() map[string]*Peer

func (*Peers) GetSelfPeer

func (x *Peers) GetSelfPeer() *Peer

func (*Peers) MarshalJSON

func (msg *Peers) MarshalJSON() ([]byte, error)

MarshalJSON implements json.Marshaler

func (*Peers) ProtoMessage

func (*Peers) ProtoMessage()

func (*Peers) ProtoReflect

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

func (*Peers) Reset

func (x *Peers) Reset()

func (*Peers) String

func (x *Peers) String() string

func (*Peers) UnmarshalJSON

func (msg *Peers) UnmarshalJSON(b []byte) error

UnmarshalJSON implements json.Unmarshaler

func (*Peers) Validate added in v1.2.0

func (m *Peers) Validate() error

Validate checks the field values on Peers with the rules defined in the proto definition for this message. If any rules are violated, the first error encountered is returned, or nil if there are no violations.

func (*Peers) ValidateAll added in v1.2.0

func (m *Peers) ValidateAll() error

ValidateAll checks the field values on Peers with the rules defined in the proto definition for this message. If any rules are violated, the result is a list of violation errors wrapped in PeersMultiError, or nil if none found.

type PeersMultiError added in v1.2.0

type PeersMultiError []error

PeersMultiError is an error wrapping multiple validation errors returned by Peers.ValidateAll() if the designated constraints aren't met.

func (PeersMultiError) AllErrors added in v1.2.0

func (m PeersMultiError) AllErrors() []error

AllErrors returns a list of validation violation errors.

func (PeersMultiError) Error added in v1.2.0

func (m PeersMultiError) Error() string

Error returns a concatenation of all the error messages it wraps.

type PeersValidationError added in v1.2.0

type PeersValidationError struct {
	// contains filtered or unexported fields
}

PeersValidationError is the validation error returned by Peers.Validate if the designated constraints aren't met.

func (PeersValidationError) Cause added in v1.2.0

func (e PeersValidationError) Cause() error

Cause function returns cause value.

func (PeersValidationError) Error added in v1.2.0

func (e PeersValidationError) Error() string

Error satisfies the builtin error interface

func (PeersValidationError) ErrorName added in v1.2.0

func (e PeersValidationError) ErrorName() string

ErrorName returns error name.

func (PeersValidationError) Field added in v1.2.0

func (e PeersValidationError) Field() string

Field function returns field value.

func (PeersValidationError) Key added in v1.2.0

func (e PeersValidationError) Key() bool

Key function returns key value.

func (PeersValidationError) Reason added in v1.2.0

func (e PeersValidationError) Reason() string

Reason function returns reason value.

type UnimplementedPeerDiscoveryServiceServer

type UnimplementedPeerDiscoveryServiceServer struct {
}

UnimplementedPeerDiscoveryServiceServer should be embedded to have forward compatible implementations.

func (UnimplementedPeerDiscoveryServiceServer) GetPeer

func (UnimplementedPeerDiscoveryServiceServer) GetPeers

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.

Jump to

Keyboard shortcuts

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