Class: FluentCommandBuilder::AppCfgPython::V17::RequestLogs
- Inherits:
-
CommandBase
- Object
- CommandBase
- FluentCommandBuilder::AppCfgPython::V17::RequestLogs
- Defined in:
- lib/fluent_command_builder/command_builders/appcfg_python_17.rb
Instance Method Summary collapse
- #allow_any_runtime {|@b| ... } ⇒ Object
- #append {|@b| ... } ⇒ Object
- #application(app_id) {|@b| ... } ⇒ Object
- #email(email) {|@b| ... } ⇒ Object
- #end_date(end_date) {|@b| ... } ⇒ Object
- #help {|@b| ... } ⇒ Object
- #host(host) {|@b| ... } ⇒ Object
- #include_all {|@b| ... } ⇒ Object
- #include_vhost {|@b| ... } ⇒ Object
-
#initialize(underlying_builder, directory, output_file) ⇒ RequestLogs
constructor
A new instance of RequestLogs.
- #insecure {|@b| ... } ⇒ Object
- #no_cookies {|@b| ... } ⇒ Object
- #noauth_local_webserver {|@b| ... } ⇒ Object
- #noisy {|@b| ... } ⇒ Object
- #num_days(num_days) {|@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
- #severity(severity) {|@b| ... } ⇒ Object
- #skip_sdk_update_check {|@b| ... } ⇒ Object
- #verbose {|@b| ... } ⇒ Object
- #version(version) {|@b| ... } ⇒ Object
- #vhost(vhost) {|@b| ... } ⇒ Object
Methods inherited from CommandBase
Constructor Details
#initialize(underlying_builder, directory, output_file) ⇒ RequestLogs
Returns a new instance of RequestLogs.
1415 1416 1417 1418 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1415 def initialize(, directory, output_file) super @b.append " request_logs #{@b.format directory} #{@b.format output_file}" end |
Instance Method Details
#allow_any_runtime {|@b| ... } ⇒ Object
1489 1490 1491 1492 1493 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1489 def allow_any_runtime @b.append ' --allow_any_runtime' yield @b if block_given? self end |
#append {|@b| ... } ⇒ Object
1514 1515 1516 1517 1518 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1514 def append @b.append ' --append' yield @b if block_given? self end |
#application(app_id) {|@b| ... } ⇒ Object
1474 1475 1476 1477 1478 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1474 def application(app_id) @b.append " --application=#{@b.format app_id}" yield @b if block_given? self end |
#email(email) {|@b| ... } ⇒ Object
1449 1450 1451 1452 1453 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1449 def email(email) @b.append " --email=#{@b.format email}" yield @b if block_given? self end |
#end_date(end_date) {|@b| ... } ⇒ Object
1539 1540 1541 1542 1543 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1539 def end_date(end_date) @b.append " --end_date=#{@b.format end_date}" yield @b if block_given? self end |
#help {|@b| ... } ⇒ Object
1419 1420 1421 1422 1423 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1419 def help @b.append ' --help' yield @b if block_given? self end |
#host(host) {|@b| ... } ⇒ Object
1454 1455 1456 1457 1458 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1454 def host(host) @b.append " --host=#{@b.format host}" yield @b if block_given? self end |
#include_all {|@b| ... } ⇒ Object
1534 1535 1536 1537 1538 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1534 def include_all @b.append ' --include_all' yield @b if block_given? self end |
#include_vhost {|@b| ... } ⇒ Object
1529 1530 1531 1532 1533 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1529 def include_vhost @b.append ' --include_vhost' yield @b if block_given? self end |
#insecure {|@b| ... } ⇒ Object
1444 1445 1446 1447 1448 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1444 def insecure @b.append ' --insecure' yield @b if block_given? self end |
#no_cookies {|@b| ... } ⇒ Object
1459 1460 1461 1462 1463 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1459 def @b.append ' --no_cookies' yield @b if block_given? self end |
#noauth_local_webserver {|@b| ... } ⇒ Object
1504 1505 1506 1507 1508 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1504 def noauth_local_webserver @b.append ' --noauth_local_webserver' yield @b if block_given? self end |
#noisy {|@b| ... } ⇒ Object
1434 1435 1436 1437 1438 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1434 def noisy @b.append ' --noisy' yield @b if block_given? self end |
#num_days(num_days) {|@b| ... } ⇒ Object
1509 1510 1511 1512 1513 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1509 def num_days(num_days) @b.append " --num_days=#{@b.format num_days}" yield @b if block_given? self end |
#oauth2 {|@b| ... } ⇒ Object
1494 1495 1496 1497 1498 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1494 def oauth2 @b.append ' --oauth2' yield @b if block_given? self end |
#oauth2_refresh_token(oauth2_refresh_token) {|@b| ... } ⇒ Object
1499 1500 1501 1502 1503 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1499 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
1469 1470 1471 1472 1473 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1469 def passin @b.append ' --passin' yield @b if block_given? self end |
#quiet {|@b| ... } ⇒ Object
1424 1425 1426 1427 1428 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1424 def quiet @b.append ' --quiet' yield @b if block_given? self end |
#runtime(runtime) {|@b| ... } ⇒ Object
1484 1485 1486 1487 1488 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1484 def runtime(runtime) @b.append " --runtime=#{@b.format runtime}" yield @b if block_given? self end |
#server(server) {|@b| ... } ⇒ Object
1439 1440 1441 1442 1443 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1439 def server(server) @b.append " --server=#{@b.format server}" yield @b if block_given? self end |
#severity(severity) {|@b| ... } ⇒ Object
1519 1520 1521 1522 1523 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1519 def severity(severity) @b.append " --severity=#{@b.format severity}" yield @b if block_given? self end |
#skip_sdk_update_check {|@b| ... } ⇒ Object
1464 1465 1466 1467 1468 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1464 def skip_sdk_update_check @b.append ' --skip_sdk_update_check' yield @b if block_given? self end |
#verbose {|@b| ... } ⇒ Object
1429 1430 1431 1432 1433 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1429 def verbose @b.append ' --verbose' yield @b if block_given? self end |
#version(version) {|@b| ... } ⇒ Object
1479 1480 1481 1482 1483 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1479 def version(version) @b.append " --version=#{@b.format version}" yield @b if block_given? self end |
#vhost(vhost) {|@b| ... } ⇒ Object
1524 1525 1526 1527 1528 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 1524 def vhost(vhost) @b.append " --vhost=#{@b.format vhost}" yield @b if block_given? self end |