Class: FluentCommandBuilder::AppCfgPython::V16::List

Inherits:
CommandBase
  • Object
show all
Defined in:
lib/fluent_command_builder/command_builders/appcfg_python_16.rb

Instance Method Summary collapse

Methods inherited from CommandBase

#configure!, #execute!, #to_s

Constructor Details

#initialize(underlying_builder) ⇒ List



299
300
301
302
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 299

def initialize(underlying_builder)
  super underlying_builder
  @b.append ' list'
end

Instance Method Details

#allow_any_runtime {|@b| ... } ⇒ Object

Yields:

  • (@b)


373
374
375
376
377
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 373

def allow_any_runtime
  @b.append ' --allow_any_runtime'
  yield @b if block_given?
  self
end

#application(app_id) {|@b| ... } ⇒ Object

Yields:

  • (@b)


358
359
360
361
362
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 358

def application(app_id)
  @b.append " --application=#{@b.format app_id}"
  yield @b if block_given?
  self
end

#email(email) {|@b| ... } ⇒ Object

Yields:

  • (@b)


333
334
335
336
337
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 333

def email(email)
  @b.append " --email=#{@b.format email}"
  yield @b if block_given?
  self
end

#help {|@b| ... } ⇒ Object

Yields:

  • (@b)


303
304
305
306
307
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 303

def help
  @b.append ' --help'
  yield @b if block_given?
  self
end

#host(host) {|@b| ... } ⇒ Object

Yields:

  • (@b)


338
339
340
341
342
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 338

def host(host)
  @b.append " --host=#{@b.format host}"
  yield @b if block_given?
  self
end

#insecure {|@b| ... } ⇒ Object

Yields:

  • (@b)


328
329
330
331
332
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 328

def insecure
  @b.append ' --insecure'
  yield @b if block_given?
  self
end

#no_cookies {|@b| ... } ⇒ Object

Yields:

  • (@b)


343
344
345
346
347
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 343

def no_cookies
  @b.append ' --no_cookies'
  yield @b if block_given?
  self
end

#noauth_local_webserver {|@b| ... } ⇒ Object

Yields:

  • (@b)


388
389
390
391
392
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 388

def noauth_local_webserver
  @b.append ' --noauth_local_webserver'
  yield @b if block_given?
  self
end

#noisy {|@b| ... } ⇒ Object

Yields:

  • (@b)


318
319
320
321
322
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 318

def noisy
  @b.append ' --noisy'
  yield @b if block_given?
  self
end

#oauth2 {|@b| ... } ⇒ Object

Yields:

  • (@b)


378
379
380
381
382
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 378

def oauth2
  @b.append ' --oauth2'
  yield @b if block_given?
  self
end

#oauth2_refresh_token(oauth2_refresh_token) {|@b| ... } ⇒ Object

Yields:

  • (@b)


383
384
385
386
387
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 383

def oauth2_refresh_token(oauth2_refresh_token)
  @b.append " --oauth2_refresh_token=#{@b.format oauth2_refresh_token}"
  yield @b if block_given?
  self
end

#passin {|@b| ... } ⇒ Object

Yields:

  • (@b)


353
354
355
356
357
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 353

def passin
  @b.append ' --passin'
  yield @b if block_given?
  self
end

#quiet {|@b| ... } ⇒ Object

Yields:

  • (@b)


308
309
310
311
312
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 308

def quiet
  @b.append ' --quiet'
  yield @b if block_given?
  self
end

#runtime(runtime) {|@b| ... } ⇒ Object

Yields:

  • (@b)


368
369
370
371
372
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 368

def runtime(runtime)
  @b.append " --runtime=#{@b.format runtime}"
  yield @b if block_given?
  self
end

#server(server) {|@b| ... } ⇒ Object

Yields:

  • (@b)


323
324
325
326
327
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 323

def server(server)
  @b.append " --server=#{@b.format server}"
  yield @b if block_given?
  self
end

#skip_sdk_update_check {|@b| ... } ⇒ Object

Yields:

  • (@b)


348
349
350
351
352
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 348

def skip_sdk_update_check
  @b.append ' --skip_sdk_update_check'
  yield @b if block_given?
  self
end

#verbose {|@b| ... } ⇒ Object

Yields:

  • (@b)


313
314
315
316
317
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 313

def verbose
  @b.append ' --verbose'
  yield @b if block_given?
  self
end

#version(version) {|@b| ... } ⇒ Object

Yields:

  • (@b)


363
364
365
366
367
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 363

def version(version)
  @b.append " --version=#{@b.format version}"
  yield @b if block_given?
  self
end