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