Documentation ¶
Index ¶
- Constants
- func NewEvaluationServiceHandler(svc EvaluationServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
- type EvaluationServiceClient
- type EvaluationServiceHandler
- type UnimplementedEvaluationServiceHandler
- func (UnimplementedEvaluationServiceHandler) DebugEvaluation(context.Context, *connect.Request[v1alpha1.DebugEvaluationRequest]) (*connect.Response[v1alpha1.DebugEvaluationResponse], error)
- func (UnimplementedEvaluationServiceHandler) GetEvaluation(context.Context, *connect.Request[v1alpha1.GetEvaluationRequest]) (*connect.Response[v1alpha1.GetEvaluationResponse], error)
- func (UnimplementedEvaluationServiceHandler) QueryEvaluations(context.Context, *connect.Request[v1alpha1.QueryEvaluationsRequest]) (*connect.Response[v1alpha1.QueryEvaluationsResponse], error)
Constants ¶
const ( // EvaluationServiceQueryEvaluationsProcedure is the fully-qualified name of the EvaluationService's // QueryEvaluations RPC. EvaluationServiceQueryEvaluationsProcedure = "/commonfate.control.log.v1alpha1.EvaluationService/QueryEvaluations" // EvaluationServiceGetEvaluationProcedure is the fully-qualified name of the EvaluationService's // GetEvaluation RPC. EvaluationServiceGetEvaluationProcedure = "/commonfate.control.log.v1alpha1.EvaluationService/GetEvaluation" // EvaluationServiceDebugEvaluationProcedure is the fully-qualified name of the EvaluationService's // DebugEvaluation RPC. EvaluationServiceDebugEvaluationProcedure = "/commonfate.control.log.v1alpha1.EvaluationService/DebugEvaluation" )
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 (
// EvaluationServiceName is the fully-qualified name of the EvaluationService service.
EvaluationServiceName = "commonfate.control.log.v1alpha1.EvaluationService"
)
Variables ¶
This section is empty.
Functions ¶
func NewEvaluationServiceHandler ¶
func NewEvaluationServiceHandler(svc EvaluationServiceHandler, opts ...connect.HandlerOption) (string, http.Handler)
NewEvaluationServiceHandler 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 EvaluationServiceClient ¶
type EvaluationServiceClient interface { // Query for historical authorization evaluations. QueryEvaluations(context.Context, *connect.Request[v1alpha1.QueryEvaluationsRequest]) (*connect.Response[v1alpha1.QueryEvaluationsResponse], error) // Returns an authorization evaluation by a particular ID. GetEvaluation(context.Context, *connect.Request[v1alpha1.GetEvaluationRequest]) (*connect.Response[v1alpha1.GetEvaluationResponse], error) // Fetches debug information about the evaluation of a particular decision DebugEvaluation(context.Context, *connect.Request[v1alpha1.DebugEvaluationRequest]) (*connect.Response[v1alpha1.DebugEvaluationResponse], error) }
EvaluationServiceClient is a client for the commonfate.control.log.v1alpha1.EvaluationService service.
func NewEvaluationServiceClient ¶
func NewEvaluationServiceClient(httpClient connect.HTTPClient, baseURL string, opts ...connect.ClientOption) EvaluationServiceClient
NewEvaluationServiceClient constructs a client for the commonfate.control.log.v1alpha1.EvaluationService 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 EvaluationServiceHandler ¶
type EvaluationServiceHandler interface { // Query for historical authorization evaluations. QueryEvaluations(context.Context, *connect.Request[v1alpha1.QueryEvaluationsRequest]) (*connect.Response[v1alpha1.QueryEvaluationsResponse], error) // Returns an authorization evaluation by a particular ID. GetEvaluation(context.Context, *connect.Request[v1alpha1.GetEvaluationRequest]) (*connect.Response[v1alpha1.GetEvaluationResponse], error) // Fetches debug information about the evaluation of a particular decision DebugEvaluation(context.Context, *connect.Request[v1alpha1.DebugEvaluationRequest]) (*connect.Response[v1alpha1.DebugEvaluationResponse], error) }
EvaluationServiceHandler is an implementation of the commonfate.control.log.v1alpha1.EvaluationService service.
type UnimplementedEvaluationServiceHandler ¶
type UnimplementedEvaluationServiceHandler struct{}
UnimplementedEvaluationServiceHandler returns CodeUnimplemented from all methods.
func (UnimplementedEvaluationServiceHandler) DebugEvaluation ¶
func (UnimplementedEvaluationServiceHandler) DebugEvaluation(context.Context, *connect.Request[v1alpha1.DebugEvaluationRequest]) (*connect.Response[v1alpha1.DebugEvaluationResponse], error)
func (UnimplementedEvaluationServiceHandler) GetEvaluation ¶
func (UnimplementedEvaluationServiceHandler) GetEvaluation(context.Context, *connect.Request[v1alpha1.GetEvaluationRequest]) (*connect.Response[v1alpha1.GetEvaluationResponse], error)
func (UnimplementedEvaluationServiceHandler) QueryEvaluations ¶
func (UnimplementedEvaluationServiceHandler) QueryEvaluations(context.Context, *connect.Request[v1alpha1.QueryEvaluationsRequest]) (*connect.Response[v1alpha1.QueryEvaluationsResponse], error)