Interface RouteAction.UpgradeConfig.ConnectConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RouteAction.UpgradeConfig.ConnectConfig
,RouteAction.UpgradeConfig.ConnectConfig.Builder
- Enclosing class:
- RouteAction.UpgradeConfig
public static interface RouteAction.UpgradeConfig.ConnectConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
getAllowPost()
If set, the route will also allow forwarding POST payload as raw TCP.ProxyProtocolConfig
getProxyProtocolConfig()
If present, the proxy protocol header will be prepended to the CONNECT payload sent upstream.ProxyProtocolConfigOrBuilder
getProxyProtocolConfigOrBuilder()
If present, the proxy protocol header will be prepended to the CONNECT payload sent upstream.boolean
hasProxyProtocolConfig()
If present, the proxy protocol header will be prepended to the CONNECT payload sent upstream.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasProxyProtocolConfig
boolean hasProxyProtocolConfig()
If present, the proxy protocol header will be prepended to the CONNECT payload sent upstream.
.envoy.config.core.v3.ProxyProtocolConfig proxy_protocol_config = 1;
- Returns:
- Whether the proxyProtocolConfig field is set.
-
getProxyProtocolConfig
ProxyProtocolConfig getProxyProtocolConfig()
If present, the proxy protocol header will be prepended to the CONNECT payload sent upstream.
.envoy.config.core.v3.ProxyProtocolConfig proxy_protocol_config = 1;
- Returns:
- The proxyProtocolConfig.
-
getProxyProtocolConfigOrBuilder
ProxyProtocolConfigOrBuilder getProxyProtocolConfigOrBuilder()
If present, the proxy protocol header will be prepended to the CONNECT payload sent upstream.
.envoy.config.core.v3.ProxyProtocolConfig proxy_protocol_config = 1;
-
getAllowPost
boolean getAllowPost()
If set, the route will also allow forwarding POST payload as raw TCP.
bool allow_post = 2;
- Returns:
- The allowPost.
-
-