Class: FluentCommandBuilder::AppCfgPython::V17::UpdateQueues
- Inherits:
-
CommandBase
- Object
- CommandBase
- FluentCommandBuilder::AppCfgPython::V17::UpdateQueues
- Defined in:
- lib/fluent_command_builder/command_builders/appcfg_python_17.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) ⇒ UpdateQueues
constructor
A new instance of UpdateQueues.
- #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) ⇒ UpdateQueues
Returns a new instance of UpdateQueues.
2228 2229 2230 2231 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2228 def initialize(, directory) super @b.append " update_queues #{@b.format directory}" end |
Instance Method Details
#allow_any_runtime {|@b| ... } ⇒ Object
2302 2303 2304 2305 2306 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2302 def allow_any_runtime @b.append ' --allow_any_runtime' yield @b if block_given? self end |
#application(app_id) {|@b| ... } ⇒ Object
2287 2288 2289 2290 2291 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2287 def application(app_id) @b.append " --application=#{@b.format app_id}" yield @b if block_given? self end |
#email(email) {|@b| ... } ⇒ Object
2262 2263 2264 2265 2266 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2262 def email(email) @b.append " --email=#{@b.format email}" yield @b if block_given? self end |
#help {|@b| ... } ⇒ Object
2232 2233 2234 2235 2236 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2232 def help @b.append ' --help' yield @b if block_given? self end |
#host(host) {|@b| ... } ⇒ Object
2267 2268 2269 2270 2271 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2267 def host(host) @b.append " --host=#{@b.format host}" yield @b if block_given? self end |
#insecure {|@b| ... } ⇒ Object
2257 2258 2259 2260 2261 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2257 def insecure @b.append ' --insecure' yield @b if block_given? self end |
#no_cookies {|@b| ... } ⇒ Object
2272 2273 2274 2275 2276 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2272 def @b.append ' --no_cookies' yield @b if block_given? self end |
#noauth_local_webserver {|@b| ... } ⇒ Object
2317 2318 2319 2320 2321 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2317 def noauth_local_webserver @b.append ' --noauth_local_webserver' yield @b if block_given? self end |
#noisy {|@b| ... } ⇒ Object
2247 2248 2249 2250 2251 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2247 def noisy @b.append ' --noisy' yield @b if block_given? self end |
#oauth2 {|@b| ... } ⇒ Object
2307 2308 2309 2310 2311 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2307 def oauth2 @b.append ' --oauth2' yield @b if block_given? self end |
#oauth2_refresh_token(oauth2_refresh_token) {|@b| ... } ⇒ Object
2312 2313 2314 2315 2316 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2312 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
2282 2283 2284 2285 2286 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2282 def passin @b.append ' --passin' yield @b if block_given? self end |
#quiet {|@b| ... } ⇒ Object
2237 2238 2239 2240 2241 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2237 def quiet @b.append ' --quiet' yield @b if block_given? self end |
#runtime(runtime) {|@b| ... } ⇒ Object
2297 2298 2299 2300 2301 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2297 def runtime(runtime) @b.append " --runtime=#{@b.format runtime}" yield @b if block_given? self end |
#server(server) {|@b| ... } ⇒ Object
2252 2253 2254 2255 2256 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2252 def server(server) @b.append " --server=#{@b.format server}" yield @b if block_given? self end |
#skip_sdk_update_check {|@b| ... } ⇒ Object
2277 2278 2279 2280 2281 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2277 def skip_sdk_update_check @b.append ' --skip_sdk_update_check' yield @b if block_given? self end |
#verbose {|@b| ... } ⇒ Object
2242 2243 2244 2245 2246 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2242 def verbose @b.append ' --verbose' yield @b if block_given? self end |
#version(version) {|@b| ... } ⇒ Object
2292 2293 2294 2295 2296 |
# File 'lib/fluent_command_builder/command_builders/appcfg_python_17.rb', line 2292 def version(version) @b.append " --version=#{@b.format version}" yield @b if block_given? self end |