Class: Google::Cloud::Retail::V2::ProductService::Client::Configuration

Inherits:
Object
  • Object
show all
Extended by:
Gapic::Config
Defined in:
lib/google/cloud/retail/v2/product_service/client.rb

Overview

Configuration class for the ProductService API.

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

# Apply the above configuration only to a new client.
client = ::Google::Cloud::Retail::V2::ProductService::Client.new do |config|
  config.timeout = 10.0
  config.rpcs.create_product.timeout = 20.0
end

Defined Under Namespace

Classes: Rpcs

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#channel_args::Hash

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

Returns:

  • (::Hash)


2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
# File 'lib/google/cloud/retail/v2/product_service/client.rb', line 2024

class Configuration
  extend ::Gapic::Config

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

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the ProductService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_product
    ##
    # RPC-specific configuration for `get_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_product
    ##
    # RPC-specific configuration for `list_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_products
    ##
    # RPC-specific configuration for `update_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_product
    ##
    # RPC-specific configuration for `delete_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_product
    ##
    # RPC-specific configuration for `purge_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :purge_products
    ##
    # RPC-specific configuration for `import_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_products
    ##
    # RPC-specific configuration for `set_inventory`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_inventory
    ##
    # RPC-specific configuration for `add_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_fulfillment_places
    ##
    # RPC-specific configuration for `remove_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_fulfillment_places
    ##
    # RPC-specific configuration for `add_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_local_inventories
    ##
    # RPC-specific configuration for `remove_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_local_inventories

    # @private
    def initialize parent_rpcs = nil
      create_product_config = parent_rpcs.create_product if parent_rpcs.respond_to? :create_product
      @create_product = ::Gapic::Config::Method.new create_product_config
      get_product_config = parent_rpcs.get_product if parent_rpcs.respond_to? :get_product
      @get_product = ::Gapic::Config::Method.new get_product_config
      list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
      @list_products = ::Gapic::Config::Method.new list_products_config
      update_product_config = parent_rpcs.update_product if parent_rpcs.respond_to? :update_product
      @update_product = ::Gapic::Config::Method.new update_product_config
      delete_product_config = parent_rpcs.delete_product if parent_rpcs.respond_to? :delete_product
      @delete_product = ::Gapic::Config::Method.new delete_product_config
      purge_products_config = parent_rpcs.purge_products if parent_rpcs.respond_to? :purge_products
      @purge_products = ::Gapic::Config::Method.new purge_products_config
      import_products_config = parent_rpcs.import_products if parent_rpcs.respond_to? :import_products
      @import_products = ::Gapic::Config::Method.new import_products_config
      set_inventory_config = parent_rpcs.set_inventory if parent_rpcs.respond_to? :set_inventory
      @set_inventory = ::Gapic::Config::Method.new set_inventory_config
      add_fulfillment_places_config = parent_rpcs.add_fulfillment_places if parent_rpcs.respond_to? :add_fulfillment_places
      @add_fulfillment_places = ::Gapic::Config::Method.new add_fulfillment_places_config
      remove_fulfillment_places_config = parent_rpcs.remove_fulfillment_places if parent_rpcs.respond_to? :remove_fulfillment_places
      @remove_fulfillment_places = ::Gapic::Config::Method.new remove_fulfillment_places_config
      add_local_inventories_config = parent_rpcs.add_local_inventories if parent_rpcs.respond_to? :add_local_inventories
      @add_local_inventories = ::Gapic::Config::Method.new add_local_inventories_config
      remove_local_inventories_config = parent_rpcs.remove_local_inventories if parent_rpcs.respond_to? :remove_local_inventories
      @remove_local_inventories = ::Gapic::Config::Method.new remove_local_inventories_config

      yield self if block_given?
    end
  end
end

#credentials::Object

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

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

Returns:

  • (::Object)


2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
# File 'lib/google/cloud/retail/v2/product_service/client.rb', line 2024

class Configuration
  extend ::Gapic::Config

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

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the ProductService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_product
    ##
    # RPC-specific configuration for `get_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_product
    ##
    # RPC-specific configuration for `list_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_products
    ##
    # RPC-specific configuration for `update_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_product
    ##
    # RPC-specific configuration for `delete_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_product
    ##
    # RPC-specific configuration for `purge_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :purge_products
    ##
    # RPC-specific configuration for `import_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_products
    ##
    # RPC-specific configuration for `set_inventory`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_inventory
    ##
    # RPC-specific configuration for `add_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_fulfillment_places
    ##
    # RPC-specific configuration for `remove_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_fulfillment_places
    ##
    # RPC-specific configuration for `add_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_local_inventories
    ##
    # RPC-specific configuration for `remove_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_local_inventories

    # @private
    def initialize parent_rpcs = nil
      create_product_config = parent_rpcs.create_product if parent_rpcs.respond_to? :create_product
      @create_product = ::Gapic::Config::Method.new create_product_config
      get_product_config = parent_rpcs.get_product if parent_rpcs.respond_to? :get_product
      @get_product = ::Gapic::Config::Method.new get_product_config
      list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
      @list_products = ::Gapic::Config::Method.new list_products_config
      update_product_config = parent_rpcs.update_product if parent_rpcs.respond_to? :update_product
      @update_product = ::Gapic::Config::Method.new update_product_config
      delete_product_config = parent_rpcs.delete_product if parent_rpcs.respond_to? :delete_product
      @delete_product = ::Gapic::Config::Method.new delete_product_config
      purge_products_config = parent_rpcs.purge_products if parent_rpcs.respond_to? :purge_products
      @purge_products = ::Gapic::Config::Method.new purge_products_config
      import_products_config = parent_rpcs.import_products if parent_rpcs.respond_to? :import_products
      @import_products = ::Gapic::Config::Method.new import_products_config
      set_inventory_config = parent_rpcs.set_inventory if parent_rpcs.respond_to? :set_inventory
      @set_inventory = ::Gapic::Config::Method.new set_inventory_config
      add_fulfillment_places_config = parent_rpcs.add_fulfillment_places if parent_rpcs.respond_to? :add_fulfillment_places
      @add_fulfillment_places = ::Gapic::Config::Method.new add_fulfillment_places_config
      remove_fulfillment_places_config = parent_rpcs.remove_fulfillment_places if parent_rpcs.respond_to? :remove_fulfillment_places
      @remove_fulfillment_places = ::Gapic::Config::Method.new remove_fulfillment_places_config
      add_local_inventories_config = parent_rpcs.add_local_inventories if parent_rpcs.respond_to? :add_local_inventories
      @add_local_inventories = ::Gapic::Config::Method.new add_local_inventories_config
      remove_local_inventories_config = parent_rpcs.remove_local_inventories if parent_rpcs.respond_to? :remove_local_inventories
      @remove_local_inventories = ::Gapic::Config::Method.new remove_local_inventories_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)


2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
# File 'lib/google/cloud/retail/v2/product_service/client.rb', line 2024

class Configuration
  extend ::Gapic::Config

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

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the ProductService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_product
    ##
    # RPC-specific configuration for `get_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_product
    ##
    # RPC-specific configuration for `list_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_products
    ##
    # RPC-specific configuration for `update_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_product
    ##
    # RPC-specific configuration for `delete_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_product
    ##
    # RPC-specific configuration for `purge_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :purge_products
    ##
    # RPC-specific configuration for `import_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_products
    ##
    # RPC-specific configuration for `set_inventory`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_inventory
    ##
    # RPC-specific configuration for `add_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_fulfillment_places
    ##
    # RPC-specific configuration for `remove_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_fulfillment_places
    ##
    # RPC-specific configuration for `add_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_local_inventories
    ##
    # RPC-specific configuration for `remove_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_local_inventories

    # @private
    def initialize parent_rpcs = nil
      create_product_config = parent_rpcs.create_product if parent_rpcs.respond_to? :create_product
      @create_product = ::Gapic::Config::Method.new create_product_config
      get_product_config = parent_rpcs.get_product if parent_rpcs.respond_to? :get_product
      @get_product = ::Gapic::Config::Method.new get_product_config
      list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
      @list_products = ::Gapic::Config::Method.new list_products_config
      update_product_config = parent_rpcs.update_product if parent_rpcs.respond_to? :update_product
      @update_product = ::Gapic::Config::Method.new update_product_config
      delete_product_config = parent_rpcs.delete_product if parent_rpcs.respond_to? :delete_product
      @delete_product = ::Gapic::Config::Method.new delete_product_config
      purge_products_config = parent_rpcs.purge_products if parent_rpcs.respond_to? :purge_products
      @purge_products = ::Gapic::Config::Method.new purge_products_config
      import_products_config = parent_rpcs.import_products if parent_rpcs.respond_to? :import_products
      @import_products = ::Gapic::Config::Method.new import_products_config
      set_inventory_config = parent_rpcs.set_inventory if parent_rpcs.respond_to? :set_inventory
      @set_inventory = ::Gapic::Config::Method.new set_inventory_config
      add_fulfillment_places_config = parent_rpcs.add_fulfillment_places if parent_rpcs.respond_to? :add_fulfillment_places
      @add_fulfillment_places = ::Gapic::Config::Method.new add_fulfillment_places_config
      remove_fulfillment_places_config = parent_rpcs.remove_fulfillment_places if parent_rpcs.respond_to? :remove_fulfillment_places
      @remove_fulfillment_places = ::Gapic::Config::Method.new remove_fulfillment_places_config
      add_local_inventories_config = parent_rpcs.add_local_inventories if parent_rpcs.respond_to? :add_local_inventories
      @add_local_inventories = ::Gapic::Config::Method.new add_local_inventories_config
      remove_local_inventories_config = parent_rpcs.remove_local_inventories if parent_rpcs.respond_to? :remove_local_inventories
      @remove_local_inventories = ::Gapic::Config::Method.new remove_local_inventories_config

      yield self if block_given?
    end
  end
end

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

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

Returns:

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


2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
# File 'lib/google/cloud/retail/v2/product_service/client.rb', line 2024

class Configuration
  extend ::Gapic::Config

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

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the ProductService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_product
    ##
    # RPC-specific configuration for `get_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_product
    ##
    # RPC-specific configuration for `list_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_products
    ##
    # RPC-specific configuration for `update_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_product
    ##
    # RPC-specific configuration for `delete_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_product
    ##
    # RPC-specific configuration for `purge_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :purge_products
    ##
    # RPC-specific configuration for `import_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_products
    ##
    # RPC-specific configuration for `set_inventory`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_inventory
    ##
    # RPC-specific configuration for `add_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_fulfillment_places
    ##
    # RPC-specific configuration for `remove_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_fulfillment_places
    ##
    # RPC-specific configuration for `add_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_local_inventories
    ##
    # RPC-specific configuration for `remove_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_local_inventories

    # @private
    def initialize parent_rpcs = nil
      create_product_config = parent_rpcs.create_product if parent_rpcs.respond_to? :create_product
      @create_product = ::Gapic::Config::Method.new create_product_config
      get_product_config = parent_rpcs.get_product if parent_rpcs.respond_to? :get_product
      @get_product = ::Gapic::Config::Method.new get_product_config
      list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
      @list_products = ::Gapic::Config::Method.new list_products_config
      update_product_config = parent_rpcs.update_product if parent_rpcs.respond_to? :update_product
      @update_product = ::Gapic::Config::Method.new update_product_config
      delete_product_config = parent_rpcs.delete_product if parent_rpcs.respond_to? :delete_product
      @delete_product = ::Gapic::Config::Method.new delete_product_config
      purge_products_config = parent_rpcs.purge_products if parent_rpcs.respond_to? :purge_products
      @purge_products = ::Gapic::Config::Method.new purge_products_config
      import_products_config = parent_rpcs.import_products if parent_rpcs.respond_to? :import_products
      @import_products = ::Gapic::Config::Method.new import_products_config
      set_inventory_config = parent_rpcs.set_inventory if parent_rpcs.respond_to? :set_inventory
      @set_inventory = ::Gapic::Config::Method.new set_inventory_config
      add_fulfillment_places_config = parent_rpcs.add_fulfillment_places if parent_rpcs.respond_to? :add_fulfillment_places
      @add_fulfillment_places = ::Gapic::Config::Method.new add_fulfillment_places_config
      remove_fulfillment_places_config = parent_rpcs.remove_fulfillment_places if parent_rpcs.respond_to? :remove_fulfillment_places
      @remove_fulfillment_places = ::Gapic::Config::Method.new remove_fulfillment_places_config
      add_local_inventories_config = parent_rpcs.add_local_inventories if parent_rpcs.respond_to? :add_local_inventories
      @add_local_inventories = ::Gapic::Config::Method.new add_local_inventories_config
      remove_local_inventories_config = parent_rpcs.remove_local_inventories if parent_rpcs.respond_to? :remove_local_inventories
      @remove_local_inventories = ::Gapic::Config::Method.new remove_local_inventories_config

      yield self if block_given?
    end
  end
end

#lib_name::String

The library name as recorded in instrumentation and logging

Returns:

  • (::String)


2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
# File 'lib/google/cloud/retail/v2/product_service/client.rb', line 2024

class Configuration
  extend ::Gapic::Config

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

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the ProductService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_product
    ##
    # RPC-specific configuration for `get_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_product
    ##
    # RPC-specific configuration for `list_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_products
    ##
    # RPC-specific configuration for `update_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_product
    ##
    # RPC-specific configuration for `delete_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_product
    ##
    # RPC-specific configuration for `purge_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :purge_products
    ##
    # RPC-specific configuration for `import_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_products
    ##
    # RPC-specific configuration for `set_inventory`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_inventory
    ##
    # RPC-specific configuration for `add_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_fulfillment_places
    ##
    # RPC-specific configuration for `remove_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_fulfillment_places
    ##
    # RPC-specific configuration for `add_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_local_inventories
    ##
    # RPC-specific configuration for `remove_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_local_inventories

    # @private
    def initialize parent_rpcs = nil
      create_product_config = parent_rpcs.create_product if parent_rpcs.respond_to? :create_product
      @create_product = ::Gapic::Config::Method.new create_product_config
      get_product_config = parent_rpcs.get_product if parent_rpcs.respond_to? :get_product
      @get_product = ::Gapic::Config::Method.new get_product_config
      list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
      @list_products = ::Gapic::Config::Method.new list_products_config
      update_product_config = parent_rpcs.update_product if parent_rpcs.respond_to? :update_product
      @update_product = ::Gapic::Config::Method.new update_product_config
      delete_product_config = parent_rpcs.delete_product if parent_rpcs.respond_to? :delete_product
      @delete_product = ::Gapic::Config::Method.new delete_product_config
      purge_products_config = parent_rpcs.purge_products if parent_rpcs.respond_to? :purge_products
      @purge_products = ::Gapic::Config::Method.new purge_products_config
      import_products_config = parent_rpcs.import_products if parent_rpcs.respond_to? :import_products
      @import_products = ::Gapic::Config::Method.new import_products_config
      set_inventory_config = parent_rpcs.set_inventory if parent_rpcs.respond_to? :set_inventory
      @set_inventory = ::Gapic::Config::Method.new set_inventory_config
      add_fulfillment_places_config = parent_rpcs.add_fulfillment_places if parent_rpcs.respond_to? :add_fulfillment_places
      @add_fulfillment_places = ::Gapic::Config::Method.new add_fulfillment_places_config
      remove_fulfillment_places_config = parent_rpcs.remove_fulfillment_places if parent_rpcs.respond_to? :remove_fulfillment_places
      @remove_fulfillment_places = ::Gapic::Config::Method.new remove_fulfillment_places_config
      add_local_inventories_config = parent_rpcs.add_local_inventories if parent_rpcs.respond_to? :add_local_inventories
      @add_local_inventories = ::Gapic::Config::Method.new add_local_inventories_config
      remove_local_inventories_config = parent_rpcs.remove_local_inventories if parent_rpcs.respond_to? :remove_local_inventories
      @remove_local_inventories = ::Gapic::Config::Method.new remove_local_inventories_config

      yield self if block_given?
    end
  end
end

#lib_version::String

The library version as recorded in instrumentation and logging

Returns:

  • (::String)


2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
# File 'lib/google/cloud/retail/v2/product_service/client.rb', line 2024

class Configuration
  extend ::Gapic::Config

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

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the ProductService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_product
    ##
    # RPC-specific configuration for `get_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_product
    ##
    # RPC-specific configuration for `list_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_products
    ##
    # RPC-specific configuration for `update_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_product
    ##
    # RPC-specific configuration for `delete_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_product
    ##
    # RPC-specific configuration for `purge_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :purge_products
    ##
    # RPC-specific configuration for `import_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_products
    ##
    # RPC-specific configuration for `set_inventory`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_inventory
    ##
    # RPC-specific configuration for `add_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_fulfillment_places
    ##
    # RPC-specific configuration for `remove_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_fulfillment_places
    ##
    # RPC-specific configuration for `add_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_local_inventories
    ##
    # RPC-specific configuration for `remove_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_local_inventories

    # @private
    def initialize parent_rpcs = nil
      create_product_config = parent_rpcs.create_product if parent_rpcs.respond_to? :create_product
      @create_product = ::Gapic::Config::Method.new create_product_config
      get_product_config = parent_rpcs.get_product if parent_rpcs.respond_to? :get_product
      @get_product = ::Gapic::Config::Method.new get_product_config
      list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
      @list_products = ::Gapic::Config::Method.new list_products_config
      update_product_config = parent_rpcs.update_product if parent_rpcs.respond_to? :update_product
      @update_product = ::Gapic::Config::Method.new update_product_config
      delete_product_config = parent_rpcs.delete_product if parent_rpcs.respond_to? :delete_product
      @delete_product = ::Gapic::Config::Method.new delete_product_config
      purge_products_config = parent_rpcs.purge_products if parent_rpcs.respond_to? :purge_products
      @purge_products = ::Gapic::Config::Method.new purge_products_config
      import_products_config = parent_rpcs.import_products if parent_rpcs.respond_to? :import_products
      @import_products = ::Gapic::Config::Method.new import_products_config
      set_inventory_config = parent_rpcs.set_inventory if parent_rpcs.respond_to? :set_inventory
      @set_inventory = ::Gapic::Config::Method.new set_inventory_config
      add_fulfillment_places_config = parent_rpcs.add_fulfillment_places if parent_rpcs.respond_to? :add_fulfillment_places
      @add_fulfillment_places = ::Gapic::Config::Method.new add_fulfillment_places_config
      remove_fulfillment_places_config = parent_rpcs.remove_fulfillment_places if parent_rpcs.respond_to? :remove_fulfillment_places
      @remove_fulfillment_places = ::Gapic::Config::Method.new remove_fulfillment_places_config
      add_local_inventories_config = parent_rpcs.add_local_inventories if parent_rpcs.respond_to? :add_local_inventories
      @add_local_inventories = ::Gapic::Config::Method.new add_local_inventories_config
      remove_local_inventories_config = parent_rpcs.remove_local_inventories if parent_rpcs.respond_to? :remove_local_inventories
      @remove_local_inventories = ::Gapic::Config::Method.new remove_local_inventories_config

      yield self if block_given?
    end
  end
end

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

Additional gRPC headers to be sent with the call.

Returns:

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


2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
# File 'lib/google/cloud/retail/v2/product_service/client.rb', line 2024

class Configuration
  extend ::Gapic::Config

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

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the ProductService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_product
    ##
    # RPC-specific configuration for `get_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_product
    ##
    # RPC-specific configuration for `list_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_products
    ##
    # RPC-specific configuration for `update_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_product
    ##
    # RPC-specific configuration for `delete_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_product
    ##
    # RPC-specific configuration for `purge_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :purge_products
    ##
    # RPC-specific configuration for `import_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_products
    ##
    # RPC-specific configuration for `set_inventory`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_inventory
    ##
    # RPC-specific configuration for `add_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_fulfillment_places
    ##
    # RPC-specific configuration for `remove_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_fulfillment_places
    ##
    # RPC-specific configuration for `add_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_local_inventories
    ##
    # RPC-specific configuration for `remove_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_local_inventories

    # @private
    def initialize parent_rpcs = nil
      create_product_config = parent_rpcs.create_product if parent_rpcs.respond_to? :create_product
      @create_product = ::Gapic::Config::Method.new create_product_config
      get_product_config = parent_rpcs.get_product if parent_rpcs.respond_to? :get_product
      @get_product = ::Gapic::Config::Method.new get_product_config
      list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
      @list_products = ::Gapic::Config::Method.new list_products_config
      update_product_config = parent_rpcs.update_product if parent_rpcs.respond_to? :update_product
      @update_product = ::Gapic::Config::Method.new update_product_config
      delete_product_config = parent_rpcs.delete_product if parent_rpcs.respond_to? :delete_product
      @delete_product = ::Gapic::Config::Method.new delete_product_config
      purge_products_config = parent_rpcs.purge_products if parent_rpcs.respond_to? :purge_products
      @purge_products = ::Gapic::Config::Method.new purge_products_config
      import_products_config = parent_rpcs.import_products if parent_rpcs.respond_to? :import_products
      @import_products = ::Gapic::Config::Method.new import_products_config
      set_inventory_config = parent_rpcs.set_inventory if parent_rpcs.respond_to? :set_inventory
      @set_inventory = ::Gapic::Config::Method.new set_inventory_config
      add_fulfillment_places_config = parent_rpcs.add_fulfillment_places if parent_rpcs.respond_to? :add_fulfillment_places
      @add_fulfillment_places = ::Gapic::Config::Method.new add_fulfillment_places_config
      remove_fulfillment_places_config = parent_rpcs.remove_fulfillment_places if parent_rpcs.respond_to? :remove_fulfillment_places
      @remove_fulfillment_places = ::Gapic::Config::Method.new remove_fulfillment_places_config
      add_local_inventories_config = parent_rpcs.add_local_inventories if parent_rpcs.respond_to? :add_local_inventories
      @add_local_inventories = ::Gapic::Config::Method.new add_local_inventories_config
      remove_local_inventories_config = parent_rpcs.remove_local_inventories if parent_rpcs.respond_to? :remove_local_inventories
      @remove_local_inventories = ::Gapic::Config::Method.new remove_local_inventories_config

      yield self if block_given?
    end
  end
end

#quota_project::String

A separate project against which to charge quota.

Returns:

  • (::String)


2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
# File 'lib/google/cloud/retail/v2/product_service/client.rb', line 2024

class Configuration
  extend ::Gapic::Config

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

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the ProductService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_product
    ##
    # RPC-specific configuration for `get_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_product
    ##
    # RPC-specific configuration for `list_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_products
    ##
    # RPC-specific configuration for `update_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_product
    ##
    # RPC-specific configuration for `delete_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_product
    ##
    # RPC-specific configuration for `purge_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :purge_products
    ##
    # RPC-specific configuration for `import_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_products
    ##
    # RPC-specific configuration for `set_inventory`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_inventory
    ##
    # RPC-specific configuration for `add_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_fulfillment_places
    ##
    # RPC-specific configuration for `remove_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_fulfillment_places
    ##
    # RPC-specific configuration for `add_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_local_inventories
    ##
    # RPC-specific configuration for `remove_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_local_inventories

    # @private
    def initialize parent_rpcs = nil
      create_product_config = parent_rpcs.create_product if parent_rpcs.respond_to? :create_product
      @create_product = ::Gapic::Config::Method.new create_product_config
      get_product_config = parent_rpcs.get_product if parent_rpcs.respond_to? :get_product
      @get_product = ::Gapic::Config::Method.new get_product_config
      list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
      @list_products = ::Gapic::Config::Method.new list_products_config
      update_product_config = parent_rpcs.update_product if parent_rpcs.respond_to? :update_product
      @update_product = ::Gapic::Config::Method.new update_product_config
      delete_product_config = parent_rpcs.delete_product if parent_rpcs.respond_to? :delete_product
      @delete_product = ::Gapic::Config::Method.new delete_product_config
      purge_products_config = parent_rpcs.purge_products if parent_rpcs.respond_to? :purge_products
      @purge_products = ::Gapic::Config::Method.new purge_products_config
      import_products_config = parent_rpcs.import_products if parent_rpcs.respond_to? :import_products
      @import_products = ::Gapic::Config::Method.new import_products_config
      set_inventory_config = parent_rpcs.set_inventory if parent_rpcs.respond_to? :set_inventory
      @set_inventory = ::Gapic::Config::Method.new set_inventory_config
      add_fulfillment_places_config = parent_rpcs.add_fulfillment_places if parent_rpcs.respond_to? :add_fulfillment_places
      @add_fulfillment_places = ::Gapic::Config::Method.new add_fulfillment_places_config
      remove_fulfillment_places_config = parent_rpcs.remove_fulfillment_places if parent_rpcs.respond_to? :remove_fulfillment_places
      @remove_fulfillment_places = ::Gapic::Config::Method.new remove_fulfillment_places_config
      add_local_inventories_config = parent_rpcs.add_local_inventories if parent_rpcs.respond_to? :add_local_inventories
      @add_local_inventories = ::Gapic::Config::Method.new add_local_inventories_config
      remove_local_inventories_config = parent_rpcs.remove_local_inventories if parent_rpcs.respond_to? :remove_local_inventories
      @remove_local_inventories = ::Gapic::Config::Method.new remove_local_inventories_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)


2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
# File 'lib/google/cloud/retail/v2/product_service/client.rb', line 2024

class Configuration
  extend ::Gapic::Config

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

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the ProductService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_product
    ##
    # RPC-specific configuration for `get_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_product
    ##
    # RPC-specific configuration for `list_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_products
    ##
    # RPC-specific configuration for `update_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_product
    ##
    # RPC-specific configuration for `delete_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_product
    ##
    # RPC-specific configuration for `purge_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :purge_products
    ##
    # RPC-specific configuration for `import_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_products
    ##
    # RPC-specific configuration for `set_inventory`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_inventory
    ##
    # RPC-specific configuration for `add_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_fulfillment_places
    ##
    # RPC-specific configuration for `remove_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_fulfillment_places
    ##
    # RPC-specific configuration for `add_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_local_inventories
    ##
    # RPC-specific configuration for `remove_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_local_inventories

    # @private
    def initialize parent_rpcs = nil
      create_product_config = parent_rpcs.create_product if parent_rpcs.respond_to? :create_product
      @create_product = ::Gapic::Config::Method.new create_product_config
      get_product_config = parent_rpcs.get_product if parent_rpcs.respond_to? :get_product
      @get_product = ::Gapic::Config::Method.new get_product_config
      list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
      @list_products = ::Gapic::Config::Method.new list_products_config
      update_product_config = parent_rpcs.update_product if parent_rpcs.respond_to? :update_product
      @update_product = ::Gapic::Config::Method.new update_product_config
      delete_product_config = parent_rpcs.delete_product if parent_rpcs.respond_to? :delete_product
      @delete_product = ::Gapic::Config::Method.new delete_product_config
      purge_products_config = parent_rpcs.purge_products if parent_rpcs.respond_to? :purge_products
      @purge_products = ::Gapic::Config::Method.new purge_products_config
      import_products_config = parent_rpcs.import_products if parent_rpcs.respond_to? :import_products
      @import_products = ::Gapic::Config::Method.new import_products_config
      set_inventory_config = parent_rpcs.set_inventory if parent_rpcs.respond_to? :set_inventory
      @set_inventory = ::Gapic::Config::Method.new set_inventory_config
      add_fulfillment_places_config = parent_rpcs.add_fulfillment_places if parent_rpcs.respond_to? :add_fulfillment_places
      @add_fulfillment_places = ::Gapic::Config::Method.new add_fulfillment_places_config
      remove_fulfillment_places_config = parent_rpcs.remove_fulfillment_places if parent_rpcs.respond_to? :remove_fulfillment_places
      @remove_fulfillment_places = ::Gapic::Config::Method.new remove_fulfillment_places_config
      add_local_inventories_config = parent_rpcs.add_local_inventories if parent_rpcs.respond_to? :add_local_inventories
      @add_local_inventories = ::Gapic::Config::Method.new add_local_inventories_config
      remove_local_inventories_config = parent_rpcs.remove_local_inventories if parent_rpcs.respond_to? :remove_local_inventories
      @remove_local_inventories = ::Gapic::Config::Method.new remove_local_inventories_config

      yield self if block_given?
    end
  end
end

#scope::Array<::String>

The OAuth scopes

Returns:

  • (::Array<::String>)


2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
# File 'lib/google/cloud/retail/v2/product_service/client.rb', line 2024

class Configuration
  extend ::Gapic::Config

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

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the ProductService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_product
    ##
    # RPC-specific configuration for `get_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_product
    ##
    # RPC-specific configuration for `list_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_products
    ##
    # RPC-specific configuration for `update_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_product
    ##
    # RPC-specific configuration for `delete_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_product
    ##
    # RPC-specific configuration for `purge_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :purge_products
    ##
    # RPC-specific configuration for `import_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_products
    ##
    # RPC-specific configuration for `set_inventory`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_inventory
    ##
    # RPC-specific configuration for `add_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_fulfillment_places
    ##
    # RPC-specific configuration for `remove_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_fulfillment_places
    ##
    # RPC-specific configuration for `add_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_local_inventories
    ##
    # RPC-specific configuration for `remove_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_local_inventories

    # @private
    def initialize parent_rpcs = nil
      create_product_config = parent_rpcs.create_product if parent_rpcs.respond_to? :create_product
      @create_product = ::Gapic::Config::Method.new create_product_config
      get_product_config = parent_rpcs.get_product if parent_rpcs.respond_to? :get_product
      @get_product = ::Gapic::Config::Method.new get_product_config
      list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
      @list_products = ::Gapic::Config::Method.new list_products_config
      update_product_config = parent_rpcs.update_product if parent_rpcs.respond_to? :update_product
      @update_product = ::Gapic::Config::Method.new update_product_config
      delete_product_config = parent_rpcs.delete_product if parent_rpcs.respond_to? :delete_product
      @delete_product = ::Gapic::Config::Method.new delete_product_config
      purge_products_config = parent_rpcs.purge_products if parent_rpcs.respond_to? :purge_products
      @purge_products = ::Gapic::Config::Method.new purge_products_config
      import_products_config = parent_rpcs.import_products if parent_rpcs.respond_to? :import_products
      @import_products = ::Gapic::Config::Method.new import_products_config
      set_inventory_config = parent_rpcs.set_inventory if parent_rpcs.respond_to? :set_inventory
      @set_inventory = ::Gapic::Config::Method.new set_inventory_config
      add_fulfillment_places_config = parent_rpcs.add_fulfillment_places if parent_rpcs.respond_to? :add_fulfillment_places
      @add_fulfillment_places = ::Gapic::Config::Method.new add_fulfillment_places_config
      remove_fulfillment_places_config = parent_rpcs.remove_fulfillment_places if parent_rpcs.respond_to? :remove_fulfillment_places
      @remove_fulfillment_places = ::Gapic::Config::Method.new remove_fulfillment_places_config
      add_local_inventories_config = parent_rpcs.add_local_inventories if parent_rpcs.respond_to? :add_local_inventories
      @add_local_inventories = ::Gapic::Config::Method.new add_local_inventories_config
      remove_local_inventories_config = parent_rpcs.remove_local_inventories if parent_rpcs.respond_to? :remove_local_inventories
      @remove_local_inventories = ::Gapic::Config::Method.new remove_local_inventories_config

      yield self if block_given?
    end
  end
end

#timeout::Numeric

The call timeout in seconds.

Returns:

  • (::Numeric)


2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
# File 'lib/google/cloud/retail/v2/product_service/client.rb', line 2024

class Configuration
  extend ::Gapic::Config

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

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the ProductService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_product
    ##
    # RPC-specific configuration for `get_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_product
    ##
    # RPC-specific configuration for `list_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_products
    ##
    # RPC-specific configuration for `update_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_product
    ##
    # RPC-specific configuration for `delete_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_product
    ##
    # RPC-specific configuration for `purge_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :purge_products
    ##
    # RPC-specific configuration for `import_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_products
    ##
    # RPC-specific configuration for `set_inventory`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_inventory
    ##
    # RPC-specific configuration for `add_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_fulfillment_places
    ##
    # RPC-specific configuration for `remove_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_fulfillment_places
    ##
    # RPC-specific configuration for `add_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_local_inventories
    ##
    # RPC-specific configuration for `remove_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_local_inventories

    # @private
    def initialize parent_rpcs = nil
      create_product_config = parent_rpcs.create_product if parent_rpcs.respond_to? :create_product
      @create_product = ::Gapic::Config::Method.new create_product_config
      get_product_config = parent_rpcs.get_product if parent_rpcs.respond_to? :get_product
      @get_product = ::Gapic::Config::Method.new get_product_config
      list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
      @list_products = ::Gapic::Config::Method.new list_products_config
      update_product_config = parent_rpcs.update_product if parent_rpcs.respond_to? :update_product
      @update_product = ::Gapic::Config::Method.new update_product_config
      delete_product_config = parent_rpcs.delete_product if parent_rpcs.respond_to? :delete_product
      @delete_product = ::Gapic::Config::Method.new delete_product_config
      purge_products_config = parent_rpcs.purge_products if parent_rpcs.respond_to? :purge_products
      @purge_products = ::Gapic::Config::Method.new purge_products_config
      import_products_config = parent_rpcs.import_products if parent_rpcs.respond_to? :import_products
      @import_products = ::Gapic::Config::Method.new import_products_config
      set_inventory_config = parent_rpcs.set_inventory if parent_rpcs.respond_to? :set_inventory
      @set_inventory = ::Gapic::Config::Method.new set_inventory_config
      add_fulfillment_places_config = parent_rpcs.add_fulfillment_places if parent_rpcs.respond_to? :add_fulfillment_places
      @add_fulfillment_places = ::Gapic::Config::Method.new add_fulfillment_places_config
      remove_fulfillment_places_config = parent_rpcs.remove_fulfillment_places if parent_rpcs.respond_to? :remove_fulfillment_places
      @remove_fulfillment_places = ::Gapic::Config::Method.new remove_fulfillment_places_config
      add_local_inventories_config = parent_rpcs.add_local_inventories if parent_rpcs.respond_to? :add_local_inventories
      @add_local_inventories = ::Gapic::Config::Method.new add_local_inventories_config
      remove_local_inventories_config = parent_rpcs.remove_local_inventories if parent_rpcs.respond_to? :remove_local_inventories
      @remove_local_inventories = ::Gapic::Config::Method.new remove_local_inventories_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)


2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
# File 'lib/google/cloud/retail/v2/product_service/client.rb', line 2024

class Configuration
  extend ::Gapic::Config

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

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

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

    yield self if block_given?
  end

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

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

  ##
  # Configuration RPC class for the ProductService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `create_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :create_product
    ##
    # RPC-specific configuration for `get_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_product
    ##
    # RPC-specific configuration for `list_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_products
    ##
    # RPC-specific configuration for `update_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :update_product
    ##
    # RPC-specific configuration for `delete_product`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :delete_product
    ##
    # RPC-specific configuration for `purge_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :purge_products
    ##
    # RPC-specific configuration for `import_products`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :import_products
    ##
    # RPC-specific configuration for `set_inventory`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :set_inventory
    ##
    # RPC-specific configuration for `add_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_fulfillment_places
    ##
    # RPC-specific configuration for `remove_fulfillment_places`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_fulfillment_places
    ##
    # RPC-specific configuration for `add_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :add_local_inventories
    ##
    # RPC-specific configuration for `remove_local_inventories`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :remove_local_inventories

    # @private
    def initialize parent_rpcs = nil
      create_product_config = parent_rpcs.create_product if parent_rpcs.respond_to? :create_product
      @create_product = ::Gapic::Config::Method.new create_product_config
      get_product_config = parent_rpcs.get_product if parent_rpcs.respond_to? :get_product
      @get_product = ::Gapic::Config::Method.new get_product_config
      list_products_config = parent_rpcs.list_products if parent_rpcs.respond_to? :list_products
      @list_products = ::Gapic::Config::Method.new list_products_config
      update_product_config = parent_rpcs.update_product if parent_rpcs.respond_to? :update_product
      @update_product = ::Gapic::Config::Method.new update_product_config
      delete_product_config = parent_rpcs.delete_product if parent_rpcs.respond_to? :delete_product
      @delete_product = ::Gapic::Config::Method.new delete_product_config
      purge_products_config = parent_rpcs.purge_products if parent_rpcs.respond_to? :purge_products
      @purge_products = ::Gapic::Config::Method.new purge_products_config
      import_products_config = parent_rpcs.import_products if parent_rpcs.respond_to? :import_products
      @import_products = ::Gapic::Config::Method.new import_products_config
      set_inventory_config = parent_rpcs.set_inventory if parent_rpcs.respond_to? :set_inventory
      @set_inventory = ::Gapic::Config::Method.new set_inventory_config
      add_fulfillment_places_config = parent_rpcs.add_fulfillment_places if parent_rpcs.respond_to? :add_fulfillment_places
      @add_fulfillment_places = ::Gapic::Config::Method.new add_fulfillment_places_config
      remove_fulfillment_places_config = parent_rpcs.remove_fulfillment_places if parent_rpcs.respond_to? :remove_fulfillment_places
      @remove_fulfillment_places = ::Gapic::Config::Method.new remove_fulfillment_places_config
      add_local_inventories_config = parent_rpcs.add_local_inventories if parent_rpcs.respond_to? :add_local_inventories
      @add_local_inventories = ::Gapic::Config::Method.new add_local_inventories_config
      remove_local_inventories_config = parent_rpcs.remove_local_inventories if parent_rpcs.respond_to? :remove_local_inventories
      @remove_local_inventories = ::Gapic::Config::Method.new remove_local_inventories_config

      yield self if block_given?
    end
  end
end

Instance Method Details

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

Configuration for the channel pool

Returns:

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


2071
2072
2073
# File 'lib/google/cloud/retail/v2/product_service/client.rb', line 2071

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

#rpcsRpcs

Configurations for individual RPCs

Returns:



2059
2060
2061
2062
2063
2064
2065
# File 'lib/google/cloud/retail/v2/product_service/client.rb', line 2059

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