io.envoyproxy.envoy.service.auth.v2.CheckResponseOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: envoy/service/auth/v2/external_auth.proto
package io.envoyproxy.envoy.service.auth.v2;
public interface CheckResponseOrBuilder extends
// @@protoc_insertion_point(interface_extends:envoy.service.auth.v2.CheckResponse)
com.google.protobuf.MessageOrBuilder {
/**
*
* Status `OK` allows the request. Any other status indicates the request should be denied.
*
*
* .google.rpc.Status status = 1;
*/
boolean hasStatus();
/**
*
* Status `OK` allows the request. Any other status indicates the request should be denied.
*
*
* .google.rpc.Status status = 1;
*/
com.google.rpc.Status getStatus();
/**
*
* Status `OK` allows the request. Any other status indicates the request should be denied.
*
*
* .google.rpc.Status status = 1;
*/
com.google.rpc.StatusOrBuilder getStatusOrBuilder();
/**
*
* Supplies http attributes for a denied response.
*
*
* .envoy.service.auth.v2.DeniedHttpResponse denied_response = 2;
*/
boolean hasDeniedResponse();
/**
*
* Supplies http attributes for a denied response.
*
*
* .envoy.service.auth.v2.DeniedHttpResponse denied_response = 2;
*/
io.envoyproxy.envoy.service.auth.v2.DeniedHttpResponse getDeniedResponse();
/**
*
* Supplies http attributes for a denied response.
*
*
* .envoy.service.auth.v2.DeniedHttpResponse denied_response = 2;
*/
io.envoyproxy.envoy.service.auth.v2.DeniedHttpResponseOrBuilder getDeniedResponseOrBuilder();
/**
*
* Supplies http attributes for an ok response.
*
*
* .envoy.service.auth.v2.OkHttpResponse ok_response = 3;
*/
boolean hasOkResponse();
/**
*
* Supplies http attributes for an ok response.
*
*
* .envoy.service.auth.v2.OkHttpResponse ok_response = 3;
*/
io.envoyproxy.envoy.service.auth.v2.OkHttpResponse getOkResponse();
/**
*
* Supplies http attributes for an ok response.
*
*
* .envoy.service.auth.v2.OkHttpResponse ok_response = 3;
*/
io.envoyproxy.envoy.service.auth.v2.OkHttpResponseOrBuilder getOkResponseOrBuilder();
public io.envoyproxy.envoy.service.auth.v2.CheckResponse.HttpResponseCase getHttpResponseCase();
}