routev3connect

package
v1.10.0-20240426201503... Latest Latest
Warning

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

Go to latest
Published: unknown License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Index

Constants

View Source
const (
	// RouteDiscoveryServiceName is the fully-qualified name of the RouteDiscoveryService service.
	RouteDiscoveryServiceName = "envoy.service.route.v3.RouteDiscoveryService"
	// VirtualHostDiscoveryServiceName is the fully-qualified name of the VirtualHostDiscoveryService
	// service.
	VirtualHostDiscoveryServiceName = "envoy.service.route.v3.VirtualHostDiscoveryService"
)
View Source
const (
	// RouteDiscoveryServiceStreamRoutesProcedure is the fully-qualified name of the
	// RouteDiscoveryService's StreamRoutes RPC.
	RouteDiscoveryServiceStreamRoutesProcedure = "/envoy.service.route.v3.RouteDiscoveryService/StreamRoutes"
	// RouteDiscoveryServiceDeltaRoutesProcedure is the fully-qualified name of the
	// RouteDiscoveryService's DeltaRoutes RPC.
	RouteDiscoveryServiceDeltaRoutesProcedure = "/envoy.service.route.v3.RouteDiscoveryService/DeltaRoutes"
	// RouteDiscoveryServiceFetchRoutesProcedure is the fully-qualified name of the
	// RouteDiscoveryService's FetchRoutes RPC.
	RouteDiscoveryServiceFetchRoutesProcedure = "/envoy.service.route.v3.RouteDiscoveryService/FetchRoutes"
	// VirtualHostDiscoveryServiceDeltaVirtualHostsProcedure is the fully-qualified name of the
	// VirtualHostDiscoveryService's DeltaVirtualHosts RPC.
	VirtualHostDiscoveryServiceDeltaVirtualHostsProcedure = "/envoy.service.route.v3.VirtualHostDiscoveryService/DeltaVirtualHosts"
)

These constants are the fully-qualified names of the RPCs defined in this package. They're exposed at runtime as Spec.Procedure and as the final two segments of the HTTP route.

Note that these are different from the fully-qualified method names used by google.golang.org/protobuf/reflect/protoreflect. To convert from these constants to reflection-formatted method names, remove the leading slash and convert the remaining slash to a period.

View Source
const (
	// ScopedRoutesDiscoveryServiceStreamScopedRoutesProcedure is the fully-qualified name of the
	// ScopedRoutesDiscoveryService's StreamScopedRoutes RPC.
	ScopedRoutesDiscoveryServiceStreamScopedRoutesProcedure = "/envoy.service.route.v3.ScopedRoutesDiscoveryService/StreamScopedRoutes"
	// ScopedRoutesDiscoveryServiceDeltaScopedRoutesProcedure is the fully-qualified name of the
	// ScopedRoutesDiscoveryService's DeltaScopedRoutes RPC.
	ScopedRoutesDiscoveryServiceDeltaScopedRoutesProcedure = "/envoy.service.route.v3.ScopedRoutesDiscoveryService/DeltaScopedRoutes"
	// ScopedRoutesDiscoveryServiceFetchScopedRoutesProcedure is the fully-qualified name of the
	// ScopedRoutesDiscoveryService's FetchScopedRoutes RPC.
	ScopedRoutesDiscoveryServiceFetchScopedRoutesProcedure = "/envoy.service.route.v3.ScopedRoutesDiscoveryService/FetchScopedRoutes"
)

These constants are the fully-qualified names of the RPCs defined in this package. They're exposed at runtime as Spec.Procedure and as the final two segments of the HTTP route.

Note that these are different from the fully-qualified method names used by google.golang.org/protobuf/reflect/protoreflect. To convert from these constants to reflection-formatted method names, remove the leading slash and convert the remaining slash to a period.

View Source
const (
	// ScopedRoutesDiscoveryServiceName is the fully-qualified name of the ScopedRoutesDiscoveryService
	// service.
	ScopedRoutesDiscoveryServiceName = "envoy.service.route.v3.ScopedRoutesDiscoveryService"
)

Variables

This section is empty.

Functions

func NewRouteDiscoveryServiceHandler

func NewRouteDiscoveryServiceHandler(svc RouteDiscoveryServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler)

NewRouteDiscoveryServiceHandler builds an HTTP handler from the service implementation. It returns the path on which to mount the handler and the handler itself.

By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf and JSON codecs. They also support gzip compression.

func NewScopedRoutesDiscoveryServiceHandler

func NewScopedRoutesDiscoveryServiceHandler(svc ScopedRoutesDiscoveryServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler)

NewScopedRoutesDiscoveryServiceHandler builds an HTTP handler from the service implementation. It returns the path on which to mount the handler and the handler itself.

By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf and JSON codecs. They also support gzip compression.

func NewVirtualHostDiscoveryServiceHandler

func NewVirtualHostDiscoveryServiceHandler(svc VirtualHostDiscoveryServiceHandler, opts ...connect_go.HandlerOption) (string, http.Handler)

NewVirtualHostDiscoveryServiceHandler builds an HTTP handler from the service implementation. It returns the path on which to mount the handler and the handler itself.

By default, handlers support the Connect, gRPC, and gRPC-Web protocols with the binary Protobuf and JSON codecs. They also support gzip compression.

Types

type RouteDiscoveryServiceClient

RouteDiscoveryServiceClient is a client for the envoy.service.route.v3.RouteDiscoveryService service.

func NewRouteDiscoveryServiceClient

func NewRouteDiscoveryServiceClient(httpClient connect_go.HTTPClient, baseURL string, opts ...connect_go.ClientOption) RouteDiscoveryServiceClient

NewRouteDiscoveryServiceClient constructs a client for the envoy.service.route.v3.RouteDiscoveryService service. By default, it uses the Connect protocol with the binary Protobuf Codec, asks for gzipped responses, and sends uncompressed requests. To use the gRPC or gRPC-Web protocols, supply the connect.WithGRPC() or connect.WithGRPCWeb() options.

The URL supplied here should be the base URL for the Connect or gRPC server (for example, http://api.acme.com or https://acme.com/grpc).

type RouteDiscoveryServiceHandler

RouteDiscoveryServiceHandler is an implementation of the envoy.service.route.v3.RouteDiscoveryService service.

type ScopedRoutesDiscoveryServiceClient

ScopedRoutesDiscoveryServiceClient is a client for the envoy.service.route.v3.ScopedRoutesDiscoveryService service.

func NewScopedRoutesDiscoveryServiceClient

func NewScopedRoutesDiscoveryServiceClient(httpClient connect_go.HTTPClient, baseURL string, opts ...connect_go.ClientOption) ScopedRoutesDiscoveryServiceClient

NewScopedRoutesDiscoveryServiceClient constructs a client for the envoy.service.route.v3.ScopedRoutesDiscoveryService service. By default, it uses the Connect protocol with the binary Protobuf Codec, asks for gzipped responses, and sends uncompressed requests. To use the gRPC or gRPC-Web protocols, supply the connect.WithGRPC() or connect.WithGRPCWeb() options.

The URL supplied here should be the base URL for the Connect or gRPC server (for example, http://api.acme.com or https://acme.com/grpc).

type ScopedRoutesDiscoveryServiceHandler

ScopedRoutesDiscoveryServiceHandler is an implementation of the envoy.service.route.v3.ScopedRoutesDiscoveryService service.

type UnimplementedRouteDiscoveryServiceHandler

type UnimplementedRouteDiscoveryServiceHandler struct{}

UnimplementedRouteDiscoveryServiceHandler returns CodeUnimplemented from all methods.

func (UnimplementedRouteDiscoveryServiceHandler) DeltaRoutes

func (UnimplementedRouteDiscoveryServiceHandler) FetchRoutes

func (UnimplementedRouteDiscoveryServiceHandler) StreamRoutes

type UnimplementedScopedRoutesDiscoveryServiceHandler

type UnimplementedScopedRoutesDiscoveryServiceHandler struct{}

UnimplementedScopedRoutesDiscoveryServiceHandler returns CodeUnimplemented from all methods.

func (UnimplementedScopedRoutesDiscoveryServiceHandler) DeltaScopedRoutes

func (UnimplementedScopedRoutesDiscoveryServiceHandler) FetchScopedRoutes

func (UnimplementedScopedRoutesDiscoveryServiceHandler) StreamScopedRoutes

type UnimplementedVirtualHostDiscoveryServiceHandler

type UnimplementedVirtualHostDiscoveryServiceHandler struct{}

UnimplementedVirtualHostDiscoveryServiceHandler returns CodeUnimplemented from all methods.

func (UnimplementedVirtualHostDiscoveryServiceHandler) DeltaVirtualHosts

type VirtualHostDiscoveryServiceClient

type VirtualHostDiscoveryServiceClient interface {
	DeltaVirtualHosts(context.Context) *connect_go.BidiStreamForClient[v3.DeltaDiscoveryRequest, v3.DeltaDiscoveryResponse]
}

VirtualHostDiscoveryServiceClient is a client for the envoy.service.route.v3.VirtualHostDiscoveryService service.

func NewVirtualHostDiscoveryServiceClient

func NewVirtualHostDiscoveryServiceClient(httpClient connect_go.HTTPClient, baseURL string, opts ...connect_go.ClientOption) VirtualHostDiscoveryServiceClient

NewVirtualHostDiscoveryServiceClient constructs a client for the envoy.service.route.v3.VirtualHostDiscoveryService service. By default, it uses the Connect protocol with the binary Protobuf Codec, asks for gzipped responses, and sends uncompressed requests. To use the gRPC or gRPC-Web protocols, supply the connect.WithGRPC() or connect.WithGRPCWeb() options.

The URL supplied here should be the base URL for the Connect or gRPC server (for example, http://api.acme.com or https://acme.com/grpc).

type VirtualHostDiscoveryServiceHandler

type VirtualHostDiscoveryServiceHandler interface {
	DeltaVirtualHosts(context.Context, *connect_go.BidiStream[v3.DeltaDiscoveryRequest, v3.DeltaDiscoveryResponse]) error
}

VirtualHostDiscoveryServiceHandler is an implementation of the envoy.service.route.v3.VirtualHostDiscoveryService service.

Jump to

Keyboard shortcuts

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