Class: FluentCommandBuilder::AppCfgPython::V16::UpdateCron
- Inherits:
-
CommandBase
- Object
- CommandBase
- FluentCommandBuilder::AppCfgPython::V16::UpdateCron
- 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, directory) ⇒ UpdateCron
constructor
A new instance of UpdateCron.
- #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, directory) ⇒ UpdateCron
Returns a new instance of UpdateCron.
1950 1951 1952 1953 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 1950 def initialize(, directory) super @b.append " update_cron #{@b.format directory}" end |
Instance Method Details
#allow_any_runtime {|@b| ... } ⇒ Object
2024 2025 2026 2027 2028 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2024 def allow_any_runtime @b.append ' --allow_any_runtime' yield @b if block_given? self end |
#application(app_id) {|@b| ... } ⇒ Object
2009 2010 2011 2012 2013 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2009 def application(app_id) @b.append " --application=#{@b.format app_id}" yield @b if block_given? self end |
#email(email) {|@b| ... } ⇒ Object
1984 1985 1986 1987 1988 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 1984 def email(email) @b.append " --email=#{@b.format email}" yield @b if block_given? self end |
#help {|@b| ... } ⇒ Object
1954 1955 1956 1957 1958 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 1954 def help @b.append ' --help' yield @b if block_given? self end |
#host(host) {|@b| ... } ⇒ Object
1989 1990 1991 1992 1993 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 1989 def host(host) @b.append " --host=#{@b.format host}" yield @b if block_given? self end |
#insecure {|@b| ... } ⇒ Object
1979 1980 1981 1982 1983 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 1979 def insecure @b.append ' --insecure' yield @b if block_given? self end |
#no_cookies {|@b| ... } ⇒ Object
1994 1995 1996 1997 1998 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 1994 def @b.append ' --no_cookies' yield @b if block_given? self end |
#noauth_local_webserver {|@b| ... } ⇒ Object
2039 2040 2041 2042 2043 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2039 def noauth_local_webserver @b.append ' --noauth_local_webserver' yield @b if block_given? self end |
#noisy {|@b| ... } ⇒ Object
1969 1970 1971 1972 1973 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 1969 def noisy @b.append ' --noisy' yield @b if block_given? self end |
#oauth2 {|@b| ... } ⇒ Object
2029 2030 2031 2032 2033 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2029 def oauth2 @b.append ' --oauth2' yield @b if block_given? self end |
#oauth2_refresh_token(oauth2_refresh_token) {|@b| ... } ⇒ Object
2034 2035 2036 2037 2038 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2034 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
2004 2005 2006 2007 2008 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2004 def passin @b.append ' --passin' yield @b if block_given? self end |
#quiet {|@b| ... } ⇒ Object
1959 1960 1961 1962 1963 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 1959 def quiet @b.append ' --quiet' yield @b if block_given? self end |
#runtime(runtime) {|@b| ... } ⇒ Object
2019 2020 2021 2022 2023 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2019 def runtime(runtime) @b.append " --runtime=#{@b.format runtime}" yield @b if block_given? self end |
#server(server) {|@b| ... } ⇒ Object
1974 1975 1976 1977 1978 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 1974 def server(server) @b.append " --server=#{@b.format server}" yield @b if block_given? self end |
#skip_sdk_update_check {|@b| ... } ⇒ Object
1999 2000 2001 2002 2003 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 1999 def skip_sdk_update_check @b.append ' --skip_sdk_update_check' yield @b if block_given? self end |
#verbose {|@b| ... } ⇒ Object
1964 1965 1966 1967 1968 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 1964 def verbose @b.append ' --verbose' yield @b if block_given? self end |
#version(version) {|@b| ... } ⇒ Object
2014 2015 2016 2017 2018 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2014 def version(version) @b.append " --version=#{@b.format version}" yield @b if block_given? self end |