Class: FluentCommandBuilder::AppCfgPython::V17::Help
- Inherits:
-
CommandBase
- Object
- CommandBase
- FluentCommandBuilder::AppCfgPython::V17::Help
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
Returns a new instance of Help.
1318
1319
1320
1321
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1318
def initialize(underlying_builder, action)
super underlying_builder
@b.append " help #{@b.format action}"
end
|
Instance Method Details
#allow_any_runtime {|@b| ... } ⇒ Object
1392
1393
1394
1395
1396
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1392
def allow_any_runtime
@b.append ' --allow_any_runtime'
yield @b if block_given?
self
end
|
#application(app_id) {|@b| ... } ⇒ Object
1377
1378
1379
1380
1381
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1377
def application(app_id)
@b.append " --application=#{@b.format app_id}"
yield @b if block_given?
self
end
|
#email(email) {|@b| ... } ⇒ Object
1352
1353
1354
1355
1356
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1352
def email(email)
@b.append " --email=#{@b.format email}"
yield @b if block_given?
self
end
|
#help {|@b| ... } ⇒ Object
1322
1323
1324
1325
1326
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1322
def help
@b.append ' --help'
yield @b if block_given?
self
end
|
#host(host) {|@b| ... } ⇒ Object
1357
1358
1359
1360
1361
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1357
def host(host)
@b.append " --host=#{@b.format host}"
yield @b if block_given?
self
end
|
#insecure {|@b| ... } ⇒ Object
1347
1348
1349
1350
1351
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1347
def insecure
@b.append ' --insecure'
yield @b if block_given?
self
end
|
#no_cookies {|@b| ... } ⇒ Object
1362
1363
1364
1365
1366
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1362
def no_cookies
@b.append ' --no_cookies'
yield @b if block_given?
self
end
|
#noauth_local_webserver {|@b| ... } ⇒ Object
1407
1408
1409
1410
1411
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1407
def noauth_local_webserver
@b.append ' --noauth_local_webserver'
yield @b if block_given?
self
end
|
#noisy {|@b| ... } ⇒ Object
1337
1338
1339
1340
1341
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1337
def noisy
@b.append ' --noisy'
yield @b if block_given?
self
end
|
#oauth2 {|@b| ... } ⇒ Object
1397
1398
1399
1400
1401
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1397
def oauth2
@b.append ' --oauth2'
yield @b if block_given?
self
end
|
#oauth2_refresh_token(oauth2_refresh_token) {|@b| ... } ⇒ Object
1402
1403
1404
1405
1406
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1402
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
1372
1373
1374
1375
1376
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1372
def passin
@b.append ' --passin'
yield @b if block_given?
self
end
|
#quiet {|@b| ... } ⇒ Object
1327
1328
1329
1330
1331
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1327
def quiet
@b.append ' --quiet'
yield @b if block_given?
self
end
|
#runtime(runtime) {|@b| ... } ⇒ Object
1387
1388
1389
1390
1391
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1387
def runtime(runtime)
@b.append " --runtime=#{@b.format runtime}"
yield @b if block_given?
self
end
|
#server(server) {|@b| ... } ⇒ Object
1342
1343
1344
1345
1346
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1342
def server(server)
@b.append " --server=#{@b.format server}"
yield @b if block_given?
self
end
|
#skip_sdk_update_check {|@b| ... } ⇒ Object
1367
1368
1369
1370
1371
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1367
def skip_sdk_update_check
@b.append ' --skip_sdk_update_check'
yield @b if block_given?
self
end
|
#verbose {|@b| ... } ⇒ Object
1332
1333
1334
1335
1336
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1332
def verbose
@b.append ' --verbose'
yield @b if block_given?
self
end
|
#version(version) {|@b| ... } ⇒ Object
1382
1383
1384
1385
1386
|
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1382
def version(version)
@b.append " --version=#{@b.format version}"
yield @b if block_given?
self
end
|