Interface StopAirflowCommandRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
StopAirflowCommandRequest,StopAirflowCommandRequest.Builder
public interface StopAirflowCommandRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEnvironment()The resource name of the environment in the form: "projects/{projectId}/locations/{locationId}/environments/{environmentId}".com.google.protobuf.ByteStringgetEnvironmentBytes()The resource name of the environment in the form: "projects/{projectId}/locations/{locationId}/environments/{environmentId}".StringgetExecutionId()The unique ID of the command execution.com.google.protobuf.ByteStringgetExecutionIdBytes()The unique ID of the command execution.booleangetForce()If true, the execution is terminated forcefully (SIGKILL).StringgetPod()The name of the pod where the command is executed.com.google.protobuf.ByteStringgetPodBytes()The name of the pod where the command is executed.StringgetPodNamespace()The namespace of the pod where the command is executed.com.google.protobuf.ByteStringgetPodNamespaceBytes()The namespace of the pod where the command is executed.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getEnvironment
String getEnvironment()
The resource name of the environment in the form: "projects/{projectId}/locations/{locationId}/environments/{environmentId}".string environment = 1;- Returns:
- The environment.
-
getEnvironmentBytes
com.google.protobuf.ByteString getEnvironmentBytes()
The resource name of the environment in the form: "projects/{projectId}/locations/{locationId}/environments/{environmentId}".string environment = 1;- Returns:
- The bytes for environment.
-
getExecutionId
String getExecutionId()
The unique ID of the command execution.
string execution_id = 2;- Returns:
- The executionId.
-
getExecutionIdBytes
com.google.protobuf.ByteString getExecutionIdBytes()
The unique ID of the command execution.
string execution_id = 2;- Returns:
- The bytes for executionId.
-
getPod
String getPod()
The name of the pod where the command is executed.
string pod = 3;- Returns:
- The pod.
-
getPodBytes
com.google.protobuf.ByteString getPodBytes()
The name of the pod where the command is executed.
string pod = 3;- Returns:
- The bytes for pod.
-
getPodNamespace
String getPodNamespace()
The namespace of the pod where the command is executed.
string pod_namespace = 4;- Returns:
- The podNamespace.
-
getPodNamespaceBytes
com.google.protobuf.ByteString getPodNamespaceBytes()
The namespace of the pod where the command is executed.
string pod_namespace = 4;- Returns:
- The bytes for podNamespace.
-
getForce
boolean getForce()
If true, the execution is terminated forcefully (SIGKILL). If false, the execution is stopped gracefully, giving it time for cleanup.
bool force = 5;- Returns:
- The force.
-
-