Class: Google::Cloud::FinancialServices::V1::AML::Rest::Client::Configuration

Inherits:
Object
  • Object
show all
Extended by:
Gapic::Config
Defined in:
lib/google/cloud/financial_services/v1/aml/rest/client.rb

Overview

Configuration class for the AML REST API.

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

# Apply the above configuration only to a new client.
client = ::Google::Cloud::FinancialServices::V1::AML::Rest::Client.new do |config|
  config.timeout = 10.0
  config.rpcs.list_instances.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)


4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
# File 'lib/google/cloud/financial_services/v1/aml/rest/client.rb', line 4057

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "financialservices.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 AML 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `import_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_registered_parties
    ##
    # RPC-specific configuration for `export_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_registered_parties
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `update_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_dataset
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `update_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_model
    ##
    # RPC-specific configuration for `export_model_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_model_metadata
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model
    ##
    # RPC-specific configuration for `list_engine_configs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_configs
    ##
    # RPC-specific configuration for `get_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_config
    ##
    # RPC-specific configuration for `create_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_engine_config
    ##
    # RPC-specific configuration for `update_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_engine_config
    ##
    # RPC-specific configuration for `export_engine_config_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_engine_config_metadata
    ##
    # RPC-specific configuration for `delete_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_engine_config
    ##
    # RPC-specific configuration for `get_engine_version`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_version
    ##
    # RPC-specific configuration for `list_engine_versions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_versions
    ##
    # RPC-specific configuration for `list_prediction_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_prediction_results
    ##
    # RPC-specific configuration for `get_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_prediction_result
    ##
    # RPC-specific configuration for `create_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_prediction_result
    ##
    # RPC-specific configuration for `update_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_prediction_result
    ##
    # RPC-specific configuration for `export_prediction_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_prediction_result_metadata
    ##
    # RPC-specific configuration for `delete_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_prediction_result
    ##
    # RPC-specific configuration for `list_backtest_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backtest_results
    ##
    # RPC-specific configuration for `get_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backtest_result
    ##
    # RPC-specific configuration for `create_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backtest_result
    ##
    # RPC-specific configuration for `update_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backtest_result
    ##
    # RPC-specific configuration for `export_backtest_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_backtest_result_metadata
    ##
    # RPC-specific configuration for `delete_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backtest_result

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      import_registered_parties_config = parent_rpcs.import_registered_parties if parent_rpcs.respond_to? :import_registered_parties
      @import_registered_parties = ::Gapic::Config::Method.new import_registered_parties_config
      export_registered_parties_config = parent_rpcs.export_registered_parties if parent_rpcs.respond_to? :export_registered_parties
      @export_registered_parties = ::Gapic::Config::Method.new export_registered_parties_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset
      @update_dataset = ::Gapic::Config::Method.new update_dataset_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model
      @update_model = ::Gapic::Config::Method.new update_model_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_model_metadata
      @export_model_metadata = ::Gapic::Config::Method.new 
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config
      list_engine_configs_config = parent_rpcs.list_engine_configs if parent_rpcs.respond_to? :list_engine_configs
      @list_engine_configs = ::Gapic::Config::Method.new list_engine_configs_config
      get_engine_config_config = parent_rpcs.get_engine_config if parent_rpcs.respond_to? :get_engine_config
      @get_engine_config = ::Gapic::Config::Method.new get_engine_config_config
      create_engine_config_config = parent_rpcs.create_engine_config if parent_rpcs.respond_to? :create_engine_config
      @create_engine_config = ::Gapic::Config::Method.new create_engine_config_config
      update_engine_config_config = parent_rpcs.update_engine_config if parent_rpcs.respond_to? :update_engine_config
      @update_engine_config = ::Gapic::Config::Method.new update_engine_config_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_engine_config_metadata
      @export_engine_config_metadata = ::Gapic::Config::Method.new 
      delete_engine_config_config = parent_rpcs.delete_engine_config if parent_rpcs.respond_to? :delete_engine_config
      @delete_engine_config = ::Gapic::Config::Method.new delete_engine_config_config
      get_engine_version_config = parent_rpcs.get_engine_version if parent_rpcs.respond_to? :get_engine_version
      @get_engine_version = ::Gapic::Config::Method.new get_engine_version_config
      list_engine_versions_config = parent_rpcs.list_engine_versions if parent_rpcs.respond_to? :list_engine_versions
      @list_engine_versions = ::Gapic::Config::Method.new list_engine_versions_config
      list_prediction_results_config = parent_rpcs.list_prediction_results if parent_rpcs.respond_to? :list_prediction_results
      @list_prediction_results = ::Gapic::Config::Method.new list_prediction_results_config
      get_prediction_result_config = parent_rpcs.get_prediction_result if parent_rpcs.respond_to? :get_prediction_result
      @get_prediction_result = ::Gapic::Config::Method.new get_prediction_result_config
      create_prediction_result_config = parent_rpcs.create_prediction_result if parent_rpcs.respond_to? :create_prediction_result
      @create_prediction_result = ::Gapic::Config::Method.new create_prediction_result_config
      update_prediction_result_config = parent_rpcs.update_prediction_result if parent_rpcs.respond_to? :update_prediction_result
      @update_prediction_result = ::Gapic::Config::Method.new update_prediction_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_prediction_result_metadata
      @export_prediction_result_metadata = ::Gapic::Config::Method.new 
      delete_prediction_result_config = parent_rpcs.delete_prediction_result if parent_rpcs.respond_to? :delete_prediction_result
      @delete_prediction_result = ::Gapic::Config::Method.new delete_prediction_result_config
      list_backtest_results_config = parent_rpcs.list_backtest_results if parent_rpcs.respond_to? :list_backtest_results
      @list_backtest_results = ::Gapic::Config::Method.new list_backtest_results_config
      get_backtest_result_config = parent_rpcs.get_backtest_result if parent_rpcs.respond_to? :get_backtest_result
      @get_backtest_result = ::Gapic::Config::Method.new get_backtest_result_config
      create_backtest_result_config = parent_rpcs.create_backtest_result if parent_rpcs.respond_to? :create_backtest_result
      @create_backtest_result = ::Gapic::Config::Method.new create_backtest_result_config
      update_backtest_result_config = parent_rpcs.update_backtest_result if parent_rpcs.respond_to? :update_backtest_result
      @update_backtest_result = ::Gapic::Config::Method.new update_backtest_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_backtest_result_metadata
      @export_backtest_result_metadata = ::Gapic::Config::Method.new 
      delete_backtest_result_config = parent_rpcs.delete_backtest_result if parent_rpcs.respond_to? :delete_backtest_result
      @delete_backtest_result = ::Gapic::Config::Method.new delete_backtest_result_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)


4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
# File 'lib/google/cloud/financial_services/v1/aml/rest/client.rb', line 4057

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "financialservices.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 AML 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `import_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_registered_parties
    ##
    # RPC-specific configuration for `export_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_registered_parties
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `update_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_dataset
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `update_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_model
    ##
    # RPC-specific configuration for `export_model_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_model_metadata
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model
    ##
    # RPC-specific configuration for `list_engine_configs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_configs
    ##
    # RPC-specific configuration for `get_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_config
    ##
    # RPC-specific configuration for `create_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_engine_config
    ##
    # RPC-specific configuration for `update_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_engine_config
    ##
    # RPC-specific configuration for `export_engine_config_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_engine_config_metadata
    ##
    # RPC-specific configuration for `delete_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_engine_config
    ##
    # RPC-specific configuration for `get_engine_version`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_version
    ##
    # RPC-specific configuration for `list_engine_versions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_versions
    ##
    # RPC-specific configuration for `list_prediction_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_prediction_results
    ##
    # RPC-specific configuration for `get_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_prediction_result
    ##
    # RPC-specific configuration for `create_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_prediction_result
    ##
    # RPC-specific configuration for `update_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_prediction_result
    ##
    # RPC-specific configuration for `export_prediction_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_prediction_result_metadata
    ##
    # RPC-specific configuration for `delete_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_prediction_result
    ##
    # RPC-specific configuration for `list_backtest_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backtest_results
    ##
    # RPC-specific configuration for `get_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backtest_result
    ##
    # RPC-specific configuration for `create_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backtest_result
    ##
    # RPC-specific configuration for `update_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backtest_result
    ##
    # RPC-specific configuration for `export_backtest_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_backtest_result_metadata
    ##
    # RPC-specific configuration for `delete_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backtest_result

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      import_registered_parties_config = parent_rpcs.import_registered_parties if parent_rpcs.respond_to? :import_registered_parties
      @import_registered_parties = ::Gapic::Config::Method.new import_registered_parties_config
      export_registered_parties_config = parent_rpcs.export_registered_parties if parent_rpcs.respond_to? :export_registered_parties
      @export_registered_parties = ::Gapic::Config::Method.new export_registered_parties_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset
      @update_dataset = ::Gapic::Config::Method.new update_dataset_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model
      @update_model = ::Gapic::Config::Method.new update_model_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_model_metadata
      @export_model_metadata = ::Gapic::Config::Method.new 
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config
      list_engine_configs_config = parent_rpcs.list_engine_configs if parent_rpcs.respond_to? :list_engine_configs
      @list_engine_configs = ::Gapic::Config::Method.new list_engine_configs_config
      get_engine_config_config = parent_rpcs.get_engine_config if parent_rpcs.respond_to? :get_engine_config
      @get_engine_config = ::Gapic::Config::Method.new get_engine_config_config
      create_engine_config_config = parent_rpcs.create_engine_config if parent_rpcs.respond_to? :create_engine_config
      @create_engine_config = ::Gapic::Config::Method.new create_engine_config_config
      update_engine_config_config = parent_rpcs.update_engine_config if parent_rpcs.respond_to? :update_engine_config
      @update_engine_config = ::Gapic::Config::Method.new update_engine_config_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_engine_config_metadata
      @export_engine_config_metadata = ::Gapic::Config::Method.new 
      delete_engine_config_config = parent_rpcs.delete_engine_config if parent_rpcs.respond_to? :delete_engine_config
      @delete_engine_config = ::Gapic::Config::Method.new delete_engine_config_config
      get_engine_version_config = parent_rpcs.get_engine_version if parent_rpcs.respond_to? :get_engine_version
      @get_engine_version = ::Gapic::Config::Method.new get_engine_version_config
      list_engine_versions_config = parent_rpcs.list_engine_versions if parent_rpcs.respond_to? :list_engine_versions
      @list_engine_versions = ::Gapic::Config::Method.new list_engine_versions_config
      list_prediction_results_config = parent_rpcs.list_prediction_results if parent_rpcs.respond_to? :list_prediction_results
      @list_prediction_results = ::Gapic::Config::Method.new list_prediction_results_config
      get_prediction_result_config = parent_rpcs.get_prediction_result if parent_rpcs.respond_to? :get_prediction_result
      @get_prediction_result = ::Gapic::Config::Method.new get_prediction_result_config
      create_prediction_result_config = parent_rpcs.create_prediction_result if parent_rpcs.respond_to? :create_prediction_result
      @create_prediction_result = ::Gapic::Config::Method.new create_prediction_result_config
      update_prediction_result_config = parent_rpcs.update_prediction_result if parent_rpcs.respond_to? :update_prediction_result
      @update_prediction_result = ::Gapic::Config::Method.new update_prediction_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_prediction_result_metadata
      @export_prediction_result_metadata = ::Gapic::Config::Method.new 
      delete_prediction_result_config = parent_rpcs.delete_prediction_result if parent_rpcs.respond_to? :delete_prediction_result
      @delete_prediction_result = ::Gapic::Config::Method.new delete_prediction_result_config
      list_backtest_results_config = parent_rpcs.list_backtest_results if parent_rpcs.respond_to? :list_backtest_results
      @list_backtest_results = ::Gapic::Config::Method.new list_backtest_results_config
      get_backtest_result_config = parent_rpcs.get_backtest_result if parent_rpcs.respond_to? :get_backtest_result
      @get_backtest_result = ::Gapic::Config::Method.new get_backtest_result_config
      create_backtest_result_config = parent_rpcs.create_backtest_result if parent_rpcs.respond_to? :create_backtest_result
      @create_backtest_result = ::Gapic::Config::Method.new create_backtest_result_config
      update_backtest_result_config = parent_rpcs.update_backtest_result if parent_rpcs.respond_to? :update_backtest_result
      @update_backtest_result = ::Gapic::Config::Method.new update_backtest_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_backtest_result_metadata
      @export_backtest_result_metadata = ::Gapic::Config::Method.new 
      delete_backtest_result_config = parent_rpcs.delete_backtest_result if parent_rpcs.respond_to? :delete_backtest_result
      @delete_backtest_result = ::Gapic::Config::Method.new delete_backtest_result_config

      yield self if block_given?
    end
  end
end

#lib_name::String

The library name as recorded in instrumentation and logging

Returns:

  • (::String)


4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
# File 'lib/google/cloud/financial_services/v1/aml/rest/client.rb', line 4057

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "financialservices.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 AML 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `import_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_registered_parties
    ##
    # RPC-specific configuration for `export_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_registered_parties
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `update_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_dataset
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `update_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_model
    ##
    # RPC-specific configuration for `export_model_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_model_metadata
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model
    ##
    # RPC-specific configuration for `list_engine_configs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_configs
    ##
    # RPC-specific configuration for `get_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_config
    ##
    # RPC-specific configuration for `create_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_engine_config
    ##
    # RPC-specific configuration for `update_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_engine_config
    ##
    # RPC-specific configuration for `export_engine_config_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_engine_config_metadata
    ##
    # RPC-specific configuration for `delete_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_engine_config
    ##
    # RPC-specific configuration for `get_engine_version`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_version
    ##
    # RPC-specific configuration for `list_engine_versions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_versions
    ##
    # RPC-specific configuration for `list_prediction_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_prediction_results
    ##
    # RPC-specific configuration for `get_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_prediction_result
    ##
    # RPC-specific configuration for `create_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_prediction_result
    ##
    # RPC-specific configuration for `update_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_prediction_result
    ##
    # RPC-specific configuration for `export_prediction_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_prediction_result_metadata
    ##
    # RPC-specific configuration for `delete_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_prediction_result
    ##
    # RPC-specific configuration for `list_backtest_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backtest_results
    ##
    # RPC-specific configuration for `get_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backtest_result
    ##
    # RPC-specific configuration for `create_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backtest_result
    ##
    # RPC-specific configuration for `update_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backtest_result
    ##
    # RPC-specific configuration for `export_backtest_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_backtest_result_metadata
    ##
    # RPC-specific configuration for `delete_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backtest_result

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      import_registered_parties_config = parent_rpcs.import_registered_parties if parent_rpcs.respond_to? :import_registered_parties
      @import_registered_parties = ::Gapic::Config::Method.new import_registered_parties_config
      export_registered_parties_config = parent_rpcs.export_registered_parties if parent_rpcs.respond_to? :export_registered_parties
      @export_registered_parties = ::Gapic::Config::Method.new export_registered_parties_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset
      @update_dataset = ::Gapic::Config::Method.new update_dataset_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model
      @update_model = ::Gapic::Config::Method.new update_model_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_model_metadata
      @export_model_metadata = ::Gapic::Config::Method.new 
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config
      list_engine_configs_config = parent_rpcs.list_engine_configs if parent_rpcs.respond_to? :list_engine_configs
      @list_engine_configs = ::Gapic::Config::Method.new list_engine_configs_config
      get_engine_config_config = parent_rpcs.get_engine_config if parent_rpcs.respond_to? :get_engine_config
      @get_engine_config = ::Gapic::Config::Method.new get_engine_config_config
      create_engine_config_config = parent_rpcs.create_engine_config if parent_rpcs.respond_to? :create_engine_config
      @create_engine_config = ::Gapic::Config::Method.new create_engine_config_config
      update_engine_config_config = parent_rpcs.update_engine_config if parent_rpcs.respond_to? :update_engine_config
      @update_engine_config = ::Gapic::Config::Method.new update_engine_config_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_engine_config_metadata
      @export_engine_config_metadata = ::Gapic::Config::Method.new 
      delete_engine_config_config = parent_rpcs.delete_engine_config if parent_rpcs.respond_to? :delete_engine_config
      @delete_engine_config = ::Gapic::Config::Method.new delete_engine_config_config
      get_engine_version_config = parent_rpcs.get_engine_version if parent_rpcs.respond_to? :get_engine_version
      @get_engine_version = ::Gapic::Config::Method.new get_engine_version_config
      list_engine_versions_config = parent_rpcs.list_engine_versions if parent_rpcs.respond_to? :list_engine_versions
      @list_engine_versions = ::Gapic::Config::Method.new list_engine_versions_config
      list_prediction_results_config = parent_rpcs.list_prediction_results if parent_rpcs.respond_to? :list_prediction_results
      @list_prediction_results = ::Gapic::Config::Method.new list_prediction_results_config
      get_prediction_result_config = parent_rpcs.get_prediction_result if parent_rpcs.respond_to? :get_prediction_result
      @get_prediction_result = ::Gapic::Config::Method.new get_prediction_result_config
      create_prediction_result_config = parent_rpcs.create_prediction_result if parent_rpcs.respond_to? :create_prediction_result
      @create_prediction_result = ::Gapic::Config::Method.new create_prediction_result_config
      update_prediction_result_config = parent_rpcs.update_prediction_result if parent_rpcs.respond_to? :update_prediction_result
      @update_prediction_result = ::Gapic::Config::Method.new update_prediction_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_prediction_result_metadata
      @export_prediction_result_metadata = ::Gapic::Config::Method.new 
      delete_prediction_result_config = parent_rpcs.delete_prediction_result if parent_rpcs.respond_to? :delete_prediction_result
      @delete_prediction_result = ::Gapic::Config::Method.new delete_prediction_result_config
      list_backtest_results_config = parent_rpcs.list_backtest_results if parent_rpcs.respond_to? :list_backtest_results
      @list_backtest_results = ::Gapic::Config::Method.new list_backtest_results_config
      get_backtest_result_config = parent_rpcs.get_backtest_result if parent_rpcs.respond_to? :get_backtest_result
      @get_backtest_result = ::Gapic::Config::Method.new get_backtest_result_config
      create_backtest_result_config = parent_rpcs.create_backtest_result if parent_rpcs.respond_to? :create_backtest_result
      @create_backtest_result = ::Gapic::Config::Method.new create_backtest_result_config
      update_backtest_result_config = parent_rpcs.update_backtest_result if parent_rpcs.respond_to? :update_backtest_result
      @update_backtest_result = ::Gapic::Config::Method.new update_backtest_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_backtest_result_metadata
      @export_backtest_result_metadata = ::Gapic::Config::Method.new 
      delete_backtest_result_config = parent_rpcs.delete_backtest_result if parent_rpcs.respond_to? :delete_backtest_result
      @delete_backtest_result = ::Gapic::Config::Method.new delete_backtest_result_config

      yield self if block_given?
    end
  end
end

#lib_version::String

The library version as recorded in instrumentation and logging

Returns:

  • (::String)


4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
# File 'lib/google/cloud/financial_services/v1/aml/rest/client.rb', line 4057

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "financialservices.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 AML 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `import_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_registered_parties
    ##
    # RPC-specific configuration for `export_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_registered_parties
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `update_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_dataset
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `update_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_model
    ##
    # RPC-specific configuration for `export_model_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_model_metadata
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model
    ##
    # RPC-specific configuration for `list_engine_configs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_configs
    ##
    # RPC-specific configuration for `get_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_config
    ##
    # RPC-specific configuration for `create_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_engine_config
    ##
    # RPC-specific configuration for `update_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_engine_config
    ##
    # RPC-specific configuration for `export_engine_config_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_engine_config_metadata
    ##
    # RPC-specific configuration for `delete_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_engine_config
    ##
    # RPC-specific configuration for `get_engine_version`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_version
    ##
    # RPC-specific configuration for `list_engine_versions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_versions
    ##
    # RPC-specific configuration for `list_prediction_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_prediction_results
    ##
    # RPC-specific configuration for `get_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_prediction_result
    ##
    # RPC-specific configuration for `create_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_prediction_result
    ##
    # RPC-specific configuration for `update_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_prediction_result
    ##
    # RPC-specific configuration for `export_prediction_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_prediction_result_metadata
    ##
    # RPC-specific configuration for `delete_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_prediction_result
    ##
    # RPC-specific configuration for `list_backtest_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backtest_results
    ##
    # RPC-specific configuration for `get_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backtest_result
    ##
    # RPC-specific configuration for `create_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backtest_result
    ##
    # RPC-specific configuration for `update_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backtest_result
    ##
    # RPC-specific configuration for `export_backtest_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_backtest_result_metadata
    ##
    # RPC-specific configuration for `delete_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backtest_result

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      import_registered_parties_config = parent_rpcs.import_registered_parties if parent_rpcs.respond_to? :import_registered_parties
      @import_registered_parties = ::Gapic::Config::Method.new import_registered_parties_config
      export_registered_parties_config = parent_rpcs.export_registered_parties if parent_rpcs.respond_to? :export_registered_parties
      @export_registered_parties = ::Gapic::Config::Method.new export_registered_parties_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset
      @update_dataset = ::Gapic::Config::Method.new update_dataset_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model
      @update_model = ::Gapic::Config::Method.new update_model_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_model_metadata
      @export_model_metadata = ::Gapic::Config::Method.new 
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config
      list_engine_configs_config = parent_rpcs.list_engine_configs if parent_rpcs.respond_to? :list_engine_configs
      @list_engine_configs = ::Gapic::Config::Method.new list_engine_configs_config
      get_engine_config_config = parent_rpcs.get_engine_config if parent_rpcs.respond_to? :get_engine_config
      @get_engine_config = ::Gapic::Config::Method.new get_engine_config_config
      create_engine_config_config = parent_rpcs.create_engine_config if parent_rpcs.respond_to? :create_engine_config
      @create_engine_config = ::Gapic::Config::Method.new create_engine_config_config
      update_engine_config_config = parent_rpcs.update_engine_config if parent_rpcs.respond_to? :update_engine_config
      @update_engine_config = ::Gapic::Config::Method.new update_engine_config_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_engine_config_metadata
      @export_engine_config_metadata = ::Gapic::Config::Method.new 
      delete_engine_config_config = parent_rpcs.delete_engine_config if parent_rpcs.respond_to? :delete_engine_config
      @delete_engine_config = ::Gapic::Config::Method.new delete_engine_config_config
      get_engine_version_config = parent_rpcs.get_engine_version if parent_rpcs.respond_to? :get_engine_version
      @get_engine_version = ::Gapic::Config::Method.new get_engine_version_config
      list_engine_versions_config = parent_rpcs.list_engine_versions if parent_rpcs.respond_to? :list_engine_versions
      @list_engine_versions = ::Gapic::Config::Method.new list_engine_versions_config
      list_prediction_results_config = parent_rpcs.list_prediction_results if parent_rpcs.respond_to? :list_prediction_results
      @list_prediction_results = ::Gapic::Config::Method.new list_prediction_results_config
      get_prediction_result_config = parent_rpcs.get_prediction_result if parent_rpcs.respond_to? :get_prediction_result
      @get_prediction_result = ::Gapic::Config::Method.new get_prediction_result_config
      create_prediction_result_config = parent_rpcs.create_prediction_result if parent_rpcs.respond_to? :create_prediction_result
      @create_prediction_result = ::Gapic::Config::Method.new create_prediction_result_config
      update_prediction_result_config = parent_rpcs.update_prediction_result if parent_rpcs.respond_to? :update_prediction_result
      @update_prediction_result = ::Gapic::Config::Method.new update_prediction_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_prediction_result_metadata
      @export_prediction_result_metadata = ::Gapic::Config::Method.new 
      delete_prediction_result_config = parent_rpcs.delete_prediction_result if parent_rpcs.respond_to? :delete_prediction_result
      @delete_prediction_result = ::Gapic::Config::Method.new delete_prediction_result_config
      list_backtest_results_config = parent_rpcs.list_backtest_results if parent_rpcs.respond_to? :list_backtest_results
      @list_backtest_results = ::Gapic::Config::Method.new list_backtest_results_config
      get_backtest_result_config = parent_rpcs.get_backtest_result if parent_rpcs.respond_to? :get_backtest_result
      @get_backtest_result = ::Gapic::Config::Method.new get_backtest_result_config
      create_backtest_result_config = parent_rpcs.create_backtest_result if parent_rpcs.respond_to? :create_backtest_result
      @create_backtest_result = ::Gapic::Config::Method.new create_backtest_result_config
      update_backtest_result_config = parent_rpcs.update_backtest_result if parent_rpcs.respond_to? :update_backtest_result
      @update_backtest_result = ::Gapic::Config::Method.new update_backtest_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_backtest_result_metadata
      @export_backtest_result_metadata = ::Gapic::Config::Method.new 
      delete_backtest_result_config = parent_rpcs.delete_backtest_result if parent_rpcs.respond_to? :delete_backtest_result
      @delete_backtest_result = ::Gapic::Config::Method.new delete_backtest_result_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)


4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
# File 'lib/google/cloud/financial_services/v1/aml/rest/client.rb', line 4057

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "financialservices.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 AML 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `import_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_registered_parties
    ##
    # RPC-specific configuration for `export_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_registered_parties
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `update_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_dataset
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `update_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_model
    ##
    # RPC-specific configuration for `export_model_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_model_metadata
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model
    ##
    # RPC-specific configuration for `list_engine_configs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_configs
    ##
    # RPC-specific configuration for `get_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_config
    ##
    # RPC-specific configuration for `create_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_engine_config
    ##
    # RPC-specific configuration for `update_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_engine_config
    ##
    # RPC-specific configuration for `export_engine_config_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_engine_config_metadata
    ##
    # RPC-specific configuration for `delete_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_engine_config
    ##
    # RPC-specific configuration for `get_engine_version`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_version
    ##
    # RPC-specific configuration for `list_engine_versions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_versions
    ##
    # RPC-specific configuration for `list_prediction_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_prediction_results
    ##
    # RPC-specific configuration for `get_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_prediction_result
    ##
    # RPC-specific configuration for `create_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_prediction_result
    ##
    # RPC-specific configuration for `update_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_prediction_result
    ##
    # RPC-specific configuration for `export_prediction_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_prediction_result_metadata
    ##
    # RPC-specific configuration for `delete_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_prediction_result
    ##
    # RPC-specific configuration for `list_backtest_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backtest_results
    ##
    # RPC-specific configuration for `get_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backtest_result
    ##
    # RPC-specific configuration for `create_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backtest_result
    ##
    # RPC-specific configuration for `update_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backtest_result
    ##
    # RPC-specific configuration for `export_backtest_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_backtest_result_metadata
    ##
    # RPC-specific configuration for `delete_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backtest_result

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      import_registered_parties_config = parent_rpcs.import_registered_parties if parent_rpcs.respond_to? :import_registered_parties
      @import_registered_parties = ::Gapic::Config::Method.new import_registered_parties_config
      export_registered_parties_config = parent_rpcs.export_registered_parties if parent_rpcs.respond_to? :export_registered_parties
      @export_registered_parties = ::Gapic::Config::Method.new export_registered_parties_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset
      @update_dataset = ::Gapic::Config::Method.new update_dataset_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model
      @update_model = ::Gapic::Config::Method.new update_model_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_model_metadata
      @export_model_metadata = ::Gapic::Config::Method.new 
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config
      list_engine_configs_config = parent_rpcs.list_engine_configs if parent_rpcs.respond_to? :list_engine_configs
      @list_engine_configs = ::Gapic::Config::Method.new list_engine_configs_config
      get_engine_config_config = parent_rpcs.get_engine_config if parent_rpcs.respond_to? :get_engine_config
      @get_engine_config = ::Gapic::Config::Method.new get_engine_config_config
      create_engine_config_config = parent_rpcs.create_engine_config if parent_rpcs.respond_to? :create_engine_config
      @create_engine_config = ::Gapic::Config::Method.new create_engine_config_config
      update_engine_config_config = parent_rpcs.update_engine_config if parent_rpcs.respond_to? :update_engine_config
      @update_engine_config = ::Gapic::Config::Method.new update_engine_config_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_engine_config_metadata
      @export_engine_config_metadata = ::Gapic::Config::Method.new 
      delete_engine_config_config = parent_rpcs.delete_engine_config if parent_rpcs.respond_to? :delete_engine_config
      @delete_engine_config = ::Gapic::Config::Method.new delete_engine_config_config
      get_engine_version_config = parent_rpcs.get_engine_version if parent_rpcs.respond_to? :get_engine_version
      @get_engine_version = ::Gapic::Config::Method.new get_engine_version_config
      list_engine_versions_config = parent_rpcs.list_engine_versions if parent_rpcs.respond_to? :list_engine_versions
      @list_engine_versions = ::Gapic::Config::Method.new list_engine_versions_config
      list_prediction_results_config = parent_rpcs.list_prediction_results if parent_rpcs.respond_to? :list_prediction_results
      @list_prediction_results = ::Gapic::Config::Method.new list_prediction_results_config
      get_prediction_result_config = parent_rpcs.get_prediction_result if parent_rpcs.respond_to? :get_prediction_result
      @get_prediction_result = ::Gapic::Config::Method.new get_prediction_result_config
      create_prediction_result_config = parent_rpcs.create_prediction_result if parent_rpcs.respond_to? :create_prediction_result
      @create_prediction_result = ::Gapic::Config::Method.new create_prediction_result_config
      update_prediction_result_config = parent_rpcs.update_prediction_result if parent_rpcs.respond_to? :update_prediction_result
      @update_prediction_result = ::Gapic::Config::Method.new update_prediction_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_prediction_result_metadata
      @export_prediction_result_metadata = ::Gapic::Config::Method.new 
      delete_prediction_result_config = parent_rpcs.delete_prediction_result if parent_rpcs.respond_to? :delete_prediction_result
      @delete_prediction_result = ::Gapic::Config::Method.new delete_prediction_result_config
      list_backtest_results_config = parent_rpcs.list_backtest_results if parent_rpcs.respond_to? :list_backtest_results
      @list_backtest_results = ::Gapic::Config::Method.new list_backtest_results_config
      get_backtest_result_config = parent_rpcs.get_backtest_result if parent_rpcs.respond_to? :get_backtest_result
      @get_backtest_result = ::Gapic::Config::Method.new get_backtest_result_config
      create_backtest_result_config = parent_rpcs.create_backtest_result if parent_rpcs.respond_to? :create_backtest_result
      @create_backtest_result = ::Gapic::Config::Method.new create_backtest_result_config
      update_backtest_result_config = parent_rpcs.update_backtest_result if parent_rpcs.respond_to? :update_backtest_result
      @update_backtest_result = ::Gapic::Config::Method.new update_backtest_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_backtest_result_metadata
      @export_backtest_result_metadata = ::Gapic::Config::Method.new 
      delete_backtest_result_config = parent_rpcs.delete_backtest_result if parent_rpcs.respond_to? :delete_backtest_result
      @delete_backtest_result = ::Gapic::Config::Method.new delete_backtest_result_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})


4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
# File 'lib/google/cloud/financial_services/v1/aml/rest/client.rb', line 4057

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "financialservices.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 AML 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `import_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_registered_parties
    ##
    # RPC-specific configuration for `export_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_registered_parties
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `update_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_dataset
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `update_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_model
    ##
    # RPC-specific configuration for `export_model_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_model_metadata
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model
    ##
    # RPC-specific configuration for `list_engine_configs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_configs
    ##
    # RPC-specific configuration for `get_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_config
    ##
    # RPC-specific configuration for `create_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_engine_config
    ##
    # RPC-specific configuration for `update_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_engine_config
    ##
    # RPC-specific configuration for `export_engine_config_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_engine_config_metadata
    ##
    # RPC-specific configuration for `delete_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_engine_config
    ##
    # RPC-specific configuration for `get_engine_version`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_version
    ##
    # RPC-specific configuration for `list_engine_versions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_versions
    ##
    # RPC-specific configuration for `list_prediction_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_prediction_results
    ##
    # RPC-specific configuration for `get_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_prediction_result
    ##
    # RPC-specific configuration for `create_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_prediction_result
    ##
    # RPC-specific configuration for `update_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_prediction_result
    ##
    # RPC-specific configuration for `export_prediction_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_prediction_result_metadata
    ##
    # RPC-specific configuration for `delete_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_prediction_result
    ##
    # RPC-specific configuration for `list_backtest_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backtest_results
    ##
    # RPC-specific configuration for `get_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backtest_result
    ##
    # RPC-specific configuration for `create_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backtest_result
    ##
    # RPC-specific configuration for `update_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backtest_result
    ##
    # RPC-specific configuration for `export_backtest_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_backtest_result_metadata
    ##
    # RPC-specific configuration for `delete_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backtest_result

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      import_registered_parties_config = parent_rpcs.import_registered_parties if parent_rpcs.respond_to? :import_registered_parties
      @import_registered_parties = ::Gapic::Config::Method.new import_registered_parties_config
      export_registered_parties_config = parent_rpcs.export_registered_parties if parent_rpcs.respond_to? :export_registered_parties
      @export_registered_parties = ::Gapic::Config::Method.new export_registered_parties_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset
      @update_dataset = ::Gapic::Config::Method.new update_dataset_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model
      @update_model = ::Gapic::Config::Method.new update_model_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_model_metadata
      @export_model_metadata = ::Gapic::Config::Method.new 
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config
      list_engine_configs_config = parent_rpcs.list_engine_configs if parent_rpcs.respond_to? :list_engine_configs
      @list_engine_configs = ::Gapic::Config::Method.new list_engine_configs_config
      get_engine_config_config = parent_rpcs.get_engine_config if parent_rpcs.respond_to? :get_engine_config
      @get_engine_config = ::Gapic::Config::Method.new get_engine_config_config
      create_engine_config_config = parent_rpcs.create_engine_config if parent_rpcs.respond_to? :create_engine_config
      @create_engine_config = ::Gapic::Config::Method.new create_engine_config_config
      update_engine_config_config = parent_rpcs.update_engine_config if parent_rpcs.respond_to? :update_engine_config
      @update_engine_config = ::Gapic::Config::Method.new update_engine_config_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_engine_config_metadata
      @export_engine_config_metadata = ::Gapic::Config::Method.new 
      delete_engine_config_config = parent_rpcs.delete_engine_config if parent_rpcs.respond_to? :delete_engine_config
      @delete_engine_config = ::Gapic::Config::Method.new delete_engine_config_config
      get_engine_version_config = parent_rpcs.get_engine_version if parent_rpcs.respond_to? :get_engine_version
      @get_engine_version = ::Gapic::Config::Method.new get_engine_version_config
      list_engine_versions_config = parent_rpcs.list_engine_versions if parent_rpcs.respond_to? :list_engine_versions
      @list_engine_versions = ::Gapic::Config::Method.new list_engine_versions_config
      list_prediction_results_config = parent_rpcs.list_prediction_results if parent_rpcs.respond_to? :list_prediction_results
      @list_prediction_results = ::Gapic::Config::Method.new list_prediction_results_config
      get_prediction_result_config = parent_rpcs.get_prediction_result if parent_rpcs.respond_to? :get_prediction_result
      @get_prediction_result = ::Gapic::Config::Method.new get_prediction_result_config
      create_prediction_result_config = parent_rpcs.create_prediction_result if parent_rpcs.respond_to? :create_prediction_result
      @create_prediction_result = ::Gapic::Config::Method.new create_prediction_result_config
      update_prediction_result_config = parent_rpcs.update_prediction_result if parent_rpcs.respond_to? :update_prediction_result
      @update_prediction_result = ::Gapic::Config::Method.new update_prediction_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_prediction_result_metadata
      @export_prediction_result_metadata = ::Gapic::Config::Method.new 
      delete_prediction_result_config = parent_rpcs.delete_prediction_result if parent_rpcs.respond_to? :delete_prediction_result
      @delete_prediction_result = ::Gapic::Config::Method.new delete_prediction_result_config
      list_backtest_results_config = parent_rpcs.list_backtest_results if parent_rpcs.respond_to? :list_backtest_results
      @list_backtest_results = ::Gapic::Config::Method.new list_backtest_results_config
      get_backtest_result_config = parent_rpcs.get_backtest_result if parent_rpcs.respond_to? :get_backtest_result
      @get_backtest_result = ::Gapic::Config::Method.new get_backtest_result_config
      create_backtest_result_config = parent_rpcs.create_backtest_result if parent_rpcs.respond_to? :create_backtest_result
      @create_backtest_result = ::Gapic::Config::Method.new create_backtest_result_config
      update_backtest_result_config = parent_rpcs.update_backtest_result if parent_rpcs.respond_to? :update_backtest_result
      @update_backtest_result = ::Gapic::Config::Method.new update_backtest_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_backtest_result_metadata
      @export_backtest_result_metadata = ::Gapic::Config::Method.new 
      delete_backtest_result_config = parent_rpcs.delete_backtest_result if parent_rpcs.respond_to? :delete_backtest_result
      @delete_backtest_result = ::Gapic::Config::Method.new delete_backtest_result_config

      yield self if block_given?
    end
  end
end

#quota_project::String

A separate project against which to charge quota.

Returns:

  • (::String)


4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
# File 'lib/google/cloud/financial_services/v1/aml/rest/client.rb', line 4057

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "financialservices.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 AML 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `import_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_registered_parties
    ##
    # RPC-specific configuration for `export_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_registered_parties
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `update_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_dataset
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `update_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_model
    ##
    # RPC-specific configuration for `export_model_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_model_metadata
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model
    ##
    # RPC-specific configuration for `list_engine_configs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_configs
    ##
    # RPC-specific configuration for `get_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_config
    ##
    # RPC-specific configuration for `create_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_engine_config
    ##
    # RPC-specific configuration for `update_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_engine_config
    ##
    # RPC-specific configuration for `export_engine_config_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_engine_config_metadata
    ##
    # RPC-specific configuration for `delete_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_engine_config
    ##
    # RPC-specific configuration for `get_engine_version`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_version
    ##
    # RPC-specific configuration for `list_engine_versions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_versions
    ##
    # RPC-specific configuration for `list_prediction_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_prediction_results
    ##
    # RPC-specific configuration for `get_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_prediction_result
    ##
    # RPC-specific configuration for `create_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_prediction_result
    ##
    # RPC-specific configuration for `update_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_prediction_result
    ##
    # RPC-specific configuration for `export_prediction_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_prediction_result_metadata
    ##
    # RPC-specific configuration for `delete_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_prediction_result
    ##
    # RPC-specific configuration for `list_backtest_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backtest_results
    ##
    # RPC-specific configuration for `get_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backtest_result
    ##
    # RPC-specific configuration for `create_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backtest_result
    ##
    # RPC-specific configuration for `update_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backtest_result
    ##
    # RPC-specific configuration for `export_backtest_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_backtest_result_metadata
    ##
    # RPC-specific configuration for `delete_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backtest_result

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      import_registered_parties_config = parent_rpcs.import_registered_parties if parent_rpcs.respond_to? :import_registered_parties
      @import_registered_parties = ::Gapic::Config::Method.new import_registered_parties_config
      export_registered_parties_config = parent_rpcs.export_registered_parties if parent_rpcs.respond_to? :export_registered_parties
      @export_registered_parties = ::Gapic::Config::Method.new export_registered_parties_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset
      @update_dataset = ::Gapic::Config::Method.new update_dataset_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model
      @update_model = ::Gapic::Config::Method.new update_model_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_model_metadata
      @export_model_metadata = ::Gapic::Config::Method.new 
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config
      list_engine_configs_config = parent_rpcs.list_engine_configs if parent_rpcs.respond_to? :list_engine_configs
      @list_engine_configs = ::Gapic::Config::Method.new list_engine_configs_config
      get_engine_config_config = parent_rpcs.get_engine_config if parent_rpcs.respond_to? :get_engine_config
      @get_engine_config = ::Gapic::Config::Method.new get_engine_config_config
      create_engine_config_config = parent_rpcs.create_engine_config if parent_rpcs.respond_to? :create_engine_config
      @create_engine_config = ::Gapic::Config::Method.new create_engine_config_config
      update_engine_config_config = parent_rpcs.update_engine_config if parent_rpcs.respond_to? :update_engine_config
      @update_engine_config = ::Gapic::Config::Method.new update_engine_config_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_engine_config_metadata
      @export_engine_config_metadata = ::Gapic::Config::Method.new 
      delete_engine_config_config = parent_rpcs.delete_engine_config if parent_rpcs.respond_to? :delete_engine_config
      @delete_engine_config = ::Gapic::Config::Method.new delete_engine_config_config
      get_engine_version_config = parent_rpcs.get_engine_version if parent_rpcs.respond_to? :get_engine_version
      @get_engine_version = ::Gapic::Config::Method.new get_engine_version_config
      list_engine_versions_config = parent_rpcs.list_engine_versions if parent_rpcs.respond_to? :list_engine_versions
      @list_engine_versions = ::Gapic::Config::Method.new list_engine_versions_config
      list_prediction_results_config = parent_rpcs.list_prediction_results if parent_rpcs.respond_to? :list_prediction_results
      @list_prediction_results = ::Gapic::Config::Method.new list_prediction_results_config
      get_prediction_result_config = parent_rpcs.get_prediction_result if parent_rpcs.respond_to? :get_prediction_result
      @get_prediction_result = ::Gapic::Config::Method.new get_prediction_result_config
      create_prediction_result_config = parent_rpcs.create_prediction_result if parent_rpcs.respond_to? :create_prediction_result
      @create_prediction_result = ::Gapic::Config::Method.new create_prediction_result_config
      update_prediction_result_config = parent_rpcs.update_prediction_result if parent_rpcs.respond_to? :update_prediction_result
      @update_prediction_result = ::Gapic::Config::Method.new update_prediction_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_prediction_result_metadata
      @export_prediction_result_metadata = ::Gapic::Config::Method.new 
      delete_prediction_result_config = parent_rpcs.delete_prediction_result if parent_rpcs.respond_to? :delete_prediction_result
      @delete_prediction_result = ::Gapic::Config::Method.new delete_prediction_result_config
      list_backtest_results_config = parent_rpcs.list_backtest_results if parent_rpcs.respond_to? :list_backtest_results
      @list_backtest_results = ::Gapic::Config::Method.new list_backtest_results_config
      get_backtest_result_config = parent_rpcs.get_backtest_result if parent_rpcs.respond_to? :get_backtest_result
      @get_backtest_result = ::Gapic::Config::Method.new get_backtest_result_config
      create_backtest_result_config = parent_rpcs.create_backtest_result if parent_rpcs.respond_to? :create_backtest_result
      @create_backtest_result = ::Gapic::Config::Method.new create_backtest_result_config
      update_backtest_result_config = parent_rpcs.update_backtest_result if parent_rpcs.respond_to? :update_backtest_result
      @update_backtest_result = ::Gapic::Config::Method.new update_backtest_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_backtest_result_metadata
      @export_backtest_result_metadata = ::Gapic::Config::Method.new 
      delete_backtest_result_config = parent_rpcs.delete_backtest_result if parent_rpcs.respond_to? :delete_backtest_result
      @delete_backtest_result = ::Gapic::Config::Method.new delete_backtest_result_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)


4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
# File 'lib/google/cloud/financial_services/v1/aml/rest/client.rb', line 4057

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "financialservices.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 AML 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `import_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_registered_parties
    ##
    # RPC-specific configuration for `export_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_registered_parties
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `update_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_dataset
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `update_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_model
    ##
    # RPC-specific configuration for `export_model_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_model_metadata
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model
    ##
    # RPC-specific configuration for `list_engine_configs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_configs
    ##
    # RPC-specific configuration for `get_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_config
    ##
    # RPC-specific configuration for `create_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_engine_config
    ##
    # RPC-specific configuration for `update_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_engine_config
    ##
    # RPC-specific configuration for `export_engine_config_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_engine_config_metadata
    ##
    # RPC-specific configuration for `delete_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_engine_config
    ##
    # RPC-specific configuration for `get_engine_version`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_version
    ##
    # RPC-specific configuration for `list_engine_versions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_versions
    ##
    # RPC-specific configuration for `list_prediction_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_prediction_results
    ##
    # RPC-specific configuration for `get_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_prediction_result
    ##
    # RPC-specific configuration for `create_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_prediction_result
    ##
    # RPC-specific configuration for `update_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_prediction_result
    ##
    # RPC-specific configuration for `export_prediction_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_prediction_result_metadata
    ##
    # RPC-specific configuration for `delete_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_prediction_result
    ##
    # RPC-specific configuration for `list_backtest_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backtest_results
    ##
    # RPC-specific configuration for `get_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backtest_result
    ##
    # RPC-specific configuration for `create_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backtest_result
    ##
    # RPC-specific configuration for `update_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backtest_result
    ##
    # RPC-specific configuration for `export_backtest_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_backtest_result_metadata
    ##
    # RPC-specific configuration for `delete_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backtest_result

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      import_registered_parties_config = parent_rpcs.import_registered_parties if parent_rpcs.respond_to? :import_registered_parties
      @import_registered_parties = ::Gapic::Config::Method.new import_registered_parties_config
      export_registered_parties_config = parent_rpcs.export_registered_parties if parent_rpcs.respond_to? :export_registered_parties
      @export_registered_parties = ::Gapic::Config::Method.new export_registered_parties_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset
      @update_dataset = ::Gapic::Config::Method.new update_dataset_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model
      @update_model = ::Gapic::Config::Method.new update_model_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_model_metadata
      @export_model_metadata = ::Gapic::Config::Method.new 
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config
      list_engine_configs_config = parent_rpcs.list_engine_configs if parent_rpcs.respond_to? :list_engine_configs
      @list_engine_configs = ::Gapic::Config::Method.new list_engine_configs_config
      get_engine_config_config = parent_rpcs.get_engine_config if parent_rpcs.respond_to? :get_engine_config
      @get_engine_config = ::Gapic::Config::Method.new get_engine_config_config
      create_engine_config_config = parent_rpcs.create_engine_config if parent_rpcs.respond_to? :create_engine_config
      @create_engine_config = ::Gapic::Config::Method.new create_engine_config_config
      update_engine_config_config = parent_rpcs.update_engine_config if parent_rpcs.respond_to? :update_engine_config
      @update_engine_config = ::Gapic::Config::Method.new update_engine_config_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_engine_config_metadata
      @export_engine_config_metadata = ::Gapic::Config::Method.new 
      delete_engine_config_config = parent_rpcs.delete_engine_config if parent_rpcs.respond_to? :delete_engine_config
      @delete_engine_config = ::Gapic::Config::Method.new delete_engine_config_config
      get_engine_version_config = parent_rpcs.get_engine_version if parent_rpcs.respond_to? :get_engine_version
      @get_engine_version = ::Gapic::Config::Method.new get_engine_version_config
      list_engine_versions_config = parent_rpcs.list_engine_versions if parent_rpcs.respond_to? :list_engine_versions
      @list_engine_versions = ::Gapic::Config::Method.new list_engine_versions_config
      list_prediction_results_config = parent_rpcs.list_prediction_results if parent_rpcs.respond_to? :list_prediction_results
      @list_prediction_results = ::Gapic::Config::Method.new list_prediction_results_config
      get_prediction_result_config = parent_rpcs.get_prediction_result if parent_rpcs.respond_to? :get_prediction_result
      @get_prediction_result = ::Gapic::Config::Method.new get_prediction_result_config
      create_prediction_result_config = parent_rpcs.create_prediction_result if parent_rpcs.respond_to? :create_prediction_result
      @create_prediction_result = ::Gapic::Config::Method.new create_prediction_result_config
      update_prediction_result_config = parent_rpcs.update_prediction_result if parent_rpcs.respond_to? :update_prediction_result
      @update_prediction_result = ::Gapic::Config::Method.new update_prediction_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_prediction_result_metadata
      @export_prediction_result_metadata = ::Gapic::Config::Method.new 
      delete_prediction_result_config = parent_rpcs.delete_prediction_result if parent_rpcs.respond_to? :delete_prediction_result
      @delete_prediction_result = ::Gapic::Config::Method.new delete_prediction_result_config
      list_backtest_results_config = parent_rpcs.list_backtest_results if parent_rpcs.respond_to? :list_backtest_results
      @list_backtest_results = ::Gapic::Config::Method.new list_backtest_results_config
      get_backtest_result_config = parent_rpcs.get_backtest_result if parent_rpcs.respond_to? :get_backtest_result
      @get_backtest_result = ::Gapic::Config::Method.new get_backtest_result_config
      create_backtest_result_config = parent_rpcs.create_backtest_result if parent_rpcs.respond_to? :create_backtest_result
      @create_backtest_result = ::Gapic::Config::Method.new create_backtest_result_config
      update_backtest_result_config = parent_rpcs.update_backtest_result if parent_rpcs.respond_to? :update_backtest_result
      @update_backtest_result = ::Gapic::Config::Method.new update_backtest_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_backtest_result_metadata
      @export_backtest_result_metadata = ::Gapic::Config::Method.new 
      delete_backtest_result_config = parent_rpcs.delete_backtest_result if parent_rpcs.respond_to? :delete_backtest_result
      @delete_backtest_result = ::Gapic::Config::Method.new delete_backtest_result_config

      yield self if block_given?
    end
  end
end

#scope::Array<::String>

The OAuth scopes

Returns:

  • (::Array<::String>)


4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
# File 'lib/google/cloud/financial_services/v1/aml/rest/client.rb', line 4057

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "financialservices.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 AML 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `import_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_registered_parties
    ##
    # RPC-specific configuration for `export_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_registered_parties
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `update_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_dataset
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `update_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_model
    ##
    # RPC-specific configuration for `export_model_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_model_metadata
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model
    ##
    # RPC-specific configuration for `list_engine_configs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_configs
    ##
    # RPC-specific configuration for `get_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_config
    ##
    # RPC-specific configuration for `create_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_engine_config
    ##
    # RPC-specific configuration for `update_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_engine_config
    ##
    # RPC-specific configuration for `export_engine_config_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_engine_config_metadata
    ##
    # RPC-specific configuration for `delete_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_engine_config
    ##
    # RPC-specific configuration for `get_engine_version`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_version
    ##
    # RPC-specific configuration for `list_engine_versions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_versions
    ##
    # RPC-specific configuration for `list_prediction_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_prediction_results
    ##
    # RPC-specific configuration for `get_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_prediction_result
    ##
    # RPC-specific configuration for `create_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_prediction_result
    ##
    # RPC-specific configuration for `update_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_prediction_result
    ##
    # RPC-specific configuration for `export_prediction_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_prediction_result_metadata
    ##
    # RPC-specific configuration for `delete_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_prediction_result
    ##
    # RPC-specific configuration for `list_backtest_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backtest_results
    ##
    # RPC-specific configuration for `get_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backtest_result
    ##
    # RPC-specific configuration for `create_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backtest_result
    ##
    # RPC-specific configuration for `update_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backtest_result
    ##
    # RPC-specific configuration for `export_backtest_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_backtest_result_metadata
    ##
    # RPC-specific configuration for `delete_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backtest_result

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      import_registered_parties_config = parent_rpcs.import_registered_parties if parent_rpcs.respond_to? :import_registered_parties
      @import_registered_parties = ::Gapic::Config::Method.new import_registered_parties_config
      export_registered_parties_config = parent_rpcs.export_registered_parties if parent_rpcs.respond_to? :export_registered_parties
      @export_registered_parties = ::Gapic::Config::Method.new export_registered_parties_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset
      @update_dataset = ::Gapic::Config::Method.new update_dataset_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model
      @update_model = ::Gapic::Config::Method.new update_model_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_model_metadata
      @export_model_metadata = ::Gapic::Config::Method.new 
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config
      list_engine_configs_config = parent_rpcs.list_engine_configs if parent_rpcs.respond_to? :list_engine_configs
      @list_engine_configs = ::Gapic::Config::Method.new list_engine_configs_config
      get_engine_config_config = parent_rpcs.get_engine_config if parent_rpcs.respond_to? :get_engine_config
      @get_engine_config = ::Gapic::Config::Method.new get_engine_config_config
      create_engine_config_config = parent_rpcs.create_engine_config if parent_rpcs.respond_to? :create_engine_config
      @create_engine_config = ::Gapic::Config::Method.new create_engine_config_config
      update_engine_config_config = parent_rpcs.update_engine_config if parent_rpcs.respond_to? :update_engine_config
      @update_engine_config = ::Gapic::Config::Method.new update_engine_config_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_engine_config_metadata
      @export_engine_config_metadata = ::Gapic::Config::Method.new 
      delete_engine_config_config = parent_rpcs.delete_engine_config if parent_rpcs.respond_to? :delete_engine_config
      @delete_engine_config = ::Gapic::Config::Method.new delete_engine_config_config
      get_engine_version_config = parent_rpcs.get_engine_version if parent_rpcs.respond_to? :get_engine_version
      @get_engine_version = ::Gapic::Config::Method.new get_engine_version_config
      list_engine_versions_config = parent_rpcs.list_engine_versions if parent_rpcs.respond_to? :list_engine_versions
      @list_engine_versions = ::Gapic::Config::Method.new list_engine_versions_config
      list_prediction_results_config = parent_rpcs.list_prediction_results if parent_rpcs.respond_to? :list_prediction_results
      @list_prediction_results = ::Gapic::Config::Method.new list_prediction_results_config
      get_prediction_result_config = parent_rpcs.get_prediction_result if parent_rpcs.respond_to? :get_prediction_result
      @get_prediction_result = ::Gapic::Config::Method.new get_prediction_result_config
      create_prediction_result_config = parent_rpcs.create_prediction_result if parent_rpcs.respond_to? :create_prediction_result
      @create_prediction_result = ::Gapic::Config::Method.new create_prediction_result_config
      update_prediction_result_config = parent_rpcs.update_prediction_result if parent_rpcs.respond_to? :update_prediction_result
      @update_prediction_result = ::Gapic::Config::Method.new update_prediction_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_prediction_result_metadata
      @export_prediction_result_metadata = ::Gapic::Config::Method.new 
      delete_prediction_result_config = parent_rpcs.delete_prediction_result if parent_rpcs.respond_to? :delete_prediction_result
      @delete_prediction_result = ::Gapic::Config::Method.new delete_prediction_result_config
      list_backtest_results_config = parent_rpcs.list_backtest_results if parent_rpcs.respond_to? :list_backtest_results
      @list_backtest_results = ::Gapic::Config::Method.new list_backtest_results_config
      get_backtest_result_config = parent_rpcs.get_backtest_result if parent_rpcs.respond_to? :get_backtest_result
      @get_backtest_result = ::Gapic::Config::Method.new get_backtest_result_config
      create_backtest_result_config = parent_rpcs.create_backtest_result if parent_rpcs.respond_to? :create_backtest_result
      @create_backtest_result = ::Gapic::Config::Method.new create_backtest_result_config
      update_backtest_result_config = parent_rpcs.update_backtest_result if parent_rpcs.respond_to? :update_backtest_result
      @update_backtest_result = ::Gapic::Config::Method.new update_backtest_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_backtest_result_metadata
      @export_backtest_result_metadata = ::Gapic::Config::Method.new 
      delete_backtest_result_config = parent_rpcs.delete_backtest_result if parent_rpcs.respond_to? :delete_backtest_result
      @delete_backtest_result = ::Gapic::Config::Method.new delete_backtest_result_config

      yield self if block_given?
    end
  end
end

#timeout::Numeric

The call timeout in seconds.

Returns:

  • (::Numeric)


4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
# File 'lib/google/cloud/financial_services/v1/aml/rest/client.rb', line 4057

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "financialservices.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 AML 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `import_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_registered_parties
    ##
    # RPC-specific configuration for `export_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_registered_parties
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `update_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_dataset
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `update_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_model
    ##
    # RPC-specific configuration for `export_model_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_model_metadata
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model
    ##
    # RPC-specific configuration for `list_engine_configs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_configs
    ##
    # RPC-specific configuration for `get_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_config
    ##
    # RPC-specific configuration for `create_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_engine_config
    ##
    # RPC-specific configuration for `update_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_engine_config
    ##
    # RPC-specific configuration for `export_engine_config_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_engine_config_metadata
    ##
    # RPC-specific configuration for `delete_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_engine_config
    ##
    # RPC-specific configuration for `get_engine_version`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_version
    ##
    # RPC-specific configuration for `list_engine_versions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_versions
    ##
    # RPC-specific configuration for `list_prediction_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_prediction_results
    ##
    # RPC-specific configuration for `get_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_prediction_result
    ##
    # RPC-specific configuration for `create_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_prediction_result
    ##
    # RPC-specific configuration for `update_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_prediction_result
    ##
    # RPC-specific configuration for `export_prediction_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_prediction_result_metadata
    ##
    # RPC-specific configuration for `delete_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_prediction_result
    ##
    # RPC-specific configuration for `list_backtest_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backtest_results
    ##
    # RPC-specific configuration for `get_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backtest_result
    ##
    # RPC-specific configuration for `create_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backtest_result
    ##
    # RPC-specific configuration for `update_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backtest_result
    ##
    # RPC-specific configuration for `export_backtest_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_backtest_result_metadata
    ##
    # RPC-specific configuration for `delete_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backtest_result

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      import_registered_parties_config = parent_rpcs.import_registered_parties if parent_rpcs.respond_to? :import_registered_parties
      @import_registered_parties = ::Gapic::Config::Method.new import_registered_parties_config
      export_registered_parties_config = parent_rpcs.export_registered_parties if parent_rpcs.respond_to? :export_registered_parties
      @export_registered_parties = ::Gapic::Config::Method.new export_registered_parties_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset
      @update_dataset = ::Gapic::Config::Method.new update_dataset_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model
      @update_model = ::Gapic::Config::Method.new update_model_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_model_metadata
      @export_model_metadata = ::Gapic::Config::Method.new 
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config
      list_engine_configs_config = parent_rpcs.list_engine_configs if parent_rpcs.respond_to? :list_engine_configs
      @list_engine_configs = ::Gapic::Config::Method.new list_engine_configs_config
      get_engine_config_config = parent_rpcs.get_engine_config if parent_rpcs.respond_to? :get_engine_config
      @get_engine_config = ::Gapic::Config::Method.new get_engine_config_config
      create_engine_config_config = parent_rpcs.create_engine_config if parent_rpcs.respond_to? :create_engine_config
      @create_engine_config = ::Gapic::Config::Method.new create_engine_config_config
      update_engine_config_config = parent_rpcs.update_engine_config if parent_rpcs.respond_to? :update_engine_config
      @update_engine_config = ::Gapic::Config::Method.new update_engine_config_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_engine_config_metadata
      @export_engine_config_metadata = ::Gapic::Config::Method.new 
      delete_engine_config_config = parent_rpcs.delete_engine_config if parent_rpcs.respond_to? :delete_engine_config
      @delete_engine_config = ::Gapic::Config::Method.new delete_engine_config_config
      get_engine_version_config = parent_rpcs.get_engine_version if parent_rpcs.respond_to? :get_engine_version
      @get_engine_version = ::Gapic::Config::Method.new get_engine_version_config
      list_engine_versions_config = parent_rpcs.list_engine_versions if parent_rpcs.respond_to? :list_engine_versions
      @list_engine_versions = ::Gapic::Config::Method.new list_engine_versions_config
      list_prediction_results_config = parent_rpcs.list_prediction_results if parent_rpcs.respond_to? :list_prediction_results
      @list_prediction_results = ::Gapic::Config::Method.new list_prediction_results_config
      get_prediction_result_config = parent_rpcs.get_prediction_result if parent_rpcs.respond_to? :get_prediction_result
      @get_prediction_result = ::Gapic::Config::Method.new get_prediction_result_config
      create_prediction_result_config = parent_rpcs.create_prediction_result if parent_rpcs.respond_to? :create_prediction_result
      @create_prediction_result = ::Gapic::Config::Method.new create_prediction_result_config
      update_prediction_result_config = parent_rpcs.update_prediction_result if parent_rpcs.respond_to? :update_prediction_result
      @update_prediction_result = ::Gapic::Config::Method.new update_prediction_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_prediction_result_metadata
      @export_prediction_result_metadata = ::Gapic::Config::Method.new 
      delete_prediction_result_config = parent_rpcs.delete_prediction_result if parent_rpcs.respond_to? :delete_prediction_result
      @delete_prediction_result = ::Gapic::Config::Method.new delete_prediction_result_config
      list_backtest_results_config = parent_rpcs.list_backtest_results if parent_rpcs.respond_to? :list_backtest_results
      @list_backtest_results = ::Gapic::Config::Method.new list_backtest_results_config
      get_backtest_result_config = parent_rpcs.get_backtest_result if parent_rpcs.respond_to? :get_backtest_result
      @get_backtest_result = ::Gapic::Config::Method.new get_backtest_result_config
      create_backtest_result_config = parent_rpcs.create_backtest_result if parent_rpcs.respond_to? :create_backtest_result
      @create_backtest_result = ::Gapic::Config::Method.new create_backtest_result_config
      update_backtest_result_config = parent_rpcs.update_backtest_result if parent_rpcs.respond_to? :update_backtest_result
      @update_backtest_result = ::Gapic::Config::Method.new update_backtest_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_backtest_result_metadata
      @export_backtest_result_metadata = ::Gapic::Config::Method.new 
      delete_backtest_result_config = parent_rpcs.delete_backtest_result if parent_rpcs.respond_to? :delete_backtest_result
      @delete_backtest_result = ::Gapic::Config::Method.new delete_backtest_result_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)


4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
# File 'lib/google/cloud/financial_services/v1/aml/rest/client.rb', line 4057

class Configuration
  extend ::Gapic::Config

  # @private
  # The endpoint specific to the default "googleapis.com" universe. Deprecated.
  DEFAULT_ENDPOINT = "financialservices.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 AML 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 `list_instances`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_instances
    ##
    # RPC-specific configuration for `get_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_instance
    ##
    # RPC-specific configuration for `create_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_instance
    ##
    # RPC-specific configuration for `update_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_instance
    ##
    # RPC-specific configuration for `delete_instance`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_instance
    ##
    # RPC-specific configuration for `import_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_registered_parties
    ##
    # RPC-specific configuration for `export_registered_parties`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_registered_parties
    ##
    # RPC-specific configuration for `list_datasets`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_datasets
    ##
    # RPC-specific configuration for `get_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_dataset
    ##
    # RPC-specific configuration for `create_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_dataset
    ##
    # RPC-specific configuration for `update_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_dataset
    ##
    # RPC-specific configuration for `delete_dataset`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_dataset
    ##
    # RPC-specific configuration for `list_models`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_models
    ##
    # RPC-specific configuration for `get_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_model
    ##
    # RPC-specific configuration for `create_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_model
    ##
    # RPC-specific configuration for `update_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_model
    ##
    # RPC-specific configuration for `export_model_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_model_metadata
    ##
    # RPC-specific configuration for `delete_model`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_model
    ##
    # RPC-specific configuration for `list_engine_configs`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_configs
    ##
    # RPC-specific configuration for `get_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_config
    ##
    # RPC-specific configuration for `create_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_engine_config
    ##
    # RPC-specific configuration for `update_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_engine_config
    ##
    # RPC-specific configuration for `export_engine_config_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_engine_config_metadata
    ##
    # RPC-specific configuration for `delete_engine_config`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_engine_config
    ##
    # RPC-specific configuration for `get_engine_version`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_engine_version
    ##
    # RPC-specific configuration for `list_engine_versions`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_engine_versions
    ##
    # RPC-specific configuration for `list_prediction_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_prediction_results
    ##
    # RPC-specific configuration for `get_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_prediction_result
    ##
    # RPC-specific configuration for `create_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_prediction_result
    ##
    # RPC-specific configuration for `update_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_prediction_result
    ##
    # RPC-specific configuration for `export_prediction_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_prediction_result_metadata
    ##
    # RPC-specific configuration for `delete_prediction_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_prediction_result
    ##
    # RPC-specific configuration for `list_backtest_results`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_backtest_results
    ##
    # RPC-specific configuration for `get_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_backtest_result
    ##
    # RPC-specific configuration for `create_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_backtest_result
    ##
    # RPC-specific configuration for `update_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_backtest_result
    ##
    # RPC-specific configuration for `export_backtest_result_metadata`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :export_backtest_result_metadata
    ##
    # RPC-specific configuration for `delete_backtest_result`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_backtest_result

    # @private
    def initialize parent_rpcs = nil
      list_instances_config = parent_rpcs.list_instances if parent_rpcs.respond_to? :list_instances
      @list_instances = ::Gapic::Config::Method.new list_instances_config
      get_instance_config = parent_rpcs.get_instance if parent_rpcs.respond_to? :get_instance
      @get_instance = ::Gapic::Config::Method.new get_instance_config
      create_instance_config = parent_rpcs.create_instance if parent_rpcs.respond_to? :create_instance
      @create_instance = ::Gapic::Config::Method.new create_instance_config
      update_instance_config = parent_rpcs.update_instance if parent_rpcs.respond_to? :update_instance
      @update_instance = ::Gapic::Config::Method.new update_instance_config
      delete_instance_config = parent_rpcs.delete_instance if parent_rpcs.respond_to? :delete_instance
      @delete_instance = ::Gapic::Config::Method.new delete_instance_config
      import_registered_parties_config = parent_rpcs.import_registered_parties if parent_rpcs.respond_to? :import_registered_parties
      @import_registered_parties = ::Gapic::Config::Method.new import_registered_parties_config
      export_registered_parties_config = parent_rpcs.export_registered_parties if parent_rpcs.respond_to? :export_registered_parties
      @export_registered_parties = ::Gapic::Config::Method.new export_registered_parties_config
      list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets
      @list_datasets = ::Gapic::Config::Method.new list_datasets_config
      get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset
      @get_dataset = ::Gapic::Config::Method.new get_dataset_config
      create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset
      @create_dataset = ::Gapic::Config::Method.new create_dataset_config
      update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset
      @update_dataset = ::Gapic::Config::Method.new update_dataset_config
      delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset
      @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config
      list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models
      @list_models = ::Gapic::Config::Method.new list_models_config
      get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model
      @get_model = ::Gapic::Config::Method.new get_model_config
      create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model
      @create_model = ::Gapic::Config::Method.new create_model_config
      update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model
      @update_model = ::Gapic::Config::Method.new update_model_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_model_metadata
      @export_model_metadata = ::Gapic::Config::Method.new 
      delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model
      @delete_model = ::Gapic::Config::Method.new delete_model_config
      list_engine_configs_config = parent_rpcs.list_engine_configs if parent_rpcs.respond_to? :list_engine_configs
      @list_engine_configs = ::Gapic::Config::Method.new list_engine_configs_config
      get_engine_config_config = parent_rpcs.get_engine_config if parent_rpcs.respond_to? :get_engine_config
      @get_engine_config = ::Gapic::Config::Method.new get_engine_config_config
      create_engine_config_config = parent_rpcs.create_engine_config if parent_rpcs.respond_to? :create_engine_config
      @create_engine_config = ::Gapic::Config::Method.new create_engine_config_config
      update_engine_config_config = parent_rpcs.update_engine_config if parent_rpcs.respond_to? :update_engine_config
      @update_engine_config = ::Gapic::Config::Method.new update_engine_config_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_engine_config_metadata
      @export_engine_config_metadata = ::Gapic::Config::Method.new 
      delete_engine_config_config = parent_rpcs.delete_engine_config if parent_rpcs.respond_to? :delete_engine_config
      @delete_engine_config = ::Gapic::Config::Method.new delete_engine_config_config
      get_engine_version_config = parent_rpcs.get_engine_version if parent_rpcs.respond_to? :get_engine_version
      @get_engine_version = ::Gapic::Config::Method.new get_engine_version_config
      list_engine_versions_config = parent_rpcs.list_engine_versions if parent_rpcs.respond_to? :list_engine_versions
      @list_engine_versions = ::Gapic::Config::Method.new list_engine_versions_config
      list_prediction_results_config = parent_rpcs.list_prediction_results if parent_rpcs.respond_to? :list_prediction_results
      @list_prediction_results = ::Gapic::Config::Method.new list_prediction_results_config
      get_prediction_result_config = parent_rpcs.get_prediction_result if parent_rpcs.respond_to? :get_prediction_result
      @get_prediction_result = ::Gapic::Config::Method.new get_prediction_result_config
      create_prediction_result_config = parent_rpcs.create_prediction_result if parent_rpcs.respond_to? :create_prediction_result
      @create_prediction_result = ::Gapic::Config::Method.new create_prediction_result_config
      update_prediction_result_config = parent_rpcs.update_prediction_result if parent_rpcs.respond_to? :update_prediction_result
      @update_prediction_result = ::Gapic::Config::Method.new update_prediction_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_prediction_result_metadata
      @export_prediction_result_metadata = ::Gapic::Config::Method.new 
      delete_prediction_result_config = parent_rpcs.delete_prediction_result if parent_rpcs.respond_to? :delete_prediction_result
      @delete_prediction_result = ::Gapic::Config::Method.new delete_prediction_result_config
      list_backtest_results_config = parent_rpcs.list_backtest_results if parent_rpcs.respond_to? :list_backtest_results
      @list_backtest_results = ::Gapic::Config::Method.new list_backtest_results_config
      get_backtest_result_config = parent_rpcs.get_backtest_result if parent_rpcs.respond_to? :get_backtest_result
      @get_backtest_result = ::Gapic::Config::Method.new get_backtest_result_config
      create_backtest_result_config = parent_rpcs.create_backtest_result if parent_rpcs.respond_to? :create_backtest_result
      @create_backtest_result = ::Gapic::Config::Method.new create_backtest_result_config
      update_backtest_result_config = parent_rpcs.update_backtest_result if parent_rpcs.respond_to? :update_backtest_result
      @update_backtest_result = ::Gapic::Config::Method.new update_backtest_result_config
       = parent_rpcs. if parent_rpcs.respond_to? :export_backtest_result_metadata
      @export_backtest_result_metadata = ::Gapic::Config::Method.new 
      delete_backtest_result_config = parent_rpcs.delete_backtest_result if parent_rpcs.respond_to? :delete_backtest_result
      @delete_backtest_result = ::Gapic::Config::Method.new delete_backtest_result_config

      yield self if block_given?
    end
  end
end

Instance Method Details

#rpcsRpcs

Configurations for individual RPCs

Returns:



4097
4098
4099
4100
4101
4102
4103
# File 'lib/google/cloud/financial_services/v1/aml/rest/client.rb', line 4097

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