Documentation ¶
Index ¶
- Constants
- func NewIntegrationProviderServiceHandler(svc IntegrationProviderServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
- type IntegrationProviderServiceClient
- type IntegrationProviderServiceHandler
- type UnimplementedIntegrationProviderServiceHandler
- func (UnimplementedIntegrationProviderServiceHandler) Call(context.Context, *connect.Request[v1.CallRequest]) (*connect.Response[v1.CallResponse], error)
- func (UnimplementedIntegrationProviderServiceHandler) Get(context.Context, *connect.Request[v1.GetRequest]) (*connect.Response[v1.GetResponse], error)
- func (UnimplementedIntegrationProviderServiceHandler) List(context.Context, *connect.Request[v1.ListRequest]) (*connect.Response[v1.ListResponse], error)
Constants ¶
const ( // IntegrationProviderServiceGetProcedure is the fully-qualified name of the // IntegrationProviderService's Get RPC. IntegrationProviderServiceGetProcedure = "/autokitteh.integration_provider.v1.IntegrationProviderService/Get" // IntegrationProviderServiceListProcedure is the fully-qualified name of the // IntegrationProviderService's List RPC. IntegrationProviderServiceListProcedure = "/autokitteh.integration_provider.v1.IntegrationProviderService/List" // IntegrationProviderServiceCallProcedure is the fully-qualified name of the // IntegrationProviderService's Call RPC. IntegrationProviderServiceCallProcedure = "/autokitteh.integration_provider.v1.IntegrationProviderService/Call" )
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.
const ( // IntegrationProviderServiceName is the fully-qualified name of the IntegrationProviderService // service. IntegrationProviderServiceName = "autokitteh.integration_provider.v1.IntegrationProviderService" )
Variables ¶
This section is empty.
Functions ¶
func NewIntegrationProviderServiceHandler ¶
func NewIntegrationProviderServiceHandler(svc IntegrationProviderServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
NewIntegrationProviderServiceHandler 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 IntegrationProviderServiceClient ¶
type IntegrationProviderServiceClient interface { // Static declaration(s) of functions and values exposed to autokitteh. Get(context.Context, *connect.Request[v1.GetRequest]) (*connect.Response[v1.GetResponse], error) List(context.Context, *connect.Request[v1.ListRequest]) (*connect.Response[v1.ListResponse], error) // Relay an API method call from the autokitteh runtime engine, // via the autokitteh connection manager, to the integration // provider, and then relay back the API's response. Call(context.Context, *connect.Request[v1.CallRequest]) (*connect.Response[v1.CallResponse], error) }
IntegrationProviderServiceClient is a client for the autokitteh.integration_provider.v1.IntegrationProviderService service.
func NewIntegrationProviderServiceClient ¶
func NewIntegrationProviderServiceClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) IntegrationProviderServiceClient
NewIntegrationProviderServiceClient constructs a client for the autokitteh.integration_provider.v1.IntegrationProviderService 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 IntegrationProviderServiceHandler ¶
type IntegrationProviderServiceHandler interface { // Static declaration(s) of functions and values exposed to autokitteh. Get(context.Context, *connect.Request[v1.GetRequest]) (*connect.Response[v1.GetResponse], error) List(context.Context, *connect.Request[v1.ListRequest]) (*connect.Response[v1.ListResponse], error) // Relay an API method call from the autokitteh runtime engine, // via the autokitteh connection manager, to the integration // provider, and then relay back the API's response. Call(context.Context, *connect.Request[v1.CallRequest]) (*connect.Response[v1.CallResponse], error) }
IntegrationProviderServiceHandler is an implementation of the autokitteh.integration_provider.v1.IntegrationProviderService service.
type UnimplementedIntegrationProviderServiceHandler ¶
type UnimplementedIntegrationProviderServiceHandler struct{}
UnimplementedIntegrationProviderServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedIntegrationProviderServiceHandler) Call ¶
func (UnimplementedIntegrationProviderServiceHandler) Call(context.Context, *connect.Request[v1.CallRequest]) (*connect.Response[v1.CallResponse], error)
func (UnimplementedIntegrationProviderServiceHandler) Get ¶
func (UnimplementedIntegrationProviderServiceHandler) Get(context.Context, *connect.Request[v1.GetRequest]) (*connect.Response[v1.GetResponse], error)
func (UnimplementedIntegrationProviderServiceHandler) List ¶
func (UnimplementedIntegrationProviderServiceHandler) List(context.Context, *connect.Request[v1.ListRequest]) (*connect.Response[v1.ListResponse], error)