Package com.google.cloud.functions.v2
Interface StateMessageOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StateMessage
,StateMessage.Builder
public interface StateMessageOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getMessage()
The message.com.google.protobuf.ByteString
getMessageBytes()
The message.StateMessage.Severity
getSeverity()
Severity of the state message.int
getSeverityValue()
Severity of the state message.String
getType()
One-word CamelCase type of the state message.com.google.protobuf.ByteString
getTypeBytes()
One-word CamelCase type of the state message.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSeverityValue
int getSeverityValue()
Severity of the state message.
.google.cloud.functions.v2.StateMessage.Severity severity = 1;
- Returns:
- The enum numeric value on the wire for severity.
-
getSeverity
StateMessage.Severity getSeverity()
Severity of the state message.
.google.cloud.functions.v2.StateMessage.Severity severity = 1;
- Returns:
- The severity.
-
getType
String getType()
One-word CamelCase type of the state message.
string type = 2;
- Returns:
- The type.
-
getTypeBytes
com.google.protobuf.ByteString getTypeBytes()
One-word CamelCase type of the state message.
string type = 2;
- Returns:
- The bytes for type.
-
getMessage
String getMessage()
The message.
string message = 3;
- Returns:
- The message.
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()
The message.
string message = 3;
- Returns:
- The bytes for message.
-
-