Interface ExecuteAirflowCommandRequestOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getCommand()
      Airflow command.
      com.google.protobuf.ByteString getCommandBytes()
      Airflow command.
      String getEnvironment()
      The resource name of the environment in the form: "projects/{projectId}/locations/{locationId}/environments/{environmentId}".
      com.google.protobuf.ByteString getEnvironmentBytes()
      The resource name of the environment in the form: "projects/{projectId}/locations/{locationId}/environments/{environmentId}".
      String getParameters​(int index)
      Parameters for the Airflow command/subcommand as an array of arguments.
      com.google.protobuf.ByteString getParametersBytes​(int index)
      Parameters for the Airflow command/subcommand as an array of arguments.
      int getParametersCount()
      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.
      String getSubcommand()
      Airflow subcommand.
      com.google.protobuf.ByteString getSubcommandBytes()
      Airflow subcommand.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • 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.