Interface AnalysisMessageBaseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AnalysisMessageBase,AnalysisMessageBase.Builder
public interface AnalysisMessageBaseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDocumentationUrl()A url pointing to the Service Mesh or Istio documentation for this specific error type.com.google.protobuf.ByteStringgetDocumentationUrlBytes()A url pointing to the Service Mesh or Istio documentation for this specific error type.AnalysisMessageBase.LevelgetLevel()Represents how severe a message is.intgetLevelValue()Represents how severe a message is.AnalysisMessageBase.TypegetType()Represents the specific type of a message.AnalysisMessageBase.TypeOrBuildergetTypeOrBuilder()Represents the specific type of a message.booleanhasType()Represents the specific type of a message.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasType
boolean hasType()
Represents the specific type of a message.
.google.cloud.gkehub.servicemesh.v1alpha.AnalysisMessageBase.Type type = 1;- Returns:
- Whether the type field is set.
-
getType
AnalysisMessageBase.Type getType()
Represents the specific type of a message.
.google.cloud.gkehub.servicemesh.v1alpha.AnalysisMessageBase.Type type = 1;- Returns:
- The type.
-
getTypeOrBuilder
AnalysisMessageBase.TypeOrBuilder getTypeOrBuilder()
Represents the specific type of a message.
.google.cloud.gkehub.servicemesh.v1alpha.AnalysisMessageBase.Type type = 1;
-
getLevelValue
int getLevelValue()
Represents how severe a message is.
.google.cloud.gkehub.servicemesh.v1alpha.AnalysisMessageBase.Level level = 2;- Returns:
- The enum numeric value on the wire for level.
-
getLevel
AnalysisMessageBase.Level getLevel()
Represents how severe a message is.
.google.cloud.gkehub.servicemesh.v1alpha.AnalysisMessageBase.Level level = 2;- Returns:
- The level.
-
getDocumentationUrl
String getDocumentationUrl()
A url pointing to the Service Mesh or Istio documentation for this specific error type.
string documentation_url = 3;- Returns:
- The documentationUrl.
-
getDocumentationUrlBytes
com.google.protobuf.ByteString getDocumentationUrlBytes()
A url pointing to the Service Mesh or Istio documentation for this specific error type.
string documentation_url = 3;- Returns:
- The bytes for documentationUrl.
-
-