Interface LoadStatsRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
LoadStatsRequest
,LoadStatsRequest.Builder
public interface LoadStatsRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ClusterStats
getClusterStats(int index)
A list of load stats to report.int
getClusterStatsCount()
A list of load stats to report.java.util.List<ClusterStats>
getClusterStatsList()
A list of load stats to report.ClusterStatsOrBuilder
getClusterStatsOrBuilder(int index)
A list of load stats to report.java.util.List<? extends ClusterStatsOrBuilder>
getClusterStatsOrBuilderList()
A list of load stats to report.Node
getNode()
Node identifier for Envoy instance.NodeOrBuilder
getNodeOrBuilder()
Node identifier for Envoy instance.boolean
hasNode()
Node identifier for Envoy instance.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasNode
boolean hasNode()
Node identifier for Envoy instance.
.envoy.config.core.v3.Node node = 1;
- Returns:
- Whether the node field is set.
-
getNode
Node getNode()
Node identifier for Envoy instance.
.envoy.config.core.v3.Node node = 1;
- Returns:
- The node.
-
getNodeOrBuilder
NodeOrBuilder getNodeOrBuilder()
Node identifier for Envoy instance.
.envoy.config.core.v3.Node node = 1;
-
getClusterStatsList
java.util.List<ClusterStats> getClusterStatsList()
A list of load stats to report.
repeated .envoy.config.endpoint.v3.ClusterStats cluster_stats = 2;
-
getClusterStats
ClusterStats getClusterStats(int index)
A list of load stats to report.
repeated .envoy.config.endpoint.v3.ClusterStats cluster_stats = 2;
-
getClusterStatsCount
int getClusterStatsCount()
A list of load stats to report.
repeated .envoy.config.endpoint.v3.ClusterStats cluster_stats = 2;
-
getClusterStatsOrBuilderList
java.util.List<? extends ClusterStatsOrBuilder> getClusterStatsOrBuilderList()
A list of load stats to report.
repeated .envoy.config.endpoint.v3.ClusterStats cluster_stats = 2;
-
getClusterStatsOrBuilder
ClusterStatsOrBuilder getClusterStatsOrBuilder(int index)
A list of load stats to report.
repeated .envoy.config.endpoint.v3.ClusterStats cluster_stats = 2;
-
-