Interface ActionOutputOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ActionOutput
,ActionOutput.Builder
public interface ActionOutputOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getActionId()
ID of the action.com.google.protobuf.ByteString
getActionIdBytes()
ID of the action.ActionOutput.State
getActionState()
State of an action.int
getActionStateValue()
State of an action.String
getOutputMessage()
Action execution output message.com.google.protobuf.ByteString
getOutputMessageBytes()
Action execution output message.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getActionId
String getActionId()
ID of the action.
string action_id = 1;
- Returns:
- The actionId.
-
getActionIdBytes
com.google.protobuf.ByteString getActionIdBytes()
ID of the action.
string action_id = 1;
- Returns:
- The bytes for actionId.
-
getActionStateValue
int getActionStateValue()
State of an action.
.google.cloud.contentwarehouse.v1.ActionOutput.State action_state = 2;
- Returns:
- The enum numeric value on the wire for actionState.
-
getActionState
ActionOutput.State getActionState()
State of an action.
.google.cloud.contentwarehouse.v1.ActionOutput.State action_state = 2;
- Returns:
- The actionState.
-
getOutputMessage
String getOutputMessage()
Action execution output message.
string output_message = 3;
- Returns:
- The outputMessage.
-
getOutputMessageBytes
com.google.protobuf.ByteString getOutputMessageBytes()
Action execution output message.
string output_message = 3;
- Returns:
- The bytes for outputMessage.
-
-