Types -
grpc
- Compression COMPRESSION_AUTO | COMPRESSION_ALWAYS | COMPRESSION_NEVER
-
Options to compress using gzip or deflate.
AUTO
: When service behaves as a HTTP gateway inbound request/response accept-encoding option is set as the outbound request/response accept-encoding/content-encoding optionALWAYS
: Always set accept-encoding/content-encoding in outbound request/responseNEVER
: Never set accept-encoding/content-encoding header in outbound request/response
- Error CancelledError | UnKnownError | InvalidArgumentError | DeadlineExceededError | NotFoundError | AleadyExistsError | PermissionDeniedError | UnauthenticatedError | ResourceExhaustedError | FailedPreconditionError | AbortedError | OutOfRangeError | UnimplementedError | InternalError | UnavailableError | DataLossError
-
Represents gRPC related errors.
- ErrorType CANCELLED_ERROR | UNKNOWN_ERROR | INVALID_ARGUMENT_ERROR | DEADLINE_EXCEEDED_ERROR | NOT_FOUND_ERROR | ALREADY_EXISTS_ERROR | PERMISSION_DENIED_ERROR | UNAUTHENTICATED_ERROR | RESOURCE_EXHAUSTED_ERROR | FAILED_PRECONDITION_ERROR | ABORTED_ERROR | OUT_OF_RANGE_ERROR | UNIMPLEMENTED_ERROR | INTERNAL_ERROR | UNAVAILABLE_ERROR | DATA_LOSS_ERROR
-
Represents gRPC related error types.