Interface AttributeContext.RequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AttributeContext.Request,AttributeContext.Request.Builder
- Enclosing class:
- AttributeContext
public static interface AttributeContext.RequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AttributeContext.HttpRequestgetHttp()Represents an HTTP request or an HTTP-like request.AttributeContext.HttpRequestOrBuildergetHttpOrBuilder()Represents an HTTP request or an HTTP-like request.com.google.protobuf.TimestampgetTime()The timestamp when the proxy receives the first byte of the request.com.google.protobuf.TimestampOrBuildergetTimeOrBuilder()The timestamp when the proxy receives the first byte of the request.booleanhasHttp()Represents an HTTP request or an HTTP-like request.booleanhasTime()The timestamp when the proxy receives the first byte of the request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasTime
boolean hasTime()
The timestamp when the proxy receives the first byte of the request.
.google.protobuf.Timestamp time = 1;- Returns:
- Whether the time field is set.
-
getTime
com.google.protobuf.Timestamp getTime()
The timestamp when the proxy receives the first byte of the request.
.google.protobuf.Timestamp time = 1;- Returns:
- The time.
-
getTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getTimeOrBuilder()
The timestamp when the proxy receives the first byte of the request.
.google.protobuf.Timestamp time = 1;
-
hasHttp
boolean hasHttp()
Represents an HTTP request or an HTTP-like request.
.envoy.service.auth.v2.AttributeContext.HttpRequest http = 2;- Returns:
- Whether the http field is set.
-
getHttp
AttributeContext.HttpRequest getHttp()
Represents an HTTP request or an HTTP-like request.
.envoy.service.auth.v2.AttributeContext.HttpRequest http = 2;- Returns:
- The http.
-
getHttpOrBuilder
AttributeContext.HttpRequestOrBuilder getHttpOrBuilder()
Represents an HTTP request or an HTTP-like request.
.envoy.service.auth.v2.AttributeContext.HttpRequest http = 2;
-
-