initialize command,

in lib/google/serverless/exec.rb [432:457]


      def initialize command,
                     project: nil,
                     service: nil,
                     config_path: nil,
                     version: nil,
                     timeout: nil,
                     wrapper_image: nil,
                     strategy: nil,
                     gcs_log_dir: nil,
                     product: nil,
                     region: nil
        @command = command
        @service = service
        @config_path = config_path
        @version = version
        @timeout = timeout
        @project = project
        @wrapper_image = wrapper_image
        @strategy = strategy
        @gcs_log_dir = gcs_log_dir
        @product = product
        @region = region

        yield self if block_given?
      end