class Google::Cloud::Retail::V2::CompletionService::Client::Configuration::Rpcs

Configuration RPC class for the CompletionService API.

Includes fields providing the configuration for each RPC in this service. Each configuration object is of type `Gapic::Config::Method` and includes the following configuration fields:

*  `timeout` (*type:* `Numeric`) - The call timeout in seconds
*  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
*  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
   include the following keys:
    *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
    *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
    *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
    *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
       trigger a retry.

Attributes

complete_query[R]

RPC-specific configuration for `complete_query` @return [::Gapic::Config::Method]

import_completion_data[R]

RPC-specific configuration for `import_completion_data` @return [::Gapic::Config::Method]

Public Class Methods

new(parent_rpcs = nil) { |self| ... } click to toggle source

@private

# File lib/google/cloud/retail/v2/completion_service/client.rb, line 530
def initialize parent_rpcs = nil
  complete_query_config = parent_rpcs.complete_query if parent_rpcs.respond_to? :complete_query
  @complete_query = ::Gapic::Config::Method.new complete_query_config
  import_completion_data_config = parent_rpcs.import_completion_data if parent_rpcs.respond_to? :import_completion_data
  @import_completion_data = ::Gapic::Config::Method.new import_completion_data_config

  yield self if block_given?
end