INPUT_OBJECT
AuthorizerInput
AuthorizerInput is used to create a new Authorizer
link GraphQL Schema definition
- input AuthorizerInput {
- # name is the unique name of the authorizer in the graph
- String! :
- # method is the rpc method that will invoke the authorizer
- String! :
- # expression is the boolean CEL expression that evaluates either the request or
- # response body
- String! :
- # target_responses sets the authorizer to evaluate request bodies of the target
- # grpc method
- Boolean! :
- # target_responses sets the authorizer to evaluate response bodies of the target
- # grpc method
- Boolean! :
- }