Class: Google::Cloud::Ces::V1beta::EvaluationService::Rest::Client::Configuration

Inherits:
Object
  • Object
show all
Extended by:
Gapic::Config
Defined in:
lib/google/cloud/ces/v1beta/evaluation_service/rest/client.rb

Overview

Configuration class for the EvaluationService REST API.

This class represents the configuration for EvaluationService REST, 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
# run_evaluation to 20 seconds,
# and all remaining timeouts to 10 seconds.
::Google::Cloud::Ces::V1beta::EvaluationService::Rest::Client.configure do |config|
  config.timeout = 10.0
  config.rpcs.run_evaluation.timeout = 20.0
end

# Apply the above configuration only to a new client.
client = ::Google::Cloud::Ces::V1beta::EvaluationService::Rest::Client.new do |config|
  config.timeout = 10.0
  config.rpcs.run_evaluation.timeout = 20.0
end

Defined Under Namespace

Classes: Rpcs

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#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)
  • (nil) indicating no credentials

Warning: If you accept a credential configuration (JSON file or Hash) from an external source for authentication to Google Cloud, you must validate it before providing it to a Google API client library. Providing an unvalidated credential configuration to Google APIs can compromise the security of your systems and data. For more information, refer to Validate credential configurations from external sources.

Returns:

  • (::Object)


3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
# File 'lib/google/cloud/ces/v1beta/evaluation_service/rest/client.rb', line 3169

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    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 :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
  # Overrides for http bindings for the RPCs of this service
  # are only used when this service is used as mixin, and only
  # by the host service.
  # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
  config_attr :bindings_override, {}, ::Hash, nil
  config_attr :logger, :default, ::Logger, nil, :default

  # @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 RPC class for the EvaluationService 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 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 `run_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :run_evaluation
    ##
    # RPC-specific configuration for `upload_evaluation_audio`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upload_evaluation_audio
    ##
    # RPC-specific configuration for `create_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation
    ##
    # RPC-specific configuration for `generate_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_evaluation
    ##
    # RPC-specific configuration for `import_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_evaluations
    ##
    # RPC-specific configuration for `create_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_dataset
    ##
    # RPC-specific configuration for `update_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation
    ##
    # RPC-specific configuration for `update_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation
    ##
    # RPC-specific configuration for `delete_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_result
    ##
    # RPC-specific configuration for `delete_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_run
    ##
    # RPC-specific configuration for `get_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation
    ##
    # RPC-specific configuration for `get_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_result
    ##
    # RPC-specific configuration for `get_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_dataset
    ##
    # RPC-specific configuration for `get_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_run
    ##
    # RPC-specific configuration for `list_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluations
    ##
    # RPC-specific configuration for `list_evaluation_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_results
    ##
    # RPC-specific configuration for `list_evaluation_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_datasets
    ##
    # RPC-specific configuration for `list_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_runs
    ##
    # RPC-specific configuration for `list_evaluation_expectations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_expectations
    ##
    # RPC-specific configuration for `get_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_expectation
    ##
    # RPC-specific configuration for `create_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_expectation
    ##
    # RPC-specific configuration for `update_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_expectation
    ##
    # RPC-specific configuration for `delete_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_expectation
    ##
    # RPC-specific configuration for `create_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `get_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `list_scheduled_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_scheduled_evaluation_runs
    ##
    # RPC-specific configuration for `update_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `delete_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `test_persona_voice`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :test_persona_voice
    ##
    # RPC-specific configuration for `export_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_evaluations

    # @private
    def initialize parent_rpcs = nil
      run_evaluation_config = parent_rpcs.run_evaluation if parent_rpcs.respond_to? :run_evaluation
      @run_evaluation = ::Gapic::Config::Method.new run_evaluation_config
      upload_evaluation_audio_config = parent_rpcs.upload_evaluation_audio if parent_rpcs.respond_to? :upload_evaluation_audio
      @upload_evaluation_audio = ::Gapic::Config::Method.new upload_evaluation_audio_config
      create_evaluation_config = parent_rpcs.create_evaluation if parent_rpcs.respond_to? :create_evaluation
      @create_evaluation = ::Gapic::Config::Method.new create_evaluation_config
      generate_evaluation_config = parent_rpcs.generate_evaluation if parent_rpcs.respond_to? :generate_evaluation
      @generate_evaluation = ::Gapic::Config::Method.new generate_evaluation_config
      import_evaluations_config = parent_rpcs.import_evaluations if parent_rpcs.respond_to? :import_evaluations
      @import_evaluations = ::Gapic::Config::Method.new import_evaluations_config
      create_evaluation_dataset_config = parent_rpcs.create_evaluation_dataset if parent_rpcs.respond_to? :create_evaluation_dataset
      @create_evaluation_dataset = ::Gapic::Config::Method.new create_evaluation_dataset_config
      update_evaluation_config = parent_rpcs.update_evaluation if parent_rpcs.respond_to? :update_evaluation
      @update_evaluation = ::Gapic::Config::Method.new update_evaluation_config
      update_evaluation_dataset_config = parent_rpcs.update_evaluation_dataset if parent_rpcs.respond_to? :update_evaluation_dataset
      @update_evaluation_dataset = ::Gapic::Config::Method.new update_evaluation_dataset_config
      delete_evaluation_config = parent_rpcs.delete_evaluation if parent_rpcs.respond_to? :delete_evaluation
      @delete_evaluation = ::Gapic::Config::Method.new delete_evaluation_config
      delete_evaluation_result_config = parent_rpcs.delete_evaluation_result if parent_rpcs.respond_to? :delete_evaluation_result
      @delete_evaluation_result = ::Gapic::Config::Method.new delete_evaluation_result_config
      delete_evaluation_dataset_config = parent_rpcs.delete_evaluation_dataset if parent_rpcs.respond_to? :delete_evaluation_dataset
      @delete_evaluation_dataset = ::Gapic::Config::Method.new delete_evaluation_dataset_config
      delete_evaluation_run_config = parent_rpcs.delete_evaluation_run if parent_rpcs.respond_to? :delete_evaluation_run
      @delete_evaluation_run = ::Gapic::Config::Method.new delete_evaluation_run_config
      get_evaluation_config = parent_rpcs.get_evaluation if parent_rpcs.respond_to? :get_evaluation
      @get_evaluation = ::Gapic::Config::Method.new get_evaluation_config
      get_evaluation_result_config = parent_rpcs.get_evaluation_result if parent_rpcs.respond_to? :get_evaluation_result
      @get_evaluation_result = ::Gapic::Config::Method.new get_evaluation_result_config
      get_evaluation_dataset_config = parent_rpcs.get_evaluation_dataset if parent_rpcs.respond_to? :get_evaluation_dataset
      @get_evaluation_dataset = ::Gapic::Config::Method.new get_evaluation_dataset_config
      get_evaluation_run_config = parent_rpcs.get_evaluation_run if parent_rpcs.respond_to? :get_evaluation_run
      @get_evaluation_run = ::Gapic::Config::Method.new get_evaluation_run_config
      list_evaluations_config = parent_rpcs.list_evaluations if parent_rpcs.respond_to? :list_evaluations
      @list_evaluations = ::Gapic::Config::Method.new list_evaluations_config
      list_evaluation_results_config = parent_rpcs.list_evaluation_results if parent_rpcs.respond_to? :list_evaluation_results
      @list_evaluation_results = ::Gapic::Config::Method.new list_evaluation_results_config
      list_evaluation_datasets_config = parent_rpcs.list_evaluation_datasets if parent_rpcs.respond_to? :list_evaluation_datasets
      @list_evaluation_datasets = ::Gapic::Config::Method.new list_evaluation_datasets_config
      list_evaluation_runs_config = parent_rpcs.list_evaluation_runs if parent_rpcs.respond_to? :list_evaluation_runs
      @list_evaluation_runs = ::Gapic::Config::Method.new list_evaluation_runs_config
      list_evaluation_expectations_config = parent_rpcs.list_evaluation_expectations if parent_rpcs.respond_to? :list_evaluation_expectations
      @list_evaluation_expectations = ::Gapic::Config::Method.new list_evaluation_expectations_config
      get_evaluation_expectation_config = parent_rpcs.get_evaluation_expectation if parent_rpcs.respond_to? :get_evaluation_expectation
      @get_evaluation_expectation = ::Gapic::Config::Method.new get_evaluation_expectation_config
      create_evaluation_expectation_config = parent_rpcs.create_evaluation_expectation if parent_rpcs.respond_to? :create_evaluation_expectation
      @create_evaluation_expectation = ::Gapic::Config::Method.new create_evaluation_expectation_config
      update_evaluation_expectation_config = parent_rpcs.update_evaluation_expectation if parent_rpcs.respond_to? :update_evaluation_expectation
      @update_evaluation_expectation = ::Gapic::Config::Method.new update_evaluation_expectation_config
      delete_evaluation_expectation_config = parent_rpcs.delete_evaluation_expectation if parent_rpcs.respond_to? :delete_evaluation_expectation
      @delete_evaluation_expectation = ::Gapic::Config::Method.new delete_evaluation_expectation_config
      create_scheduled_evaluation_run_config = parent_rpcs.create_scheduled_evaluation_run if parent_rpcs.respond_to? :create_scheduled_evaluation_run
      @create_scheduled_evaluation_run = ::Gapic::Config::Method.new create_scheduled_evaluation_run_config
      get_scheduled_evaluation_run_config = parent_rpcs.get_scheduled_evaluation_run if parent_rpcs.respond_to? :get_scheduled_evaluation_run
      @get_scheduled_evaluation_run = ::Gapic::Config::Method.new get_scheduled_evaluation_run_config
      list_scheduled_evaluation_runs_config = parent_rpcs.list_scheduled_evaluation_runs if parent_rpcs.respond_to? :list_scheduled_evaluation_runs
      @list_scheduled_evaluation_runs = ::Gapic::Config::Method.new list_scheduled_evaluation_runs_config
      update_scheduled_evaluation_run_config = parent_rpcs.update_scheduled_evaluation_run if parent_rpcs.respond_to? :update_scheduled_evaluation_run
      @update_scheduled_evaluation_run = ::Gapic::Config::Method.new update_scheduled_evaluation_run_config
      delete_scheduled_evaluation_run_config = parent_rpcs.delete_scheduled_evaluation_run if parent_rpcs.respond_to? :delete_scheduled_evaluation_run
      @delete_scheduled_evaluation_run = ::Gapic::Config::Method.new delete_scheduled_evaluation_run_config
      test_persona_voice_config = parent_rpcs.test_persona_voice if parent_rpcs.respond_to? :test_persona_voice
      @test_persona_voice = ::Gapic::Config::Method.new test_persona_voice_config
      export_evaluations_config = parent_rpcs.export_evaluations if parent_rpcs.respond_to? :export_evaluations
      @export_evaluations = ::Gapic::Config::Method.new export_evaluations_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)


3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
# File 'lib/google/cloud/ces/v1beta/evaluation_service/rest/client.rb', line 3169

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    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 :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
  # Overrides for http bindings for the RPCs of this service
  # are only used when this service is used as mixin, and only
  # by the host service.
  # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
  config_attr :bindings_override, {}, ::Hash, nil
  config_attr :logger, :default, ::Logger, nil, :default

  # @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 RPC class for the EvaluationService 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 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 `run_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :run_evaluation
    ##
    # RPC-specific configuration for `upload_evaluation_audio`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upload_evaluation_audio
    ##
    # RPC-specific configuration for `create_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation
    ##
    # RPC-specific configuration for `generate_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_evaluation
    ##
    # RPC-specific configuration for `import_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_evaluations
    ##
    # RPC-specific configuration for `create_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_dataset
    ##
    # RPC-specific configuration for `update_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation
    ##
    # RPC-specific configuration for `update_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation
    ##
    # RPC-specific configuration for `delete_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_result
    ##
    # RPC-specific configuration for `delete_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_run
    ##
    # RPC-specific configuration for `get_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation
    ##
    # RPC-specific configuration for `get_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_result
    ##
    # RPC-specific configuration for `get_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_dataset
    ##
    # RPC-specific configuration for `get_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_run
    ##
    # RPC-specific configuration for `list_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluations
    ##
    # RPC-specific configuration for `list_evaluation_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_results
    ##
    # RPC-specific configuration for `list_evaluation_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_datasets
    ##
    # RPC-specific configuration for `list_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_runs
    ##
    # RPC-specific configuration for `list_evaluation_expectations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_expectations
    ##
    # RPC-specific configuration for `get_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_expectation
    ##
    # RPC-specific configuration for `create_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_expectation
    ##
    # RPC-specific configuration for `update_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_expectation
    ##
    # RPC-specific configuration for `delete_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_expectation
    ##
    # RPC-specific configuration for `create_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `get_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `list_scheduled_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_scheduled_evaluation_runs
    ##
    # RPC-specific configuration for `update_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `delete_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `test_persona_voice`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :test_persona_voice
    ##
    # RPC-specific configuration for `export_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_evaluations

    # @private
    def initialize parent_rpcs = nil
      run_evaluation_config = parent_rpcs.run_evaluation if parent_rpcs.respond_to? :run_evaluation
      @run_evaluation = ::Gapic::Config::Method.new run_evaluation_config
      upload_evaluation_audio_config = parent_rpcs.upload_evaluation_audio if parent_rpcs.respond_to? :upload_evaluation_audio
      @upload_evaluation_audio = ::Gapic::Config::Method.new upload_evaluation_audio_config
      create_evaluation_config = parent_rpcs.create_evaluation if parent_rpcs.respond_to? :create_evaluation
      @create_evaluation = ::Gapic::Config::Method.new create_evaluation_config
      generate_evaluation_config = parent_rpcs.generate_evaluation if parent_rpcs.respond_to? :generate_evaluation
      @generate_evaluation = ::Gapic::Config::Method.new generate_evaluation_config
      import_evaluations_config = parent_rpcs.import_evaluations if parent_rpcs.respond_to? :import_evaluations
      @import_evaluations = ::Gapic::Config::Method.new import_evaluations_config
      create_evaluation_dataset_config = parent_rpcs.create_evaluation_dataset if parent_rpcs.respond_to? :create_evaluation_dataset
      @create_evaluation_dataset = ::Gapic::Config::Method.new create_evaluation_dataset_config
      update_evaluation_config = parent_rpcs.update_evaluation if parent_rpcs.respond_to? :update_evaluation
      @update_evaluation = ::Gapic::Config::Method.new update_evaluation_config
      update_evaluation_dataset_config = parent_rpcs.update_evaluation_dataset if parent_rpcs.respond_to? :update_evaluation_dataset
      @update_evaluation_dataset = ::Gapic::Config::Method.new update_evaluation_dataset_config
      delete_evaluation_config = parent_rpcs.delete_evaluation if parent_rpcs.respond_to? :delete_evaluation
      @delete_evaluation = ::Gapic::Config::Method.new delete_evaluation_config
      delete_evaluation_result_config = parent_rpcs.delete_evaluation_result if parent_rpcs.respond_to? :delete_evaluation_result
      @delete_evaluation_result = ::Gapic::Config::Method.new delete_evaluation_result_config
      delete_evaluation_dataset_config = parent_rpcs.delete_evaluation_dataset if parent_rpcs.respond_to? :delete_evaluation_dataset
      @delete_evaluation_dataset = ::Gapic::Config::Method.new delete_evaluation_dataset_config
      delete_evaluation_run_config = parent_rpcs.delete_evaluation_run if parent_rpcs.respond_to? :delete_evaluation_run
      @delete_evaluation_run = ::Gapic::Config::Method.new delete_evaluation_run_config
      get_evaluation_config = parent_rpcs.get_evaluation if parent_rpcs.respond_to? :get_evaluation
      @get_evaluation = ::Gapic::Config::Method.new get_evaluation_config
      get_evaluation_result_config = parent_rpcs.get_evaluation_result if parent_rpcs.respond_to? :get_evaluation_result
      @get_evaluation_result = ::Gapic::Config::Method.new get_evaluation_result_config
      get_evaluation_dataset_config = parent_rpcs.get_evaluation_dataset if parent_rpcs.respond_to? :get_evaluation_dataset
      @get_evaluation_dataset = ::Gapic::Config::Method.new get_evaluation_dataset_config
      get_evaluation_run_config = parent_rpcs.get_evaluation_run if parent_rpcs.respond_to? :get_evaluation_run
      @get_evaluation_run = ::Gapic::Config::Method.new get_evaluation_run_config
      list_evaluations_config = parent_rpcs.list_evaluations if parent_rpcs.respond_to? :list_evaluations
      @list_evaluations = ::Gapic::Config::Method.new list_evaluations_config
      list_evaluation_results_config = parent_rpcs.list_evaluation_results if parent_rpcs.respond_to? :list_evaluation_results
      @list_evaluation_results = ::Gapic::Config::Method.new list_evaluation_results_config
      list_evaluation_datasets_config = parent_rpcs.list_evaluation_datasets if parent_rpcs.respond_to? :list_evaluation_datasets
      @list_evaluation_datasets = ::Gapic::Config::Method.new list_evaluation_datasets_config
      list_evaluation_runs_config = parent_rpcs.list_evaluation_runs if parent_rpcs.respond_to? :list_evaluation_runs
      @list_evaluation_runs = ::Gapic::Config::Method.new list_evaluation_runs_config
      list_evaluation_expectations_config = parent_rpcs.list_evaluation_expectations if parent_rpcs.respond_to? :list_evaluation_expectations
      @list_evaluation_expectations = ::Gapic::Config::Method.new list_evaluation_expectations_config
      get_evaluation_expectation_config = parent_rpcs.get_evaluation_expectation if parent_rpcs.respond_to? :get_evaluation_expectation
      @get_evaluation_expectation = ::Gapic::Config::Method.new get_evaluation_expectation_config
      create_evaluation_expectation_config = parent_rpcs.create_evaluation_expectation if parent_rpcs.respond_to? :create_evaluation_expectation
      @create_evaluation_expectation = ::Gapic::Config::Method.new create_evaluation_expectation_config
      update_evaluation_expectation_config = parent_rpcs.update_evaluation_expectation if parent_rpcs.respond_to? :update_evaluation_expectation
      @update_evaluation_expectation = ::Gapic::Config::Method.new update_evaluation_expectation_config
      delete_evaluation_expectation_config = parent_rpcs.delete_evaluation_expectation if parent_rpcs.respond_to? :delete_evaluation_expectation
      @delete_evaluation_expectation = ::Gapic::Config::Method.new delete_evaluation_expectation_config
      create_scheduled_evaluation_run_config = parent_rpcs.create_scheduled_evaluation_run if parent_rpcs.respond_to? :create_scheduled_evaluation_run
      @create_scheduled_evaluation_run = ::Gapic::Config::Method.new create_scheduled_evaluation_run_config
      get_scheduled_evaluation_run_config = parent_rpcs.get_scheduled_evaluation_run if parent_rpcs.respond_to? :get_scheduled_evaluation_run
      @get_scheduled_evaluation_run = ::Gapic::Config::Method.new get_scheduled_evaluation_run_config
      list_scheduled_evaluation_runs_config = parent_rpcs.list_scheduled_evaluation_runs if parent_rpcs.respond_to? :list_scheduled_evaluation_runs
      @list_scheduled_evaluation_runs = ::Gapic::Config::Method.new list_scheduled_evaluation_runs_config
      update_scheduled_evaluation_run_config = parent_rpcs.update_scheduled_evaluation_run if parent_rpcs.respond_to? :update_scheduled_evaluation_run
      @update_scheduled_evaluation_run = ::Gapic::Config::Method.new update_scheduled_evaluation_run_config
      delete_scheduled_evaluation_run_config = parent_rpcs.delete_scheduled_evaluation_run if parent_rpcs.respond_to? :delete_scheduled_evaluation_run
      @delete_scheduled_evaluation_run = ::Gapic::Config::Method.new delete_scheduled_evaluation_run_config
      test_persona_voice_config = parent_rpcs.test_persona_voice if parent_rpcs.respond_to? :test_persona_voice
      @test_persona_voice = ::Gapic::Config::Method.new test_persona_voice_config
      export_evaluations_config = parent_rpcs.export_evaluations if parent_rpcs.respond_to? :export_evaluations
      @export_evaluations = ::Gapic::Config::Method.new export_evaluations_config

      yield self if block_given?
    end
  end
end

#lib_name::String

The library name as recorded in instrumentation and logging

Returns:

  • (::String)


3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
# File 'lib/google/cloud/ces/v1beta/evaluation_service/rest/client.rb', line 3169

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    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 :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
  # Overrides for http bindings for the RPCs of this service
  # are only used when this service is used as mixin, and only
  # by the host service.
  # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
  config_attr :bindings_override, {}, ::Hash, nil
  config_attr :logger, :default, ::Logger, nil, :default

  # @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 RPC class for the EvaluationService 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 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 `run_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :run_evaluation
    ##
    # RPC-specific configuration for `upload_evaluation_audio`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upload_evaluation_audio
    ##
    # RPC-specific configuration for `create_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation
    ##
    # RPC-specific configuration for `generate_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_evaluation
    ##
    # RPC-specific configuration for `import_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_evaluations
    ##
    # RPC-specific configuration for `create_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_dataset
    ##
    # RPC-specific configuration for `update_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation
    ##
    # RPC-specific configuration for `update_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation
    ##
    # RPC-specific configuration for `delete_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_result
    ##
    # RPC-specific configuration for `delete_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_run
    ##
    # RPC-specific configuration for `get_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation
    ##
    # RPC-specific configuration for `get_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_result
    ##
    # RPC-specific configuration for `get_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_dataset
    ##
    # RPC-specific configuration for `get_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_run
    ##
    # RPC-specific configuration for `list_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluations
    ##
    # RPC-specific configuration for `list_evaluation_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_results
    ##
    # RPC-specific configuration for `list_evaluation_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_datasets
    ##
    # RPC-specific configuration for `list_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_runs
    ##
    # RPC-specific configuration for `list_evaluation_expectations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_expectations
    ##
    # RPC-specific configuration for `get_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_expectation
    ##
    # RPC-specific configuration for `create_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_expectation
    ##
    # RPC-specific configuration for `update_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_expectation
    ##
    # RPC-specific configuration for `delete_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_expectation
    ##
    # RPC-specific configuration for `create_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `get_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `list_scheduled_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_scheduled_evaluation_runs
    ##
    # RPC-specific configuration for `update_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `delete_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `test_persona_voice`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :test_persona_voice
    ##
    # RPC-specific configuration for `export_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_evaluations

    # @private
    def initialize parent_rpcs = nil
      run_evaluation_config = parent_rpcs.run_evaluation if parent_rpcs.respond_to? :run_evaluation
      @run_evaluation = ::Gapic::Config::Method.new run_evaluation_config
      upload_evaluation_audio_config = parent_rpcs.upload_evaluation_audio if parent_rpcs.respond_to? :upload_evaluation_audio
      @upload_evaluation_audio = ::Gapic::Config::Method.new upload_evaluation_audio_config
      create_evaluation_config = parent_rpcs.create_evaluation if parent_rpcs.respond_to? :create_evaluation
      @create_evaluation = ::Gapic::Config::Method.new create_evaluation_config
      generate_evaluation_config = parent_rpcs.generate_evaluation if parent_rpcs.respond_to? :generate_evaluation
      @generate_evaluation = ::Gapic::Config::Method.new generate_evaluation_config
      import_evaluations_config = parent_rpcs.import_evaluations if parent_rpcs.respond_to? :import_evaluations
      @import_evaluations = ::Gapic::Config::Method.new import_evaluations_config
      create_evaluation_dataset_config = parent_rpcs.create_evaluation_dataset if parent_rpcs.respond_to? :create_evaluation_dataset
      @create_evaluation_dataset = ::Gapic::Config::Method.new create_evaluation_dataset_config
      update_evaluation_config = parent_rpcs.update_evaluation if parent_rpcs.respond_to? :update_evaluation
      @update_evaluation = ::Gapic::Config::Method.new update_evaluation_config
      update_evaluation_dataset_config = parent_rpcs.update_evaluation_dataset if parent_rpcs.respond_to? :update_evaluation_dataset
      @update_evaluation_dataset = ::Gapic::Config::Method.new update_evaluation_dataset_config
      delete_evaluation_config = parent_rpcs.delete_evaluation if parent_rpcs.respond_to? :delete_evaluation
      @delete_evaluation = ::Gapic::Config::Method.new delete_evaluation_config
      delete_evaluation_result_config = parent_rpcs.delete_evaluation_result if parent_rpcs.respond_to? :delete_evaluation_result
      @delete_evaluation_result = ::Gapic::Config::Method.new delete_evaluation_result_config
      delete_evaluation_dataset_config = parent_rpcs.delete_evaluation_dataset if parent_rpcs.respond_to? :delete_evaluation_dataset
      @delete_evaluation_dataset = ::Gapic::Config::Method.new delete_evaluation_dataset_config
      delete_evaluation_run_config = parent_rpcs.delete_evaluation_run if parent_rpcs.respond_to? :delete_evaluation_run
      @delete_evaluation_run = ::Gapic::Config::Method.new delete_evaluation_run_config
      get_evaluation_config = parent_rpcs.get_evaluation if parent_rpcs.respond_to? :get_evaluation
      @get_evaluation = ::Gapic::Config::Method.new get_evaluation_config
      get_evaluation_result_config = parent_rpcs.get_evaluation_result if parent_rpcs.respond_to? :get_evaluation_result
      @get_evaluation_result = ::Gapic::Config::Method.new get_evaluation_result_config
      get_evaluation_dataset_config = parent_rpcs.get_evaluation_dataset if parent_rpcs.respond_to? :get_evaluation_dataset
      @get_evaluation_dataset = ::Gapic::Config::Method.new get_evaluation_dataset_config
      get_evaluation_run_config = parent_rpcs.get_evaluation_run if parent_rpcs.respond_to? :get_evaluation_run
      @get_evaluation_run = ::Gapic::Config::Method.new get_evaluation_run_config
      list_evaluations_config = parent_rpcs.list_evaluations if parent_rpcs.respond_to? :list_evaluations
      @list_evaluations = ::Gapic::Config::Method.new list_evaluations_config
      list_evaluation_results_config = parent_rpcs.list_evaluation_results if parent_rpcs.respond_to? :list_evaluation_results
      @list_evaluation_results = ::Gapic::Config::Method.new list_evaluation_results_config
      list_evaluation_datasets_config = parent_rpcs.list_evaluation_datasets if parent_rpcs.respond_to? :list_evaluation_datasets
      @list_evaluation_datasets = ::Gapic::Config::Method.new list_evaluation_datasets_config
      list_evaluation_runs_config = parent_rpcs.list_evaluation_runs if parent_rpcs.respond_to? :list_evaluation_runs
      @list_evaluation_runs = ::Gapic::Config::Method.new list_evaluation_runs_config
      list_evaluation_expectations_config = parent_rpcs.list_evaluation_expectations if parent_rpcs.respond_to? :list_evaluation_expectations
      @list_evaluation_expectations = ::Gapic::Config::Method.new list_evaluation_expectations_config
      get_evaluation_expectation_config = parent_rpcs.get_evaluation_expectation if parent_rpcs.respond_to? :get_evaluation_expectation
      @get_evaluation_expectation = ::Gapic::Config::Method.new get_evaluation_expectation_config
      create_evaluation_expectation_config = parent_rpcs.create_evaluation_expectation if parent_rpcs.respond_to? :create_evaluation_expectation
      @create_evaluation_expectation = ::Gapic::Config::Method.new create_evaluation_expectation_config
      update_evaluation_expectation_config = parent_rpcs.update_evaluation_expectation if parent_rpcs.respond_to? :update_evaluation_expectation
      @update_evaluation_expectation = ::Gapic::Config::Method.new update_evaluation_expectation_config
      delete_evaluation_expectation_config = parent_rpcs.delete_evaluation_expectation if parent_rpcs.respond_to? :delete_evaluation_expectation
      @delete_evaluation_expectation = ::Gapic::Config::Method.new delete_evaluation_expectation_config
      create_scheduled_evaluation_run_config = parent_rpcs.create_scheduled_evaluation_run if parent_rpcs.respond_to? :create_scheduled_evaluation_run
      @create_scheduled_evaluation_run = ::Gapic::Config::Method.new create_scheduled_evaluation_run_config
      get_scheduled_evaluation_run_config = parent_rpcs.get_scheduled_evaluation_run if parent_rpcs.respond_to? :get_scheduled_evaluation_run
      @get_scheduled_evaluation_run = ::Gapic::Config::Method.new get_scheduled_evaluation_run_config
      list_scheduled_evaluation_runs_config = parent_rpcs.list_scheduled_evaluation_runs if parent_rpcs.respond_to? :list_scheduled_evaluation_runs
      @list_scheduled_evaluation_runs = ::Gapic::Config::Method.new list_scheduled_evaluation_runs_config
      update_scheduled_evaluation_run_config = parent_rpcs.update_scheduled_evaluation_run if parent_rpcs.respond_to? :update_scheduled_evaluation_run
      @update_scheduled_evaluation_run = ::Gapic::Config::Method.new update_scheduled_evaluation_run_config
      delete_scheduled_evaluation_run_config = parent_rpcs.delete_scheduled_evaluation_run if parent_rpcs.respond_to? :delete_scheduled_evaluation_run
      @delete_scheduled_evaluation_run = ::Gapic::Config::Method.new delete_scheduled_evaluation_run_config
      test_persona_voice_config = parent_rpcs.test_persona_voice if parent_rpcs.respond_to? :test_persona_voice
      @test_persona_voice = ::Gapic::Config::Method.new test_persona_voice_config
      export_evaluations_config = parent_rpcs.export_evaluations if parent_rpcs.respond_to? :export_evaluations
      @export_evaluations = ::Gapic::Config::Method.new export_evaluations_config

      yield self if block_given?
    end
  end
end

#lib_version::String

The library version as recorded in instrumentation and logging

Returns:

  • (::String)


3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
# File 'lib/google/cloud/ces/v1beta/evaluation_service/rest/client.rb', line 3169

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    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 :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
  # Overrides for http bindings for the RPCs of this service
  # are only used when this service is used as mixin, and only
  # by the host service.
  # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
  config_attr :bindings_override, {}, ::Hash, nil
  config_attr :logger, :default, ::Logger, nil, :default

  # @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 RPC class for the EvaluationService 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 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 `run_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :run_evaluation
    ##
    # RPC-specific configuration for `upload_evaluation_audio`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upload_evaluation_audio
    ##
    # RPC-specific configuration for `create_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation
    ##
    # RPC-specific configuration for `generate_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_evaluation
    ##
    # RPC-specific configuration for `import_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_evaluations
    ##
    # RPC-specific configuration for `create_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_dataset
    ##
    # RPC-specific configuration for `update_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation
    ##
    # RPC-specific configuration for `update_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation
    ##
    # RPC-specific configuration for `delete_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_result
    ##
    # RPC-specific configuration for `delete_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_run
    ##
    # RPC-specific configuration for `get_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation
    ##
    # RPC-specific configuration for `get_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_result
    ##
    # RPC-specific configuration for `get_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_dataset
    ##
    # RPC-specific configuration for `get_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_run
    ##
    # RPC-specific configuration for `list_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluations
    ##
    # RPC-specific configuration for `list_evaluation_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_results
    ##
    # RPC-specific configuration for `list_evaluation_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_datasets
    ##
    # RPC-specific configuration for `list_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_runs
    ##
    # RPC-specific configuration for `list_evaluation_expectations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_expectations
    ##
    # RPC-specific configuration for `get_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_expectation
    ##
    # RPC-specific configuration for `create_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_expectation
    ##
    # RPC-specific configuration for `update_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_expectation
    ##
    # RPC-specific configuration for `delete_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_expectation
    ##
    # RPC-specific configuration for `create_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `get_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `list_scheduled_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_scheduled_evaluation_runs
    ##
    # RPC-specific configuration for `update_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `delete_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `test_persona_voice`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :test_persona_voice
    ##
    # RPC-specific configuration for `export_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_evaluations

    # @private
    def initialize parent_rpcs = nil
      run_evaluation_config = parent_rpcs.run_evaluation if parent_rpcs.respond_to? :run_evaluation
      @run_evaluation = ::Gapic::Config::Method.new run_evaluation_config
      upload_evaluation_audio_config = parent_rpcs.upload_evaluation_audio if parent_rpcs.respond_to? :upload_evaluation_audio
      @upload_evaluation_audio = ::Gapic::Config::Method.new upload_evaluation_audio_config
      create_evaluation_config = parent_rpcs.create_evaluation if parent_rpcs.respond_to? :create_evaluation
      @create_evaluation = ::Gapic::Config::Method.new create_evaluation_config
      generate_evaluation_config = parent_rpcs.generate_evaluation if parent_rpcs.respond_to? :generate_evaluation
      @generate_evaluation = ::Gapic::Config::Method.new generate_evaluation_config
      import_evaluations_config = parent_rpcs.import_evaluations if parent_rpcs.respond_to? :import_evaluations
      @import_evaluations = ::Gapic::Config::Method.new import_evaluations_config
      create_evaluation_dataset_config = parent_rpcs.create_evaluation_dataset if parent_rpcs.respond_to? :create_evaluation_dataset
      @create_evaluation_dataset = ::Gapic::Config::Method.new create_evaluation_dataset_config
      update_evaluation_config = parent_rpcs.update_evaluation if parent_rpcs.respond_to? :update_evaluation
      @update_evaluation = ::Gapic::Config::Method.new update_evaluation_config
      update_evaluation_dataset_config = parent_rpcs.update_evaluation_dataset if parent_rpcs.respond_to? :update_evaluation_dataset
      @update_evaluation_dataset = ::Gapic::Config::Method.new update_evaluation_dataset_config
      delete_evaluation_config = parent_rpcs.delete_evaluation if parent_rpcs.respond_to? :delete_evaluation
      @delete_evaluation = ::Gapic::Config::Method.new delete_evaluation_config
      delete_evaluation_result_config = parent_rpcs.delete_evaluation_result if parent_rpcs.respond_to? :delete_evaluation_result
      @delete_evaluation_result = ::Gapic::Config::Method.new delete_evaluation_result_config
      delete_evaluation_dataset_config = parent_rpcs.delete_evaluation_dataset if parent_rpcs.respond_to? :delete_evaluation_dataset
      @delete_evaluation_dataset = ::Gapic::Config::Method.new delete_evaluation_dataset_config
      delete_evaluation_run_config = parent_rpcs.delete_evaluation_run if parent_rpcs.respond_to? :delete_evaluation_run
      @delete_evaluation_run = ::Gapic::Config::Method.new delete_evaluation_run_config
      get_evaluation_config = parent_rpcs.get_evaluation if parent_rpcs.respond_to? :get_evaluation
      @get_evaluation = ::Gapic::Config::Method.new get_evaluation_config
      get_evaluation_result_config = parent_rpcs.get_evaluation_result if parent_rpcs.respond_to? :get_evaluation_result
      @get_evaluation_result = ::Gapic::Config::Method.new get_evaluation_result_config
      get_evaluation_dataset_config = parent_rpcs.get_evaluation_dataset if parent_rpcs.respond_to? :get_evaluation_dataset
      @get_evaluation_dataset = ::Gapic::Config::Method.new get_evaluation_dataset_config
      get_evaluation_run_config = parent_rpcs.get_evaluation_run if parent_rpcs.respond_to? :get_evaluation_run
      @get_evaluation_run = ::Gapic::Config::Method.new get_evaluation_run_config
      list_evaluations_config = parent_rpcs.list_evaluations if parent_rpcs.respond_to? :list_evaluations
      @list_evaluations = ::Gapic::Config::Method.new list_evaluations_config
      list_evaluation_results_config = parent_rpcs.list_evaluation_results if parent_rpcs.respond_to? :list_evaluation_results
      @list_evaluation_results = ::Gapic::Config::Method.new list_evaluation_results_config
      list_evaluation_datasets_config = parent_rpcs.list_evaluation_datasets if parent_rpcs.respond_to? :list_evaluation_datasets
      @list_evaluation_datasets = ::Gapic::Config::Method.new list_evaluation_datasets_config
      list_evaluation_runs_config = parent_rpcs.list_evaluation_runs if parent_rpcs.respond_to? :list_evaluation_runs
      @list_evaluation_runs = ::Gapic::Config::Method.new list_evaluation_runs_config
      list_evaluation_expectations_config = parent_rpcs.list_evaluation_expectations if parent_rpcs.respond_to? :list_evaluation_expectations
      @list_evaluation_expectations = ::Gapic::Config::Method.new list_evaluation_expectations_config
      get_evaluation_expectation_config = parent_rpcs.get_evaluation_expectation if parent_rpcs.respond_to? :get_evaluation_expectation
      @get_evaluation_expectation = ::Gapic::Config::Method.new get_evaluation_expectation_config
      create_evaluation_expectation_config = parent_rpcs.create_evaluation_expectation if parent_rpcs.respond_to? :create_evaluation_expectation
      @create_evaluation_expectation = ::Gapic::Config::Method.new create_evaluation_expectation_config
      update_evaluation_expectation_config = parent_rpcs.update_evaluation_expectation if parent_rpcs.respond_to? :update_evaluation_expectation
      @update_evaluation_expectation = ::Gapic::Config::Method.new update_evaluation_expectation_config
      delete_evaluation_expectation_config = parent_rpcs.delete_evaluation_expectation if parent_rpcs.respond_to? :delete_evaluation_expectation
      @delete_evaluation_expectation = ::Gapic::Config::Method.new delete_evaluation_expectation_config
      create_scheduled_evaluation_run_config = parent_rpcs.create_scheduled_evaluation_run if parent_rpcs.respond_to? :create_scheduled_evaluation_run
      @create_scheduled_evaluation_run = ::Gapic::Config::Method.new create_scheduled_evaluation_run_config
      get_scheduled_evaluation_run_config = parent_rpcs.get_scheduled_evaluation_run if parent_rpcs.respond_to? :get_scheduled_evaluation_run
      @get_scheduled_evaluation_run = ::Gapic::Config::Method.new get_scheduled_evaluation_run_config
      list_scheduled_evaluation_runs_config = parent_rpcs.list_scheduled_evaluation_runs if parent_rpcs.respond_to? :list_scheduled_evaluation_runs
      @list_scheduled_evaluation_runs = ::Gapic::Config::Method.new list_scheduled_evaluation_runs_config
      update_scheduled_evaluation_run_config = parent_rpcs.update_scheduled_evaluation_run if parent_rpcs.respond_to? :update_scheduled_evaluation_run
      @update_scheduled_evaluation_run = ::Gapic::Config::Method.new update_scheduled_evaluation_run_config
      delete_scheduled_evaluation_run_config = parent_rpcs.delete_scheduled_evaluation_run if parent_rpcs.respond_to? :delete_scheduled_evaluation_run
      @delete_scheduled_evaluation_run = ::Gapic::Config::Method.new delete_scheduled_evaluation_run_config
      test_persona_voice_config = parent_rpcs.test_persona_voice if parent_rpcs.respond_to? :test_persona_voice
      @test_persona_voice = ::Gapic::Config::Method.new test_persona_voice_config
      export_evaluations_config = parent_rpcs.export_evaluations if parent_rpcs.respond_to? :export_evaluations
      @export_evaluations = ::Gapic::Config::Method.new export_evaluations_config

      yield self if block_given?
    end
  end
end

#logger::Logger, ...

A custom logger to use for request/response debug logging, or the value :default (the default) to construct a default logger, or nil to explicitly disable logging.

Returns:

  • (::Logger, :default, nil)


3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
# File 'lib/google/cloud/ces/v1beta/evaluation_service/rest/client.rb', line 3169

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    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 :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
  # Overrides for http bindings for the RPCs of this service
  # are only used when this service is used as mixin, and only
  # by the host service.
  # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
  config_attr :bindings_override, {}, ::Hash, nil
  config_attr :logger, :default, ::Logger, nil, :default

  # @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 RPC class for the EvaluationService 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 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 `run_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :run_evaluation
    ##
    # RPC-specific configuration for `upload_evaluation_audio`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upload_evaluation_audio
    ##
    # RPC-specific configuration for `create_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation
    ##
    # RPC-specific configuration for `generate_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_evaluation
    ##
    # RPC-specific configuration for `import_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_evaluations
    ##
    # RPC-specific configuration for `create_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_dataset
    ##
    # RPC-specific configuration for `update_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation
    ##
    # RPC-specific configuration for `update_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation
    ##
    # RPC-specific configuration for `delete_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_result
    ##
    # RPC-specific configuration for `delete_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_run
    ##
    # RPC-specific configuration for `get_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation
    ##
    # RPC-specific configuration for `get_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_result
    ##
    # RPC-specific configuration for `get_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_dataset
    ##
    # RPC-specific configuration for `get_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_run
    ##
    # RPC-specific configuration for `list_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluations
    ##
    # RPC-specific configuration for `list_evaluation_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_results
    ##
    # RPC-specific configuration for `list_evaluation_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_datasets
    ##
    # RPC-specific configuration for `list_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_runs
    ##
    # RPC-specific configuration for `list_evaluation_expectations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_expectations
    ##
    # RPC-specific configuration for `get_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_expectation
    ##
    # RPC-specific configuration for `create_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_expectation
    ##
    # RPC-specific configuration for `update_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_expectation
    ##
    # RPC-specific configuration for `delete_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_expectation
    ##
    # RPC-specific configuration for `create_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `get_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `list_scheduled_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_scheduled_evaluation_runs
    ##
    # RPC-specific configuration for `update_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `delete_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `test_persona_voice`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :test_persona_voice
    ##
    # RPC-specific configuration for `export_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_evaluations

    # @private
    def initialize parent_rpcs = nil
      run_evaluation_config = parent_rpcs.run_evaluation if parent_rpcs.respond_to? :run_evaluation
      @run_evaluation = ::Gapic::Config::Method.new run_evaluation_config
      upload_evaluation_audio_config = parent_rpcs.upload_evaluation_audio if parent_rpcs.respond_to? :upload_evaluation_audio
      @upload_evaluation_audio = ::Gapic::Config::Method.new upload_evaluation_audio_config
      create_evaluation_config = parent_rpcs.create_evaluation if parent_rpcs.respond_to? :create_evaluation
      @create_evaluation = ::Gapic::Config::Method.new create_evaluation_config
      generate_evaluation_config = parent_rpcs.generate_evaluation if parent_rpcs.respond_to? :generate_evaluation
      @generate_evaluation = ::Gapic::Config::Method.new generate_evaluation_config
      import_evaluations_config = parent_rpcs.import_evaluations if parent_rpcs.respond_to? :import_evaluations
      @import_evaluations = ::Gapic::Config::Method.new import_evaluations_config
      create_evaluation_dataset_config = parent_rpcs.create_evaluation_dataset if parent_rpcs.respond_to? :create_evaluation_dataset
      @create_evaluation_dataset = ::Gapic::Config::Method.new create_evaluation_dataset_config
      update_evaluation_config = parent_rpcs.update_evaluation if parent_rpcs.respond_to? :update_evaluation
      @update_evaluation = ::Gapic::Config::Method.new update_evaluation_config
      update_evaluation_dataset_config = parent_rpcs.update_evaluation_dataset if parent_rpcs.respond_to? :update_evaluation_dataset
      @update_evaluation_dataset = ::Gapic::Config::Method.new update_evaluation_dataset_config
      delete_evaluation_config = parent_rpcs.delete_evaluation if parent_rpcs.respond_to? :delete_evaluation
      @delete_evaluation = ::Gapic::Config::Method.new delete_evaluation_config
      delete_evaluation_result_config = parent_rpcs.delete_evaluation_result if parent_rpcs.respond_to? :delete_evaluation_result
      @delete_evaluation_result = ::Gapic::Config::Method.new delete_evaluation_result_config
      delete_evaluation_dataset_config = parent_rpcs.delete_evaluation_dataset if parent_rpcs.respond_to? :delete_evaluation_dataset
      @delete_evaluation_dataset = ::Gapic::Config::Method.new delete_evaluation_dataset_config
      delete_evaluation_run_config = parent_rpcs.delete_evaluation_run if parent_rpcs.respond_to? :delete_evaluation_run
      @delete_evaluation_run = ::Gapic::Config::Method.new delete_evaluation_run_config
      get_evaluation_config = parent_rpcs.get_evaluation if parent_rpcs.respond_to? :get_evaluation
      @get_evaluation = ::Gapic::Config::Method.new get_evaluation_config
      get_evaluation_result_config = parent_rpcs.get_evaluation_result if parent_rpcs.respond_to? :get_evaluation_result
      @get_evaluation_result = ::Gapic::Config::Method.new get_evaluation_result_config
      get_evaluation_dataset_config = parent_rpcs.get_evaluation_dataset if parent_rpcs.respond_to? :get_evaluation_dataset
      @get_evaluation_dataset = ::Gapic::Config::Method.new get_evaluation_dataset_config
      get_evaluation_run_config = parent_rpcs.get_evaluation_run if parent_rpcs.respond_to? :get_evaluation_run
      @get_evaluation_run = ::Gapic::Config::Method.new get_evaluation_run_config
      list_evaluations_config = parent_rpcs.list_evaluations if parent_rpcs.respond_to? :list_evaluations
      @list_evaluations = ::Gapic::Config::Method.new list_evaluations_config
      list_evaluation_results_config = parent_rpcs.list_evaluation_results if parent_rpcs.respond_to? :list_evaluation_results
      @list_evaluation_results = ::Gapic::Config::Method.new list_evaluation_results_config
      list_evaluation_datasets_config = parent_rpcs.list_evaluation_datasets if parent_rpcs.respond_to? :list_evaluation_datasets
      @list_evaluation_datasets = ::Gapic::Config::Method.new list_evaluation_datasets_config
      list_evaluation_runs_config = parent_rpcs.list_evaluation_runs if parent_rpcs.respond_to? :list_evaluation_runs
      @list_evaluation_runs = ::Gapic::Config::Method.new list_evaluation_runs_config
      list_evaluation_expectations_config = parent_rpcs.list_evaluation_expectations if parent_rpcs.respond_to? :list_evaluation_expectations
      @list_evaluation_expectations = ::Gapic::Config::Method.new list_evaluation_expectations_config
      get_evaluation_expectation_config = parent_rpcs.get_evaluation_expectation if parent_rpcs.respond_to? :get_evaluation_expectation
      @get_evaluation_expectation = ::Gapic::Config::Method.new get_evaluation_expectation_config
      create_evaluation_expectation_config = parent_rpcs.create_evaluation_expectation if parent_rpcs.respond_to? :create_evaluation_expectation
      @create_evaluation_expectation = ::Gapic::Config::Method.new create_evaluation_expectation_config
      update_evaluation_expectation_config = parent_rpcs.update_evaluation_expectation if parent_rpcs.respond_to? :update_evaluation_expectation
      @update_evaluation_expectation = ::Gapic::Config::Method.new update_evaluation_expectation_config
      delete_evaluation_expectation_config = parent_rpcs.delete_evaluation_expectation if parent_rpcs.respond_to? :delete_evaluation_expectation
      @delete_evaluation_expectation = ::Gapic::Config::Method.new delete_evaluation_expectation_config
      create_scheduled_evaluation_run_config = parent_rpcs.create_scheduled_evaluation_run if parent_rpcs.respond_to? :create_scheduled_evaluation_run
      @create_scheduled_evaluation_run = ::Gapic::Config::Method.new create_scheduled_evaluation_run_config
      get_scheduled_evaluation_run_config = parent_rpcs.get_scheduled_evaluation_run if parent_rpcs.respond_to? :get_scheduled_evaluation_run
      @get_scheduled_evaluation_run = ::Gapic::Config::Method.new get_scheduled_evaluation_run_config
      list_scheduled_evaluation_runs_config = parent_rpcs.list_scheduled_evaluation_runs if parent_rpcs.respond_to? :list_scheduled_evaluation_runs
      @list_scheduled_evaluation_runs = ::Gapic::Config::Method.new list_scheduled_evaluation_runs_config
      update_scheduled_evaluation_run_config = parent_rpcs.update_scheduled_evaluation_run if parent_rpcs.respond_to? :update_scheduled_evaluation_run
      @update_scheduled_evaluation_run = ::Gapic::Config::Method.new update_scheduled_evaluation_run_config
      delete_scheduled_evaluation_run_config = parent_rpcs.delete_scheduled_evaluation_run if parent_rpcs.respond_to? :delete_scheduled_evaluation_run
      @delete_scheduled_evaluation_run = ::Gapic::Config::Method.new delete_scheduled_evaluation_run_config
      test_persona_voice_config = parent_rpcs.test_persona_voice if parent_rpcs.respond_to? :test_persona_voice
      @test_persona_voice = ::Gapic::Config::Method.new test_persona_voice_config
      export_evaluations_config = parent_rpcs.export_evaluations if parent_rpcs.respond_to? :export_evaluations
      @export_evaluations = ::Gapic::Config::Method.new export_evaluations_config

      yield self if block_given?
    end
  end
end

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

Additional headers to be sent with the call.

Returns:

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


3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
# File 'lib/google/cloud/ces/v1beta/evaluation_service/rest/client.rb', line 3169

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    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 :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
  # Overrides for http bindings for the RPCs of this service
  # are only used when this service is used as mixin, and only
  # by the host service.
  # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
  config_attr :bindings_override, {}, ::Hash, nil
  config_attr :logger, :default, ::Logger, nil, :default

  # @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 RPC class for the EvaluationService 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 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 `run_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :run_evaluation
    ##
    # RPC-specific configuration for `upload_evaluation_audio`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upload_evaluation_audio
    ##
    # RPC-specific configuration for `create_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation
    ##
    # RPC-specific configuration for `generate_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_evaluation
    ##
    # RPC-specific configuration for `import_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_evaluations
    ##
    # RPC-specific configuration for `create_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_dataset
    ##
    # RPC-specific configuration for `update_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation
    ##
    # RPC-specific configuration for `update_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation
    ##
    # RPC-specific configuration for `delete_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_result
    ##
    # RPC-specific configuration for `delete_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_run
    ##
    # RPC-specific configuration for `get_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation
    ##
    # RPC-specific configuration for `get_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_result
    ##
    # RPC-specific configuration for `get_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_dataset
    ##
    # RPC-specific configuration for `get_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_run
    ##
    # RPC-specific configuration for `list_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluations
    ##
    # RPC-specific configuration for `list_evaluation_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_results
    ##
    # RPC-specific configuration for `list_evaluation_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_datasets
    ##
    # RPC-specific configuration for `list_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_runs
    ##
    # RPC-specific configuration for `list_evaluation_expectations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_expectations
    ##
    # RPC-specific configuration for `get_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_expectation
    ##
    # RPC-specific configuration for `create_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_expectation
    ##
    # RPC-specific configuration for `update_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_expectation
    ##
    # RPC-specific configuration for `delete_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_expectation
    ##
    # RPC-specific configuration for `create_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `get_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `list_scheduled_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_scheduled_evaluation_runs
    ##
    # RPC-specific configuration for `update_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `delete_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `test_persona_voice`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :test_persona_voice
    ##
    # RPC-specific configuration for `export_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_evaluations

    # @private
    def initialize parent_rpcs = nil
      run_evaluation_config = parent_rpcs.run_evaluation if parent_rpcs.respond_to? :run_evaluation
      @run_evaluation = ::Gapic::Config::Method.new run_evaluation_config
      upload_evaluation_audio_config = parent_rpcs.upload_evaluation_audio if parent_rpcs.respond_to? :upload_evaluation_audio
      @upload_evaluation_audio = ::Gapic::Config::Method.new upload_evaluation_audio_config
      create_evaluation_config = parent_rpcs.create_evaluation if parent_rpcs.respond_to? :create_evaluation
      @create_evaluation = ::Gapic::Config::Method.new create_evaluation_config
      generate_evaluation_config = parent_rpcs.generate_evaluation if parent_rpcs.respond_to? :generate_evaluation
      @generate_evaluation = ::Gapic::Config::Method.new generate_evaluation_config
      import_evaluations_config = parent_rpcs.import_evaluations if parent_rpcs.respond_to? :import_evaluations
      @import_evaluations = ::Gapic::Config::Method.new import_evaluations_config
      create_evaluation_dataset_config = parent_rpcs.create_evaluation_dataset if parent_rpcs.respond_to? :create_evaluation_dataset
      @create_evaluation_dataset = ::Gapic::Config::Method.new create_evaluation_dataset_config
      update_evaluation_config = parent_rpcs.update_evaluation if parent_rpcs.respond_to? :update_evaluation
      @update_evaluation = ::Gapic::Config::Method.new update_evaluation_config
      update_evaluation_dataset_config = parent_rpcs.update_evaluation_dataset if parent_rpcs.respond_to? :update_evaluation_dataset
      @update_evaluation_dataset = ::Gapic::Config::Method.new update_evaluation_dataset_config
      delete_evaluation_config = parent_rpcs.delete_evaluation if parent_rpcs.respond_to? :delete_evaluation
      @delete_evaluation = ::Gapic::Config::Method.new delete_evaluation_config
      delete_evaluation_result_config = parent_rpcs.delete_evaluation_result if parent_rpcs.respond_to? :delete_evaluation_result
      @delete_evaluation_result = ::Gapic::Config::Method.new delete_evaluation_result_config
      delete_evaluation_dataset_config = parent_rpcs.delete_evaluation_dataset if parent_rpcs.respond_to? :delete_evaluation_dataset
      @delete_evaluation_dataset = ::Gapic::Config::Method.new delete_evaluation_dataset_config
      delete_evaluation_run_config = parent_rpcs.delete_evaluation_run if parent_rpcs.respond_to? :delete_evaluation_run
      @delete_evaluation_run = ::Gapic::Config::Method.new delete_evaluation_run_config
      get_evaluation_config = parent_rpcs.get_evaluation if parent_rpcs.respond_to? :get_evaluation
      @get_evaluation = ::Gapic::Config::Method.new get_evaluation_config
      get_evaluation_result_config = parent_rpcs.get_evaluation_result if parent_rpcs.respond_to? :get_evaluation_result
      @get_evaluation_result = ::Gapic::Config::Method.new get_evaluation_result_config
      get_evaluation_dataset_config = parent_rpcs.get_evaluation_dataset if parent_rpcs.respond_to? :get_evaluation_dataset
      @get_evaluation_dataset = ::Gapic::Config::Method.new get_evaluation_dataset_config
      get_evaluation_run_config = parent_rpcs.get_evaluation_run if parent_rpcs.respond_to? :get_evaluation_run
      @get_evaluation_run = ::Gapic::Config::Method.new get_evaluation_run_config
      list_evaluations_config = parent_rpcs.list_evaluations if parent_rpcs.respond_to? :list_evaluations
      @list_evaluations = ::Gapic::Config::Method.new list_evaluations_config
      list_evaluation_results_config = parent_rpcs.list_evaluation_results if parent_rpcs.respond_to? :list_evaluation_results
      @list_evaluation_results = ::Gapic::Config::Method.new list_evaluation_results_config
      list_evaluation_datasets_config = parent_rpcs.list_evaluation_datasets if parent_rpcs.respond_to? :list_evaluation_datasets
      @list_evaluation_datasets = ::Gapic::Config::Method.new list_evaluation_datasets_config
      list_evaluation_runs_config = parent_rpcs.list_evaluation_runs if parent_rpcs.respond_to? :list_evaluation_runs
      @list_evaluation_runs = ::Gapic::Config::Method.new list_evaluation_runs_config
      list_evaluation_expectations_config = parent_rpcs.list_evaluation_expectations if parent_rpcs.respond_to? :list_evaluation_expectations
      @list_evaluation_expectations = ::Gapic::Config::Method.new list_evaluation_expectations_config
      get_evaluation_expectation_config = parent_rpcs.get_evaluation_expectation if parent_rpcs.respond_to? :get_evaluation_expectation
      @get_evaluation_expectation = ::Gapic::Config::Method.new get_evaluation_expectation_config
      create_evaluation_expectation_config = parent_rpcs.create_evaluation_expectation if parent_rpcs.respond_to? :create_evaluation_expectation
      @create_evaluation_expectation = ::Gapic::Config::Method.new create_evaluation_expectation_config
      update_evaluation_expectation_config = parent_rpcs.update_evaluation_expectation if parent_rpcs.respond_to? :update_evaluation_expectation
      @update_evaluation_expectation = ::Gapic::Config::Method.new update_evaluation_expectation_config
      delete_evaluation_expectation_config = parent_rpcs.delete_evaluation_expectation if parent_rpcs.respond_to? :delete_evaluation_expectation
      @delete_evaluation_expectation = ::Gapic::Config::Method.new delete_evaluation_expectation_config
      create_scheduled_evaluation_run_config = parent_rpcs.create_scheduled_evaluation_run if parent_rpcs.respond_to? :create_scheduled_evaluation_run
      @create_scheduled_evaluation_run = ::Gapic::Config::Method.new create_scheduled_evaluation_run_config
      get_scheduled_evaluation_run_config = parent_rpcs.get_scheduled_evaluation_run if parent_rpcs.respond_to? :get_scheduled_evaluation_run
      @get_scheduled_evaluation_run = ::Gapic::Config::Method.new get_scheduled_evaluation_run_config
      list_scheduled_evaluation_runs_config = parent_rpcs.list_scheduled_evaluation_runs if parent_rpcs.respond_to? :list_scheduled_evaluation_runs
      @list_scheduled_evaluation_runs = ::Gapic::Config::Method.new list_scheduled_evaluation_runs_config
      update_scheduled_evaluation_run_config = parent_rpcs.update_scheduled_evaluation_run if parent_rpcs.respond_to? :update_scheduled_evaluation_run
      @update_scheduled_evaluation_run = ::Gapic::Config::Method.new update_scheduled_evaluation_run_config
      delete_scheduled_evaluation_run_config = parent_rpcs.delete_scheduled_evaluation_run if parent_rpcs.respond_to? :delete_scheduled_evaluation_run
      @delete_scheduled_evaluation_run = ::Gapic::Config::Method.new delete_scheduled_evaluation_run_config
      test_persona_voice_config = parent_rpcs.test_persona_voice if parent_rpcs.respond_to? :test_persona_voice
      @test_persona_voice = ::Gapic::Config::Method.new test_persona_voice_config
      export_evaluations_config = parent_rpcs.export_evaluations if parent_rpcs.respond_to? :export_evaluations
      @export_evaluations = ::Gapic::Config::Method.new export_evaluations_config

      yield self if block_given?
    end
  end
end

#quota_project::String

A separate project against which to charge quota.

Returns:

  • (::String)


3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
# File 'lib/google/cloud/ces/v1beta/evaluation_service/rest/client.rb', line 3169

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    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 :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
  # Overrides for http bindings for the RPCs of this service
  # are only used when this service is used as mixin, and only
  # by the host service.
  # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
  config_attr :bindings_override, {}, ::Hash, nil
  config_attr :logger, :default, ::Logger, nil, :default

  # @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 RPC class for the EvaluationService 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 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 `run_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :run_evaluation
    ##
    # RPC-specific configuration for `upload_evaluation_audio`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upload_evaluation_audio
    ##
    # RPC-specific configuration for `create_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation
    ##
    # RPC-specific configuration for `generate_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_evaluation
    ##
    # RPC-specific configuration for `import_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_evaluations
    ##
    # RPC-specific configuration for `create_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_dataset
    ##
    # RPC-specific configuration for `update_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation
    ##
    # RPC-specific configuration for `update_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation
    ##
    # RPC-specific configuration for `delete_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_result
    ##
    # RPC-specific configuration for `delete_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_run
    ##
    # RPC-specific configuration for `get_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation
    ##
    # RPC-specific configuration for `get_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_result
    ##
    # RPC-specific configuration for `get_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_dataset
    ##
    # RPC-specific configuration for `get_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_run
    ##
    # RPC-specific configuration for `list_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluations
    ##
    # RPC-specific configuration for `list_evaluation_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_results
    ##
    # RPC-specific configuration for `list_evaluation_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_datasets
    ##
    # RPC-specific configuration for `list_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_runs
    ##
    # RPC-specific configuration for `list_evaluation_expectations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_expectations
    ##
    # RPC-specific configuration for `get_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_expectation
    ##
    # RPC-specific configuration for `create_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_expectation
    ##
    # RPC-specific configuration for `update_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_expectation
    ##
    # RPC-specific configuration for `delete_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_expectation
    ##
    # RPC-specific configuration for `create_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `get_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `list_scheduled_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_scheduled_evaluation_runs
    ##
    # RPC-specific configuration for `update_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `delete_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `test_persona_voice`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :test_persona_voice
    ##
    # RPC-specific configuration for `export_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_evaluations

    # @private
    def initialize parent_rpcs = nil
      run_evaluation_config = parent_rpcs.run_evaluation if parent_rpcs.respond_to? :run_evaluation
      @run_evaluation = ::Gapic::Config::Method.new run_evaluation_config
      upload_evaluation_audio_config = parent_rpcs.upload_evaluation_audio if parent_rpcs.respond_to? :upload_evaluation_audio
      @upload_evaluation_audio = ::Gapic::Config::Method.new upload_evaluation_audio_config
      create_evaluation_config = parent_rpcs.create_evaluation if parent_rpcs.respond_to? :create_evaluation
      @create_evaluation = ::Gapic::Config::Method.new create_evaluation_config
      generate_evaluation_config = parent_rpcs.generate_evaluation if parent_rpcs.respond_to? :generate_evaluation
      @generate_evaluation = ::Gapic::Config::Method.new generate_evaluation_config
      import_evaluations_config = parent_rpcs.import_evaluations if parent_rpcs.respond_to? :import_evaluations
      @import_evaluations = ::Gapic::Config::Method.new import_evaluations_config
      create_evaluation_dataset_config = parent_rpcs.create_evaluation_dataset if parent_rpcs.respond_to? :create_evaluation_dataset
      @create_evaluation_dataset = ::Gapic::Config::Method.new create_evaluation_dataset_config
      update_evaluation_config = parent_rpcs.update_evaluation if parent_rpcs.respond_to? :update_evaluation
      @update_evaluation = ::Gapic::Config::Method.new update_evaluation_config
      update_evaluation_dataset_config = parent_rpcs.update_evaluation_dataset if parent_rpcs.respond_to? :update_evaluation_dataset
      @update_evaluation_dataset = ::Gapic::Config::Method.new update_evaluation_dataset_config
      delete_evaluation_config = parent_rpcs.delete_evaluation if parent_rpcs.respond_to? :delete_evaluation
      @delete_evaluation = ::Gapic::Config::Method.new delete_evaluation_config
      delete_evaluation_result_config = parent_rpcs.delete_evaluation_result if parent_rpcs.respond_to? :delete_evaluation_result
      @delete_evaluation_result = ::Gapic::Config::Method.new delete_evaluation_result_config
      delete_evaluation_dataset_config = parent_rpcs.delete_evaluation_dataset if parent_rpcs.respond_to? :delete_evaluation_dataset
      @delete_evaluation_dataset = ::Gapic::Config::Method.new delete_evaluation_dataset_config
      delete_evaluation_run_config = parent_rpcs.delete_evaluation_run if parent_rpcs.respond_to? :delete_evaluation_run
      @delete_evaluation_run = ::Gapic::Config::Method.new delete_evaluation_run_config
      get_evaluation_config = parent_rpcs.get_evaluation if parent_rpcs.respond_to? :get_evaluation
      @get_evaluation = ::Gapic::Config::Method.new get_evaluation_config
      get_evaluation_result_config = parent_rpcs.get_evaluation_result if parent_rpcs.respond_to? :get_evaluation_result
      @get_evaluation_result = ::Gapic::Config::Method.new get_evaluation_result_config
      get_evaluation_dataset_config = parent_rpcs.get_evaluation_dataset if parent_rpcs.respond_to? :get_evaluation_dataset
      @get_evaluation_dataset = ::Gapic::Config::Method.new get_evaluation_dataset_config
      get_evaluation_run_config = parent_rpcs.get_evaluation_run if parent_rpcs.respond_to? :get_evaluation_run
      @get_evaluation_run = ::Gapic::Config::Method.new get_evaluation_run_config
      list_evaluations_config = parent_rpcs.list_evaluations if parent_rpcs.respond_to? :list_evaluations
      @list_evaluations = ::Gapic::Config::Method.new list_evaluations_config
      list_evaluation_results_config = parent_rpcs.list_evaluation_results if parent_rpcs.respond_to? :list_evaluation_results
      @list_evaluation_results = ::Gapic::Config::Method.new list_evaluation_results_config
      list_evaluation_datasets_config = parent_rpcs.list_evaluation_datasets if parent_rpcs.respond_to? :list_evaluation_datasets
      @list_evaluation_datasets = ::Gapic::Config::Method.new list_evaluation_datasets_config
      list_evaluation_runs_config = parent_rpcs.list_evaluation_runs if parent_rpcs.respond_to? :list_evaluation_runs
      @list_evaluation_runs = ::Gapic::Config::Method.new list_evaluation_runs_config
      list_evaluation_expectations_config = parent_rpcs.list_evaluation_expectations if parent_rpcs.respond_to? :list_evaluation_expectations
      @list_evaluation_expectations = ::Gapic::Config::Method.new list_evaluation_expectations_config
      get_evaluation_expectation_config = parent_rpcs.get_evaluation_expectation if parent_rpcs.respond_to? :get_evaluation_expectation
      @get_evaluation_expectation = ::Gapic::Config::Method.new get_evaluation_expectation_config
      create_evaluation_expectation_config = parent_rpcs.create_evaluation_expectation if parent_rpcs.respond_to? :create_evaluation_expectation
      @create_evaluation_expectation = ::Gapic::Config::Method.new create_evaluation_expectation_config
      update_evaluation_expectation_config = parent_rpcs.update_evaluation_expectation if parent_rpcs.respond_to? :update_evaluation_expectation
      @update_evaluation_expectation = ::Gapic::Config::Method.new update_evaluation_expectation_config
      delete_evaluation_expectation_config = parent_rpcs.delete_evaluation_expectation if parent_rpcs.respond_to? :delete_evaluation_expectation
      @delete_evaluation_expectation = ::Gapic::Config::Method.new delete_evaluation_expectation_config
      create_scheduled_evaluation_run_config = parent_rpcs.create_scheduled_evaluation_run if parent_rpcs.respond_to? :create_scheduled_evaluation_run
      @create_scheduled_evaluation_run = ::Gapic::Config::Method.new create_scheduled_evaluation_run_config
      get_scheduled_evaluation_run_config = parent_rpcs.get_scheduled_evaluation_run if parent_rpcs.respond_to? :get_scheduled_evaluation_run
      @get_scheduled_evaluation_run = ::Gapic::Config::Method.new get_scheduled_evaluation_run_config
      list_scheduled_evaluation_runs_config = parent_rpcs.list_scheduled_evaluation_runs if parent_rpcs.respond_to? :list_scheduled_evaluation_runs
      @list_scheduled_evaluation_runs = ::Gapic::Config::Method.new list_scheduled_evaluation_runs_config
      update_scheduled_evaluation_run_config = parent_rpcs.update_scheduled_evaluation_run if parent_rpcs.respond_to? :update_scheduled_evaluation_run
      @update_scheduled_evaluation_run = ::Gapic::Config::Method.new update_scheduled_evaluation_run_config
      delete_scheduled_evaluation_run_config = parent_rpcs.delete_scheduled_evaluation_run if parent_rpcs.respond_to? :delete_scheduled_evaluation_run
      @delete_scheduled_evaluation_run = ::Gapic::Config::Method.new delete_scheduled_evaluation_run_config
      test_persona_voice_config = parent_rpcs.test_persona_voice if parent_rpcs.respond_to? :test_persona_voice
      @test_persona_voice = ::Gapic::Config::Method.new test_persona_voice_config
      export_evaluations_config = parent_rpcs.export_evaluations if parent_rpcs.respond_to? :export_evaluations
      @export_evaluations = ::Gapic::Config::Method.new export_evaluations_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)


3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
# File 'lib/google/cloud/ces/v1beta/evaluation_service/rest/client.rb', line 3169

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    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 :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
  # Overrides for http bindings for the RPCs of this service
  # are only used when this service is used as mixin, and only
  # by the host service.
  # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
  config_attr :bindings_override, {}, ::Hash, nil
  config_attr :logger, :default, ::Logger, nil, :default

  # @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 RPC class for the EvaluationService 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 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 `run_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :run_evaluation
    ##
    # RPC-specific configuration for `upload_evaluation_audio`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upload_evaluation_audio
    ##
    # RPC-specific configuration for `create_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation
    ##
    # RPC-specific configuration for `generate_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_evaluation
    ##
    # RPC-specific configuration for `import_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_evaluations
    ##
    # RPC-specific configuration for `create_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_dataset
    ##
    # RPC-specific configuration for `update_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation
    ##
    # RPC-specific configuration for `update_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation
    ##
    # RPC-specific configuration for `delete_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_result
    ##
    # RPC-specific configuration for `delete_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_run
    ##
    # RPC-specific configuration for `get_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation
    ##
    # RPC-specific configuration for `get_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_result
    ##
    # RPC-specific configuration for `get_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_dataset
    ##
    # RPC-specific configuration for `get_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_run
    ##
    # RPC-specific configuration for `list_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluations
    ##
    # RPC-specific configuration for `list_evaluation_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_results
    ##
    # RPC-specific configuration for `list_evaluation_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_datasets
    ##
    # RPC-specific configuration for `list_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_runs
    ##
    # RPC-specific configuration for `list_evaluation_expectations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_expectations
    ##
    # RPC-specific configuration for `get_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_expectation
    ##
    # RPC-specific configuration for `create_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_expectation
    ##
    # RPC-specific configuration for `update_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_expectation
    ##
    # RPC-specific configuration for `delete_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_expectation
    ##
    # RPC-specific configuration for `create_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `get_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `list_scheduled_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_scheduled_evaluation_runs
    ##
    # RPC-specific configuration for `update_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `delete_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `test_persona_voice`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :test_persona_voice
    ##
    # RPC-specific configuration for `export_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_evaluations

    # @private
    def initialize parent_rpcs = nil
      run_evaluation_config = parent_rpcs.run_evaluation if parent_rpcs.respond_to? :run_evaluation
      @run_evaluation = ::Gapic::Config::Method.new run_evaluation_config
      upload_evaluation_audio_config = parent_rpcs.upload_evaluation_audio if parent_rpcs.respond_to? :upload_evaluation_audio
      @upload_evaluation_audio = ::Gapic::Config::Method.new upload_evaluation_audio_config
      create_evaluation_config = parent_rpcs.create_evaluation if parent_rpcs.respond_to? :create_evaluation
      @create_evaluation = ::Gapic::Config::Method.new create_evaluation_config
      generate_evaluation_config = parent_rpcs.generate_evaluation if parent_rpcs.respond_to? :generate_evaluation
      @generate_evaluation = ::Gapic::Config::Method.new generate_evaluation_config
      import_evaluations_config = parent_rpcs.import_evaluations if parent_rpcs.respond_to? :import_evaluations
      @import_evaluations = ::Gapic::Config::Method.new import_evaluations_config
      create_evaluation_dataset_config = parent_rpcs.create_evaluation_dataset if parent_rpcs.respond_to? :create_evaluation_dataset
      @create_evaluation_dataset = ::Gapic::Config::Method.new create_evaluation_dataset_config
      update_evaluation_config = parent_rpcs.update_evaluation if parent_rpcs.respond_to? :update_evaluation
      @update_evaluation = ::Gapic::Config::Method.new update_evaluation_config
      update_evaluation_dataset_config = parent_rpcs.update_evaluation_dataset if parent_rpcs.respond_to? :update_evaluation_dataset
      @update_evaluation_dataset = ::Gapic::Config::Method.new update_evaluation_dataset_config
      delete_evaluation_config = parent_rpcs.delete_evaluation if parent_rpcs.respond_to? :delete_evaluation
      @delete_evaluation = ::Gapic::Config::Method.new delete_evaluation_config
      delete_evaluation_result_config = parent_rpcs.delete_evaluation_result if parent_rpcs.respond_to? :delete_evaluation_result
      @delete_evaluation_result = ::Gapic::Config::Method.new delete_evaluation_result_config
      delete_evaluation_dataset_config = parent_rpcs.delete_evaluation_dataset if parent_rpcs.respond_to? :delete_evaluation_dataset
      @delete_evaluation_dataset = ::Gapic::Config::Method.new delete_evaluation_dataset_config
      delete_evaluation_run_config = parent_rpcs.delete_evaluation_run if parent_rpcs.respond_to? :delete_evaluation_run
      @delete_evaluation_run = ::Gapic::Config::Method.new delete_evaluation_run_config
      get_evaluation_config = parent_rpcs.get_evaluation if parent_rpcs.respond_to? :get_evaluation
      @get_evaluation = ::Gapic::Config::Method.new get_evaluation_config
      get_evaluation_result_config = parent_rpcs.get_evaluation_result if parent_rpcs.respond_to? :get_evaluation_result
      @get_evaluation_result = ::Gapic::Config::Method.new get_evaluation_result_config
      get_evaluation_dataset_config = parent_rpcs.get_evaluation_dataset if parent_rpcs.respond_to? :get_evaluation_dataset
      @get_evaluation_dataset = ::Gapic::Config::Method.new get_evaluation_dataset_config
      get_evaluation_run_config = parent_rpcs.get_evaluation_run if parent_rpcs.respond_to? :get_evaluation_run
      @get_evaluation_run = ::Gapic::Config::Method.new get_evaluation_run_config
      list_evaluations_config = parent_rpcs.list_evaluations if parent_rpcs.respond_to? :list_evaluations
      @list_evaluations = ::Gapic::Config::Method.new list_evaluations_config
      list_evaluation_results_config = parent_rpcs.list_evaluation_results if parent_rpcs.respond_to? :list_evaluation_results
      @list_evaluation_results = ::Gapic::Config::Method.new list_evaluation_results_config
      list_evaluation_datasets_config = parent_rpcs.list_evaluation_datasets if parent_rpcs.respond_to? :list_evaluation_datasets
      @list_evaluation_datasets = ::Gapic::Config::Method.new list_evaluation_datasets_config
      list_evaluation_runs_config = parent_rpcs.list_evaluation_runs if parent_rpcs.respond_to? :list_evaluation_runs
      @list_evaluation_runs = ::Gapic::Config::Method.new list_evaluation_runs_config
      list_evaluation_expectations_config = parent_rpcs.list_evaluation_expectations if parent_rpcs.respond_to? :list_evaluation_expectations
      @list_evaluation_expectations = ::Gapic::Config::Method.new list_evaluation_expectations_config
      get_evaluation_expectation_config = parent_rpcs.get_evaluation_expectation if parent_rpcs.respond_to? :get_evaluation_expectation
      @get_evaluation_expectation = ::Gapic::Config::Method.new get_evaluation_expectation_config
      create_evaluation_expectation_config = parent_rpcs.create_evaluation_expectation if parent_rpcs.respond_to? :create_evaluation_expectation
      @create_evaluation_expectation = ::Gapic::Config::Method.new create_evaluation_expectation_config
      update_evaluation_expectation_config = parent_rpcs.update_evaluation_expectation if parent_rpcs.respond_to? :update_evaluation_expectation
      @update_evaluation_expectation = ::Gapic::Config::Method.new update_evaluation_expectation_config
      delete_evaluation_expectation_config = parent_rpcs.delete_evaluation_expectation if parent_rpcs.respond_to? :delete_evaluation_expectation
      @delete_evaluation_expectation = ::Gapic::Config::Method.new delete_evaluation_expectation_config
      create_scheduled_evaluation_run_config = parent_rpcs.create_scheduled_evaluation_run if parent_rpcs.respond_to? :create_scheduled_evaluation_run
      @create_scheduled_evaluation_run = ::Gapic::Config::Method.new create_scheduled_evaluation_run_config
      get_scheduled_evaluation_run_config = parent_rpcs.get_scheduled_evaluation_run if parent_rpcs.respond_to? :get_scheduled_evaluation_run
      @get_scheduled_evaluation_run = ::Gapic::Config::Method.new get_scheduled_evaluation_run_config
      list_scheduled_evaluation_runs_config = parent_rpcs.list_scheduled_evaluation_runs if parent_rpcs.respond_to? :list_scheduled_evaluation_runs
      @list_scheduled_evaluation_runs = ::Gapic::Config::Method.new list_scheduled_evaluation_runs_config
      update_scheduled_evaluation_run_config = parent_rpcs.update_scheduled_evaluation_run if parent_rpcs.respond_to? :update_scheduled_evaluation_run
      @update_scheduled_evaluation_run = ::Gapic::Config::Method.new update_scheduled_evaluation_run_config
      delete_scheduled_evaluation_run_config = parent_rpcs.delete_scheduled_evaluation_run if parent_rpcs.respond_to? :delete_scheduled_evaluation_run
      @delete_scheduled_evaluation_run = ::Gapic::Config::Method.new delete_scheduled_evaluation_run_config
      test_persona_voice_config = parent_rpcs.test_persona_voice if parent_rpcs.respond_to? :test_persona_voice
      @test_persona_voice = ::Gapic::Config::Method.new test_persona_voice_config
      export_evaluations_config = parent_rpcs.export_evaluations if parent_rpcs.respond_to? :export_evaluations
      @export_evaluations = ::Gapic::Config::Method.new export_evaluations_config

      yield self if block_given?
    end
  end
end

#scope::Array<::String>

The OAuth scopes

Returns:

  • (::Array<::String>)


3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
# File 'lib/google/cloud/ces/v1beta/evaluation_service/rest/client.rb', line 3169

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    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 :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
  # Overrides for http bindings for the RPCs of this service
  # are only used when this service is used as mixin, and only
  # by the host service.
  # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
  config_attr :bindings_override, {}, ::Hash, nil
  config_attr :logger, :default, ::Logger, nil, :default

  # @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 RPC class for the EvaluationService 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 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 `run_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :run_evaluation
    ##
    # RPC-specific configuration for `upload_evaluation_audio`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upload_evaluation_audio
    ##
    # RPC-specific configuration for `create_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation
    ##
    # RPC-specific configuration for `generate_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_evaluation
    ##
    # RPC-specific configuration for `import_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_evaluations
    ##
    # RPC-specific configuration for `create_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_dataset
    ##
    # RPC-specific configuration for `update_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation
    ##
    # RPC-specific configuration for `update_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation
    ##
    # RPC-specific configuration for `delete_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_result
    ##
    # RPC-specific configuration for `delete_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_run
    ##
    # RPC-specific configuration for `get_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation
    ##
    # RPC-specific configuration for `get_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_result
    ##
    # RPC-specific configuration for `get_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_dataset
    ##
    # RPC-specific configuration for `get_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_run
    ##
    # RPC-specific configuration for `list_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluations
    ##
    # RPC-specific configuration for `list_evaluation_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_results
    ##
    # RPC-specific configuration for `list_evaluation_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_datasets
    ##
    # RPC-specific configuration for `list_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_runs
    ##
    # RPC-specific configuration for `list_evaluation_expectations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_expectations
    ##
    # RPC-specific configuration for `get_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_expectation
    ##
    # RPC-specific configuration for `create_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_expectation
    ##
    # RPC-specific configuration for `update_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_expectation
    ##
    # RPC-specific configuration for `delete_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_expectation
    ##
    # RPC-specific configuration for `create_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `get_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `list_scheduled_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_scheduled_evaluation_runs
    ##
    # RPC-specific configuration for `update_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `delete_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `test_persona_voice`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :test_persona_voice
    ##
    # RPC-specific configuration for `export_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_evaluations

    # @private
    def initialize parent_rpcs = nil
      run_evaluation_config = parent_rpcs.run_evaluation if parent_rpcs.respond_to? :run_evaluation
      @run_evaluation = ::Gapic::Config::Method.new run_evaluation_config
      upload_evaluation_audio_config = parent_rpcs.upload_evaluation_audio if parent_rpcs.respond_to? :upload_evaluation_audio
      @upload_evaluation_audio = ::Gapic::Config::Method.new upload_evaluation_audio_config
      create_evaluation_config = parent_rpcs.create_evaluation if parent_rpcs.respond_to? :create_evaluation
      @create_evaluation = ::Gapic::Config::Method.new create_evaluation_config
      generate_evaluation_config = parent_rpcs.generate_evaluation if parent_rpcs.respond_to? :generate_evaluation
      @generate_evaluation = ::Gapic::Config::Method.new generate_evaluation_config
      import_evaluations_config = parent_rpcs.import_evaluations if parent_rpcs.respond_to? :import_evaluations
      @import_evaluations = ::Gapic::Config::Method.new import_evaluations_config
      create_evaluation_dataset_config = parent_rpcs.create_evaluation_dataset if parent_rpcs.respond_to? :create_evaluation_dataset
      @create_evaluation_dataset = ::Gapic::Config::Method.new create_evaluation_dataset_config
      update_evaluation_config = parent_rpcs.update_evaluation if parent_rpcs.respond_to? :update_evaluation
      @update_evaluation = ::Gapic::Config::Method.new update_evaluation_config
      update_evaluation_dataset_config = parent_rpcs.update_evaluation_dataset if parent_rpcs.respond_to? :update_evaluation_dataset
      @update_evaluation_dataset = ::Gapic::Config::Method.new update_evaluation_dataset_config
      delete_evaluation_config = parent_rpcs.delete_evaluation if parent_rpcs.respond_to? :delete_evaluation
      @delete_evaluation = ::Gapic::Config::Method.new delete_evaluation_config
      delete_evaluation_result_config = parent_rpcs.delete_evaluation_result if parent_rpcs.respond_to? :delete_evaluation_result
      @delete_evaluation_result = ::Gapic::Config::Method.new delete_evaluation_result_config
      delete_evaluation_dataset_config = parent_rpcs.delete_evaluation_dataset if parent_rpcs.respond_to? :delete_evaluation_dataset
      @delete_evaluation_dataset = ::Gapic::Config::Method.new delete_evaluation_dataset_config
      delete_evaluation_run_config = parent_rpcs.delete_evaluation_run if parent_rpcs.respond_to? :delete_evaluation_run
      @delete_evaluation_run = ::Gapic::Config::Method.new delete_evaluation_run_config
      get_evaluation_config = parent_rpcs.get_evaluation if parent_rpcs.respond_to? :get_evaluation
      @get_evaluation = ::Gapic::Config::Method.new get_evaluation_config
      get_evaluation_result_config = parent_rpcs.get_evaluation_result if parent_rpcs.respond_to? :get_evaluation_result
      @get_evaluation_result = ::Gapic::Config::Method.new get_evaluation_result_config
      get_evaluation_dataset_config = parent_rpcs.get_evaluation_dataset if parent_rpcs.respond_to? :get_evaluation_dataset
      @get_evaluation_dataset = ::Gapic::Config::Method.new get_evaluation_dataset_config
      get_evaluation_run_config = parent_rpcs.get_evaluation_run if parent_rpcs.respond_to? :get_evaluation_run
      @get_evaluation_run = ::Gapic::Config::Method.new get_evaluation_run_config
      list_evaluations_config = parent_rpcs.list_evaluations if parent_rpcs.respond_to? :list_evaluations
      @list_evaluations = ::Gapic::Config::Method.new list_evaluations_config
      list_evaluation_results_config = parent_rpcs.list_evaluation_results if parent_rpcs.respond_to? :list_evaluation_results
      @list_evaluation_results = ::Gapic::Config::Method.new list_evaluation_results_config
      list_evaluation_datasets_config = parent_rpcs.list_evaluation_datasets if parent_rpcs.respond_to? :list_evaluation_datasets
      @list_evaluation_datasets = ::Gapic::Config::Method.new list_evaluation_datasets_config
      list_evaluation_runs_config = parent_rpcs.list_evaluation_runs if parent_rpcs.respond_to? :list_evaluation_runs
      @list_evaluation_runs = ::Gapic::Config::Method.new list_evaluation_runs_config
      list_evaluation_expectations_config = parent_rpcs.list_evaluation_expectations if parent_rpcs.respond_to? :list_evaluation_expectations
      @list_evaluation_expectations = ::Gapic::Config::Method.new list_evaluation_expectations_config
      get_evaluation_expectation_config = parent_rpcs.get_evaluation_expectation if parent_rpcs.respond_to? :get_evaluation_expectation
      @get_evaluation_expectation = ::Gapic::Config::Method.new get_evaluation_expectation_config
      create_evaluation_expectation_config = parent_rpcs.create_evaluation_expectation if parent_rpcs.respond_to? :create_evaluation_expectation
      @create_evaluation_expectation = ::Gapic::Config::Method.new create_evaluation_expectation_config
      update_evaluation_expectation_config = parent_rpcs.update_evaluation_expectation if parent_rpcs.respond_to? :update_evaluation_expectation
      @update_evaluation_expectation = ::Gapic::Config::Method.new update_evaluation_expectation_config
      delete_evaluation_expectation_config = parent_rpcs.delete_evaluation_expectation if parent_rpcs.respond_to? :delete_evaluation_expectation
      @delete_evaluation_expectation = ::Gapic::Config::Method.new delete_evaluation_expectation_config
      create_scheduled_evaluation_run_config = parent_rpcs.create_scheduled_evaluation_run if parent_rpcs.respond_to? :create_scheduled_evaluation_run
      @create_scheduled_evaluation_run = ::Gapic::Config::Method.new create_scheduled_evaluation_run_config
      get_scheduled_evaluation_run_config = parent_rpcs.get_scheduled_evaluation_run if parent_rpcs.respond_to? :get_scheduled_evaluation_run
      @get_scheduled_evaluation_run = ::Gapic::Config::Method.new get_scheduled_evaluation_run_config
      list_scheduled_evaluation_runs_config = parent_rpcs.list_scheduled_evaluation_runs if parent_rpcs.respond_to? :list_scheduled_evaluation_runs
      @list_scheduled_evaluation_runs = ::Gapic::Config::Method.new list_scheduled_evaluation_runs_config
      update_scheduled_evaluation_run_config = parent_rpcs.update_scheduled_evaluation_run if parent_rpcs.respond_to? :update_scheduled_evaluation_run
      @update_scheduled_evaluation_run = ::Gapic::Config::Method.new update_scheduled_evaluation_run_config
      delete_scheduled_evaluation_run_config = parent_rpcs.delete_scheduled_evaluation_run if parent_rpcs.respond_to? :delete_scheduled_evaluation_run
      @delete_scheduled_evaluation_run = ::Gapic::Config::Method.new delete_scheduled_evaluation_run_config
      test_persona_voice_config = parent_rpcs.test_persona_voice if parent_rpcs.respond_to? :test_persona_voice
      @test_persona_voice = ::Gapic::Config::Method.new test_persona_voice_config
      export_evaluations_config = parent_rpcs.export_evaluations if parent_rpcs.respond_to? :export_evaluations
      @export_evaluations = ::Gapic::Config::Method.new export_evaluations_config

      yield self if block_given?
    end
  end
end

#timeout::Numeric

The call timeout in seconds.

Returns:

  • (::Numeric)


3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
# File 'lib/google/cloud/ces/v1beta/evaluation_service/rest/client.rb', line 3169

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    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 :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
  # Overrides for http bindings for the RPCs of this service
  # are only used when this service is used as mixin, and only
  # by the host service.
  # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
  config_attr :bindings_override, {}, ::Hash, nil
  config_attr :logger, :default, ::Logger, nil, :default

  # @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 RPC class for the EvaluationService 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 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 `run_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :run_evaluation
    ##
    # RPC-specific configuration for `upload_evaluation_audio`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upload_evaluation_audio
    ##
    # RPC-specific configuration for `create_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation
    ##
    # RPC-specific configuration for `generate_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_evaluation
    ##
    # RPC-specific configuration for `import_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_evaluations
    ##
    # RPC-specific configuration for `create_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_dataset
    ##
    # RPC-specific configuration for `update_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation
    ##
    # RPC-specific configuration for `update_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation
    ##
    # RPC-specific configuration for `delete_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_result
    ##
    # RPC-specific configuration for `delete_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_run
    ##
    # RPC-specific configuration for `get_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation
    ##
    # RPC-specific configuration for `get_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_result
    ##
    # RPC-specific configuration for `get_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_dataset
    ##
    # RPC-specific configuration for `get_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_run
    ##
    # RPC-specific configuration for `list_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluations
    ##
    # RPC-specific configuration for `list_evaluation_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_results
    ##
    # RPC-specific configuration for `list_evaluation_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_datasets
    ##
    # RPC-specific configuration for `list_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_runs
    ##
    # RPC-specific configuration for `list_evaluation_expectations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_expectations
    ##
    # RPC-specific configuration for `get_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_expectation
    ##
    # RPC-specific configuration for `create_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_expectation
    ##
    # RPC-specific configuration for `update_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_expectation
    ##
    # RPC-specific configuration for `delete_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_expectation
    ##
    # RPC-specific configuration for `create_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `get_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `list_scheduled_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_scheduled_evaluation_runs
    ##
    # RPC-specific configuration for `update_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `delete_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `test_persona_voice`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :test_persona_voice
    ##
    # RPC-specific configuration for `export_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_evaluations

    # @private
    def initialize parent_rpcs = nil
      run_evaluation_config = parent_rpcs.run_evaluation if parent_rpcs.respond_to? :run_evaluation
      @run_evaluation = ::Gapic::Config::Method.new run_evaluation_config
      upload_evaluation_audio_config = parent_rpcs.upload_evaluation_audio if parent_rpcs.respond_to? :upload_evaluation_audio
      @upload_evaluation_audio = ::Gapic::Config::Method.new upload_evaluation_audio_config
      create_evaluation_config = parent_rpcs.create_evaluation if parent_rpcs.respond_to? :create_evaluation
      @create_evaluation = ::Gapic::Config::Method.new create_evaluation_config
      generate_evaluation_config = parent_rpcs.generate_evaluation if parent_rpcs.respond_to? :generate_evaluation
      @generate_evaluation = ::Gapic::Config::Method.new generate_evaluation_config
      import_evaluations_config = parent_rpcs.import_evaluations if parent_rpcs.respond_to? :import_evaluations
      @import_evaluations = ::Gapic::Config::Method.new import_evaluations_config
      create_evaluation_dataset_config = parent_rpcs.create_evaluation_dataset if parent_rpcs.respond_to? :create_evaluation_dataset
      @create_evaluation_dataset = ::Gapic::Config::Method.new create_evaluation_dataset_config
      update_evaluation_config = parent_rpcs.update_evaluation if parent_rpcs.respond_to? :update_evaluation
      @update_evaluation = ::Gapic::Config::Method.new update_evaluation_config
      update_evaluation_dataset_config = parent_rpcs.update_evaluation_dataset if parent_rpcs.respond_to? :update_evaluation_dataset
      @update_evaluation_dataset = ::Gapic::Config::Method.new update_evaluation_dataset_config
      delete_evaluation_config = parent_rpcs.delete_evaluation if parent_rpcs.respond_to? :delete_evaluation
      @delete_evaluation = ::Gapic::Config::Method.new delete_evaluation_config
      delete_evaluation_result_config = parent_rpcs.delete_evaluation_result if parent_rpcs.respond_to? :delete_evaluation_result
      @delete_evaluation_result = ::Gapic::Config::Method.new delete_evaluation_result_config
      delete_evaluation_dataset_config = parent_rpcs.delete_evaluation_dataset if parent_rpcs.respond_to? :delete_evaluation_dataset
      @delete_evaluation_dataset = ::Gapic::Config::Method.new delete_evaluation_dataset_config
      delete_evaluation_run_config = parent_rpcs.delete_evaluation_run if parent_rpcs.respond_to? :delete_evaluation_run
      @delete_evaluation_run = ::Gapic::Config::Method.new delete_evaluation_run_config
      get_evaluation_config = parent_rpcs.get_evaluation if parent_rpcs.respond_to? :get_evaluation
      @get_evaluation = ::Gapic::Config::Method.new get_evaluation_config
      get_evaluation_result_config = parent_rpcs.get_evaluation_result if parent_rpcs.respond_to? :get_evaluation_result
      @get_evaluation_result = ::Gapic::Config::Method.new get_evaluation_result_config
      get_evaluation_dataset_config = parent_rpcs.get_evaluation_dataset if parent_rpcs.respond_to? :get_evaluation_dataset
      @get_evaluation_dataset = ::Gapic::Config::Method.new get_evaluation_dataset_config
      get_evaluation_run_config = parent_rpcs.get_evaluation_run if parent_rpcs.respond_to? :get_evaluation_run
      @get_evaluation_run = ::Gapic::Config::Method.new get_evaluation_run_config
      list_evaluations_config = parent_rpcs.list_evaluations if parent_rpcs.respond_to? :list_evaluations
      @list_evaluations = ::Gapic::Config::Method.new list_evaluations_config
      list_evaluation_results_config = parent_rpcs.list_evaluation_results if parent_rpcs.respond_to? :list_evaluation_results
      @list_evaluation_results = ::Gapic::Config::Method.new list_evaluation_results_config
      list_evaluation_datasets_config = parent_rpcs.list_evaluation_datasets if parent_rpcs.respond_to? :list_evaluation_datasets
      @list_evaluation_datasets = ::Gapic::Config::Method.new list_evaluation_datasets_config
      list_evaluation_runs_config = parent_rpcs.list_evaluation_runs if parent_rpcs.respond_to? :list_evaluation_runs
      @list_evaluation_runs = ::Gapic::Config::Method.new list_evaluation_runs_config
      list_evaluation_expectations_config = parent_rpcs.list_evaluation_expectations if parent_rpcs.respond_to? :list_evaluation_expectations
      @list_evaluation_expectations = ::Gapic::Config::Method.new list_evaluation_expectations_config
      get_evaluation_expectation_config = parent_rpcs.get_evaluation_expectation if parent_rpcs.respond_to? :get_evaluation_expectation
      @get_evaluation_expectation = ::Gapic::Config::Method.new get_evaluation_expectation_config
      create_evaluation_expectation_config = parent_rpcs.create_evaluation_expectation if parent_rpcs.respond_to? :create_evaluation_expectation
      @create_evaluation_expectation = ::Gapic::Config::Method.new create_evaluation_expectation_config
      update_evaluation_expectation_config = parent_rpcs.update_evaluation_expectation if parent_rpcs.respond_to? :update_evaluation_expectation
      @update_evaluation_expectation = ::Gapic::Config::Method.new update_evaluation_expectation_config
      delete_evaluation_expectation_config = parent_rpcs.delete_evaluation_expectation if parent_rpcs.respond_to? :delete_evaluation_expectation
      @delete_evaluation_expectation = ::Gapic::Config::Method.new delete_evaluation_expectation_config
      create_scheduled_evaluation_run_config = parent_rpcs.create_scheduled_evaluation_run if parent_rpcs.respond_to? :create_scheduled_evaluation_run
      @create_scheduled_evaluation_run = ::Gapic::Config::Method.new create_scheduled_evaluation_run_config
      get_scheduled_evaluation_run_config = parent_rpcs.get_scheduled_evaluation_run if parent_rpcs.respond_to? :get_scheduled_evaluation_run
      @get_scheduled_evaluation_run = ::Gapic::Config::Method.new get_scheduled_evaluation_run_config
      list_scheduled_evaluation_runs_config = parent_rpcs.list_scheduled_evaluation_runs if parent_rpcs.respond_to? :list_scheduled_evaluation_runs
      @list_scheduled_evaluation_runs = ::Gapic::Config::Method.new list_scheduled_evaluation_runs_config
      update_scheduled_evaluation_run_config = parent_rpcs.update_scheduled_evaluation_run if parent_rpcs.respond_to? :update_scheduled_evaluation_run
      @update_scheduled_evaluation_run = ::Gapic::Config::Method.new update_scheduled_evaluation_run_config
      delete_scheduled_evaluation_run_config = parent_rpcs.delete_scheduled_evaluation_run if parent_rpcs.respond_to? :delete_scheduled_evaluation_run
      @delete_scheduled_evaluation_run = ::Gapic::Config::Method.new delete_scheduled_evaluation_run_config
      test_persona_voice_config = parent_rpcs.test_persona_voice if parent_rpcs.respond_to? :test_persona_voice
      @test_persona_voice = ::Gapic::Config::Method.new test_persona_voice_config
      export_evaluations_config = parent_rpcs.export_evaluations if parent_rpcs.respond_to? :export_evaluations
      @export_evaluations = ::Gapic::Config::Method.new export_evaluations_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)


3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
# File 'lib/google/cloud/ces/v1beta/evaluation_service/rest/client.rb', line 3169

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    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 :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
  # Overrides for http bindings for the RPCs of this service
  # are only used when this service is used as mixin, and only
  # by the host service.
  # @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
  config_attr :bindings_override, {}, ::Hash, nil
  config_attr :logger, :default, ::Logger, nil, :default

  # @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 RPC class for the EvaluationService 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 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 `run_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :run_evaluation
    ##
    # RPC-specific configuration for `upload_evaluation_audio`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :upload_evaluation_audio
    ##
    # RPC-specific configuration for `create_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation
    ##
    # RPC-specific configuration for `generate_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :generate_evaluation
    ##
    # RPC-specific configuration for `import_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_evaluations
    ##
    # RPC-specific configuration for `create_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_dataset
    ##
    # RPC-specific configuration for `update_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation
    ##
    # RPC-specific configuration for `update_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation
    ##
    # RPC-specific configuration for `delete_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_result
    ##
    # RPC-specific configuration for `delete_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_dataset
    ##
    # RPC-specific configuration for `delete_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_run
    ##
    # RPC-specific configuration for `get_evaluation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation
    ##
    # RPC-specific configuration for `get_evaluation_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_result
    ##
    # RPC-specific configuration for `get_evaluation_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_dataset
    ##
    # RPC-specific configuration for `get_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_run
    ##
    # RPC-specific configuration for `list_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluations
    ##
    # RPC-specific configuration for `list_evaluation_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_results
    ##
    # RPC-specific configuration for `list_evaluation_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_datasets
    ##
    # RPC-specific configuration for `list_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_runs
    ##
    # RPC-specific configuration for `list_evaluation_expectations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_evaluation_expectations
    ##
    # RPC-specific configuration for `get_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_evaluation_expectation
    ##
    # RPC-specific configuration for `create_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_evaluation_expectation
    ##
    # RPC-specific configuration for `update_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_evaluation_expectation
    ##
    # RPC-specific configuration for `delete_evaluation_expectation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_evaluation_expectation
    ##
    # RPC-specific configuration for `create_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `get_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `list_scheduled_evaluation_runs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_scheduled_evaluation_runs
    ##
    # RPC-specific configuration for `update_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `delete_scheduled_evaluation_run`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_scheduled_evaluation_run
    ##
    # RPC-specific configuration for `test_persona_voice`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :test_persona_voice
    ##
    # RPC-specific configuration for `export_evaluations`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_evaluations

    # @private
    def initialize parent_rpcs = nil
      run_evaluation_config = parent_rpcs.run_evaluation if parent_rpcs.respond_to? :run_evaluation
      @run_evaluation = ::Gapic::Config::Method.new run_evaluation_config
      upload_evaluation_audio_config = parent_rpcs.upload_evaluation_audio if parent_rpcs.respond_to? :upload_evaluation_audio
      @upload_evaluation_audio = ::Gapic::Config::Method.new upload_evaluation_audio_config
      create_evaluation_config = parent_rpcs.create_evaluation if parent_rpcs.respond_to? :create_evaluation
      @create_evaluation = ::Gapic::Config::Method.new create_evaluation_config
      generate_evaluation_config = parent_rpcs.generate_evaluation if parent_rpcs.respond_to? :generate_evaluation
      @generate_evaluation = ::Gapic::Config::Method.new generate_evaluation_config
      import_evaluations_config = parent_rpcs.import_evaluations if parent_rpcs.respond_to? :import_evaluations
      @import_evaluations = ::Gapic::Config::Method.new import_evaluations_config
      create_evaluation_dataset_config = parent_rpcs.create_evaluation_dataset if parent_rpcs.respond_to? :create_evaluation_dataset
      @create_evaluation_dataset = ::Gapic::Config::Method.new create_evaluation_dataset_config
      update_evaluation_config = parent_rpcs.update_evaluation if parent_rpcs.respond_to? :update_evaluation
      @update_evaluation = ::Gapic::Config::Method.new update_evaluation_config
      update_evaluation_dataset_config = parent_rpcs.update_evaluation_dataset if parent_rpcs.respond_to? :update_evaluation_dataset
      @update_evaluation_dataset = ::Gapic::Config::Method.new update_evaluation_dataset_config
      delete_evaluation_config = parent_rpcs.delete_evaluation if parent_rpcs.respond_to? :delete_evaluation
      @delete_evaluation = ::Gapic::Config::Method.new delete_evaluation_config
      delete_evaluation_result_config = parent_rpcs.delete_evaluation_result if parent_rpcs.respond_to? :delete_evaluation_result
      @delete_evaluation_result = ::Gapic::Config::Method.new delete_evaluation_result_config
      delete_evaluation_dataset_config = parent_rpcs.delete_evaluation_dataset if parent_rpcs.respond_to? :delete_evaluation_dataset
      @delete_evaluation_dataset = ::Gapic::Config::Method.new delete_evaluation_dataset_config
      delete_evaluation_run_config = parent_rpcs.delete_evaluation_run if parent_rpcs.respond_to? :delete_evaluation_run
      @delete_evaluation_run = ::Gapic::Config::Method.new delete_evaluation_run_config
      get_evaluation_config = parent_rpcs.get_evaluation if parent_rpcs.respond_to? :get_evaluation
      @get_evaluation = ::Gapic::Config::Method.new get_evaluation_config
      get_evaluation_result_config = parent_rpcs.get_evaluation_result if parent_rpcs.respond_to? :get_evaluation_result
      @get_evaluation_result = ::Gapic::Config::Method.new get_evaluation_result_config
      get_evaluation_dataset_config = parent_rpcs.get_evaluation_dataset if parent_rpcs.respond_to? :get_evaluation_dataset
      @get_evaluation_dataset = ::Gapic::Config::Method.new get_evaluation_dataset_config
      get_evaluation_run_config = parent_rpcs.get_evaluation_run if parent_rpcs.respond_to? :get_evaluation_run
      @get_evaluation_run = ::Gapic::Config::Method.new get_evaluation_run_config
      list_evaluations_config = parent_rpcs.list_evaluations if parent_rpcs.respond_to? :list_evaluations
      @list_evaluations = ::Gapic::Config::Method.new list_evaluations_config
      list_evaluation_results_config = parent_rpcs.list_evaluation_results if parent_rpcs.respond_to? :list_evaluation_results
      @list_evaluation_results = ::Gapic::Config::Method.new list_evaluation_results_config
      list_evaluation_datasets_config = parent_rpcs.list_evaluation_datasets if parent_rpcs.respond_to? :list_evaluation_datasets
      @list_evaluation_datasets = ::Gapic::Config::Method.new list_evaluation_datasets_config
      list_evaluation_runs_config = parent_rpcs.list_evaluation_runs if parent_rpcs.respond_to? :list_evaluation_runs
      @list_evaluation_runs = ::Gapic::Config::Method.new list_evaluation_runs_config
      list_evaluation_expectations_config = parent_rpcs.list_evaluation_expectations if parent_rpcs.respond_to? :list_evaluation_expectations
      @list_evaluation_expectations = ::Gapic::Config::Method.new list_evaluation_expectations_config
      get_evaluation_expectation_config = parent_rpcs.get_evaluation_expectation if parent_rpcs.respond_to? :get_evaluation_expectation
      @get_evaluation_expectation = ::Gapic::Config::Method.new get_evaluation_expectation_config
      create_evaluation_expectation_config = parent_rpcs.create_evaluation_expectation if parent_rpcs.respond_to? :create_evaluation_expectation
      @create_evaluation_expectation = ::Gapic::Config::Method.new create_evaluation_expectation_config
      update_evaluation_expectation_config = parent_rpcs.update_evaluation_expectation if parent_rpcs.respond_to? :update_evaluation_expectation
      @update_evaluation_expectation = ::Gapic::Config::Method.new update_evaluation_expectation_config
      delete_evaluation_expectation_config = parent_rpcs.delete_evaluation_expectation if parent_rpcs.respond_to? :delete_evaluation_expectation
      @delete_evaluation_expectation = ::Gapic::Config::Method.new delete_evaluation_expectation_config
      create_scheduled_evaluation_run_config = parent_rpcs.create_scheduled_evaluation_run if parent_rpcs.respond_to? :create_scheduled_evaluation_run
      @create_scheduled_evaluation_run = ::Gapic::Config::Method.new create_scheduled_evaluation_run_config
      get_scheduled_evaluation_run_config = parent_rpcs.get_scheduled_evaluation_run if parent_rpcs.respond_to? :get_scheduled_evaluation_run
      @get_scheduled_evaluation_run = ::Gapic::Config::Method.new get_scheduled_evaluation_run_config
      list_scheduled_evaluation_runs_config = parent_rpcs.list_scheduled_evaluation_runs if parent_rpcs.respond_to? :list_scheduled_evaluation_runs
      @list_scheduled_evaluation_runs = ::Gapic::Config::Method.new list_scheduled_evaluation_runs_config
      update_scheduled_evaluation_run_config = parent_rpcs.update_scheduled_evaluation_run if parent_rpcs.respond_to? :update_scheduled_evaluation_run
      @update_scheduled_evaluation_run = ::Gapic::Config::Method.new update_scheduled_evaluation_run_config
      delete_scheduled_evaluation_run_config = parent_rpcs.delete_scheduled_evaluation_run if parent_rpcs.respond_to? :delete_scheduled_evaluation_run
      @delete_scheduled_evaluation_run = ::Gapic::Config::Method.new delete_scheduled_evaluation_run_config
      test_persona_voice_config = parent_rpcs.test_persona_voice if parent_rpcs.respond_to? :test_persona_voice
      @test_persona_voice = ::Gapic::Config::Method.new test_persona_voice_config
      export_evaluations_config = parent_rpcs.export_evaluations if parent_rpcs.respond_to? :export_evaluations
      @export_evaluations = ::Gapic::Config::Method.new export_evaluations_config

      yield self if block_given?
    end
  end
end

Instance Method Details

#rpcsRpcs

Configurations for individual RPCs

Returns:



3209
3210
3211
3212
3213
3214
3215
# File 'lib/google/cloud/ces/v1beta/evaluation_service/rest/client.rb', line 3209

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