Interface ClientStatusRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ClientStatusRequest,ClientStatusRequest.Builder
public interface ClientStatusRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleangetExcludeResourceContents()If true, the server will not include the resource contents in the response (i.e., the generic_xds_configs.xds_config field will not be populated).NodegetNode()The node making the csds request.NodeMatchergetNodeMatchers(int index)Management server can use these match criteria to identify clients.intgetNodeMatchersCount()Management server can use these match criteria to identify clients.java.util.List<NodeMatcher>getNodeMatchersList()Management server can use these match criteria to identify clients.NodeMatcherOrBuildergetNodeMatchersOrBuilder(int index)Management server can use these match criteria to identify clients.java.util.List<? extends NodeMatcherOrBuilder>getNodeMatchersOrBuilderList()Management server can use these match criteria to identify clients.NodeOrBuildergetNodeOrBuilder()The node making the csds request.booleanhasNode()The node making the csds request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNodeMatchersList
java.util.List<NodeMatcher> getNodeMatchersList()
Management server can use these match criteria to identify clients. The match follows OR semantics.
repeated .envoy.type.matcher.v3.NodeMatcher node_matchers = 1;
-
getNodeMatchers
NodeMatcher getNodeMatchers(int index)
Management server can use these match criteria to identify clients. The match follows OR semantics.
repeated .envoy.type.matcher.v3.NodeMatcher node_matchers = 1;
-
getNodeMatchersCount
int getNodeMatchersCount()
Management server can use these match criteria to identify clients. The match follows OR semantics.
repeated .envoy.type.matcher.v3.NodeMatcher node_matchers = 1;
-
getNodeMatchersOrBuilderList
java.util.List<? extends NodeMatcherOrBuilder> getNodeMatchersOrBuilderList()
Management server can use these match criteria to identify clients. The match follows OR semantics.
repeated .envoy.type.matcher.v3.NodeMatcher node_matchers = 1;
-
getNodeMatchersOrBuilder
NodeMatcherOrBuilder getNodeMatchersOrBuilder(int index)
Management server can use these match criteria to identify clients. The match follows OR semantics.
repeated .envoy.type.matcher.v3.NodeMatcher node_matchers = 1;
-
hasNode
boolean hasNode()
The node making the csds request.
.envoy.config.core.v3.Node node = 2;- Returns:
- Whether the node field is set.
-
getNode
Node getNode()
The node making the csds request.
.envoy.config.core.v3.Node node = 2;- Returns:
- The node.
-
getNodeOrBuilder
NodeOrBuilder getNodeOrBuilder()
The node making the csds request.
.envoy.config.core.v3.Node node = 2;
-
getExcludeResourceContents
boolean getExcludeResourceContents()
If true, the server will not include the resource contents in the response (i.e., the generic_xds_configs.xds_config field will not be populated). [#not-implemented-hide:]
bool exclude_resource_contents = 3;- Returns:
- The excludeResourceContents.
-
-