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