Class: Google::Cloud::Translate::V3::TranslationService::Client::Configuration

Inherits:
Object
  • Object
show all
Extended by:
Gapic::Config
Defined in:
lib/google/cloud/translate/v3/translation_service/client.rb

Overview

Configuration class for the TranslationService API.

This class represents the configuration for TranslationService, providing control over timeouts, retry behavior, logging, transport parameters, and other low-level controls. Certain parameters can also be applied individually to specific RPCs. See Rpcs for a list of RPCs that can be configured independently.

Configuration can be applied globally to all clients, or to a single client on construction.

Examples:


# Modify the global config, setting the timeout for
# translate_text to 20 seconds,
# and all remaining timeouts to 10 seconds.
::Google::Cloud::Translate::V3::TranslationService::Client.configure do |config|
  config.timeout = 10.0
  config.rpcs.translate_text.timeout = 20.0
end

# Apply the above configuration only to a new client.
client = ::Google::Cloud::Translate::V3::TranslationService::Client.new do |config|
  config.timeout = 10.0
  config.rpcs.translate_text.timeout = 20.0
end

Defined Under Namespace

Classes: Rpcs

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#channel_args::Hash

Extra parameters passed to the gRPC channel. Note: this is ignored if a GRPC::Core::Channel object is provided as the credential.

Returns:

  • (::Hash)


4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
# File 'lib/google/cloud/translate/v3/translation_service/client.rb', line 4216

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "translate.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the TranslationService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_text
    ##
    # RPC-specific configuration for `romanize_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :romanize_text
    ##
    # RPC-specific configuration for `detect_language`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detect_language
    ##
    # RPC-specific configuration for `get_supported_languages`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_supported_languages
    ##
    # RPC-specific configuration for `translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_document
    ##
    # RPC-specific configuration for `batch_translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_text
    ##
    # RPC-specific configuration for `batch_translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_document
    ##
    # RPC-specific configuration for `create_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary
    ##
    # RPC-specific configuration for `update_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary
    ##
    # RPC-specific configuration for `list_glossaries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossaries
    ##
    # RPC-specific configuration for `get_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary
    ##
    # RPC-specific configuration for `delete_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary
    ##
    # RPC-specific configuration for `get_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary_entry
    ##
    # RPC-specific configuration for `list_glossary_entries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossary_entries
    ##
    # RPC-specific configuration for `create_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary_entry
    ##
    # RPC-specific configuration for `update_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary_entry
    ##
    # RPC-specific configuration for `delete_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary_entry
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `create_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `delete_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `get_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `list_adaptive_mt_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_datasets
    ##
    # RPC-specific configuration for `adaptive_mt_translate`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :adaptive_mt_translate
    ##
    # RPC-specific configuration for `get_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_file
    ##
    # RPC-specific configuration for `delete_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_file
    ##
    # RPC-specific configuration for `import_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_adaptive_mt_file
    ##
    # RPC-specific configuration for `list_adaptive_mt_files`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_files
    ##
    # RPC-specific configuration for `list_adaptive_mt_sentences`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_sentences
    ##
    # RPC-specific configuration for `import_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_data
    ##
    # RPC-specific configuration for `export_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_data
    ##
    # RPC-specific configuration for `list_examples`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_examples
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model

    # @private
    def initialize parent_rpcs = nil
      translate_text_config = parent_rpcs.translate_text if parent_rpcs.respond_to? :translate_text
      @translate_text = ::Gapic::Config::Method.new translate_text_config
      romanize_text_config = parent_rpcs.romanize_text if parent_rpcs.respond_to? :romanize_text
      @romanize_text = ::Gapic::Config::Method.new romanize_text_config
      detect_language_config = parent_rpcs.detect_language if parent_rpcs.respond_to? :detect_language
      @detect_language = ::Gapic::Config::Method.new detect_language_config
      get_supported_languages_config = parent_rpcs.get_supported_languages if parent_rpcs.respond_to? :get_supported_languages
      @get_supported_languages = ::Gapic::Config::Method.new get_supported_languages_config
      translate_document_config = parent_rpcs.translate_document if parent_rpcs.respond_to? :translate_document
      @translate_document = ::Gapic::Config::Method.new translate_document_config
      batch_translate_text_config = parent_rpcs.batch_translate_text if parent_rpcs.respond_to? :batch_translate_text
      @batch_translate_text = ::Gapic::Config::Method.new batch_translate_text_config
      batch_translate_document_config = parent_rpcs.batch_translate_document if parent_rpcs.respond_to? :batch_translate_document
      @batch_translate_document = ::Gapic::Config::Method.new batch_translate_document_config
      create_glossary_config = parent_rpcs.create_glossary if parent_rpcs.respond_to? :create_glossary
      @create_glossary = ::Gapic::Config::Method.new create_glossary_config
      update_glossary_config = parent_rpcs.update_glossary if parent_rpcs.respond_to? :update_glossary
      @update_glossary = ::Gapic::Config::Method.new update_glossary_config
      list_glossaries_config = parent_rpcs.list_glossaries if parent_rpcs.respond_to? :list_glossaries
      @list_glossaries = ::Gapic::Config::Method.new list_glossaries_config
      get_glossary_config = parent_rpcs.get_glossary if parent_rpcs.respond_to? :get_glossary
      @get_glossary = ::Gapic::Config::Method.new get_glossary_config
      delete_glossary_config = parent_rpcs.delete_glossary if parent_rpcs.respond_to? :delete_glossary
      @delete_glossary = ::Gapic::Config::Method.new delete_glossary_config
      get_glossary_entry_config = parent_rpcs.get_glossary_entry if parent_rpcs.respond_to? :get_glossary_entry
      @get_glossary_entry = ::Gapic::Config::Method.new get_glossary_entry_config
      list_glossary_entries_config = parent_rpcs.list_glossary_entries if parent_rpcs.respond_to? :list_glossary_entries
      @list_glossary_entries = ::Gapic::Config::Method.new list_glossary_entries_config
      create_glossary_entry_config = parent_rpcs.create_glossary_entry if parent_rpcs.respond_to? :create_glossary_entry
      @create_glossary_entry = ::Gapic::Config::Method.new create_glossary_entry_config
      update_glossary_entry_config = parent_rpcs.update_glossary_entry if parent_rpcs.respond_to? :update_glossary_entry
      @update_glossary_entry = ::Gapic::Config::Method.new update_glossary_entry_config
      delete_glossary_entry_config = parent_rpcs.delete_glossary_entry if parent_rpcs.respond_to? :delete_glossary_entry
      @delete_glossary_entry = ::Gapic::Config::Method.new delete_glossary_entry_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      create_adaptive_mt_dataset_config = parent_rpcs.create_adaptive_mt_dataset if parent_rpcs.respond_to? :create_adaptive_mt_dataset
      @create_adaptive_mt_dataset = ::Gapic::Config::Method.new create_adaptive_mt_dataset_config
      delete_adaptive_mt_dataset_config = parent_rpcs.delete_adaptive_mt_dataset if parent_rpcs.respond_to? :delete_adaptive_mt_dataset
      @delete_adaptive_mt_dataset = ::Gapic::Config::Method.new delete_adaptive_mt_dataset_config
      get_adaptive_mt_dataset_config = parent_rpcs.get_adaptive_mt_dataset if parent_rpcs.respond_to? :get_adaptive_mt_dataset
      @get_adaptive_mt_dataset = ::Gapic::Config::Method.new get_adaptive_mt_dataset_config
      list_adaptive_mt_datasets_config = parent_rpcs.list_adaptive_mt_datasets if parent_rpcs.respond_to? :list_adaptive_mt_datasets
      @list_adaptive_mt_datasets = ::Gapic::Config::Method.new list_adaptive_mt_datasets_config
      adaptive_mt_translate_config = parent_rpcs.adaptive_mt_translate if parent_rpcs.respond_to? :adaptive_mt_translate
      @adaptive_mt_translate = ::Gapic::Config::Method.new adaptive_mt_translate_config
      get_adaptive_mt_file_config = parent_rpcs.get_adaptive_mt_file if parent_rpcs.respond_to? :get_adaptive_mt_file
      @get_adaptive_mt_file = ::Gapic::Config::Method.new get_adaptive_mt_file_config
      delete_adaptive_mt_file_config = parent_rpcs.delete_adaptive_mt_file if parent_rpcs.respond_to? :delete_adaptive_mt_file
      @delete_adaptive_mt_file = ::Gapic::Config::Method.new delete_adaptive_mt_file_config
      import_adaptive_mt_file_config = parent_rpcs.import_adaptive_mt_file if parent_rpcs.respond_to? :import_adaptive_mt_file
      @import_adaptive_mt_file = ::Gapic::Config::Method.new import_adaptive_mt_file_config
      list_adaptive_mt_files_config = parent_rpcs.list_adaptive_mt_files if parent_rpcs.respond_to? :list_adaptive_mt_files
      @list_adaptive_mt_files = ::Gapic::Config::Method.new list_adaptive_mt_files_config
      list_adaptive_mt_sentences_config = parent_rpcs.list_adaptive_mt_sentences if parent_rpcs.respond_to? :list_adaptive_mt_sentences
      @list_adaptive_mt_sentences = ::Gapic::Config::Method.new list_adaptive_mt_sentences_config
      import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data
      @import_data = ::Gapic::Config::Method.new import_data_config
      export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data
      @export_data = ::Gapic::Config::Method.new export_data_config
      list_examples_config = parent_rpcs.list_examples if parent_rpcs.respond_to? :list_examples
      @list_examples = ::Gapic::Config::Method.new list_examples_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config

      yield self if block_given?
    end
  end
end

#credentials::Object

Credentials to send with calls. You may provide any of the following types:

  • (String) The path to a service account key file in JSON format
  • (Hash) A service account key as a Hash
  • (Google::Auth::Credentials) A googleauth credentials object (see the googleauth docs)
  • (Signet::OAuth2::Client) A signet oauth2 client object (see the signet docs)
  • (GRPC::Core::Channel) a gRPC channel with included credentials
  • (GRPC::Core::ChannelCredentials) a gRPC credentails object
  • (nil) indicating no credentials

Returns:

  • (::Object)


4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
# File 'lib/google/cloud/translate/v3/translation_service/client.rb', line 4216

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "translate.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the TranslationService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_text
    ##
    # RPC-specific configuration for `romanize_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :romanize_text
    ##
    # RPC-specific configuration for `detect_language`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detect_language
    ##
    # RPC-specific configuration for `get_supported_languages`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_supported_languages
    ##
    # RPC-specific configuration for `translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_document
    ##
    # RPC-specific configuration for `batch_translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_text
    ##
    # RPC-specific configuration for `batch_translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_document
    ##
    # RPC-specific configuration for `create_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary
    ##
    # RPC-specific configuration for `update_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary
    ##
    # RPC-specific configuration for `list_glossaries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossaries
    ##
    # RPC-specific configuration for `get_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary
    ##
    # RPC-specific configuration for `delete_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary
    ##
    # RPC-specific configuration for `get_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary_entry
    ##
    # RPC-specific configuration for `list_glossary_entries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossary_entries
    ##
    # RPC-specific configuration for `create_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary_entry
    ##
    # RPC-specific configuration for `update_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary_entry
    ##
    # RPC-specific configuration for `delete_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary_entry
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `create_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `delete_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `get_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `list_adaptive_mt_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_datasets
    ##
    # RPC-specific configuration for `adaptive_mt_translate`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :adaptive_mt_translate
    ##
    # RPC-specific configuration for `get_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_file
    ##
    # RPC-specific configuration for `delete_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_file
    ##
    # RPC-specific configuration for `import_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_adaptive_mt_file
    ##
    # RPC-specific configuration for `list_adaptive_mt_files`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_files
    ##
    # RPC-specific configuration for `list_adaptive_mt_sentences`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_sentences
    ##
    # RPC-specific configuration for `import_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_data
    ##
    # RPC-specific configuration for `export_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_data
    ##
    # RPC-specific configuration for `list_examples`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_examples
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model

    # @private
    def initialize parent_rpcs = nil
      translate_text_config = parent_rpcs.translate_text if parent_rpcs.respond_to? :translate_text
      @translate_text = ::Gapic::Config::Method.new translate_text_config
      romanize_text_config = parent_rpcs.romanize_text if parent_rpcs.respond_to? :romanize_text
      @romanize_text = ::Gapic::Config::Method.new romanize_text_config
      detect_language_config = parent_rpcs.detect_language if parent_rpcs.respond_to? :detect_language
      @detect_language = ::Gapic::Config::Method.new detect_language_config
      get_supported_languages_config = parent_rpcs.get_supported_languages if parent_rpcs.respond_to? :get_supported_languages
      @get_supported_languages = ::Gapic::Config::Method.new get_supported_languages_config
      translate_document_config = parent_rpcs.translate_document if parent_rpcs.respond_to? :translate_document
      @translate_document = ::Gapic::Config::Method.new translate_document_config
      batch_translate_text_config = parent_rpcs.batch_translate_text if parent_rpcs.respond_to? :batch_translate_text
      @batch_translate_text = ::Gapic::Config::Method.new batch_translate_text_config
      batch_translate_document_config = parent_rpcs.batch_translate_document if parent_rpcs.respond_to? :batch_translate_document
      @batch_translate_document = ::Gapic::Config::Method.new batch_translate_document_config
      create_glossary_config = parent_rpcs.create_glossary if parent_rpcs.respond_to? :create_glossary
      @create_glossary = ::Gapic::Config::Method.new create_glossary_config
      update_glossary_config = parent_rpcs.update_glossary if parent_rpcs.respond_to? :update_glossary
      @update_glossary = ::Gapic::Config::Method.new update_glossary_config
      list_glossaries_config = parent_rpcs.list_glossaries if parent_rpcs.respond_to? :list_glossaries
      @list_glossaries = ::Gapic::Config::Method.new list_glossaries_config
      get_glossary_config = parent_rpcs.get_glossary if parent_rpcs.respond_to? :get_glossary
      @get_glossary = ::Gapic::Config::Method.new get_glossary_config
      delete_glossary_config = parent_rpcs.delete_glossary if parent_rpcs.respond_to? :delete_glossary
      @delete_glossary = ::Gapic::Config::Method.new delete_glossary_config
      get_glossary_entry_config = parent_rpcs.get_glossary_entry if parent_rpcs.respond_to? :get_glossary_entry
      @get_glossary_entry = ::Gapic::Config::Method.new get_glossary_entry_config
      list_glossary_entries_config = parent_rpcs.list_glossary_entries if parent_rpcs.respond_to? :list_glossary_entries
      @list_glossary_entries = ::Gapic::Config::Method.new list_glossary_entries_config
      create_glossary_entry_config = parent_rpcs.create_glossary_entry if parent_rpcs.respond_to? :create_glossary_entry
      @create_glossary_entry = ::Gapic::Config::Method.new create_glossary_entry_config
      update_glossary_entry_config = parent_rpcs.update_glossary_entry if parent_rpcs.respond_to? :update_glossary_entry
      @update_glossary_entry = ::Gapic::Config::Method.new update_glossary_entry_config
      delete_glossary_entry_config = parent_rpcs.delete_glossary_entry if parent_rpcs.respond_to? :delete_glossary_entry
      @delete_glossary_entry = ::Gapic::Config::Method.new delete_glossary_entry_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      create_adaptive_mt_dataset_config = parent_rpcs.create_adaptive_mt_dataset if parent_rpcs.respond_to? :create_adaptive_mt_dataset
      @create_adaptive_mt_dataset = ::Gapic::Config::Method.new create_adaptive_mt_dataset_config
      delete_adaptive_mt_dataset_config = parent_rpcs.delete_adaptive_mt_dataset if parent_rpcs.respond_to? :delete_adaptive_mt_dataset
      @delete_adaptive_mt_dataset = ::Gapic::Config::Method.new delete_adaptive_mt_dataset_config
      get_adaptive_mt_dataset_config = parent_rpcs.get_adaptive_mt_dataset if parent_rpcs.respond_to? :get_adaptive_mt_dataset
      @get_adaptive_mt_dataset = ::Gapic::Config::Method.new get_adaptive_mt_dataset_config
      list_adaptive_mt_datasets_config = parent_rpcs.list_adaptive_mt_datasets if parent_rpcs.respond_to? :list_adaptive_mt_datasets
      @list_adaptive_mt_datasets = ::Gapic::Config::Method.new list_adaptive_mt_datasets_config
      adaptive_mt_translate_config = parent_rpcs.adaptive_mt_translate if parent_rpcs.respond_to? :adaptive_mt_translate
      @adaptive_mt_translate = ::Gapic::Config::Method.new adaptive_mt_translate_config
      get_adaptive_mt_file_config = parent_rpcs.get_adaptive_mt_file if parent_rpcs.respond_to? :get_adaptive_mt_file
      @get_adaptive_mt_file = ::Gapic::Config::Method.new get_adaptive_mt_file_config
      delete_adaptive_mt_file_config = parent_rpcs.delete_adaptive_mt_file if parent_rpcs.respond_to? :delete_adaptive_mt_file
      @delete_adaptive_mt_file = ::Gapic::Config::Method.new delete_adaptive_mt_file_config
      import_adaptive_mt_file_config = parent_rpcs.import_adaptive_mt_file if parent_rpcs.respond_to? :import_adaptive_mt_file
      @import_adaptive_mt_file = ::Gapic::Config::Method.new import_adaptive_mt_file_config
      list_adaptive_mt_files_config = parent_rpcs.list_adaptive_mt_files if parent_rpcs.respond_to? :list_adaptive_mt_files
      @list_adaptive_mt_files = ::Gapic::Config::Method.new list_adaptive_mt_files_config
      list_adaptive_mt_sentences_config = parent_rpcs.list_adaptive_mt_sentences if parent_rpcs.respond_to? :list_adaptive_mt_sentences
      @list_adaptive_mt_sentences = ::Gapic::Config::Method.new list_adaptive_mt_sentences_config
      import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data
      @import_data = ::Gapic::Config::Method.new import_data_config
      export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data
      @export_data = ::Gapic::Config::Method.new export_data_config
      list_examples_config = parent_rpcs.list_examples if parent_rpcs.respond_to? :list_examples
      @list_examples = ::Gapic::Config::Method.new list_examples_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config

      yield self if block_given?
    end
  end
end

#endpoint::String?

A custom service endpoint, as a hostname or hostname:port. The default is nil, indicating to use the default endpoint in the current universe domain.

Returns:

  • (::String, nil)


4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
# File 'lib/google/cloud/translate/v3/translation_service/client.rb', line 4216

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "translate.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the TranslationService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_text
    ##
    # RPC-specific configuration for `romanize_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :romanize_text
    ##
    # RPC-specific configuration for `detect_language`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detect_language
    ##
    # RPC-specific configuration for `get_supported_languages`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_supported_languages
    ##
    # RPC-specific configuration for `translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_document
    ##
    # RPC-specific configuration for `batch_translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_text
    ##
    # RPC-specific configuration for `batch_translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_document
    ##
    # RPC-specific configuration for `create_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary
    ##
    # RPC-specific configuration for `update_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary
    ##
    # RPC-specific configuration for `list_glossaries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossaries
    ##
    # RPC-specific configuration for `get_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary
    ##
    # RPC-specific configuration for `delete_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary
    ##
    # RPC-specific configuration for `get_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary_entry
    ##
    # RPC-specific configuration for `list_glossary_entries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossary_entries
    ##
    # RPC-specific configuration for `create_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary_entry
    ##
    # RPC-specific configuration for `update_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary_entry
    ##
    # RPC-specific configuration for `delete_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary_entry
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `create_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `delete_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `get_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `list_adaptive_mt_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_datasets
    ##
    # RPC-specific configuration for `adaptive_mt_translate`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :adaptive_mt_translate
    ##
    # RPC-specific configuration for `get_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_file
    ##
    # RPC-specific configuration for `delete_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_file
    ##
    # RPC-specific configuration for `import_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_adaptive_mt_file
    ##
    # RPC-specific configuration for `list_adaptive_mt_files`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_files
    ##
    # RPC-specific configuration for `list_adaptive_mt_sentences`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_sentences
    ##
    # RPC-specific configuration for `import_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_data
    ##
    # RPC-specific configuration for `export_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_data
    ##
    # RPC-specific configuration for `list_examples`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_examples
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model

    # @private
    def initialize parent_rpcs = nil
      translate_text_config = parent_rpcs.translate_text if parent_rpcs.respond_to? :translate_text
      @translate_text = ::Gapic::Config::Method.new translate_text_config
      romanize_text_config = parent_rpcs.romanize_text if parent_rpcs.respond_to? :romanize_text
      @romanize_text = ::Gapic::Config::Method.new romanize_text_config
      detect_language_config = parent_rpcs.detect_language if parent_rpcs.respond_to? :detect_language
      @detect_language = ::Gapic::Config::Method.new detect_language_config
      get_supported_languages_config = parent_rpcs.get_supported_languages if parent_rpcs.respond_to? :get_supported_languages
      @get_supported_languages = ::Gapic::Config::Method.new get_supported_languages_config
      translate_document_config = parent_rpcs.translate_document if parent_rpcs.respond_to? :translate_document
      @translate_document = ::Gapic::Config::Method.new translate_document_config
      batch_translate_text_config = parent_rpcs.batch_translate_text if parent_rpcs.respond_to? :batch_translate_text
      @batch_translate_text = ::Gapic::Config::Method.new batch_translate_text_config
      batch_translate_document_config = parent_rpcs.batch_translate_document if parent_rpcs.respond_to? :batch_translate_document
      @batch_translate_document = ::Gapic::Config::Method.new batch_translate_document_config
      create_glossary_config = parent_rpcs.create_glossary if parent_rpcs.respond_to? :create_glossary
      @create_glossary = ::Gapic::Config::Method.new create_glossary_config
      update_glossary_config = parent_rpcs.update_glossary if parent_rpcs.respond_to? :update_glossary
      @update_glossary = ::Gapic::Config::Method.new update_glossary_config
      list_glossaries_config = parent_rpcs.list_glossaries if parent_rpcs.respond_to? :list_glossaries
      @list_glossaries = ::Gapic::Config::Method.new list_glossaries_config
      get_glossary_config = parent_rpcs.get_glossary if parent_rpcs.respond_to? :get_glossary
      @get_glossary = ::Gapic::Config::Method.new get_glossary_config
      delete_glossary_config = parent_rpcs.delete_glossary if parent_rpcs.respond_to? :delete_glossary
      @delete_glossary = ::Gapic::Config::Method.new delete_glossary_config
      get_glossary_entry_config = parent_rpcs.get_glossary_entry if parent_rpcs.respond_to? :get_glossary_entry
      @get_glossary_entry = ::Gapic::Config::Method.new get_glossary_entry_config
      list_glossary_entries_config = parent_rpcs.list_glossary_entries if parent_rpcs.respond_to? :list_glossary_entries
      @list_glossary_entries = ::Gapic::Config::Method.new list_glossary_entries_config
      create_glossary_entry_config = parent_rpcs.create_glossary_entry if parent_rpcs.respond_to? :create_glossary_entry
      @create_glossary_entry = ::Gapic::Config::Method.new create_glossary_entry_config
      update_glossary_entry_config = parent_rpcs.update_glossary_entry if parent_rpcs.respond_to? :update_glossary_entry
      @update_glossary_entry = ::Gapic::Config::Method.new update_glossary_entry_config
      delete_glossary_entry_config = parent_rpcs.delete_glossary_entry if parent_rpcs.respond_to? :delete_glossary_entry
      @delete_glossary_entry = ::Gapic::Config::Method.new delete_glossary_entry_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      create_adaptive_mt_dataset_config = parent_rpcs.create_adaptive_mt_dataset if parent_rpcs.respond_to? :create_adaptive_mt_dataset
      @create_adaptive_mt_dataset = ::Gapic::Config::Method.new create_adaptive_mt_dataset_config
      delete_adaptive_mt_dataset_config = parent_rpcs.delete_adaptive_mt_dataset if parent_rpcs.respond_to? :delete_adaptive_mt_dataset
      @delete_adaptive_mt_dataset = ::Gapic::Config::Method.new delete_adaptive_mt_dataset_config
      get_adaptive_mt_dataset_config = parent_rpcs.get_adaptive_mt_dataset if parent_rpcs.respond_to? :get_adaptive_mt_dataset
      @get_adaptive_mt_dataset = ::Gapic::Config::Method.new get_adaptive_mt_dataset_config
      list_adaptive_mt_datasets_config = parent_rpcs.list_adaptive_mt_datasets if parent_rpcs.respond_to? :list_adaptive_mt_datasets
      @list_adaptive_mt_datasets = ::Gapic::Config::Method.new list_adaptive_mt_datasets_config
      adaptive_mt_translate_config = parent_rpcs.adaptive_mt_translate if parent_rpcs.respond_to? :adaptive_mt_translate
      @adaptive_mt_translate = ::Gapic::Config::Method.new adaptive_mt_translate_config
      get_adaptive_mt_file_config = parent_rpcs.get_adaptive_mt_file if parent_rpcs.respond_to? :get_adaptive_mt_file
      @get_adaptive_mt_file = ::Gapic::Config::Method.new get_adaptive_mt_file_config
      delete_adaptive_mt_file_config = parent_rpcs.delete_adaptive_mt_file if parent_rpcs.respond_to? :delete_adaptive_mt_file
      @delete_adaptive_mt_file = ::Gapic::Config::Method.new delete_adaptive_mt_file_config
      import_adaptive_mt_file_config = parent_rpcs.import_adaptive_mt_file if parent_rpcs.respond_to? :import_adaptive_mt_file
      @import_adaptive_mt_file = ::Gapic::Config::Method.new import_adaptive_mt_file_config
      list_adaptive_mt_files_config = parent_rpcs.list_adaptive_mt_files if parent_rpcs.respond_to? :list_adaptive_mt_files
      @list_adaptive_mt_files = ::Gapic::Config::Method.new list_adaptive_mt_files_config
      list_adaptive_mt_sentences_config = parent_rpcs.list_adaptive_mt_sentences if parent_rpcs.respond_to? :list_adaptive_mt_sentences
      @list_adaptive_mt_sentences = ::Gapic::Config::Method.new list_adaptive_mt_sentences_config
      import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data
      @import_data = ::Gapic::Config::Method.new import_data_config
      export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data
      @export_data = ::Gapic::Config::Method.new export_data_config
      list_examples_config = parent_rpcs.list_examples if parent_rpcs.respond_to? :list_examples
      @list_examples = ::Gapic::Config::Method.new list_examples_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config

      yield self if block_given?
    end
  end
end

#interceptors::Array<::GRPC::ClientInterceptor>

An array of interceptors that are run before calls are executed.

Returns:

  • (::Array<::GRPC::ClientInterceptor>)


4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
# File 'lib/google/cloud/translate/v3/translation_service/client.rb', line 4216

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "translate.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the TranslationService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_text
    ##
    # RPC-specific configuration for `romanize_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :romanize_text
    ##
    # RPC-specific configuration for `detect_language`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detect_language
    ##
    # RPC-specific configuration for `get_supported_languages`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_supported_languages
    ##
    # RPC-specific configuration for `translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_document
    ##
    # RPC-specific configuration for `batch_translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_text
    ##
    # RPC-specific configuration for `batch_translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_document
    ##
    # RPC-specific configuration for `create_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary
    ##
    # RPC-specific configuration for `update_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary
    ##
    # RPC-specific configuration for `list_glossaries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossaries
    ##
    # RPC-specific configuration for `get_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary
    ##
    # RPC-specific configuration for `delete_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary
    ##
    # RPC-specific configuration for `get_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary_entry
    ##
    # RPC-specific configuration for `list_glossary_entries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossary_entries
    ##
    # RPC-specific configuration for `create_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary_entry
    ##
    # RPC-specific configuration for `update_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary_entry
    ##
    # RPC-specific configuration for `delete_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary_entry
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `create_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `delete_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `get_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `list_adaptive_mt_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_datasets
    ##
    # RPC-specific configuration for `adaptive_mt_translate`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :adaptive_mt_translate
    ##
    # RPC-specific configuration for `get_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_file
    ##
    # RPC-specific configuration for `delete_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_file
    ##
    # RPC-specific configuration for `import_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_adaptive_mt_file
    ##
    # RPC-specific configuration for `list_adaptive_mt_files`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_files
    ##
    # RPC-specific configuration for `list_adaptive_mt_sentences`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_sentences
    ##
    # RPC-specific configuration for `import_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_data
    ##
    # RPC-specific configuration for `export_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_data
    ##
    # RPC-specific configuration for `list_examples`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_examples
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model

    # @private
    def initialize parent_rpcs = nil
      translate_text_config = parent_rpcs.translate_text if parent_rpcs.respond_to? :translate_text
      @translate_text = ::Gapic::Config::Method.new translate_text_config
      romanize_text_config = parent_rpcs.romanize_text if parent_rpcs.respond_to? :romanize_text
      @romanize_text = ::Gapic::Config::Method.new romanize_text_config
      detect_language_config = parent_rpcs.detect_language if parent_rpcs.respond_to? :detect_language
      @detect_language = ::Gapic::Config::Method.new detect_language_config
      get_supported_languages_config = parent_rpcs.get_supported_languages if parent_rpcs.respond_to? :get_supported_languages
      @get_supported_languages = ::Gapic::Config::Method.new get_supported_languages_config
      translate_document_config = parent_rpcs.translate_document if parent_rpcs.respond_to? :translate_document
      @translate_document = ::Gapic::Config::Method.new translate_document_config
      batch_translate_text_config = parent_rpcs.batch_translate_text if parent_rpcs.respond_to? :batch_translate_text
      @batch_translate_text = ::Gapic::Config::Method.new batch_translate_text_config
      batch_translate_document_config = parent_rpcs.batch_translate_document if parent_rpcs.respond_to? :batch_translate_document
      @batch_translate_document = ::Gapic::Config::Method.new batch_translate_document_config
      create_glossary_config = parent_rpcs.create_glossary if parent_rpcs.respond_to? :create_glossary
      @create_glossary = ::Gapic::Config::Method.new create_glossary_config
      update_glossary_config = parent_rpcs.update_glossary if parent_rpcs.respond_to? :update_glossary
      @update_glossary = ::Gapic::Config::Method.new update_glossary_config
      list_glossaries_config = parent_rpcs.list_glossaries if parent_rpcs.respond_to? :list_glossaries
      @list_glossaries = ::Gapic::Config::Method.new list_glossaries_config
      get_glossary_config = parent_rpcs.get_glossary if parent_rpcs.respond_to? :get_glossary
      @get_glossary = ::Gapic::Config::Method.new get_glossary_config
      delete_glossary_config = parent_rpcs.delete_glossary if parent_rpcs.respond_to? :delete_glossary
      @delete_glossary = ::Gapic::Config::Method.new delete_glossary_config
      get_glossary_entry_config = parent_rpcs.get_glossary_entry if parent_rpcs.respond_to? :get_glossary_entry
      @get_glossary_entry = ::Gapic::Config::Method.new get_glossary_entry_config
      list_glossary_entries_config = parent_rpcs.list_glossary_entries if parent_rpcs.respond_to? :list_glossary_entries
      @list_glossary_entries = ::Gapic::Config::Method.new list_glossary_entries_config
      create_glossary_entry_config = parent_rpcs.create_glossary_entry if parent_rpcs.respond_to? :create_glossary_entry
      @create_glossary_entry = ::Gapic::Config::Method.new create_glossary_entry_config
      update_glossary_entry_config = parent_rpcs.update_glossary_entry if parent_rpcs.respond_to? :update_glossary_entry
      @update_glossary_entry = ::Gapic::Config::Method.new update_glossary_entry_config
      delete_glossary_entry_config = parent_rpcs.delete_glossary_entry if parent_rpcs.respond_to? :delete_glossary_entry
      @delete_glossary_entry = ::Gapic::Config::Method.new delete_glossary_entry_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      create_adaptive_mt_dataset_config = parent_rpcs.create_adaptive_mt_dataset if parent_rpcs.respond_to? :create_adaptive_mt_dataset
      @create_adaptive_mt_dataset = ::Gapic::Config::Method.new create_adaptive_mt_dataset_config
      delete_adaptive_mt_dataset_config = parent_rpcs.delete_adaptive_mt_dataset if parent_rpcs.respond_to? :delete_adaptive_mt_dataset
      @delete_adaptive_mt_dataset = ::Gapic::Config::Method.new delete_adaptive_mt_dataset_config
      get_adaptive_mt_dataset_config = parent_rpcs.get_adaptive_mt_dataset if parent_rpcs.respond_to? :get_adaptive_mt_dataset
      @get_adaptive_mt_dataset = ::Gapic::Config::Method.new get_adaptive_mt_dataset_config
      list_adaptive_mt_datasets_config = parent_rpcs.list_adaptive_mt_datasets if parent_rpcs.respond_to? :list_adaptive_mt_datasets
      @list_adaptive_mt_datasets = ::Gapic::Config::Method.new list_adaptive_mt_datasets_config
      adaptive_mt_translate_config = parent_rpcs.adaptive_mt_translate if parent_rpcs.respond_to? :adaptive_mt_translate
      @adaptive_mt_translate = ::Gapic::Config::Method.new adaptive_mt_translate_config
      get_adaptive_mt_file_config = parent_rpcs.get_adaptive_mt_file if parent_rpcs.respond_to? :get_adaptive_mt_file
      @get_adaptive_mt_file = ::Gapic::Config::Method.new get_adaptive_mt_file_config
      delete_adaptive_mt_file_config = parent_rpcs.delete_adaptive_mt_file if parent_rpcs.respond_to? :delete_adaptive_mt_file
      @delete_adaptive_mt_file = ::Gapic::Config::Method.new delete_adaptive_mt_file_config
      import_adaptive_mt_file_config = parent_rpcs.import_adaptive_mt_file if parent_rpcs.respond_to? :import_adaptive_mt_file
      @import_adaptive_mt_file = ::Gapic::Config::Method.new import_adaptive_mt_file_config
      list_adaptive_mt_files_config = parent_rpcs.list_adaptive_mt_files if parent_rpcs.respond_to? :list_adaptive_mt_files
      @list_adaptive_mt_files = ::Gapic::Config::Method.new list_adaptive_mt_files_config
      list_adaptive_mt_sentences_config = parent_rpcs.list_adaptive_mt_sentences if parent_rpcs.respond_to? :list_adaptive_mt_sentences
      @list_adaptive_mt_sentences = ::Gapic::Config::Method.new list_adaptive_mt_sentences_config
      import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data
      @import_data = ::Gapic::Config::Method.new import_data_config
      export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data
      @export_data = ::Gapic::Config::Method.new export_data_config
      list_examples_config = parent_rpcs.list_examples if parent_rpcs.respond_to? :list_examples
      @list_examples = ::Gapic::Config::Method.new list_examples_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config

      yield self if block_given?
    end
  end
end

#lib_name::String

The library name as recorded in instrumentation and logging

Returns:

  • (::String)


4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
# File 'lib/google/cloud/translate/v3/translation_service/client.rb', line 4216

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "translate.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the TranslationService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_text
    ##
    # RPC-specific configuration for `romanize_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :romanize_text
    ##
    # RPC-specific configuration for `detect_language`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detect_language
    ##
    # RPC-specific configuration for `get_supported_languages`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_supported_languages
    ##
    # RPC-specific configuration for `translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_document
    ##
    # RPC-specific configuration for `batch_translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_text
    ##
    # RPC-specific configuration for `batch_translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_document
    ##
    # RPC-specific configuration for `create_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary
    ##
    # RPC-specific configuration for `update_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary
    ##
    # RPC-specific configuration for `list_glossaries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossaries
    ##
    # RPC-specific configuration for `get_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary
    ##
    # RPC-specific configuration for `delete_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary
    ##
    # RPC-specific configuration for `get_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary_entry
    ##
    # RPC-specific configuration for `list_glossary_entries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossary_entries
    ##
    # RPC-specific configuration for `create_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary_entry
    ##
    # RPC-specific configuration for `update_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary_entry
    ##
    # RPC-specific configuration for `delete_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary_entry
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `create_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `delete_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `get_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `list_adaptive_mt_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_datasets
    ##
    # RPC-specific configuration for `adaptive_mt_translate`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :adaptive_mt_translate
    ##
    # RPC-specific configuration for `get_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_file
    ##
    # RPC-specific configuration for `delete_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_file
    ##
    # RPC-specific configuration for `import_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_adaptive_mt_file
    ##
    # RPC-specific configuration for `list_adaptive_mt_files`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_files
    ##
    # RPC-specific configuration for `list_adaptive_mt_sentences`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_sentences
    ##
    # RPC-specific configuration for `import_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_data
    ##
    # RPC-specific configuration for `export_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_data
    ##
    # RPC-specific configuration for `list_examples`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_examples
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model

    # @private
    def initialize parent_rpcs = nil
      translate_text_config = parent_rpcs.translate_text if parent_rpcs.respond_to? :translate_text
      @translate_text = ::Gapic::Config::Method.new translate_text_config
      romanize_text_config = parent_rpcs.romanize_text if parent_rpcs.respond_to? :romanize_text
      @romanize_text = ::Gapic::Config::Method.new romanize_text_config
      detect_language_config = parent_rpcs.detect_language if parent_rpcs.respond_to? :detect_language
      @detect_language = ::Gapic::Config::Method.new detect_language_config
      get_supported_languages_config = parent_rpcs.get_supported_languages if parent_rpcs.respond_to? :get_supported_languages
      @get_supported_languages = ::Gapic::Config::Method.new get_supported_languages_config
      translate_document_config = parent_rpcs.translate_document if parent_rpcs.respond_to? :translate_document
      @translate_document = ::Gapic::Config::Method.new translate_document_config
      batch_translate_text_config = parent_rpcs.batch_translate_text if parent_rpcs.respond_to? :batch_translate_text
      @batch_translate_text = ::Gapic::Config::Method.new batch_translate_text_config
      batch_translate_document_config = parent_rpcs.batch_translate_document if parent_rpcs.respond_to? :batch_translate_document
      @batch_translate_document = ::Gapic::Config::Method.new batch_translate_document_config
      create_glossary_config = parent_rpcs.create_glossary if parent_rpcs.respond_to? :create_glossary
      @create_glossary = ::Gapic::Config::Method.new create_glossary_config
      update_glossary_config = parent_rpcs.update_glossary if parent_rpcs.respond_to? :update_glossary
      @update_glossary = ::Gapic::Config::Method.new update_glossary_config
      list_glossaries_config = parent_rpcs.list_glossaries if parent_rpcs.respond_to? :list_glossaries
      @list_glossaries = ::Gapic::Config::Method.new list_glossaries_config
      get_glossary_config = parent_rpcs.get_glossary if parent_rpcs.respond_to? :get_glossary
      @get_glossary = ::Gapic::Config::Method.new get_glossary_config
      delete_glossary_config = parent_rpcs.delete_glossary if parent_rpcs.respond_to? :delete_glossary
      @delete_glossary = ::Gapic::Config::Method.new delete_glossary_config
      get_glossary_entry_config = parent_rpcs.get_glossary_entry if parent_rpcs.respond_to? :get_glossary_entry
      @get_glossary_entry = ::Gapic::Config::Method.new get_glossary_entry_config
      list_glossary_entries_config = parent_rpcs.list_glossary_entries if parent_rpcs.respond_to? :list_glossary_entries
      @list_glossary_entries = ::Gapic::Config::Method.new list_glossary_entries_config
      create_glossary_entry_config = parent_rpcs.create_glossary_entry if parent_rpcs.respond_to? :create_glossary_entry
      @create_glossary_entry = ::Gapic::Config::Method.new create_glossary_entry_config
      update_glossary_entry_config = parent_rpcs.update_glossary_entry if parent_rpcs.respond_to? :update_glossary_entry
      @update_glossary_entry = ::Gapic::Config::Method.new update_glossary_entry_config
      delete_glossary_entry_config = parent_rpcs.delete_glossary_entry if parent_rpcs.respond_to? :delete_glossary_entry
      @delete_glossary_entry = ::Gapic::Config::Method.new delete_glossary_entry_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      create_adaptive_mt_dataset_config = parent_rpcs.create_adaptive_mt_dataset if parent_rpcs.respond_to? :create_adaptive_mt_dataset
      @create_adaptive_mt_dataset = ::Gapic::Config::Method.new create_adaptive_mt_dataset_config
      delete_adaptive_mt_dataset_config = parent_rpcs.delete_adaptive_mt_dataset if parent_rpcs.respond_to? :delete_adaptive_mt_dataset
      @delete_adaptive_mt_dataset = ::Gapic::Config::Method.new delete_adaptive_mt_dataset_config
      get_adaptive_mt_dataset_config = parent_rpcs.get_adaptive_mt_dataset if parent_rpcs.respond_to? :get_adaptive_mt_dataset
      @get_adaptive_mt_dataset = ::Gapic::Config::Method.new get_adaptive_mt_dataset_config
      list_adaptive_mt_datasets_config = parent_rpcs.list_adaptive_mt_datasets if parent_rpcs.respond_to? :list_adaptive_mt_datasets
      @list_adaptive_mt_datasets = ::Gapic::Config::Method.new list_adaptive_mt_datasets_config
      adaptive_mt_translate_config = parent_rpcs.adaptive_mt_translate if parent_rpcs.respond_to? :adaptive_mt_translate
      @adaptive_mt_translate = ::Gapic::Config::Method.new adaptive_mt_translate_config
      get_adaptive_mt_file_config = parent_rpcs.get_adaptive_mt_file if parent_rpcs.respond_to? :get_adaptive_mt_file
      @get_adaptive_mt_file = ::Gapic::Config::Method.new get_adaptive_mt_file_config
      delete_adaptive_mt_file_config = parent_rpcs.delete_adaptive_mt_file if parent_rpcs.respond_to? :delete_adaptive_mt_file
      @delete_adaptive_mt_file = ::Gapic::Config::Method.new delete_adaptive_mt_file_config
      import_adaptive_mt_file_config = parent_rpcs.import_adaptive_mt_file if parent_rpcs.respond_to? :import_adaptive_mt_file
      @import_adaptive_mt_file = ::Gapic::Config::Method.new import_adaptive_mt_file_config
      list_adaptive_mt_files_config = parent_rpcs.list_adaptive_mt_files if parent_rpcs.respond_to? :list_adaptive_mt_files
      @list_adaptive_mt_files = ::Gapic::Config::Method.new list_adaptive_mt_files_config
      list_adaptive_mt_sentences_config = parent_rpcs.list_adaptive_mt_sentences if parent_rpcs.respond_to? :list_adaptive_mt_sentences
      @list_adaptive_mt_sentences = ::Gapic::Config::Method.new list_adaptive_mt_sentences_config
      import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data
      @import_data = ::Gapic::Config::Method.new import_data_config
      export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data
      @export_data = ::Gapic::Config::Method.new export_data_config
      list_examples_config = parent_rpcs.list_examples if parent_rpcs.respond_to? :list_examples
      @list_examples = ::Gapic::Config::Method.new list_examples_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config

      yield self if block_given?
    end
  end
end

#lib_version::String

The library version as recorded in instrumentation and logging

Returns:

  • (::String)


4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
# File 'lib/google/cloud/translate/v3/translation_service/client.rb', line 4216

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "translate.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the TranslationService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_text
    ##
    # RPC-specific configuration for `romanize_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :romanize_text
    ##
    # RPC-specific configuration for `detect_language`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detect_language
    ##
    # RPC-specific configuration for `get_supported_languages`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_supported_languages
    ##
    # RPC-specific configuration for `translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_document
    ##
    # RPC-specific configuration for `batch_translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_text
    ##
    # RPC-specific configuration for `batch_translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_document
    ##
    # RPC-specific configuration for `create_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary
    ##
    # RPC-specific configuration for `update_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary
    ##
    # RPC-specific configuration for `list_glossaries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossaries
    ##
    # RPC-specific configuration for `get_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary
    ##
    # RPC-specific configuration for `delete_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary
    ##
    # RPC-specific configuration for `get_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary_entry
    ##
    # RPC-specific configuration for `list_glossary_entries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossary_entries
    ##
    # RPC-specific configuration for `create_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary_entry
    ##
    # RPC-specific configuration for `update_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary_entry
    ##
    # RPC-specific configuration for `delete_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary_entry
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `create_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `delete_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `get_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `list_adaptive_mt_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_datasets
    ##
    # RPC-specific configuration for `adaptive_mt_translate`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :adaptive_mt_translate
    ##
    # RPC-specific configuration for `get_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_file
    ##
    # RPC-specific configuration for `delete_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_file
    ##
    # RPC-specific configuration for `import_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_adaptive_mt_file
    ##
    # RPC-specific configuration for `list_adaptive_mt_files`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_files
    ##
    # RPC-specific configuration for `list_adaptive_mt_sentences`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_sentences
    ##
    # RPC-specific configuration for `import_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_data
    ##
    # RPC-specific configuration for `export_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_data
    ##
    # RPC-specific configuration for `list_examples`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_examples
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model

    # @private
    def initialize parent_rpcs = nil
      translate_text_config = parent_rpcs.translate_text if parent_rpcs.respond_to? :translate_text
      @translate_text = ::Gapic::Config::Method.new translate_text_config
      romanize_text_config = parent_rpcs.romanize_text if parent_rpcs.respond_to? :romanize_text
      @romanize_text = ::Gapic::Config::Method.new romanize_text_config
      detect_language_config = parent_rpcs.detect_language if parent_rpcs.respond_to? :detect_language
      @detect_language = ::Gapic::Config::Method.new detect_language_config
      get_supported_languages_config = parent_rpcs.get_supported_languages if parent_rpcs.respond_to? :get_supported_languages
      @get_supported_languages = ::Gapic::Config::Method.new get_supported_languages_config
      translate_document_config = parent_rpcs.translate_document if parent_rpcs.respond_to? :translate_document
      @translate_document = ::Gapic::Config::Method.new translate_document_config
      batch_translate_text_config = parent_rpcs.batch_translate_text if parent_rpcs.respond_to? :batch_translate_text
      @batch_translate_text = ::Gapic::Config::Method.new batch_translate_text_config
      batch_translate_document_config = parent_rpcs.batch_translate_document if parent_rpcs.respond_to? :batch_translate_document
      @batch_translate_document = ::Gapic::Config::Method.new batch_translate_document_config
      create_glossary_config = parent_rpcs.create_glossary if parent_rpcs.respond_to? :create_glossary
      @create_glossary = ::Gapic::Config::Method.new create_glossary_config
      update_glossary_config = parent_rpcs.update_glossary if parent_rpcs.respond_to? :update_glossary
      @update_glossary = ::Gapic::Config::Method.new update_glossary_config
      list_glossaries_config = parent_rpcs.list_glossaries if parent_rpcs.respond_to? :list_glossaries
      @list_glossaries = ::Gapic::Config::Method.new list_glossaries_config
      get_glossary_config = parent_rpcs.get_glossary if parent_rpcs.respond_to? :get_glossary
      @get_glossary = ::Gapic::Config::Method.new get_glossary_config
      delete_glossary_config = parent_rpcs.delete_glossary if parent_rpcs.respond_to? :delete_glossary
      @delete_glossary = ::Gapic::Config::Method.new delete_glossary_config
      get_glossary_entry_config = parent_rpcs.get_glossary_entry if parent_rpcs.respond_to? :get_glossary_entry
      @get_glossary_entry = ::Gapic::Config::Method.new get_glossary_entry_config
      list_glossary_entries_config = parent_rpcs.list_glossary_entries if parent_rpcs.respond_to? :list_glossary_entries
      @list_glossary_entries = ::Gapic::Config::Method.new list_glossary_entries_config
      create_glossary_entry_config = parent_rpcs.create_glossary_entry if parent_rpcs.respond_to? :create_glossary_entry
      @create_glossary_entry = ::Gapic::Config::Method.new create_glossary_entry_config
      update_glossary_entry_config = parent_rpcs.update_glossary_entry if parent_rpcs.respond_to? :update_glossary_entry
      @update_glossary_entry = ::Gapic::Config::Method.new update_glossary_entry_config
      delete_glossary_entry_config = parent_rpcs.delete_glossary_entry if parent_rpcs.respond_to? :delete_glossary_entry
      @delete_glossary_entry = ::Gapic::Config::Method.new delete_glossary_entry_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      create_adaptive_mt_dataset_config = parent_rpcs.create_adaptive_mt_dataset if parent_rpcs.respond_to? :create_adaptive_mt_dataset
      @create_adaptive_mt_dataset = ::Gapic::Config::Method.new create_adaptive_mt_dataset_config
      delete_adaptive_mt_dataset_config = parent_rpcs.delete_adaptive_mt_dataset if parent_rpcs.respond_to? :delete_adaptive_mt_dataset
      @delete_adaptive_mt_dataset = ::Gapic::Config::Method.new delete_adaptive_mt_dataset_config
      get_adaptive_mt_dataset_config = parent_rpcs.get_adaptive_mt_dataset if parent_rpcs.respond_to? :get_adaptive_mt_dataset
      @get_adaptive_mt_dataset = ::Gapic::Config::Method.new get_adaptive_mt_dataset_config
      list_adaptive_mt_datasets_config = parent_rpcs.list_adaptive_mt_datasets if parent_rpcs.respond_to? :list_adaptive_mt_datasets
      @list_adaptive_mt_datasets = ::Gapic::Config::Method.new list_adaptive_mt_datasets_config
      adaptive_mt_translate_config = parent_rpcs.adaptive_mt_translate if parent_rpcs.respond_to? :adaptive_mt_translate
      @adaptive_mt_translate = ::Gapic::Config::Method.new adaptive_mt_translate_config
      get_adaptive_mt_file_config = parent_rpcs.get_adaptive_mt_file if parent_rpcs.respond_to? :get_adaptive_mt_file
      @get_adaptive_mt_file = ::Gapic::Config::Method.new get_adaptive_mt_file_config
      delete_adaptive_mt_file_config = parent_rpcs.delete_adaptive_mt_file if parent_rpcs.respond_to? :delete_adaptive_mt_file
      @delete_adaptive_mt_file = ::Gapic::Config::Method.new delete_adaptive_mt_file_config
      import_adaptive_mt_file_config = parent_rpcs.import_adaptive_mt_file if parent_rpcs.respond_to? :import_adaptive_mt_file
      @import_adaptive_mt_file = ::Gapic::Config::Method.new import_adaptive_mt_file_config
      list_adaptive_mt_files_config = parent_rpcs.list_adaptive_mt_files if parent_rpcs.respond_to? :list_adaptive_mt_files
      @list_adaptive_mt_files = ::Gapic::Config::Method.new list_adaptive_mt_files_config
      list_adaptive_mt_sentences_config = parent_rpcs.list_adaptive_mt_sentences if parent_rpcs.respond_to? :list_adaptive_mt_sentences
      @list_adaptive_mt_sentences = ::Gapic::Config::Method.new list_adaptive_mt_sentences_config
      import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data
      @import_data = ::Gapic::Config::Method.new import_data_config
      export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data
      @export_data = ::Gapic::Config::Method.new export_data_config
      list_examples_config = parent_rpcs.list_examples if parent_rpcs.respond_to? :list_examples
      @list_examples = ::Gapic::Config::Method.new list_examples_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config

      yield self if block_given?
    end
  end
end

#metadata::Hash{::Symbol=>::String}

Additional gRPC headers to be sent with the call.

Returns:

  • (::Hash{::Symbol=>::String})


4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
# File 'lib/google/cloud/translate/v3/translation_service/client.rb', line 4216

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "translate.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the TranslationService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_text
    ##
    # RPC-specific configuration for `romanize_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :romanize_text
    ##
    # RPC-specific configuration for `detect_language`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detect_language
    ##
    # RPC-specific configuration for `get_supported_languages`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_supported_languages
    ##
    # RPC-specific configuration for `translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_document
    ##
    # RPC-specific configuration for `batch_translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_text
    ##
    # RPC-specific configuration for `batch_translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_document
    ##
    # RPC-specific configuration for `create_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary
    ##
    # RPC-specific configuration for `update_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary
    ##
    # RPC-specific configuration for `list_glossaries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossaries
    ##
    # RPC-specific configuration for `get_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary
    ##
    # RPC-specific configuration for `delete_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary
    ##
    # RPC-specific configuration for `get_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary_entry
    ##
    # RPC-specific configuration for `list_glossary_entries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossary_entries
    ##
    # RPC-specific configuration for `create_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary_entry
    ##
    # RPC-specific configuration for `update_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary_entry
    ##
    # RPC-specific configuration for `delete_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary_entry
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `create_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `delete_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `get_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `list_adaptive_mt_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_datasets
    ##
    # RPC-specific configuration for `adaptive_mt_translate`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :adaptive_mt_translate
    ##
    # RPC-specific configuration for `get_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_file
    ##
    # RPC-specific configuration for `delete_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_file
    ##
    # RPC-specific configuration for `import_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_adaptive_mt_file
    ##
    # RPC-specific configuration for `list_adaptive_mt_files`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_files
    ##
    # RPC-specific configuration for `list_adaptive_mt_sentences`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_sentences
    ##
    # RPC-specific configuration for `import_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_data
    ##
    # RPC-specific configuration for `export_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_data
    ##
    # RPC-specific configuration for `list_examples`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_examples
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model

    # @private
    def initialize parent_rpcs = nil
      translate_text_config = parent_rpcs.translate_text if parent_rpcs.respond_to? :translate_text
      @translate_text = ::Gapic::Config::Method.new translate_text_config
      romanize_text_config = parent_rpcs.romanize_text if parent_rpcs.respond_to? :romanize_text
      @romanize_text = ::Gapic::Config::Method.new romanize_text_config
      detect_language_config = parent_rpcs.detect_language if parent_rpcs.respond_to? :detect_language
      @detect_language = ::Gapic::Config::Method.new detect_language_config
      get_supported_languages_config = parent_rpcs.get_supported_languages if parent_rpcs.respond_to? :get_supported_languages
      @get_supported_languages = ::Gapic::Config::Method.new get_supported_languages_config
      translate_document_config = parent_rpcs.translate_document if parent_rpcs.respond_to? :translate_document
      @translate_document = ::Gapic::Config::Method.new translate_document_config
      batch_translate_text_config = parent_rpcs.batch_translate_text if parent_rpcs.respond_to? :batch_translate_text
      @batch_translate_text = ::Gapic::Config::Method.new batch_translate_text_config
      batch_translate_document_config = parent_rpcs.batch_translate_document if parent_rpcs.respond_to? :batch_translate_document
      @batch_translate_document = ::Gapic::Config::Method.new batch_translate_document_config
      create_glossary_config = parent_rpcs.create_glossary if parent_rpcs.respond_to? :create_glossary
      @create_glossary = ::Gapic::Config::Method.new create_glossary_config
      update_glossary_config = parent_rpcs.update_glossary if parent_rpcs.respond_to? :update_glossary
      @update_glossary = ::Gapic::Config::Method.new update_glossary_config
      list_glossaries_config = parent_rpcs.list_glossaries if parent_rpcs.respond_to? :list_glossaries
      @list_glossaries = ::Gapic::Config::Method.new list_glossaries_config
      get_glossary_config = parent_rpcs.get_glossary if parent_rpcs.respond_to? :get_glossary
      @get_glossary = ::Gapic::Config::Method.new get_glossary_config
      delete_glossary_config = parent_rpcs.delete_glossary if parent_rpcs.respond_to? :delete_glossary
      @delete_glossary = ::Gapic::Config::Method.new delete_glossary_config
      get_glossary_entry_config = parent_rpcs.get_glossary_entry if parent_rpcs.respond_to? :get_glossary_entry
      @get_glossary_entry = ::Gapic::Config::Method.new get_glossary_entry_config
      list_glossary_entries_config = parent_rpcs.list_glossary_entries if parent_rpcs.respond_to? :list_glossary_entries
      @list_glossary_entries = ::Gapic::Config::Method.new list_glossary_entries_config
      create_glossary_entry_config = parent_rpcs.create_glossary_entry if parent_rpcs.respond_to? :create_glossary_entry
      @create_glossary_entry = ::Gapic::Config::Method.new create_glossary_entry_config
      update_glossary_entry_config = parent_rpcs.update_glossary_entry if parent_rpcs.respond_to? :update_glossary_entry
      @update_glossary_entry = ::Gapic::Config::Method.new update_glossary_entry_config
      delete_glossary_entry_config = parent_rpcs.delete_glossary_entry if parent_rpcs.respond_to? :delete_glossary_entry
      @delete_glossary_entry = ::Gapic::Config::Method.new delete_glossary_entry_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      create_adaptive_mt_dataset_config = parent_rpcs.create_adaptive_mt_dataset if parent_rpcs.respond_to? :create_adaptive_mt_dataset
      @create_adaptive_mt_dataset = ::Gapic::Config::Method.new create_adaptive_mt_dataset_config
      delete_adaptive_mt_dataset_config = parent_rpcs.delete_adaptive_mt_dataset if parent_rpcs.respond_to? :delete_adaptive_mt_dataset
      @delete_adaptive_mt_dataset = ::Gapic::Config::Method.new delete_adaptive_mt_dataset_config
      get_adaptive_mt_dataset_config = parent_rpcs.get_adaptive_mt_dataset if parent_rpcs.respond_to? :get_adaptive_mt_dataset
      @get_adaptive_mt_dataset = ::Gapic::Config::Method.new get_adaptive_mt_dataset_config
      list_adaptive_mt_datasets_config = parent_rpcs.list_adaptive_mt_datasets if parent_rpcs.respond_to? :list_adaptive_mt_datasets
      @list_adaptive_mt_datasets = ::Gapic::Config::Method.new list_adaptive_mt_datasets_config
      adaptive_mt_translate_config = parent_rpcs.adaptive_mt_translate if parent_rpcs.respond_to? :adaptive_mt_translate
      @adaptive_mt_translate = ::Gapic::Config::Method.new adaptive_mt_translate_config
      get_adaptive_mt_file_config = parent_rpcs.get_adaptive_mt_file if parent_rpcs.respond_to? :get_adaptive_mt_file
      @get_adaptive_mt_file = ::Gapic::Config::Method.new get_adaptive_mt_file_config
      delete_adaptive_mt_file_config = parent_rpcs.delete_adaptive_mt_file if parent_rpcs.respond_to? :delete_adaptive_mt_file
      @delete_adaptive_mt_file = ::Gapic::Config::Method.new delete_adaptive_mt_file_config
      import_adaptive_mt_file_config = parent_rpcs.import_adaptive_mt_file if parent_rpcs.respond_to? :import_adaptive_mt_file
      @import_adaptive_mt_file = ::Gapic::Config::Method.new import_adaptive_mt_file_config
      list_adaptive_mt_files_config = parent_rpcs.list_adaptive_mt_files if parent_rpcs.respond_to? :list_adaptive_mt_files
      @list_adaptive_mt_files = ::Gapic::Config::Method.new list_adaptive_mt_files_config
      list_adaptive_mt_sentences_config = parent_rpcs.list_adaptive_mt_sentences if parent_rpcs.respond_to? :list_adaptive_mt_sentences
      @list_adaptive_mt_sentences = ::Gapic::Config::Method.new list_adaptive_mt_sentences_config
      import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data
      @import_data = ::Gapic::Config::Method.new import_data_config
      export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data
      @export_data = ::Gapic::Config::Method.new export_data_config
      list_examples_config = parent_rpcs.list_examples if parent_rpcs.respond_to? :list_examples
      @list_examples = ::Gapic::Config::Method.new list_examples_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config

      yield self if block_given?
    end
  end
end

#quota_project::String

A separate project against which to charge quota.

Returns:

  • (::String)


4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
# File 'lib/google/cloud/translate/v3/translation_service/client.rb', line 4216

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "translate.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the TranslationService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_text
    ##
    # RPC-specific configuration for `romanize_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :romanize_text
    ##
    # RPC-specific configuration for `detect_language`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detect_language
    ##
    # RPC-specific configuration for `get_supported_languages`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_supported_languages
    ##
    # RPC-specific configuration for `translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_document
    ##
    # RPC-specific configuration for `batch_translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_text
    ##
    # RPC-specific configuration for `batch_translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_document
    ##
    # RPC-specific configuration for `create_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary
    ##
    # RPC-specific configuration for `update_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary
    ##
    # RPC-specific configuration for `list_glossaries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossaries
    ##
    # RPC-specific configuration for `get_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary
    ##
    # RPC-specific configuration for `delete_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary
    ##
    # RPC-specific configuration for `get_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary_entry
    ##
    # RPC-specific configuration for `list_glossary_entries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossary_entries
    ##
    # RPC-specific configuration for `create_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary_entry
    ##
    # RPC-specific configuration for `update_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary_entry
    ##
    # RPC-specific configuration for `delete_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary_entry
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `create_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `delete_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `get_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `list_adaptive_mt_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_datasets
    ##
    # RPC-specific configuration for `adaptive_mt_translate`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :adaptive_mt_translate
    ##
    # RPC-specific configuration for `get_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_file
    ##
    # RPC-specific configuration for `delete_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_file
    ##
    # RPC-specific configuration for `import_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_adaptive_mt_file
    ##
    # RPC-specific configuration for `list_adaptive_mt_files`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_files
    ##
    # RPC-specific configuration for `list_adaptive_mt_sentences`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_sentences
    ##
    # RPC-specific configuration for `import_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_data
    ##
    # RPC-specific configuration for `export_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_data
    ##
    # RPC-specific configuration for `list_examples`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_examples
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model

    # @private
    def initialize parent_rpcs = nil
      translate_text_config = parent_rpcs.translate_text if parent_rpcs.respond_to? :translate_text
      @translate_text = ::Gapic::Config::Method.new translate_text_config
      romanize_text_config = parent_rpcs.romanize_text if parent_rpcs.respond_to? :romanize_text
      @romanize_text = ::Gapic::Config::Method.new romanize_text_config
      detect_language_config = parent_rpcs.detect_language if parent_rpcs.respond_to? :detect_language
      @detect_language = ::Gapic::Config::Method.new detect_language_config
      get_supported_languages_config = parent_rpcs.get_supported_languages if parent_rpcs.respond_to? :get_supported_languages
      @get_supported_languages = ::Gapic::Config::Method.new get_supported_languages_config
      translate_document_config = parent_rpcs.translate_document if parent_rpcs.respond_to? :translate_document
      @translate_document = ::Gapic::Config::Method.new translate_document_config
      batch_translate_text_config = parent_rpcs.batch_translate_text if parent_rpcs.respond_to? :batch_translate_text
      @batch_translate_text = ::Gapic::Config::Method.new batch_translate_text_config
      batch_translate_document_config = parent_rpcs.batch_translate_document if parent_rpcs.respond_to? :batch_translate_document
      @batch_translate_document = ::Gapic::Config::Method.new batch_translate_document_config
      create_glossary_config = parent_rpcs.create_glossary if parent_rpcs.respond_to? :create_glossary
      @create_glossary = ::Gapic::Config::Method.new create_glossary_config
      update_glossary_config = parent_rpcs.update_glossary if parent_rpcs.respond_to? :update_glossary
      @update_glossary = ::Gapic::Config::Method.new update_glossary_config
      list_glossaries_config = parent_rpcs.list_glossaries if parent_rpcs.respond_to? :list_glossaries
      @list_glossaries = ::Gapic::Config::Method.new list_glossaries_config
      get_glossary_config = parent_rpcs.get_glossary if parent_rpcs.respond_to? :get_glossary
      @get_glossary = ::Gapic::Config::Method.new get_glossary_config
      delete_glossary_config = parent_rpcs.delete_glossary if parent_rpcs.respond_to? :delete_glossary
      @delete_glossary = ::Gapic::Config::Method.new delete_glossary_config
      get_glossary_entry_config = parent_rpcs.get_glossary_entry if parent_rpcs.respond_to? :get_glossary_entry
      @get_glossary_entry = ::Gapic::Config::Method.new get_glossary_entry_config
      list_glossary_entries_config = parent_rpcs.list_glossary_entries if parent_rpcs.respond_to? :list_glossary_entries
      @list_glossary_entries = ::Gapic::Config::Method.new list_glossary_entries_config
      create_glossary_entry_config = parent_rpcs.create_glossary_entry if parent_rpcs.respond_to? :create_glossary_entry
      @create_glossary_entry = ::Gapic::Config::Method.new create_glossary_entry_config
      update_glossary_entry_config = parent_rpcs.update_glossary_entry if parent_rpcs.respond_to? :update_glossary_entry
      @update_glossary_entry = ::Gapic::Config::Method.new update_glossary_entry_config
      delete_glossary_entry_config = parent_rpcs.delete_glossary_entry if parent_rpcs.respond_to? :delete_glossary_entry
      @delete_glossary_entry = ::Gapic::Config::Method.new delete_glossary_entry_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      create_adaptive_mt_dataset_config = parent_rpcs.create_adaptive_mt_dataset if parent_rpcs.respond_to? :create_adaptive_mt_dataset
      @create_adaptive_mt_dataset = ::Gapic::Config::Method.new create_adaptive_mt_dataset_config
      delete_adaptive_mt_dataset_config = parent_rpcs.delete_adaptive_mt_dataset if parent_rpcs.respond_to? :delete_adaptive_mt_dataset
      @delete_adaptive_mt_dataset = ::Gapic::Config::Method.new delete_adaptive_mt_dataset_config
      get_adaptive_mt_dataset_config = parent_rpcs.get_adaptive_mt_dataset if parent_rpcs.respond_to? :get_adaptive_mt_dataset
      @get_adaptive_mt_dataset = ::Gapic::Config::Method.new get_adaptive_mt_dataset_config
      list_adaptive_mt_datasets_config = parent_rpcs.list_adaptive_mt_datasets if parent_rpcs.respond_to? :list_adaptive_mt_datasets
      @list_adaptive_mt_datasets = ::Gapic::Config::Method.new list_adaptive_mt_datasets_config
      adaptive_mt_translate_config = parent_rpcs.adaptive_mt_translate if parent_rpcs.respond_to? :adaptive_mt_translate
      @adaptive_mt_translate = ::Gapic::Config::Method.new adaptive_mt_translate_config
      get_adaptive_mt_file_config = parent_rpcs.get_adaptive_mt_file if parent_rpcs.respond_to? :get_adaptive_mt_file
      @get_adaptive_mt_file = ::Gapic::Config::Method.new get_adaptive_mt_file_config
      delete_adaptive_mt_file_config = parent_rpcs.delete_adaptive_mt_file if parent_rpcs.respond_to? :delete_adaptive_mt_file
      @delete_adaptive_mt_file = ::Gapic::Config::Method.new delete_adaptive_mt_file_config
      import_adaptive_mt_file_config = parent_rpcs.import_adaptive_mt_file if parent_rpcs.respond_to? :import_adaptive_mt_file
      @import_adaptive_mt_file = ::Gapic::Config::Method.new import_adaptive_mt_file_config
      list_adaptive_mt_files_config = parent_rpcs.list_adaptive_mt_files if parent_rpcs.respond_to? :list_adaptive_mt_files
      @list_adaptive_mt_files = ::Gapic::Config::Method.new list_adaptive_mt_files_config
      list_adaptive_mt_sentences_config = parent_rpcs.list_adaptive_mt_sentences if parent_rpcs.respond_to? :list_adaptive_mt_sentences
      @list_adaptive_mt_sentences = ::Gapic::Config::Method.new list_adaptive_mt_sentences_config
      import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data
      @import_data = ::Gapic::Config::Method.new import_data_config
      export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data
      @export_data = ::Gapic::Config::Method.new export_data_config
      list_examples_config = parent_rpcs.list_examples if parent_rpcs.respond_to? :list_examples
      @list_examples = ::Gapic::Config::Method.new list_examples_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config

      yield self if block_given?
    end
  end
end

#retry_policy::Hash

The retry policy. The value is a hash with the following keys:

  • :initial_delay (type: Numeric) - The initial delay in seconds.
  • :max_delay (type: Numeric) - The max delay in seconds.
  • :multiplier (type: Numeric) - The incremental backoff multiplier.
  • :retry_codes (type: Array<String>) - The error codes that should trigger a retry.

Returns:

  • (::Hash)


4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
# File 'lib/google/cloud/translate/v3/translation_service/client.rb', line 4216

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "translate.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the TranslationService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_text
    ##
    # RPC-specific configuration for `romanize_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :romanize_text
    ##
    # RPC-specific configuration for `detect_language`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detect_language
    ##
    # RPC-specific configuration for `get_supported_languages`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_supported_languages
    ##
    # RPC-specific configuration for `translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_document
    ##
    # RPC-specific configuration for `batch_translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_text
    ##
    # RPC-specific configuration for `batch_translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_document
    ##
    # RPC-specific configuration for `create_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary
    ##
    # RPC-specific configuration for `update_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary
    ##
    # RPC-specific configuration for `list_glossaries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossaries
    ##
    # RPC-specific configuration for `get_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary
    ##
    # RPC-specific configuration for `delete_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary
    ##
    # RPC-specific configuration for `get_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary_entry
    ##
    # RPC-specific configuration for `list_glossary_entries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossary_entries
    ##
    # RPC-specific configuration for `create_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary_entry
    ##
    # RPC-specific configuration for `update_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary_entry
    ##
    # RPC-specific configuration for `delete_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary_entry
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `create_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `delete_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `get_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `list_adaptive_mt_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_datasets
    ##
    # RPC-specific configuration for `adaptive_mt_translate`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :adaptive_mt_translate
    ##
    # RPC-specific configuration for `get_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_file
    ##
    # RPC-specific configuration for `delete_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_file
    ##
    # RPC-specific configuration for `import_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_adaptive_mt_file
    ##
    # RPC-specific configuration for `list_adaptive_mt_files`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_files
    ##
    # RPC-specific configuration for `list_adaptive_mt_sentences`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_sentences
    ##
    # RPC-specific configuration for `import_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_data
    ##
    # RPC-specific configuration for `export_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_data
    ##
    # RPC-specific configuration for `list_examples`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_examples
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model

    # @private
    def initialize parent_rpcs = nil
      translate_text_config = parent_rpcs.translate_text if parent_rpcs.respond_to? :translate_text
      @translate_text = ::Gapic::Config::Method.new translate_text_config
      romanize_text_config = parent_rpcs.romanize_text if parent_rpcs.respond_to? :romanize_text
      @romanize_text = ::Gapic::Config::Method.new romanize_text_config
      detect_language_config = parent_rpcs.detect_language if parent_rpcs.respond_to? :detect_language
      @detect_language = ::Gapic::Config::Method.new detect_language_config
      get_supported_languages_config = parent_rpcs.get_supported_languages if parent_rpcs.respond_to? :get_supported_languages
      @get_supported_languages = ::Gapic::Config::Method.new get_supported_languages_config
      translate_document_config = parent_rpcs.translate_document if parent_rpcs.respond_to? :translate_document
      @translate_document = ::Gapic::Config::Method.new translate_document_config
      batch_translate_text_config = parent_rpcs.batch_translate_text if parent_rpcs.respond_to? :batch_translate_text
      @batch_translate_text = ::Gapic::Config::Method.new batch_translate_text_config
      batch_translate_document_config = parent_rpcs.batch_translate_document if parent_rpcs.respond_to? :batch_translate_document
      @batch_translate_document = ::Gapic::Config::Method.new batch_translate_document_config
      create_glossary_config = parent_rpcs.create_glossary if parent_rpcs.respond_to? :create_glossary
      @create_glossary = ::Gapic::Config::Method.new create_glossary_config
      update_glossary_config = parent_rpcs.update_glossary if parent_rpcs.respond_to? :update_glossary
      @update_glossary = ::Gapic::Config::Method.new update_glossary_config
      list_glossaries_config = parent_rpcs.list_glossaries if parent_rpcs.respond_to? :list_glossaries
      @list_glossaries = ::Gapic::Config::Method.new list_glossaries_config
      get_glossary_config = parent_rpcs.get_glossary if parent_rpcs.respond_to? :get_glossary
      @get_glossary = ::Gapic::Config::Method.new get_glossary_config
      delete_glossary_config = parent_rpcs.delete_glossary if parent_rpcs.respond_to? :delete_glossary
      @delete_glossary = ::Gapic::Config::Method.new delete_glossary_config
      get_glossary_entry_config = parent_rpcs.get_glossary_entry if parent_rpcs.respond_to? :get_glossary_entry
      @get_glossary_entry = ::Gapic::Config::Method.new get_glossary_entry_config
      list_glossary_entries_config = parent_rpcs.list_glossary_entries if parent_rpcs.respond_to? :list_glossary_entries
      @list_glossary_entries = ::Gapic::Config::Method.new list_glossary_entries_config
      create_glossary_entry_config = parent_rpcs.create_glossary_entry if parent_rpcs.respond_to? :create_glossary_entry
      @create_glossary_entry = ::Gapic::Config::Method.new create_glossary_entry_config
      update_glossary_entry_config = parent_rpcs.update_glossary_entry if parent_rpcs.respond_to? :update_glossary_entry
      @update_glossary_entry = ::Gapic::Config::Method.new update_glossary_entry_config
      delete_glossary_entry_config = parent_rpcs.delete_glossary_entry if parent_rpcs.respond_to? :delete_glossary_entry
      @delete_glossary_entry = ::Gapic::Config::Method.new delete_glossary_entry_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      create_adaptive_mt_dataset_config = parent_rpcs.create_adaptive_mt_dataset if parent_rpcs.respond_to? :create_adaptive_mt_dataset
      @create_adaptive_mt_dataset = ::Gapic::Config::Method.new create_adaptive_mt_dataset_config
      delete_adaptive_mt_dataset_config = parent_rpcs.delete_adaptive_mt_dataset if parent_rpcs.respond_to? :delete_adaptive_mt_dataset
      @delete_adaptive_mt_dataset = ::Gapic::Config::Method.new delete_adaptive_mt_dataset_config
      get_adaptive_mt_dataset_config = parent_rpcs.get_adaptive_mt_dataset if parent_rpcs.respond_to? :get_adaptive_mt_dataset
      @get_adaptive_mt_dataset = ::Gapic::Config::Method.new get_adaptive_mt_dataset_config
      list_adaptive_mt_datasets_config = parent_rpcs.list_adaptive_mt_datasets if parent_rpcs.respond_to? :list_adaptive_mt_datasets
      @list_adaptive_mt_datasets = ::Gapic::Config::Method.new list_adaptive_mt_datasets_config
      adaptive_mt_translate_config = parent_rpcs.adaptive_mt_translate if parent_rpcs.respond_to? :adaptive_mt_translate
      @adaptive_mt_translate = ::Gapic::Config::Method.new adaptive_mt_translate_config
      get_adaptive_mt_file_config = parent_rpcs.get_adaptive_mt_file if parent_rpcs.respond_to? :get_adaptive_mt_file
      @get_adaptive_mt_file = ::Gapic::Config::Method.new get_adaptive_mt_file_config
      delete_adaptive_mt_file_config = parent_rpcs.delete_adaptive_mt_file if parent_rpcs.respond_to? :delete_adaptive_mt_file
      @delete_adaptive_mt_file = ::Gapic::Config::Method.new delete_adaptive_mt_file_config
      import_adaptive_mt_file_config = parent_rpcs.import_adaptive_mt_file if parent_rpcs.respond_to? :import_adaptive_mt_file
      @import_adaptive_mt_file = ::Gapic::Config::Method.new import_adaptive_mt_file_config
      list_adaptive_mt_files_config = parent_rpcs.list_adaptive_mt_files if parent_rpcs.respond_to? :list_adaptive_mt_files
      @list_adaptive_mt_files = ::Gapic::Config::Method.new list_adaptive_mt_files_config
      list_adaptive_mt_sentences_config = parent_rpcs.list_adaptive_mt_sentences if parent_rpcs.respond_to? :list_adaptive_mt_sentences
      @list_adaptive_mt_sentences = ::Gapic::Config::Method.new list_adaptive_mt_sentences_config
      import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data
      @import_data = ::Gapic::Config::Method.new import_data_config
      export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data
      @export_data = ::Gapic::Config::Method.new export_data_config
      list_examples_config = parent_rpcs.list_examples if parent_rpcs.respond_to? :list_examples
      @list_examples = ::Gapic::Config::Method.new list_examples_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config

      yield self if block_given?
    end
  end
end

#scope::Array<::String>

The OAuth scopes

Returns:

  • (::Array<::String>)


4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
# File 'lib/google/cloud/translate/v3/translation_service/client.rb', line 4216

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "translate.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the TranslationService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_text
    ##
    # RPC-specific configuration for `romanize_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :romanize_text
    ##
    # RPC-specific configuration for `detect_language`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detect_language
    ##
    # RPC-specific configuration for `get_supported_languages`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_supported_languages
    ##
    # RPC-specific configuration for `translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_document
    ##
    # RPC-specific configuration for `batch_translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_text
    ##
    # RPC-specific configuration for `batch_translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_document
    ##
    # RPC-specific configuration for `create_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary
    ##
    # RPC-specific configuration for `update_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary
    ##
    # RPC-specific configuration for `list_glossaries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossaries
    ##
    # RPC-specific configuration for `get_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary
    ##
    # RPC-specific configuration for `delete_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary
    ##
    # RPC-specific configuration for `get_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary_entry
    ##
    # RPC-specific configuration for `list_glossary_entries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossary_entries
    ##
    # RPC-specific configuration for `create_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary_entry
    ##
    # RPC-specific configuration for `update_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary_entry
    ##
    # RPC-specific configuration for `delete_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary_entry
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `create_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `delete_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `get_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `list_adaptive_mt_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_datasets
    ##
    # RPC-specific configuration for `adaptive_mt_translate`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :adaptive_mt_translate
    ##
    # RPC-specific configuration for `get_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_file
    ##
    # RPC-specific configuration for `delete_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_file
    ##
    # RPC-specific configuration for `import_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_adaptive_mt_file
    ##
    # RPC-specific configuration for `list_adaptive_mt_files`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_files
    ##
    # RPC-specific configuration for `list_adaptive_mt_sentences`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_sentences
    ##
    # RPC-specific configuration for `import_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_data
    ##
    # RPC-specific configuration for `export_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_data
    ##
    # RPC-specific configuration for `list_examples`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_examples
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model

    # @private
    def initialize parent_rpcs = nil
      translate_text_config = parent_rpcs.translate_text if parent_rpcs.respond_to? :translate_text
      @translate_text = ::Gapic::Config::Method.new translate_text_config
      romanize_text_config = parent_rpcs.romanize_text if parent_rpcs.respond_to? :romanize_text
      @romanize_text = ::Gapic::Config::Method.new romanize_text_config
      detect_language_config = parent_rpcs.detect_language if parent_rpcs.respond_to? :detect_language
      @detect_language = ::Gapic::Config::Method.new detect_language_config
      get_supported_languages_config = parent_rpcs.get_supported_languages if parent_rpcs.respond_to? :get_supported_languages
      @get_supported_languages = ::Gapic::Config::Method.new get_supported_languages_config
      translate_document_config = parent_rpcs.translate_document if parent_rpcs.respond_to? :translate_document
      @translate_document = ::Gapic::Config::Method.new translate_document_config
      batch_translate_text_config = parent_rpcs.batch_translate_text if parent_rpcs.respond_to? :batch_translate_text
      @batch_translate_text = ::Gapic::Config::Method.new batch_translate_text_config
      batch_translate_document_config = parent_rpcs.batch_translate_document if parent_rpcs.respond_to? :batch_translate_document
      @batch_translate_document = ::Gapic::Config::Method.new batch_translate_document_config
      create_glossary_config = parent_rpcs.create_glossary if parent_rpcs.respond_to? :create_glossary
      @create_glossary = ::Gapic::Config::Method.new create_glossary_config
      update_glossary_config = parent_rpcs.update_glossary if parent_rpcs.respond_to? :update_glossary
      @update_glossary = ::Gapic::Config::Method.new update_glossary_config
      list_glossaries_config = parent_rpcs.list_glossaries if parent_rpcs.respond_to? :list_glossaries
      @list_glossaries = ::Gapic::Config::Method.new list_glossaries_config
      get_glossary_config = parent_rpcs.get_glossary if parent_rpcs.respond_to? :get_glossary
      @get_glossary = ::Gapic::Config::Method.new get_glossary_config
      delete_glossary_config = parent_rpcs.delete_glossary if parent_rpcs.respond_to? :delete_glossary
      @delete_glossary = ::Gapic::Config::Method.new delete_glossary_config
      get_glossary_entry_config = parent_rpcs.get_glossary_entry if parent_rpcs.respond_to? :get_glossary_entry
      @get_glossary_entry = ::Gapic::Config::Method.new get_glossary_entry_config
      list_glossary_entries_config = parent_rpcs.list_glossary_entries if parent_rpcs.respond_to? :list_glossary_entries
      @list_glossary_entries = ::Gapic::Config::Method.new list_glossary_entries_config
      create_glossary_entry_config = parent_rpcs.create_glossary_entry if parent_rpcs.respond_to? :create_glossary_entry
      @create_glossary_entry = ::Gapic::Config::Method.new create_glossary_entry_config
      update_glossary_entry_config = parent_rpcs.update_glossary_entry if parent_rpcs.respond_to? :update_glossary_entry
      @update_glossary_entry = ::Gapic::Config::Method.new update_glossary_entry_config
      delete_glossary_entry_config = parent_rpcs.delete_glossary_entry if parent_rpcs.respond_to? :delete_glossary_entry
      @delete_glossary_entry = ::Gapic::Config::Method.new delete_glossary_entry_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      create_adaptive_mt_dataset_config = parent_rpcs.create_adaptive_mt_dataset if parent_rpcs.respond_to? :create_adaptive_mt_dataset
      @create_adaptive_mt_dataset = ::Gapic::Config::Method.new create_adaptive_mt_dataset_config
      delete_adaptive_mt_dataset_config = parent_rpcs.delete_adaptive_mt_dataset if parent_rpcs.respond_to? :delete_adaptive_mt_dataset
      @delete_adaptive_mt_dataset = ::Gapic::Config::Method.new delete_adaptive_mt_dataset_config
      get_adaptive_mt_dataset_config = parent_rpcs.get_adaptive_mt_dataset if parent_rpcs.respond_to? :get_adaptive_mt_dataset
      @get_adaptive_mt_dataset = ::Gapic::Config::Method.new get_adaptive_mt_dataset_config
      list_adaptive_mt_datasets_config = parent_rpcs.list_adaptive_mt_datasets if parent_rpcs.respond_to? :list_adaptive_mt_datasets
      @list_adaptive_mt_datasets = ::Gapic::Config::Method.new list_adaptive_mt_datasets_config
      adaptive_mt_translate_config = parent_rpcs.adaptive_mt_translate if parent_rpcs.respond_to? :adaptive_mt_translate
      @adaptive_mt_translate = ::Gapic::Config::Method.new adaptive_mt_translate_config
      get_adaptive_mt_file_config = parent_rpcs.get_adaptive_mt_file if parent_rpcs.respond_to? :get_adaptive_mt_file
      @get_adaptive_mt_file = ::Gapic::Config::Method.new get_adaptive_mt_file_config
      delete_adaptive_mt_file_config = parent_rpcs.delete_adaptive_mt_file if parent_rpcs.respond_to? :delete_adaptive_mt_file
      @delete_adaptive_mt_file = ::Gapic::Config::Method.new delete_adaptive_mt_file_config
      import_adaptive_mt_file_config = parent_rpcs.import_adaptive_mt_file if parent_rpcs.respond_to? :import_adaptive_mt_file
      @import_adaptive_mt_file = ::Gapic::Config::Method.new import_adaptive_mt_file_config
      list_adaptive_mt_files_config = parent_rpcs.list_adaptive_mt_files if parent_rpcs.respond_to? :list_adaptive_mt_files
      @list_adaptive_mt_files = ::Gapic::Config::Method.new list_adaptive_mt_files_config
      list_adaptive_mt_sentences_config = parent_rpcs.list_adaptive_mt_sentences if parent_rpcs.respond_to? :list_adaptive_mt_sentences
      @list_adaptive_mt_sentences = ::Gapic::Config::Method.new list_adaptive_mt_sentences_config
      import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data
      @import_data = ::Gapic::Config::Method.new import_data_config
      export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data
      @export_data = ::Gapic::Config::Method.new export_data_config
      list_examples_config = parent_rpcs.list_examples if parent_rpcs.respond_to? :list_examples
      @list_examples = ::Gapic::Config::Method.new list_examples_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config

      yield self if block_given?
    end
  end
end

#timeout::Numeric

The call timeout in seconds.

Returns:

  • (::Numeric)


4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
# File 'lib/google/cloud/translate/v3/translation_service/client.rb', line 4216

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "translate.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the TranslationService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_text
    ##
    # RPC-specific configuration for `romanize_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :romanize_text
    ##
    # RPC-specific configuration for `detect_language`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detect_language
    ##
    # RPC-specific configuration for `get_supported_languages`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_supported_languages
    ##
    # RPC-specific configuration for `translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_document
    ##
    # RPC-specific configuration for `batch_translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_text
    ##
    # RPC-specific configuration for `batch_translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_document
    ##
    # RPC-specific configuration for `create_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary
    ##
    # RPC-specific configuration for `update_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary
    ##
    # RPC-specific configuration for `list_glossaries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossaries
    ##
    # RPC-specific configuration for `get_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary
    ##
    # RPC-specific configuration for `delete_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary
    ##
    # RPC-specific configuration for `get_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary_entry
    ##
    # RPC-specific configuration for `list_glossary_entries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossary_entries
    ##
    # RPC-specific configuration for `create_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary_entry
    ##
    # RPC-specific configuration for `update_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary_entry
    ##
    # RPC-specific configuration for `delete_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary_entry
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `create_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `delete_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `get_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `list_adaptive_mt_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_datasets
    ##
    # RPC-specific configuration for `adaptive_mt_translate`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :adaptive_mt_translate
    ##
    # RPC-specific configuration for `get_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_file
    ##
    # RPC-specific configuration for `delete_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_file
    ##
    # RPC-specific configuration for `import_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_adaptive_mt_file
    ##
    # RPC-specific configuration for `list_adaptive_mt_files`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_files
    ##
    # RPC-specific configuration for `list_adaptive_mt_sentences`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_sentences
    ##
    # RPC-specific configuration for `import_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_data
    ##
    # RPC-specific configuration for `export_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_data
    ##
    # RPC-specific configuration for `list_examples`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_examples
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model

    # @private
    def initialize parent_rpcs = nil
      translate_text_config = parent_rpcs.translate_text if parent_rpcs.respond_to? :translate_text
      @translate_text = ::Gapic::Config::Method.new translate_text_config
      romanize_text_config = parent_rpcs.romanize_text if parent_rpcs.respond_to? :romanize_text
      @romanize_text = ::Gapic::Config::Method.new romanize_text_config
      detect_language_config = parent_rpcs.detect_language if parent_rpcs.respond_to? :detect_language
      @detect_language = ::Gapic::Config::Method.new detect_language_config
      get_supported_languages_config = parent_rpcs.get_supported_languages if parent_rpcs.respond_to? :get_supported_languages
      @get_supported_languages = ::Gapic::Config::Method.new get_supported_languages_config
      translate_document_config = parent_rpcs.translate_document if parent_rpcs.respond_to? :translate_document
      @translate_document = ::Gapic::Config::Method.new translate_document_config
      batch_translate_text_config = parent_rpcs.batch_translate_text if parent_rpcs.respond_to? :batch_translate_text
      @batch_translate_text = ::Gapic::Config::Method.new batch_translate_text_config
      batch_translate_document_config = parent_rpcs.batch_translate_document if parent_rpcs.respond_to? :batch_translate_document
      @batch_translate_document = ::Gapic::Config::Method.new batch_translate_document_config
      create_glossary_config = parent_rpcs.create_glossary if parent_rpcs.respond_to? :create_glossary
      @create_glossary = ::Gapic::Config::Method.new create_glossary_config
      update_glossary_config = parent_rpcs.update_glossary if parent_rpcs.respond_to? :update_glossary
      @update_glossary = ::Gapic::Config::Method.new update_glossary_config
      list_glossaries_config = parent_rpcs.list_glossaries if parent_rpcs.respond_to? :list_glossaries
      @list_glossaries = ::Gapic::Config::Method.new list_glossaries_config
      get_glossary_config = parent_rpcs.get_glossary if parent_rpcs.respond_to? :get_glossary
      @get_glossary = ::Gapic::Config::Method.new get_glossary_config
      delete_glossary_config = parent_rpcs.delete_glossary if parent_rpcs.respond_to? :delete_glossary
      @delete_glossary = ::Gapic::Config::Method.new delete_glossary_config
      get_glossary_entry_config = parent_rpcs.get_glossary_entry if parent_rpcs.respond_to? :get_glossary_entry
      @get_glossary_entry = ::Gapic::Config::Method.new get_glossary_entry_config
      list_glossary_entries_config = parent_rpcs.list_glossary_entries if parent_rpcs.respond_to? :list_glossary_entries
      @list_glossary_entries = ::Gapic::Config::Method.new list_glossary_entries_config
      create_glossary_entry_config = parent_rpcs.create_glossary_entry if parent_rpcs.respond_to? :create_glossary_entry
      @create_glossary_entry = ::Gapic::Config::Method.new create_glossary_entry_config
      update_glossary_entry_config = parent_rpcs.update_glossary_entry if parent_rpcs.respond_to? :update_glossary_entry
      @update_glossary_entry = ::Gapic::Config::Method.new update_glossary_entry_config
      delete_glossary_entry_config = parent_rpcs.delete_glossary_entry if parent_rpcs.respond_to? :delete_glossary_entry
      @delete_glossary_entry = ::Gapic::Config::Method.new delete_glossary_entry_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      create_adaptive_mt_dataset_config = parent_rpcs.create_adaptive_mt_dataset if parent_rpcs.respond_to? :create_adaptive_mt_dataset
      @create_adaptive_mt_dataset = ::Gapic::Config::Method.new create_adaptive_mt_dataset_config
      delete_adaptive_mt_dataset_config = parent_rpcs.delete_adaptive_mt_dataset if parent_rpcs.respond_to? :delete_adaptive_mt_dataset
      @delete_adaptive_mt_dataset = ::Gapic::Config::Method.new delete_adaptive_mt_dataset_config
      get_adaptive_mt_dataset_config = parent_rpcs.get_adaptive_mt_dataset if parent_rpcs.respond_to? :get_adaptive_mt_dataset
      @get_adaptive_mt_dataset = ::Gapic::Config::Method.new get_adaptive_mt_dataset_config
      list_adaptive_mt_datasets_config = parent_rpcs.list_adaptive_mt_datasets if parent_rpcs.respond_to? :list_adaptive_mt_datasets
      @list_adaptive_mt_datasets = ::Gapic::Config::Method.new list_adaptive_mt_datasets_config
      adaptive_mt_translate_config = parent_rpcs.adaptive_mt_translate if parent_rpcs.respond_to? :adaptive_mt_translate
      @adaptive_mt_translate = ::Gapic::Config::Method.new adaptive_mt_translate_config
      get_adaptive_mt_file_config = parent_rpcs.get_adaptive_mt_file if parent_rpcs.respond_to? :get_adaptive_mt_file
      @get_adaptive_mt_file = ::Gapic::Config::Method.new get_adaptive_mt_file_config
      delete_adaptive_mt_file_config = parent_rpcs.delete_adaptive_mt_file if parent_rpcs.respond_to? :delete_adaptive_mt_file
      @delete_adaptive_mt_file = ::Gapic::Config::Method.new delete_adaptive_mt_file_config
      import_adaptive_mt_file_config = parent_rpcs.import_adaptive_mt_file if parent_rpcs.respond_to? :import_adaptive_mt_file
      @import_adaptive_mt_file = ::Gapic::Config::Method.new import_adaptive_mt_file_config
      list_adaptive_mt_files_config = parent_rpcs.list_adaptive_mt_files if parent_rpcs.respond_to? :list_adaptive_mt_files
      @list_adaptive_mt_files = ::Gapic::Config::Method.new list_adaptive_mt_files_config
      list_adaptive_mt_sentences_config = parent_rpcs.list_adaptive_mt_sentences if parent_rpcs.respond_to? :list_adaptive_mt_sentences
      @list_adaptive_mt_sentences = ::Gapic::Config::Method.new list_adaptive_mt_sentences_config
      import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data
      @import_data = ::Gapic::Config::Method.new import_data_config
      export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data
      @export_data = ::Gapic::Config::Method.new export_data_config
      list_examples_config = parent_rpcs.list_examples if parent_rpcs.respond_to? :list_examples
      @list_examples = ::Gapic::Config::Method.new list_examples_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config

      yield self if block_given?
    end
  end
end

#universe_domain::String?

The universe domain within which to make requests. This determines the default endpoint URL. The default value of nil uses the environment universe (usually the default "googleapis.com" universe).

Returns:

  • (::String, nil)


4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
# File 'lib/google/cloud/translate/v3/translation_service/client.rb', line 4216

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "translate.googleapis.com"

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
    allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr(:channel_args,  { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil)
  config_attr :interceptors,  nil, ::Array, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil

  # @private
  def initialize parent_config = nil
    @parent_config = parent_config unless parent_config.nil?

    yield self if block_given?
  end

  ##
  # Configurations for individual RPCs
  # @return [Rpcs]
  #
  def rpcs
    @rpcs ||= begin
      parent_rpcs = nil
      parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
      Rpcs.new parent_rpcs
    end
  end

  ##
  # Configuration for the channel pool
  # @return [::Gapic::ServiceStub::ChannelPool::Configuration]
  #
  def channel_pool
    @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
  end

  ##
  # Configuration RPC class for the TranslationService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_text
    ##
    # RPC-specific configuration for `romanize_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :romanize_text
    ##
    # RPC-specific configuration for `detect_language`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :detect_language
    ##
    # RPC-specific configuration for `get_supported_languages`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_supported_languages
    ##
    # RPC-specific configuration for `translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :translate_document
    ##
    # RPC-specific configuration for `batch_translate_text`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_text
    ##
    # RPC-specific configuration for `batch_translate_document`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_translate_document
    ##
    # RPC-specific configuration for `create_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary
    ##
    # RPC-specific configuration for `update_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary
    ##
    # RPC-specific configuration for `list_glossaries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossaries
    ##
    # RPC-specific configuration for `get_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary
    ##
    # RPC-specific configuration for `delete_glossary`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary
    ##
    # RPC-specific configuration for `get_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_glossary_entry
    ##
    # RPC-specific configuration for `list_glossary_entries`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_glossary_entries
    ##
    # RPC-specific configuration for `create_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_glossary_entry
    ##
    # RPC-specific configuration for `update_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_glossary_entry
    ##
    # RPC-specific configuration for `delete_glossary_entry`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_glossary_entry
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `create_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `delete_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `get_adaptive_mt_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_dataset
    ##
    # RPC-specific configuration for `list_adaptive_mt_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_datasets
    ##
    # RPC-specific configuration for `adaptive_mt_translate`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :adaptive_mt_translate
    ##
    # RPC-specific configuration for `get_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_adaptive_mt_file
    ##
    # RPC-specific configuration for `delete_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_adaptive_mt_file
    ##
    # RPC-specific configuration for `import_adaptive_mt_file`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_adaptive_mt_file
    ##
    # RPC-specific configuration for `list_adaptive_mt_files`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_files
    ##
    # RPC-specific configuration for `list_adaptive_mt_sentences`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_adaptive_mt_sentences
    ##
    # RPC-specific configuration for `import_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_data
    ##
    # RPC-specific configuration for `export_data`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_data
    ##
    # RPC-specific configuration for `list_examples`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_examples
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model

    # @private
    def initialize parent_rpcs = nil
      translate_text_config = parent_rpcs.translate_text if parent_rpcs.respond_to? :translate_text
      @translate_text = ::Gapic::Config::Method.new translate_text_config
      romanize_text_config = parent_rpcs.romanize_text if parent_rpcs.respond_to? :romanize_text
      @romanize_text = ::Gapic::Config::Method.new romanize_text_config
      detect_language_config = parent_rpcs.detect_language if parent_rpcs.respond_to? :detect_language
      @detect_language = ::Gapic::Config::Method.new detect_language_config
      get_supported_languages_config = parent_rpcs.get_supported_languages if parent_rpcs.respond_to? :get_supported_languages
      @get_supported_languages = ::Gapic::Config::Method.new get_supported_languages_config
      translate_document_config = parent_rpcs.translate_document if parent_rpcs.respond_to? :translate_document
      @translate_document = ::Gapic::Config::Method.new translate_document_config
      batch_translate_text_config = parent_rpcs.batch_translate_text if parent_rpcs.respond_to? :batch_translate_text
      @batch_translate_text = ::Gapic::Config::Method.new batch_translate_text_config
      batch_translate_document_config = parent_rpcs.batch_translate_document if parent_rpcs.respond_to? :batch_translate_document
      @batch_translate_document = ::Gapic::Config::Method.new batch_translate_document_config
      create_glossary_config = parent_rpcs.create_glossary if parent_rpcs.respond_to? :create_glossary
      @create_glossary = ::Gapic::Config::Method.new create_glossary_config
      update_glossary_config = parent_rpcs.update_glossary if parent_rpcs.respond_to? :update_glossary
      @update_glossary = ::Gapic::Config::Method.new update_glossary_config
      list_glossaries_config = parent_rpcs.list_glossaries if parent_rpcs.respond_to? :list_glossaries
      @list_glossaries = ::Gapic::Config::Method.new list_glossaries_config
      get_glossary_config = parent_rpcs.get_glossary if parent_rpcs.respond_to? :get_glossary
      @get_glossary = ::Gapic::Config::Method.new get_glossary_config
      delete_glossary_config = parent_rpcs.delete_glossary if parent_rpcs.respond_to? :delete_glossary
      @delete_glossary = ::Gapic::Config::Method.new delete_glossary_config
      get_glossary_entry_config = parent_rpcs.get_glossary_entry if parent_rpcs.respond_to? :get_glossary_entry
      @get_glossary_entry = ::Gapic::Config::Method.new get_glossary_entry_config
      list_glossary_entries_config = parent_rpcs.list_glossary_entries if parent_rpcs.respond_to? :list_glossary_entries
      @list_glossary_entries = ::Gapic::Config::Method.new list_glossary_entries_config
      create_glossary_entry_config = parent_rpcs.create_glossary_entry if parent_rpcs.respond_to? :create_glossary_entry
      @create_glossary_entry = ::Gapic::Config::Method.new create_glossary_entry_config
      update_glossary_entry_config = parent_rpcs.update_glossary_entry if parent_rpcs.respond_to? :update_glossary_entry
      @update_glossary_entry = ::Gapic::Config::Method.new update_glossary_entry_config
      delete_glossary_entry_config = parent_rpcs.delete_glossary_entry if parent_rpcs.respond_to? :delete_glossary_entry
      @delete_glossary_entry = ::Gapic::Config::Method.new delete_glossary_entry_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      create_adaptive_mt_dataset_config = parent_rpcs.create_adaptive_mt_dataset if parent_rpcs.respond_to? :create_adaptive_mt_dataset
      @create_adaptive_mt_dataset = ::Gapic::Config::Method.new create_adaptive_mt_dataset_config
      delete_adaptive_mt_dataset_config = parent_rpcs.delete_adaptive_mt_dataset if parent_rpcs.respond_to? :delete_adaptive_mt_dataset
      @delete_adaptive_mt_dataset = ::Gapic::Config::Method.new delete_adaptive_mt_dataset_config
      get_adaptive_mt_dataset_config = parent_rpcs.get_adaptive_mt_dataset if parent_rpcs.respond_to? :get_adaptive_mt_dataset
      @get_adaptive_mt_dataset = ::Gapic::Config::Method.new get_adaptive_mt_dataset_config
      list_adaptive_mt_datasets_config = parent_rpcs.list_adaptive_mt_datasets if parent_rpcs.respond_to? :list_adaptive_mt_datasets
      @list_adaptive_mt_datasets = ::Gapic::Config::Method.new list_adaptive_mt_datasets_config
      adaptive_mt_translate_config = parent_rpcs.adaptive_mt_translate if parent_rpcs.respond_to? :adaptive_mt_translate
      @adaptive_mt_translate = ::Gapic::Config::Method.new adaptive_mt_translate_config
      get_adaptive_mt_file_config = parent_rpcs.get_adaptive_mt_file if parent_rpcs.respond_to? :get_adaptive_mt_file
      @get_adaptive_mt_file = ::Gapic::Config::Method.new get_adaptive_mt_file_config
      delete_adaptive_mt_file_config = parent_rpcs.delete_adaptive_mt_file if parent_rpcs.respond_to? :delete_adaptive_mt_file
      @delete_adaptive_mt_file = ::Gapic::Config::Method.new delete_adaptive_mt_file_config
      import_adaptive_mt_file_config = parent_rpcs.import_adaptive_mt_file if parent_rpcs.respond_to? :import_adaptive_mt_file
      @import_adaptive_mt_file = ::Gapic::Config::Method.new import_adaptive_mt_file_config
      list_adaptive_mt_files_config = parent_rpcs.list_adaptive_mt_files if parent_rpcs.respond_to? :list_adaptive_mt_files
      @list_adaptive_mt_files = ::Gapic::Config::Method.new list_adaptive_mt_files_config
      list_adaptive_mt_sentences_config = parent_rpcs.list_adaptive_mt_sentences if parent_rpcs.respond_to? :list_adaptive_mt_sentences
      @list_adaptive_mt_sentences = ::Gapic::Config::Method.new list_adaptive_mt_sentences_config
      import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data
      @import_data = ::Gapic::Config::Method.new import_data_config
      export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data
      @export_data = ::Gapic::Config::Method.new export_data_config
      list_examples_config = parent_rpcs.list_examples if parent_rpcs.respond_to? :list_examples
      @list_examples = ::Gapic::Config::Method.new list_examples_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config

      yield self if block_given?
    end
  end
end

Instance Method Details

#channel_pool::Gapic::ServiceStub::ChannelPool::Configuration

Configuration for the channel pool

Returns:

  • (::Gapic::ServiceStub::ChannelPool::Configuration)


4263
4264
4265
# File 'lib/google/cloud/translate/v3/translation_service/client.rb', line 4263

def channel_pool
  @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
end

#rpcsRpcs

Configurations for individual RPCs

Returns:



4251
4252
4253
4254
4255
4256
4257
# File 'lib/google/cloud/translate/v3/translation_service/client.rb', line 4251

def rpcs
  @rpcs ||= begin
    parent_rpcs = nil
    parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs)
    Rpcs.new parent_rpcs
  end
end