Package io.envoyproxy.envoy.admin.v3
Interface UpdateFailureStateOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateFailureState,UpdateFailureState.Builder
public interface UpdateFailureStateOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDetails()Details about the last failed update attempt.com.google.protobuf.ByteStringgetDetailsBytes()Details about the last failed update attempt.com.google.protobuf.AnygetFailedConfiguration()What the component configuration would have been if the update had succeeded.com.google.protobuf.AnyOrBuildergetFailedConfigurationOrBuilder()What the component configuration would have been if the update had succeeded.com.google.protobuf.TimestampgetLastUpdateAttempt()Time of the latest failed update attempt.com.google.protobuf.TimestampOrBuildergetLastUpdateAttemptOrBuilder()Time of the latest failed update attempt.StringgetVersionInfo()This is the version of the rejected resource.com.google.protobuf.ByteStringgetVersionInfoBytes()This is the version of the rejected resource.booleanhasFailedConfiguration()What the component configuration would have been if the update had succeeded.booleanhasLastUpdateAttempt()Time of the latest failed update attempt.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasFailedConfiguration
boolean hasFailedConfiguration()
What the component configuration would have been if the update had succeeded. This field may not be populated by xDS clients due to storage overhead.
.google.protobuf.Any failed_configuration = 1;- Returns:
- Whether the failedConfiguration field is set.
-
getFailedConfiguration
com.google.protobuf.Any getFailedConfiguration()
What the component configuration would have been if the update had succeeded. This field may not be populated by xDS clients due to storage overhead.
.google.protobuf.Any failed_configuration = 1;- Returns:
- The failedConfiguration.
-
getFailedConfigurationOrBuilder
com.google.protobuf.AnyOrBuilder getFailedConfigurationOrBuilder()
What the component configuration would have been if the update had succeeded. This field may not be populated by xDS clients due to storage overhead.
.google.protobuf.Any failed_configuration = 1;
-
hasLastUpdateAttempt
boolean hasLastUpdateAttempt()
Time of the latest failed update attempt.
.google.protobuf.Timestamp last_update_attempt = 2;- Returns:
- Whether the lastUpdateAttempt field is set.
-
getLastUpdateAttempt
com.google.protobuf.Timestamp getLastUpdateAttempt()
Time of the latest failed update attempt.
.google.protobuf.Timestamp last_update_attempt = 2;- Returns:
- The lastUpdateAttempt.
-
getLastUpdateAttemptOrBuilder
com.google.protobuf.TimestampOrBuilder getLastUpdateAttemptOrBuilder()
Time of the latest failed update attempt.
.google.protobuf.Timestamp last_update_attempt = 2;
-
getDetails
String getDetails()
Details about the last failed update attempt.
string details = 3;- Returns:
- The details.
-
getDetailsBytes
com.google.protobuf.ByteString getDetailsBytes()
Details about the last failed update attempt.
string details = 3;- Returns:
- The bytes for details.
-
getVersionInfo
String getVersionInfo()
This is the version of the rejected resource. [#not-implemented-hide:]
string version_info = 4;- Returns:
- The versionInfo.
-
getVersionInfoBytes
com.google.protobuf.ByteString getVersionInfoBytes()
This is the version of the rejected resource. [#not-implemented-hide:]
string version_info = 4;- Returns:
- The bytes for versionInfo.
-
-