Class: FluentCommandBuilder::AppCfgPython::V16::List
- Inherits:
-
CommandBase
- Object
- CommandBase
- FluentCommandBuilder::AppCfgPython::V16::List
- 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) ⇒ List
constructor
A new instance of List.
- #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) ⇒ List
Returns a new instance of List.
300 301 302 303 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 300 def initialize() super @b.append ' list' end |
Instance Method Details
#allow_any_runtime {|@b| ... } ⇒ Object
374 375 376 377 378 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 374 def allow_any_runtime @b.append ' --allow_any_runtime' yield @b if block_given? self end |
#application(app_id) {|@b| ... } ⇒ Object
359 360 361 362 363 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 359 def application(app_id) @b.append " --application=#{@b.format app_id}" yield @b if block_given? self end |
#email(email) {|@b| ... } ⇒ Object
334 335 336 337 338 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 334 def email(email) @b.append " --email=#{@b.format email}" yield @b if block_given? self end |
#help {|@b| ... } ⇒ Object
304 305 306 307 308 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 304 def help @b.append ' --help' yield @b if block_given? self end |
#host(host) {|@b| ... } ⇒ Object
339 340 341 342 343 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 339 def host(host) @b.append " --host=#{@b.format host}" yield @b if block_given? self end |
#insecure {|@b| ... } ⇒ Object
329 330 331 332 333 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 329 def insecure @b.append ' --insecure' yield @b if block_given? self end |
#no_cookies {|@b| ... } ⇒ Object
344 345 346 347 348 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 344 def @b.append ' --no_cookies' yield @b if block_given? self end |
#noauth_local_webserver {|@b| ... } ⇒ Object
389 390 391 392 393 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 389 def noauth_local_webserver @b.append ' --noauth_local_webserver' yield @b if block_given? self end |
#noisy {|@b| ... } ⇒ Object
319 320 321 322 323 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 319 def noisy @b.append ' --noisy' yield @b if block_given? self end |
#oauth2 {|@b| ... } ⇒ Object
379 380 381 382 383 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 379 def oauth2 @b.append ' --oauth2' yield @b if block_given? self end |
#oauth2_refresh_token(oauth2_refresh_token) {|@b| ... } ⇒ Object
384 385 386 387 388 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 384 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
354 355 356 357 358 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 354 def passin @b.append ' --passin' yield @b if block_given? self end |
#quiet {|@b| ... } ⇒ Object
309 310 311 312 313 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 309 def quiet @b.append ' --quiet' yield @b if block_given? self end |
#runtime(runtime) {|@b| ... } ⇒ Object
369 370 371 372 373 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 369 def runtime(runtime) @b.append " --runtime=#{@b.format runtime}" yield @b if block_given? self end |
#server(server) {|@b| ... } ⇒ Object
324 325 326 327 328 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 324 def server(server) @b.append " --server=#{@b.format server}" yield @b if block_given? self end |
#skip_sdk_update_check {|@b| ... } ⇒ Object
349 350 351 352 353 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 349 def skip_sdk_update_check @b.append ' --skip_sdk_update_check' yield @b if block_given? self end |
#verbose {|@b| ... } ⇒ Object
314 315 316 317 318 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 314 def verbose @b.append ' --verbose' yield @b if block_given? self end |
#version(version) {|@b| ... } ⇒ Object
364 365 366 367 368 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 364 def version(version) @b.append " --version=#{@b.format version}" yield @b if block_given? self end |