Interface ExecuteAirflowCommandRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExecuteAirflowCommandRequest,ExecuteAirflowCommandRequest.Builder
public interface ExecuteAirflowCommandRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetCommand()Airflow command.com.google.protobuf.ByteStringgetCommandBytes()Airflow command.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}".StringgetParameters(int index)Parameters for the Airflow command/subcommand as an array of arguments.com.google.protobuf.ByteStringgetParametersBytes(int index)Parameters for the Airflow command/subcommand as an array of arguments.intgetParametersCount()Parameters for the Airflow command/subcommand as an array of arguments.List<String>getParametersList()Parameters for the Airflow command/subcommand as an array of arguments.StringgetSubcommand()Airflow subcommand.com.google.protobuf.ByteStringgetSubcommandBytes()Airflow subcommand.-
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.
-
getCommand
String getCommand()
Airflow command.
string command = 2;- Returns:
- The command.
-
getCommandBytes
com.google.protobuf.ByteString getCommandBytes()
Airflow command.
string command = 2;- Returns:
- The bytes for command.
-
getSubcommand
String getSubcommand()
Airflow subcommand.
string subcommand = 3;- Returns:
- The subcommand.
-
getSubcommandBytes
com.google.protobuf.ByteString getSubcommandBytes()
Airflow subcommand.
string subcommand = 3;- Returns:
- The bytes for subcommand.
-
getParametersList
List<String> getParametersList()
Parameters for the Airflow command/subcommand as an array of arguments. It may contain positional arguments like `["my-dag-id"]`, key-value parameters like `["--foo=bar"]` or `["--foo","bar"]`, or other flags like `["-f"]`.
repeated string parameters = 4;- Returns:
- A list containing the parameters.
-
getParametersCount
int getParametersCount()
Parameters for the Airflow command/subcommand as an array of arguments. It may contain positional arguments like `["my-dag-id"]`, key-value parameters like `["--foo=bar"]` or `["--foo","bar"]`, or other flags like `["-f"]`.
repeated string parameters = 4;- Returns:
- The count of parameters.
-
getParameters
String getParameters(int index)
Parameters for the Airflow command/subcommand as an array of arguments. It may contain positional arguments like `["my-dag-id"]`, key-value parameters like `["--foo=bar"]` or `["--foo","bar"]`, or other flags like `["-f"]`.
repeated string parameters = 4;- Parameters:
index- The index of the element to return.- Returns:
- The parameters at the given index.
-
getParametersBytes
com.google.protobuf.ByteString getParametersBytes(int index)
Parameters for the Airflow command/subcommand as an array of arguments. It may contain positional arguments like `["my-dag-id"]`, key-value parameters like `["--foo=bar"]` or `["--foo","bar"]`, or other flags like `["-f"]`.
repeated string parameters = 4;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the parameters at the given index.
-
-