Class: FluentCommandBuilder::AppCfgPython::V16::UpdateQueues

Inherits:
CommandBase
  • Object
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.



2237
2238
2239
2240
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2237

def initialize(underlying_builder, directory)
  super underlying_builder
  @b.append " update_queues #{@b.format directory}"
end

Instance Method Details

#allow_any_runtime {|@b| ... } ⇒ Object

Yields:

  • (@b)


2311
2312
2313
2314
2315
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2311

def allow_any_runtime
  @b.append ' --allow_any_runtime'
  yield @b if block_given?
  self
end

#application(app_id) {|@b| ... } ⇒ Object

Yields:

  • (@b)


2296
2297
2298
2299
2300
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2296

def application(app_id)
  @b.append " --application=#{@b.format app_id}"
  yield @b if block_given?
  self
end

#email(email) {|@b| ... } ⇒ Object

Yields:

  • (@b)


2271
2272
2273
2274
2275
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2271

def email(email)
  @b.append " --email=#{@b.format email}"
  yield @b if block_given?
  self
end

#help {|@b| ... } ⇒ Object

Yields:

  • (@b)


2241
2242
2243
2244
2245
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2241

def help
  @b.append ' --help'
  yield @b if block_given?
  self
end

#host(host) {|@b| ... } ⇒ Object

Yields:

  • (@b)


2276
2277
2278
2279
2280
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2276

def host(host)
  @b.append " --host=#{@b.format host}"
  yield @b if block_given?
  self
end

#insecure {|@b| ... } ⇒ Object

Yields:

  • (@b)


2266
2267
2268
2269
2270
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2266

def insecure
  @b.append ' --insecure'
  yield @b if block_given?
  self
end

#no_cookies {|@b| ... } ⇒ Object

Yields:

  • (@b)


2281
2282
2283
2284
2285
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2281

def no_cookies
  @b.append ' --no_cookies'
  yield @b if block_given?
  self
end

#noauth_local_webserver {|@b| ... } ⇒ Object

Yields:

  • (@b)


2326
2327
2328
2329
2330
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2326

def noauth_local_webserver
  @b.append ' --noauth_local_webserver'
  yield @b if block_given?
  self
end

#noisy {|@b| ... } ⇒ Object

Yields:

  • (@b)


2256
2257
2258
2259
2260
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2256

def noisy
  @b.append ' --noisy'
  yield @b if block_given?
  self
end

#oauth2 {|@b| ... } ⇒ Object

Yields:

  • (@b)


2316
2317
2318
2319
2320
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2316

def oauth2
  @b.append ' --oauth2'
  yield @b if block_given?
  self
end

#oauth2_refresh_token(oauth2_refresh_token) {|@b| ... } ⇒ Object

Yields:

  • (@b)


2321
2322
2323
2324
2325
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2321

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

Yields:

  • (@b)


2291
2292
2293
2294
2295
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2291

def passin
  @b.append ' --passin'
  yield @b if block_given?
  self
end

#quiet {|@b| ... } ⇒ Object

Yields:

  • (@b)


2246
2247
2248
2249
2250
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2246

def quiet
  @b.append ' --quiet'
  yield @b if block_given?
  self
end

#runtime(runtime) {|@b| ... } ⇒ Object

Yields:

  • (@b)


2306
2307
2308
2309
2310
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2306

def runtime(runtime)
  @b.append " --runtime=#{@b.format runtime}"
  yield @b if block_given?
  self
end

#server(server) {|@b| ... } ⇒ Object

Yields:

  • (@b)


2261
2262
2263
2264
2265
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2261

def server(server)
  @b.append " --server=#{@b.format server}"
  yield @b if block_given?
  self
end

#skip_sdk_update_check {|@b| ... } ⇒ Object

Yields:

  • (@b)


2286
2287
2288
2289
2290
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2286

def skip_sdk_update_check
  @b.append ' --skip_sdk_update_check'
  yield @b if block_given?
  self
end

#verbose {|@b| ... } ⇒ Object

Yields:

  • (@b)


2251
2252
2253
2254
2255
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2251

def verbose
  @b.append ' --verbose'
  yield @b if block_given?
  self
end

#version(version) {|@b| ... } ⇒ Object

Yields:

  • (@b)


2301
2302
2303
2304
2305
# File 'lib/fluent_command_builder/command_builders/appcfg_python_16.rb', line 2301

def version(version)
  @b.append " --version=#{@b.format version}"
  yield @b if block_given?
  self
end