Class: FluentCommandBuilder::AppCfgPython::V17::Help

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

Instance Method Summary collapse

Methods inherited from CommandBase

#configure!, #execute!, #to_s

Constructor Details

#initialize(underlying_builder, action) ⇒ Help



1319
1320
1321
1322
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1319

def initialize(underlying_builder, action)
  super underlying_builder
  @b.append " help #{@b.format action}"
end

Instance Method Details

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

Yields:

  • (@b)


1393
1394
1395
1396
1397
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1393

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

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

Yields:

  • (@b)


1378
1379
1380
1381
1382
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1378

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

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

Yields:

  • (@b)


1353
1354
1355
1356
1357
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1353

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

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

Yields:

  • (@b)


1323
1324
1325
1326
1327
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1323

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

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

Yields:

  • (@b)


1358
1359
1360
1361
1362
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1358

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

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

Yields:

  • (@b)


1348
1349
1350
1351
1352
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1348

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

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

Yields:

  • (@b)


1363
1364
1365
1366
1367
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1363

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

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

Yields:

  • (@b)


1408
1409
1410
1411
1412
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1408

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

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

Yields:

  • (@b)


1338
1339
1340
1341
1342
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1338

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

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

Yields:

  • (@b)


1398
1399
1400
1401
1402
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1398

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

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

Yields:

  • (@b)


1403
1404
1405
1406
1407
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1403

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)


1373
1374
1375
1376
1377
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1373

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

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

Yields:

  • (@b)


1328
1329
1330
1331
1332
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1328

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

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

Yields:

  • (@b)


1388
1389
1390
1391
1392
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1388

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

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

Yields:

  • (@b)


1343
1344
1345
1346
1347
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1343

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

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

Yields:

  • (@b)


1368
1369
1370
1371
1372
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1368

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

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

Yields:

  • (@b)


1333
1334
1335
1336
1337
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1333

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

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

Yields:

  • (@b)


1383
1384
1385
1386
1387
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1383

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