Interface PollAirflowCommandResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
PollAirflowCommandResponse,PollAirflowCommandResponse.Builder
public interface PollAirflowCommandResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PollAirflowCommandResponse.ExitInfogetExitInfo()The result exit status of the command.PollAirflowCommandResponse.ExitInfoOrBuildergetExitInfoOrBuilder()The result exit status of the command.PollAirflowCommandResponse.LinegetOutput(int index)Output from the command execution.intgetOutputCount()Output from the command execution.booleangetOutputEnd()Whether the command execution has finished and there is no more output.List<PollAirflowCommandResponse.Line>getOutputList()Output from the command execution.PollAirflowCommandResponse.LineOrBuildergetOutputOrBuilder(int index)Output from the command execution.List<? extends PollAirflowCommandResponse.LineOrBuilder>getOutputOrBuilderList()Output from the command execution.booleanhasExitInfo()The result exit status of the command.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getOutputList
List<PollAirflowCommandResponse.Line> getOutputList()
Output from the command execution. It may not contain the full output and the caller may need to poll for more lines.
repeated .google.cloud.orchestration.airflow.service.v1beta1.PollAirflowCommandResponse.Line output = 1;
-
getOutput
PollAirflowCommandResponse.Line getOutput(int index)
Output from the command execution. It may not contain the full output and the caller may need to poll for more lines.
repeated .google.cloud.orchestration.airflow.service.v1beta1.PollAirflowCommandResponse.Line output = 1;
-
getOutputCount
int getOutputCount()
Output from the command execution. It may not contain the full output and the caller may need to poll for more lines.
repeated .google.cloud.orchestration.airflow.service.v1beta1.PollAirflowCommandResponse.Line output = 1;
-
getOutputOrBuilderList
List<? extends PollAirflowCommandResponse.LineOrBuilder> getOutputOrBuilderList()
Output from the command execution. It may not contain the full output and the caller may need to poll for more lines.
repeated .google.cloud.orchestration.airflow.service.v1beta1.PollAirflowCommandResponse.Line output = 1;
-
getOutputOrBuilder
PollAirflowCommandResponse.LineOrBuilder getOutputOrBuilder(int index)
Output from the command execution. It may not contain the full output and the caller may need to poll for more lines.
repeated .google.cloud.orchestration.airflow.service.v1beta1.PollAirflowCommandResponse.Line output = 1;
-
getOutputEnd
boolean getOutputEnd()
Whether the command execution has finished and there is no more output.
bool output_end = 2;- Returns:
- The outputEnd.
-
hasExitInfo
boolean hasExitInfo()
The result exit status of the command.
.google.cloud.orchestration.airflow.service.v1beta1.PollAirflowCommandResponse.ExitInfo exit_info = 3;- Returns:
- Whether the exitInfo field is set.
-
getExitInfo
PollAirflowCommandResponse.ExitInfo getExitInfo()
The result exit status of the command.
.google.cloud.orchestration.airflow.service.v1beta1.PollAirflowCommandResponse.ExitInfo exit_info = 3;- Returns:
- The exitInfo.
-
getExitInfoOrBuilder
PollAirflowCommandResponse.ExitInfoOrBuilder getExitInfoOrBuilder()
The result exit status of the command.
.google.cloud.orchestration.airflow.service.v1beta1.PollAirflowCommandResponse.ExitInfo exit_info = 3;
-
-