Package io.envoyproxy.envoy.admin.v3
Interface UnreadyTargetsDumps.UnreadyTargetsDumpOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UnreadyTargetsDumps.UnreadyTargetsDump,UnreadyTargetsDumps.UnreadyTargetsDump.Builder
- Enclosing class:
- UnreadyTargetsDumps
public static interface UnreadyTargetsDumps.UnreadyTargetsDumpOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetName()Name of the init manager.com.google.protobuf.ByteStringgetNameBytes()Name of the init manager.StringgetTargetNames(int index)Names of unready targets of the init manager.com.google.protobuf.ByteStringgetTargetNamesBytes(int index)Names of unready targets of the init manager.intgetTargetNamesCount()Names of unready targets of the init manager.List<String>getTargetNamesList()Names of unready targets of the init manager.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Name of the init manager. Example: "init_manager_xxx".
string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Name of the init manager. Example: "init_manager_xxx".
string name = 1;- Returns:
- The bytes for name.
-
getTargetNamesList
List<String> getTargetNamesList()
Names of unready targets of the init manager. Example: "target_xxx".
repeated string target_names = 2;- Returns:
- A list containing the targetNames.
-
getTargetNamesCount
int getTargetNamesCount()
Names of unready targets of the init manager. Example: "target_xxx".
repeated string target_names = 2;- Returns:
- The count of targetNames.
-
getTargetNames
String getTargetNames(int index)
Names of unready targets of the init manager. Example: "target_xxx".
repeated string target_names = 2;- Parameters:
index- The index of the element to return.- Returns:
- The targetNames at the given index.
-
getTargetNamesBytes
com.google.protobuf.ByteString getTargetNamesBytes(int index)
Names of unready targets of the init manager. Example: "target_xxx".
repeated string target_names = 2;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the targetNames at the given index.
-
-