Class: Google::Ads::AdManager::V1::OrderService::Rest::Client::Configuration

Inherits:
Object
  • Object
show all
Extended by:
Gapic::Config
Defined in:
lib/google/ads/ad_manager/v1/order_service/rest/client.rb

Overview

Configuration class for the OrderService REST API.

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

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

Examples:


# Modify the global config, setting the timeout for
# get_order to 20 seconds,
# and all remaining timeouts to 10 seconds.
::Google::Ads::AdManager::V1::OrderService::Rest::Client.configure do |config|
  config.timeout = 10.0
  config.rpcs.get_order.timeout = 20.0
end

# Apply the above configuration only to a new client.
client = ::Google::Ads::AdManager::V1::OrderService::Rest::Client.new do |config|
  config.timeout = 10.0
  config.rpcs.get_order.timeout = 20.0
end

Defined Under Namespace

Classes: Rpcs

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#credentials::Object

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

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

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

Returns:

  • (::Object)


1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
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
2185
2186
2187
# File 'lib/google/ads/ad_manager/v1/order_service/rest/client.rb', line 1980

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil
  config_attr :logger, :default, ::Logger, nil, :default

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

    yield self if block_given?
  end

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

  ##
  # Configuration RPC class for the OrderService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `get_order`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_order
    ##
    # RPC-specific configuration for `list_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_orders
    ##
    # RPC-specific configuration for `batch_create_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_create_orders
    ##
    # RPC-specific configuration for `batch_update_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_update_orders
    ##
    # RPC-specific configuration for `batch_approve_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders
    ##
    # RPC-specific configuration for `batch_approve_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_and_overbook`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_and_overbook
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_pause_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_pause_orders
    ##
    # RPC-specific configuration for `batch_resume_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_orders
    ##
    # RPC-specific configuration for `batch_resume_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_approve_orders_without_reservation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders_without_reservation
    ##
    # RPC-specific configuration for `batch_archive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_archive_orders
    ##
    # RPC-specific configuration for `batch_unarchive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_unarchive_orders
    ##
    # RPC-specific configuration for `batch_delete_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_delete_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_retract_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders
    ##
    # RPC-specific configuration for `batch_retract_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders_without_reservation_changes

    # @private
    def initialize parent_rpcs = nil
      get_order_config = parent_rpcs.get_order if parent_rpcs.respond_to? :get_order
      @get_order = ::Gapic::Config::Method.new get_order_config
      list_orders_config = parent_rpcs.list_orders if parent_rpcs.respond_to? :list_orders
      @list_orders = ::Gapic::Config::Method.new list_orders_config
      batch_create_orders_config = parent_rpcs.batch_create_orders if parent_rpcs.respond_to? :batch_create_orders
      @batch_create_orders = ::Gapic::Config::Method.new batch_create_orders_config
      batch_update_orders_config = parent_rpcs.batch_update_orders if parent_rpcs.respond_to? :batch_update_orders
      @batch_update_orders = ::Gapic::Config::Method.new batch_update_orders_config
      batch_approve_orders_config = parent_rpcs.batch_approve_orders if parent_rpcs.respond_to? :batch_approve_orders
      @batch_approve_orders = ::Gapic::Config::Method.new batch_approve_orders_config
      batch_approve_and_overbook_orders_config = parent_rpcs.batch_approve_and_overbook_orders if parent_rpcs.respond_to? :batch_approve_and_overbook_orders
      @batch_approve_and_overbook_orders = ::Gapic::Config::Method.new batch_approve_and_overbook_orders_config
      batch_submit_orders_for_approval_config = parent_rpcs.batch_submit_orders_for_approval if parent_rpcs.respond_to? :batch_submit_orders_for_approval
      @batch_submit_orders_for_approval = ::Gapic::Config::Method.new batch_submit_orders_for_approval_config
      batch_submit_orders_for_approval_and_overbook_config = parent_rpcs.batch_submit_orders_for_approval_and_overbook if parent_rpcs.respond_to? :batch_submit_orders_for_approval_and_overbook
      @batch_submit_orders_for_approval_and_overbook = ::Gapic::Config::Method.new batch_submit_orders_for_approval_and_overbook_config
      batch_submit_orders_for_approval_without_reservation_changes_config = parent_rpcs.batch_submit_orders_for_approval_without_reservation_changes if parent_rpcs.respond_to? :batch_submit_orders_for_approval_without_reservation_changes
      @batch_submit_orders_for_approval_without_reservation_changes = ::Gapic::Config::Method.new batch_submit_orders_for_approval_without_reservation_changes_config
      batch_pause_orders_config = parent_rpcs.batch_pause_orders if parent_rpcs.respond_to? :batch_pause_orders
      @batch_pause_orders = ::Gapic::Config::Method.new batch_pause_orders_config
      batch_resume_orders_config = parent_rpcs.batch_resume_orders if parent_rpcs.respond_to? :batch_resume_orders
      @batch_resume_orders = ::Gapic::Config::Method.new batch_resume_orders_config
      batch_resume_and_overbook_orders_config = parent_rpcs.batch_resume_and_overbook_orders if parent_rpcs.respond_to? :batch_resume_and_overbook_orders
      @batch_resume_and_overbook_orders = ::Gapic::Config::Method.new batch_resume_and_overbook_orders_config
      batch_approve_orders_without_reservation_config = parent_rpcs.batch_approve_orders_without_reservation if parent_rpcs.respond_to? :batch_approve_orders_without_reservation
      @batch_approve_orders_without_reservation = ::Gapic::Config::Method.new batch_approve_orders_without_reservation_config
      batch_archive_orders_config = parent_rpcs.batch_archive_orders if parent_rpcs.respond_to? :batch_archive_orders
      @batch_archive_orders = ::Gapic::Config::Method.new batch_archive_orders_config
      batch_unarchive_orders_config = parent_rpcs.batch_unarchive_orders if parent_rpcs.respond_to? :batch_unarchive_orders
      @batch_unarchive_orders = ::Gapic::Config::Method.new batch_unarchive_orders_config
      batch_delete_orders_config = parent_rpcs.batch_delete_orders if parent_rpcs.respond_to? :batch_delete_orders
      @batch_delete_orders = ::Gapic::Config::Method.new batch_delete_orders_config
      batch_disapprove_orders_config = parent_rpcs.batch_disapprove_orders if parent_rpcs.respond_to? :batch_disapprove_orders
      @batch_disapprove_orders = ::Gapic::Config::Method.new batch_disapprove_orders_config
      batch_disapprove_orders_without_reservation_changes_config = parent_rpcs.batch_disapprove_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_disapprove_orders_without_reservation_changes
      @batch_disapprove_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_disapprove_orders_without_reservation_changes_config
      batch_retract_orders_config = parent_rpcs.batch_retract_orders if parent_rpcs.respond_to? :batch_retract_orders
      @batch_retract_orders = ::Gapic::Config::Method.new batch_retract_orders_config
      batch_retract_orders_without_reservation_changes_config = parent_rpcs.batch_retract_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_retract_orders_without_reservation_changes
      @batch_retract_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_retract_orders_without_reservation_changes_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)


1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
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
2185
2186
2187
# File 'lib/google/ads/ad_manager/v1/order_service/rest/client.rb', line 1980

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil
  config_attr :logger, :default, ::Logger, nil, :default

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

    yield self if block_given?
  end

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

  ##
  # Configuration RPC class for the OrderService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `get_order`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_order
    ##
    # RPC-specific configuration for `list_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_orders
    ##
    # RPC-specific configuration for `batch_create_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_create_orders
    ##
    # RPC-specific configuration for `batch_update_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_update_orders
    ##
    # RPC-specific configuration for `batch_approve_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders
    ##
    # RPC-specific configuration for `batch_approve_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_and_overbook`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_and_overbook
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_pause_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_pause_orders
    ##
    # RPC-specific configuration for `batch_resume_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_orders
    ##
    # RPC-specific configuration for `batch_resume_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_approve_orders_without_reservation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders_without_reservation
    ##
    # RPC-specific configuration for `batch_archive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_archive_orders
    ##
    # RPC-specific configuration for `batch_unarchive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_unarchive_orders
    ##
    # RPC-specific configuration for `batch_delete_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_delete_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_retract_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders
    ##
    # RPC-specific configuration for `batch_retract_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders_without_reservation_changes

    # @private
    def initialize parent_rpcs = nil
      get_order_config = parent_rpcs.get_order if parent_rpcs.respond_to? :get_order
      @get_order = ::Gapic::Config::Method.new get_order_config
      list_orders_config = parent_rpcs.list_orders if parent_rpcs.respond_to? :list_orders
      @list_orders = ::Gapic::Config::Method.new list_orders_config
      batch_create_orders_config = parent_rpcs.batch_create_orders if parent_rpcs.respond_to? :batch_create_orders
      @batch_create_orders = ::Gapic::Config::Method.new batch_create_orders_config
      batch_update_orders_config = parent_rpcs.batch_update_orders if parent_rpcs.respond_to? :batch_update_orders
      @batch_update_orders = ::Gapic::Config::Method.new batch_update_orders_config
      batch_approve_orders_config = parent_rpcs.batch_approve_orders if parent_rpcs.respond_to? :batch_approve_orders
      @batch_approve_orders = ::Gapic::Config::Method.new batch_approve_orders_config
      batch_approve_and_overbook_orders_config = parent_rpcs.batch_approve_and_overbook_orders if parent_rpcs.respond_to? :batch_approve_and_overbook_orders
      @batch_approve_and_overbook_orders = ::Gapic::Config::Method.new batch_approve_and_overbook_orders_config
      batch_submit_orders_for_approval_config = parent_rpcs.batch_submit_orders_for_approval if parent_rpcs.respond_to? :batch_submit_orders_for_approval
      @batch_submit_orders_for_approval = ::Gapic::Config::Method.new batch_submit_orders_for_approval_config
      batch_submit_orders_for_approval_and_overbook_config = parent_rpcs.batch_submit_orders_for_approval_and_overbook if parent_rpcs.respond_to? :batch_submit_orders_for_approval_and_overbook
      @batch_submit_orders_for_approval_and_overbook = ::Gapic::Config::Method.new batch_submit_orders_for_approval_and_overbook_config
      batch_submit_orders_for_approval_without_reservation_changes_config = parent_rpcs.batch_submit_orders_for_approval_without_reservation_changes if parent_rpcs.respond_to? :batch_submit_orders_for_approval_without_reservation_changes
      @batch_submit_orders_for_approval_without_reservation_changes = ::Gapic::Config::Method.new batch_submit_orders_for_approval_without_reservation_changes_config
      batch_pause_orders_config = parent_rpcs.batch_pause_orders if parent_rpcs.respond_to? :batch_pause_orders
      @batch_pause_orders = ::Gapic::Config::Method.new batch_pause_orders_config
      batch_resume_orders_config = parent_rpcs.batch_resume_orders if parent_rpcs.respond_to? :batch_resume_orders
      @batch_resume_orders = ::Gapic::Config::Method.new batch_resume_orders_config
      batch_resume_and_overbook_orders_config = parent_rpcs.batch_resume_and_overbook_orders if parent_rpcs.respond_to? :batch_resume_and_overbook_orders
      @batch_resume_and_overbook_orders = ::Gapic::Config::Method.new batch_resume_and_overbook_orders_config
      batch_approve_orders_without_reservation_config = parent_rpcs.batch_approve_orders_without_reservation if parent_rpcs.respond_to? :batch_approve_orders_without_reservation
      @batch_approve_orders_without_reservation = ::Gapic::Config::Method.new batch_approve_orders_without_reservation_config
      batch_archive_orders_config = parent_rpcs.batch_archive_orders if parent_rpcs.respond_to? :batch_archive_orders
      @batch_archive_orders = ::Gapic::Config::Method.new batch_archive_orders_config
      batch_unarchive_orders_config = parent_rpcs.batch_unarchive_orders if parent_rpcs.respond_to? :batch_unarchive_orders
      @batch_unarchive_orders = ::Gapic::Config::Method.new batch_unarchive_orders_config
      batch_delete_orders_config = parent_rpcs.batch_delete_orders if parent_rpcs.respond_to? :batch_delete_orders
      @batch_delete_orders = ::Gapic::Config::Method.new batch_delete_orders_config
      batch_disapprove_orders_config = parent_rpcs.batch_disapprove_orders if parent_rpcs.respond_to? :batch_disapprove_orders
      @batch_disapprove_orders = ::Gapic::Config::Method.new batch_disapprove_orders_config
      batch_disapprove_orders_without_reservation_changes_config = parent_rpcs.batch_disapprove_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_disapprove_orders_without_reservation_changes
      @batch_disapprove_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_disapprove_orders_without_reservation_changes_config
      batch_retract_orders_config = parent_rpcs.batch_retract_orders if parent_rpcs.respond_to? :batch_retract_orders
      @batch_retract_orders = ::Gapic::Config::Method.new batch_retract_orders_config
      batch_retract_orders_without_reservation_changes_config = parent_rpcs.batch_retract_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_retract_orders_without_reservation_changes
      @batch_retract_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_retract_orders_without_reservation_changes_config

      yield self if block_given?
    end
  end
end

#lib_name::String

The library name as recorded in instrumentation and logging

Returns:

  • (::String)


1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
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
2185
2186
2187
# File 'lib/google/ads/ad_manager/v1/order_service/rest/client.rb', line 1980

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil
  config_attr :logger, :default, ::Logger, nil, :default

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

    yield self if block_given?
  end

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

  ##
  # Configuration RPC class for the OrderService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `get_order`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_order
    ##
    # RPC-specific configuration for `list_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_orders
    ##
    # RPC-specific configuration for `batch_create_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_create_orders
    ##
    # RPC-specific configuration for `batch_update_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_update_orders
    ##
    # RPC-specific configuration for `batch_approve_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders
    ##
    # RPC-specific configuration for `batch_approve_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_and_overbook`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_and_overbook
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_pause_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_pause_orders
    ##
    # RPC-specific configuration for `batch_resume_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_orders
    ##
    # RPC-specific configuration for `batch_resume_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_approve_orders_without_reservation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders_without_reservation
    ##
    # RPC-specific configuration for `batch_archive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_archive_orders
    ##
    # RPC-specific configuration for `batch_unarchive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_unarchive_orders
    ##
    # RPC-specific configuration for `batch_delete_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_delete_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_retract_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders
    ##
    # RPC-specific configuration for `batch_retract_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders_without_reservation_changes

    # @private
    def initialize parent_rpcs = nil
      get_order_config = parent_rpcs.get_order if parent_rpcs.respond_to? :get_order
      @get_order = ::Gapic::Config::Method.new get_order_config
      list_orders_config = parent_rpcs.list_orders if parent_rpcs.respond_to? :list_orders
      @list_orders = ::Gapic::Config::Method.new list_orders_config
      batch_create_orders_config = parent_rpcs.batch_create_orders if parent_rpcs.respond_to? :batch_create_orders
      @batch_create_orders = ::Gapic::Config::Method.new batch_create_orders_config
      batch_update_orders_config = parent_rpcs.batch_update_orders if parent_rpcs.respond_to? :batch_update_orders
      @batch_update_orders = ::Gapic::Config::Method.new batch_update_orders_config
      batch_approve_orders_config = parent_rpcs.batch_approve_orders if parent_rpcs.respond_to? :batch_approve_orders
      @batch_approve_orders = ::Gapic::Config::Method.new batch_approve_orders_config
      batch_approve_and_overbook_orders_config = parent_rpcs.batch_approve_and_overbook_orders if parent_rpcs.respond_to? :batch_approve_and_overbook_orders
      @batch_approve_and_overbook_orders = ::Gapic::Config::Method.new batch_approve_and_overbook_orders_config
      batch_submit_orders_for_approval_config = parent_rpcs.batch_submit_orders_for_approval if parent_rpcs.respond_to? :batch_submit_orders_for_approval
      @batch_submit_orders_for_approval = ::Gapic::Config::Method.new batch_submit_orders_for_approval_config
      batch_submit_orders_for_approval_and_overbook_config = parent_rpcs.batch_submit_orders_for_approval_and_overbook if parent_rpcs.respond_to? :batch_submit_orders_for_approval_and_overbook
      @batch_submit_orders_for_approval_and_overbook = ::Gapic::Config::Method.new batch_submit_orders_for_approval_and_overbook_config
      batch_submit_orders_for_approval_without_reservation_changes_config = parent_rpcs.batch_submit_orders_for_approval_without_reservation_changes if parent_rpcs.respond_to? :batch_submit_orders_for_approval_without_reservation_changes
      @batch_submit_orders_for_approval_without_reservation_changes = ::Gapic::Config::Method.new batch_submit_orders_for_approval_without_reservation_changes_config
      batch_pause_orders_config = parent_rpcs.batch_pause_orders if parent_rpcs.respond_to? :batch_pause_orders
      @batch_pause_orders = ::Gapic::Config::Method.new batch_pause_orders_config
      batch_resume_orders_config = parent_rpcs.batch_resume_orders if parent_rpcs.respond_to? :batch_resume_orders
      @batch_resume_orders = ::Gapic::Config::Method.new batch_resume_orders_config
      batch_resume_and_overbook_orders_config = parent_rpcs.batch_resume_and_overbook_orders if parent_rpcs.respond_to? :batch_resume_and_overbook_orders
      @batch_resume_and_overbook_orders = ::Gapic::Config::Method.new batch_resume_and_overbook_orders_config
      batch_approve_orders_without_reservation_config = parent_rpcs.batch_approve_orders_without_reservation if parent_rpcs.respond_to? :batch_approve_orders_without_reservation
      @batch_approve_orders_without_reservation = ::Gapic::Config::Method.new batch_approve_orders_without_reservation_config
      batch_archive_orders_config = parent_rpcs.batch_archive_orders if parent_rpcs.respond_to? :batch_archive_orders
      @batch_archive_orders = ::Gapic::Config::Method.new batch_archive_orders_config
      batch_unarchive_orders_config = parent_rpcs.batch_unarchive_orders if parent_rpcs.respond_to? :batch_unarchive_orders
      @batch_unarchive_orders = ::Gapic::Config::Method.new batch_unarchive_orders_config
      batch_delete_orders_config = parent_rpcs.batch_delete_orders if parent_rpcs.respond_to? :batch_delete_orders
      @batch_delete_orders = ::Gapic::Config::Method.new batch_delete_orders_config
      batch_disapprove_orders_config = parent_rpcs.batch_disapprove_orders if parent_rpcs.respond_to? :batch_disapprove_orders
      @batch_disapprove_orders = ::Gapic::Config::Method.new batch_disapprove_orders_config
      batch_disapprove_orders_without_reservation_changes_config = parent_rpcs.batch_disapprove_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_disapprove_orders_without_reservation_changes
      @batch_disapprove_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_disapprove_orders_without_reservation_changes_config
      batch_retract_orders_config = parent_rpcs.batch_retract_orders if parent_rpcs.respond_to? :batch_retract_orders
      @batch_retract_orders = ::Gapic::Config::Method.new batch_retract_orders_config
      batch_retract_orders_without_reservation_changes_config = parent_rpcs.batch_retract_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_retract_orders_without_reservation_changes
      @batch_retract_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_retract_orders_without_reservation_changes_config

      yield self if block_given?
    end
  end
end

#lib_version::String

The library version as recorded in instrumentation and logging

Returns:

  • (::String)


1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
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
2185
2186
2187
# File 'lib/google/ads/ad_manager/v1/order_service/rest/client.rb', line 1980

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil
  config_attr :logger, :default, ::Logger, nil, :default

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

    yield self if block_given?
  end

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

  ##
  # Configuration RPC class for the OrderService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `get_order`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_order
    ##
    # RPC-specific configuration for `list_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_orders
    ##
    # RPC-specific configuration for `batch_create_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_create_orders
    ##
    # RPC-specific configuration for `batch_update_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_update_orders
    ##
    # RPC-specific configuration for `batch_approve_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders
    ##
    # RPC-specific configuration for `batch_approve_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_and_overbook`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_and_overbook
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_pause_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_pause_orders
    ##
    # RPC-specific configuration for `batch_resume_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_orders
    ##
    # RPC-specific configuration for `batch_resume_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_approve_orders_without_reservation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders_without_reservation
    ##
    # RPC-specific configuration for `batch_archive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_archive_orders
    ##
    # RPC-specific configuration for `batch_unarchive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_unarchive_orders
    ##
    # RPC-specific configuration for `batch_delete_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_delete_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_retract_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders
    ##
    # RPC-specific configuration for `batch_retract_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders_without_reservation_changes

    # @private
    def initialize parent_rpcs = nil
      get_order_config = parent_rpcs.get_order if parent_rpcs.respond_to? :get_order
      @get_order = ::Gapic::Config::Method.new get_order_config
      list_orders_config = parent_rpcs.list_orders if parent_rpcs.respond_to? :list_orders
      @list_orders = ::Gapic::Config::Method.new list_orders_config
      batch_create_orders_config = parent_rpcs.batch_create_orders if parent_rpcs.respond_to? :batch_create_orders
      @batch_create_orders = ::Gapic::Config::Method.new batch_create_orders_config
      batch_update_orders_config = parent_rpcs.batch_update_orders if parent_rpcs.respond_to? :batch_update_orders
      @batch_update_orders = ::Gapic::Config::Method.new batch_update_orders_config
      batch_approve_orders_config = parent_rpcs.batch_approve_orders if parent_rpcs.respond_to? :batch_approve_orders
      @batch_approve_orders = ::Gapic::Config::Method.new batch_approve_orders_config
      batch_approve_and_overbook_orders_config = parent_rpcs.batch_approve_and_overbook_orders if parent_rpcs.respond_to? :batch_approve_and_overbook_orders
      @batch_approve_and_overbook_orders = ::Gapic::Config::Method.new batch_approve_and_overbook_orders_config
      batch_submit_orders_for_approval_config = parent_rpcs.batch_submit_orders_for_approval if parent_rpcs.respond_to? :batch_submit_orders_for_approval
      @batch_submit_orders_for_approval = ::Gapic::Config::Method.new batch_submit_orders_for_approval_config
      batch_submit_orders_for_approval_and_overbook_config = parent_rpcs.batch_submit_orders_for_approval_and_overbook if parent_rpcs.respond_to? :batch_submit_orders_for_approval_and_overbook
      @batch_submit_orders_for_approval_and_overbook = ::Gapic::Config::Method.new batch_submit_orders_for_approval_and_overbook_config
      batch_submit_orders_for_approval_without_reservation_changes_config = parent_rpcs.batch_submit_orders_for_approval_without_reservation_changes if parent_rpcs.respond_to? :batch_submit_orders_for_approval_without_reservation_changes
      @batch_submit_orders_for_approval_without_reservation_changes = ::Gapic::Config::Method.new batch_submit_orders_for_approval_without_reservation_changes_config
      batch_pause_orders_config = parent_rpcs.batch_pause_orders if parent_rpcs.respond_to? :batch_pause_orders
      @batch_pause_orders = ::Gapic::Config::Method.new batch_pause_orders_config
      batch_resume_orders_config = parent_rpcs.batch_resume_orders if parent_rpcs.respond_to? :batch_resume_orders
      @batch_resume_orders = ::Gapic::Config::Method.new batch_resume_orders_config
      batch_resume_and_overbook_orders_config = parent_rpcs.batch_resume_and_overbook_orders if parent_rpcs.respond_to? :batch_resume_and_overbook_orders
      @batch_resume_and_overbook_orders = ::Gapic::Config::Method.new batch_resume_and_overbook_orders_config
      batch_approve_orders_without_reservation_config = parent_rpcs.batch_approve_orders_without_reservation if parent_rpcs.respond_to? :batch_approve_orders_without_reservation
      @batch_approve_orders_without_reservation = ::Gapic::Config::Method.new batch_approve_orders_without_reservation_config
      batch_archive_orders_config = parent_rpcs.batch_archive_orders if parent_rpcs.respond_to? :batch_archive_orders
      @batch_archive_orders = ::Gapic::Config::Method.new batch_archive_orders_config
      batch_unarchive_orders_config = parent_rpcs.batch_unarchive_orders if parent_rpcs.respond_to? :batch_unarchive_orders
      @batch_unarchive_orders = ::Gapic::Config::Method.new batch_unarchive_orders_config
      batch_delete_orders_config = parent_rpcs.batch_delete_orders if parent_rpcs.respond_to? :batch_delete_orders
      @batch_delete_orders = ::Gapic::Config::Method.new batch_delete_orders_config
      batch_disapprove_orders_config = parent_rpcs.batch_disapprove_orders if parent_rpcs.respond_to? :batch_disapprove_orders
      @batch_disapprove_orders = ::Gapic::Config::Method.new batch_disapprove_orders_config
      batch_disapprove_orders_without_reservation_changes_config = parent_rpcs.batch_disapprove_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_disapprove_orders_without_reservation_changes
      @batch_disapprove_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_disapprove_orders_without_reservation_changes_config
      batch_retract_orders_config = parent_rpcs.batch_retract_orders if parent_rpcs.respond_to? :batch_retract_orders
      @batch_retract_orders = ::Gapic::Config::Method.new batch_retract_orders_config
      batch_retract_orders_without_reservation_changes_config = parent_rpcs.batch_retract_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_retract_orders_without_reservation_changes
      @batch_retract_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_retract_orders_without_reservation_changes_config

      yield self if block_given?
    end
  end
end

#logger::Logger, ...

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

Returns:

  • (::Logger, :default, nil)


1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
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
2185
2186
2187
# File 'lib/google/ads/ad_manager/v1/order_service/rest/client.rb', line 1980

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil
  config_attr :logger, :default, ::Logger, nil, :default

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

    yield self if block_given?
  end

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

  ##
  # Configuration RPC class for the OrderService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `get_order`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_order
    ##
    # RPC-specific configuration for `list_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_orders
    ##
    # RPC-specific configuration for `batch_create_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_create_orders
    ##
    # RPC-specific configuration for `batch_update_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_update_orders
    ##
    # RPC-specific configuration for `batch_approve_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders
    ##
    # RPC-specific configuration for `batch_approve_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_and_overbook`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_and_overbook
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_pause_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_pause_orders
    ##
    # RPC-specific configuration for `batch_resume_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_orders
    ##
    # RPC-specific configuration for `batch_resume_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_approve_orders_without_reservation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders_without_reservation
    ##
    # RPC-specific configuration for `batch_archive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_archive_orders
    ##
    # RPC-specific configuration for `batch_unarchive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_unarchive_orders
    ##
    # RPC-specific configuration for `batch_delete_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_delete_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_retract_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders
    ##
    # RPC-specific configuration for `batch_retract_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders_without_reservation_changes

    # @private
    def initialize parent_rpcs = nil
      get_order_config = parent_rpcs.get_order if parent_rpcs.respond_to? :get_order
      @get_order = ::Gapic::Config::Method.new get_order_config
      list_orders_config = parent_rpcs.list_orders if parent_rpcs.respond_to? :list_orders
      @list_orders = ::Gapic::Config::Method.new list_orders_config
      batch_create_orders_config = parent_rpcs.batch_create_orders if parent_rpcs.respond_to? :batch_create_orders
      @batch_create_orders = ::Gapic::Config::Method.new batch_create_orders_config
      batch_update_orders_config = parent_rpcs.batch_update_orders if parent_rpcs.respond_to? :batch_update_orders
      @batch_update_orders = ::Gapic::Config::Method.new batch_update_orders_config
      batch_approve_orders_config = parent_rpcs.batch_approve_orders if parent_rpcs.respond_to? :batch_approve_orders
      @batch_approve_orders = ::Gapic::Config::Method.new batch_approve_orders_config
      batch_approve_and_overbook_orders_config = parent_rpcs.batch_approve_and_overbook_orders if parent_rpcs.respond_to? :batch_approve_and_overbook_orders
      @batch_approve_and_overbook_orders = ::Gapic::Config::Method.new batch_approve_and_overbook_orders_config
      batch_submit_orders_for_approval_config = parent_rpcs.batch_submit_orders_for_approval if parent_rpcs.respond_to? :batch_submit_orders_for_approval
      @batch_submit_orders_for_approval = ::Gapic::Config::Method.new batch_submit_orders_for_approval_config
      batch_submit_orders_for_approval_and_overbook_config = parent_rpcs.batch_submit_orders_for_approval_and_overbook if parent_rpcs.respond_to? :batch_submit_orders_for_approval_and_overbook
      @batch_submit_orders_for_approval_and_overbook = ::Gapic::Config::Method.new batch_submit_orders_for_approval_and_overbook_config
      batch_submit_orders_for_approval_without_reservation_changes_config = parent_rpcs.batch_submit_orders_for_approval_without_reservation_changes if parent_rpcs.respond_to? :batch_submit_orders_for_approval_without_reservation_changes
      @batch_submit_orders_for_approval_without_reservation_changes = ::Gapic::Config::Method.new batch_submit_orders_for_approval_without_reservation_changes_config
      batch_pause_orders_config = parent_rpcs.batch_pause_orders if parent_rpcs.respond_to? :batch_pause_orders
      @batch_pause_orders = ::Gapic::Config::Method.new batch_pause_orders_config
      batch_resume_orders_config = parent_rpcs.batch_resume_orders if parent_rpcs.respond_to? :batch_resume_orders
      @batch_resume_orders = ::Gapic::Config::Method.new batch_resume_orders_config
      batch_resume_and_overbook_orders_config = parent_rpcs.batch_resume_and_overbook_orders if parent_rpcs.respond_to? :batch_resume_and_overbook_orders
      @batch_resume_and_overbook_orders = ::Gapic::Config::Method.new batch_resume_and_overbook_orders_config
      batch_approve_orders_without_reservation_config = parent_rpcs.batch_approve_orders_without_reservation if parent_rpcs.respond_to? :batch_approve_orders_without_reservation
      @batch_approve_orders_without_reservation = ::Gapic::Config::Method.new batch_approve_orders_without_reservation_config
      batch_archive_orders_config = parent_rpcs.batch_archive_orders if parent_rpcs.respond_to? :batch_archive_orders
      @batch_archive_orders = ::Gapic::Config::Method.new batch_archive_orders_config
      batch_unarchive_orders_config = parent_rpcs.batch_unarchive_orders if parent_rpcs.respond_to? :batch_unarchive_orders
      @batch_unarchive_orders = ::Gapic::Config::Method.new batch_unarchive_orders_config
      batch_delete_orders_config = parent_rpcs.batch_delete_orders if parent_rpcs.respond_to? :batch_delete_orders
      @batch_delete_orders = ::Gapic::Config::Method.new batch_delete_orders_config
      batch_disapprove_orders_config = parent_rpcs.batch_disapprove_orders if parent_rpcs.respond_to? :batch_disapprove_orders
      @batch_disapprove_orders = ::Gapic::Config::Method.new batch_disapprove_orders_config
      batch_disapprove_orders_without_reservation_changes_config = parent_rpcs.batch_disapprove_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_disapprove_orders_without_reservation_changes
      @batch_disapprove_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_disapprove_orders_without_reservation_changes_config
      batch_retract_orders_config = parent_rpcs.batch_retract_orders if parent_rpcs.respond_to? :batch_retract_orders
      @batch_retract_orders = ::Gapic::Config::Method.new batch_retract_orders_config
      batch_retract_orders_without_reservation_changes_config = parent_rpcs.batch_retract_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_retract_orders_without_reservation_changes
      @batch_retract_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_retract_orders_without_reservation_changes_config

      yield self if block_given?
    end
  end
end

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

Additional headers to be sent with the call.

Returns:

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


1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
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
2185
2186
2187
# File 'lib/google/ads/ad_manager/v1/order_service/rest/client.rb', line 1980

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil
  config_attr :logger, :default, ::Logger, nil, :default

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

    yield self if block_given?
  end

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

  ##
  # Configuration RPC class for the OrderService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `get_order`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_order
    ##
    # RPC-specific configuration for `list_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_orders
    ##
    # RPC-specific configuration for `batch_create_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_create_orders
    ##
    # RPC-specific configuration for `batch_update_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_update_orders
    ##
    # RPC-specific configuration for `batch_approve_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders
    ##
    # RPC-specific configuration for `batch_approve_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_and_overbook`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_and_overbook
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_pause_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_pause_orders
    ##
    # RPC-specific configuration for `batch_resume_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_orders
    ##
    # RPC-specific configuration for `batch_resume_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_approve_orders_without_reservation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders_without_reservation
    ##
    # RPC-specific configuration for `batch_archive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_archive_orders
    ##
    # RPC-specific configuration for `batch_unarchive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_unarchive_orders
    ##
    # RPC-specific configuration for `batch_delete_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_delete_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_retract_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders
    ##
    # RPC-specific configuration for `batch_retract_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders_without_reservation_changes

    # @private
    def initialize parent_rpcs = nil
      get_order_config = parent_rpcs.get_order if parent_rpcs.respond_to? :get_order
      @get_order = ::Gapic::Config::Method.new get_order_config
      list_orders_config = parent_rpcs.list_orders if parent_rpcs.respond_to? :list_orders
      @list_orders = ::Gapic::Config::Method.new list_orders_config
      batch_create_orders_config = parent_rpcs.batch_create_orders if parent_rpcs.respond_to? :batch_create_orders
      @batch_create_orders = ::Gapic::Config::Method.new batch_create_orders_config
      batch_update_orders_config = parent_rpcs.batch_update_orders if parent_rpcs.respond_to? :batch_update_orders
      @batch_update_orders = ::Gapic::Config::Method.new batch_update_orders_config
      batch_approve_orders_config = parent_rpcs.batch_approve_orders if parent_rpcs.respond_to? :batch_approve_orders
      @batch_approve_orders = ::Gapic::Config::Method.new batch_approve_orders_config
      batch_approve_and_overbook_orders_config = parent_rpcs.batch_approve_and_overbook_orders if parent_rpcs.respond_to? :batch_approve_and_overbook_orders
      @batch_approve_and_overbook_orders = ::Gapic::Config::Method.new batch_approve_and_overbook_orders_config
      batch_submit_orders_for_approval_config = parent_rpcs.batch_submit_orders_for_approval if parent_rpcs.respond_to? :batch_submit_orders_for_approval
      @batch_submit_orders_for_approval = ::Gapic::Config::Method.new batch_submit_orders_for_approval_config
      batch_submit_orders_for_approval_and_overbook_config = parent_rpcs.batch_submit_orders_for_approval_and_overbook if parent_rpcs.respond_to? :batch_submit_orders_for_approval_and_overbook
      @batch_submit_orders_for_approval_and_overbook = ::Gapic::Config::Method.new batch_submit_orders_for_approval_and_overbook_config
      batch_submit_orders_for_approval_without_reservation_changes_config = parent_rpcs.batch_submit_orders_for_approval_without_reservation_changes if parent_rpcs.respond_to? :batch_submit_orders_for_approval_without_reservation_changes
      @batch_submit_orders_for_approval_without_reservation_changes = ::Gapic::Config::Method.new batch_submit_orders_for_approval_without_reservation_changes_config
      batch_pause_orders_config = parent_rpcs.batch_pause_orders if parent_rpcs.respond_to? :batch_pause_orders
      @batch_pause_orders = ::Gapic::Config::Method.new batch_pause_orders_config
      batch_resume_orders_config = parent_rpcs.batch_resume_orders if parent_rpcs.respond_to? :batch_resume_orders
      @batch_resume_orders = ::Gapic::Config::Method.new batch_resume_orders_config
      batch_resume_and_overbook_orders_config = parent_rpcs.batch_resume_and_overbook_orders if parent_rpcs.respond_to? :batch_resume_and_overbook_orders
      @batch_resume_and_overbook_orders = ::Gapic::Config::Method.new batch_resume_and_overbook_orders_config
      batch_approve_orders_without_reservation_config = parent_rpcs.batch_approve_orders_without_reservation if parent_rpcs.respond_to? :batch_approve_orders_without_reservation
      @batch_approve_orders_without_reservation = ::Gapic::Config::Method.new batch_approve_orders_without_reservation_config
      batch_archive_orders_config = parent_rpcs.batch_archive_orders if parent_rpcs.respond_to? :batch_archive_orders
      @batch_archive_orders = ::Gapic::Config::Method.new batch_archive_orders_config
      batch_unarchive_orders_config = parent_rpcs.batch_unarchive_orders if parent_rpcs.respond_to? :batch_unarchive_orders
      @batch_unarchive_orders = ::Gapic::Config::Method.new batch_unarchive_orders_config
      batch_delete_orders_config = parent_rpcs.batch_delete_orders if parent_rpcs.respond_to? :batch_delete_orders
      @batch_delete_orders = ::Gapic::Config::Method.new batch_delete_orders_config
      batch_disapprove_orders_config = parent_rpcs.batch_disapprove_orders if parent_rpcs.respond_to? :batch_disapprove_orders
      @batch_disapprove_orders = ::Gapic::Config::Method.new batch_disapprove_orders_config
      batch_disapprove_orders_without_reservation_changes_config = parent_rpcs.batch_disapprove_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_disapprove_orders_without_reservation_changes
      @batch_disapprove_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_disapprove_orders_without_reservation_changes_config
      batch_retract_orders_config = parent_rpcs.batch_retract_orders if parent_rpcs.respond_to? :batch_retract_orders
      @batch_retract_orders = ::Gapic::Config::Method.new batch_retract_orders_config
      batch_retract_orders_without_reservation_changes_config = parent_rpcs.batch_retract_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_retract_orders_without_reservation_changes
      @batch_retract_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_retract_orders_without_reservation_changes_config

      yield self if block_given?
    end
  end
end

#quota_project::String

A separate project against which to charge quota.

Returns:

  • (::String)


1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
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
2185
2186
2187
# File 'lib/google/ads/ad_manager/v1/order_service/rest/client.rb', line 1980

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil
  config_attr :logger, :default, ::Logger, nil, :default

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

    yield self if block_given?
  end

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

  ##
  # Configuration RPC class for the OrderService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `get_order`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_order
    ##
    # RPC-specific configuration for `list_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_orders
    ##
    # RPC-specific configuration for `batch_create_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_create_orders
    ##
    # RPC-specific configuration for `batch_update_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_update_orders
    ##
    # RPC-specific configuration for `batch_approve_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders
    ##
    # RPC-specific configuration for `batch_approve_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_and_overbook`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_and_overbook
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_pause_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_pause_orders
    ##
    # RPC-specific configuration for `batch_resume_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_orders
    ##
    # RPC-specific configuration for `batch_resume_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_approve_orders_without_reservation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders_without_reservation
    ##
    # RPC-specific configuration for `batch_archive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_archive_orders
    ##
    # RPC-specific configuration for `batch_unarchive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_unarchive_orders
    ##
    # RPC-specific configuration for `batch_delete_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_delete_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_retract_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders
    ##
    # RPC-specific configuration for `batch_retract_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders_without_reservation_changes

    # @private
    def initialize parent_rpcs = nil
      get_order_config = parent_rpcs.get_order if parent_rpcs.respond_to? :get_order
      @get_order = ::Gapic::Config::Method.new get_order_config
      list_orders_config = parent_rpcs.list_orders if parent_rpcs.respond_to? :list_orders
      @list_orders = ::Gapic::Config::Method.new list_orders_config
      batch_create_orders_config = parent_rpcs.batch_create_orders if parent_rpcs.respond_to? :batch_create_orders
      @batch_create_orders = ::Gapic::Config::Method.new batch_create_orders_config
      batch_update_orders_config = parent_rpcs.batch_update_orders if parent_rpcs.respond_to? :batch_update_orders
      @batch_update_orders = ::Gapic::Config::Method.new batch_update_orders_config
      batch_approve_orders_config = parent_rpcs.batch_approve_orders if parent_rpcs.respond_to? :batch_approve_orders
      @batch_approve_orders = ::Gapic::Config::Method.new batch_approve_orders_config
      batch_approve_and_overbook_orders_config = parent_rpcs.batch_approve_and_overbook_orders if parent_rpcs.respond_to? :batch_approve_and_overbook_orders
      @batch_approve_and_overbook_orders = ::Gapic::Config::Method.new batch_approve_and_overbook_orders_config
      batch_submit_orders_for_approval_config = parent_rpcs.batch_submit_orders_for_approval if parent_rpcs.respond_to? :batch_submit_orders_for_approval
      @batch_submit_orders_for_approval = ::Gapic::Config::Method.new batch_submit_orders_for_approval_config
      batch_submit_orders_for_approval_and_overbook_config = parent_rpcs.batch_submit_orders_for_approval_and_overbook if parent_rpcs.respond_to? :batch_submit_orders_for_approval_and_overbook
      @batch_submit_orders_for_approval_and_overbook = ::Gapic::Config::Method.new batch_submit_orders_for_approval_and_overbook_config
      batch_submit_orders_for_approval_without_reservation_changes_config = parent_rpcs.batch_submit_orders_for_approval_without_reservation_changes if parent_rpcs.respond_to? :batch_submit_orders_for_approval_without_reservation_changes
      @batch_submit_orders_for_approval_without_reservation_changes = ::Gapic::Config::Method.new batch_submit_orders_for_approval_without_reservation_changes_config
      batch_pause_orders_config = parent_rpcs.batch_pause_orders if parent_rpcs.respond_to? :batch_pause_orders
      @batch_pause_orders = ::Gapic::Config::Method.new batch_pause_orders_config
      batch_resume_orders_config = parent_rpcs.batch_resume_orders if parent_rpcs.respond_to? :batch_resume_orders
      @batch_resume_orders = ::Gapic::Config::Method.new batch_resume_orders_config
      batch_resume_and_overbook_orders_config = parent_rpcs.batch_resume_and_overbook_orders if parent_rpcs.respond_to? :batch_resume_and_overbook_orders
      @batch_resume_and_overbook_orders = ::Gapic::Config::Method.new batch_resume_and_overbook_orders_config
      batch_approve_orders_without_reservation_config = parent_rpcs.batch_approve_orders_without_reservation if parent_rpcs.respond_to? :batch_approve_orders_without_reservation
      @batch_approve_orders_without_reservation = ::Gapic::Config::Method.new batch_approve_orders_without_reservation_config
      batch_archive_orders_config = parent_rpcs.batch_archive_orders if parent_rpcs.respond_to? :batch_archive_orders
      @batch_archive_orders = ::Gapic::Config::Method.new batch_archive_orders_config
      batch_unarchive_orders_config = parent_rpcs.batch_unarchive_orders if parent_rpcs.respond_to? :batch_unarchive_orders
      @batch_unarchive_orders = ::Gapic::Config::Method.new batch_unarchive_orders_config
      batch_delete_orders_config = parent_rpcs.batch_delete_orders if parent_rpcs.respond_to? :batch_delete_orders
      @batch_delete_orders = ::Gapic::Config::Method.new batch_delete_orders_config
      batch_disapprove_orders_config = parent_rpcs.batch_disapprove_orders if parent_rpcs.respond_to? :batch_disapprove_orders
      @batch_disapprove_orders = ::Gapic::Config::Method.new batch_disapprove_orders_config
      batch_disapprove_orders_without_reservation_changes_config = parent_rpcs.batch_disapprove_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_disapprove_orders_without_reservation_changes
      @batch_disapprove_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_disapprove_orders_without_reservation_changes_config
      batch_retract_orders_config = parent_rpcs.batch_retract_orders if parent_rpcs.respond_to? :batch_retract_orders
      @batch_retract_orders = ::Gapic::Config::Method.new batch_retract_orders_config
      batch_retract_orders_without_reservation_changes_config = parent_rpcs.batch_retract_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_retract_orders_without_reservation_changes
      @batch_retract_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_retract_orders_without_reservation_changes_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.
  • :jitter (type: Numeric) - The jitter in seconds. Default: 1.0.
  • :retry_codes (type: Array<String>) - The error codes that should trigger a retry.

Returns:

  • (::Hash)


1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
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
2185
2186
2187
# File 'lib/google/ads/ad_manager/v1/order_service/rest/client.rb', line 1980

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil
  config_attr :logger, :default, ::Logger, nil, :default

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

    yield self if block_given?
  end

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

  ##
  # Configuration RPC class for the OrderService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `get_order`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_order
    ##
    # RPC-specific configuration for `list_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_orders
    ##
    # RPC-specific configuration for `batch_create_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_create_orders
    ##
    # RPC-specific configuration for `batch_update_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_update_orders
    ##
    # RPC-specific configuration for `batch_approve_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders
    ##
    # RPC-specific configuration for `batch_approve_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_and_overbook`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_and_overbook
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_pause_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_pause_orders
    ##
    # RPC-specific configuration for `batch_resume_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_orders
    ##
    # RPC-specific configuration for `batch_resume_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_approve_orders_without_reservation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders_without_reservation
    ##
    # RPC-specific configuration for `batch_archive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_archive_orders
    ##
    # RPC-specific configuration for `batch_unarchive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_unarchive_orders
    ##
    # RPC-specific configuration for `batch_delete_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_delete_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_retract_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders
    ##
    # RPC-specific configuration for `batch_retract_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders_without_reservation_changes

    # @private
    def initialize parent_rpcs = nil
      get_order_config = parent_rpcs.get_order if parent_rpcs.respond_to? :get_order
      @get_order = ::Gapic::Config::Method.new get_order_config
      list_orders_config = parent_rpcs.list_orders if parent_rpcs.respond_to? :list_orders
      @list_orders = ::Gapic::Config::Method.new list_orders_config
      batch_create_orders_config = parent_rpcs.batch_create_orders if parent_rpcs.respond_to? :batch_create_orders
      @batch_create_orders = ::Gapic::Config::Method.new batch_create_orders_config
      batch_update_orders_config = parent_rpcs.batch_update_orders if parent_rpcs.respond_to? :batch_update_orders
      @batch_update_orders = ::Gapic::Config::Method.new batch_update_orders_config
      batch_approve_orders_config = parent_rpcs.batch_approve_orders if parent_rpcs.respond_to? :batch_approve_orders
      @batch_approve_orders = ::Gapic::Config::Method.new batch_approve_orders_config
      batch_approve_and_overbook_orders_config = parent_rpcs.batch_approve_and_overbook_orders if parent_rpcs.respond_to? :batch_approve_and_overbook_orders
      @batch_approve_and_overbook_orders = ::Gapic::Config::Method.new batch_approve_and_overbook_orders_config
      batch_submit_orders_for_approval_config = parent_rpcs.batch_submit_orders_for_approval if parent_rpcs.respond_to? :batch_submit_orders_for_approval
      @batch_submit_orders_for_approval = ::Gapic::Config::Method.new batch_submit_orders_for_approval_config
      batch_submit_orders_for_approval_and_overbook_config = parent_rpcs.batch_submit_orders_for_approval_and_overbook if parent_rpcs.respond_to? :batch_submit_orders_for_approval_and_overbook
      @batch_submit_orders_for_approval_and_overbook = ::Gapic::Config::Method.new batch_submit_orders_for_approval_and_overbook_config
      batch_submit_orders_for_approval_without_reservation_changes_config = parent_rpcs.batch_submit_orders_for_approval_without_reservation_changes if parent_rpcs.respond_to? :batch_submit_orders_for_approval_without_reservation_changes
      @batch_submit_orders_for_approval_without_reservation_changes = ::Gapic::Config::Method.new batch_submit_orders_for_approval_without_reservation_changes_config
      batch_pause_orders_config = parent_rpcs.batch_pause_orders if parent_rpcs.respond_to? :batch_pause_orders
      @batch_pause_orders = ::Gapic::Config::Method.new batch_pause_orders_config
      batch_resume_orders_config = parent_rpcs.batch_resume_orders if parent_rpcs.respond_to? :batch_resume_orders
      @batch_resume_orders = ::Gapic::Config::Method.new batch_resume_orders_config
      batch_resume_and_overbook_orders_config = parent_rpcs.batch_resume_and_overbook_orders if parent_rpcs.respond_to? :batch_resume_and_overbook_orders
      @batch_resume_and_overbook_orders = ::Gapic::Config::Method.new batch_resume_and_overbook_orders_config
      batch_approve_orders_without_reservation_config = parent_rpcs.batch_approve_orders_without_reservation if parent_rpcs.respond_to? :batch_approve_orders_without_reservation
      @batch_approve_orders_without_reservation = ::Gapic::Config::Method.new batch_approve_orders_without_reservation_config
      batch_archive_orders_config = parent_rpcs.batch_archive_orders if parent_rpcs.respond_to? :batch_archive_orders
      @batch_archive_orders = ::Gapic::Config::Method.new batch_archive_orders_config
      batch_unarchive_orders_config = parent_rpcs.batch_unarchive_orders if parent_rpcs.respond_to? :batch_unarchive_orders
      @batch_unarchive_orders = ::Gapic::Config::Method.new batch_unarchive_orders_config
      batch_delete_orders_config = parent_rpcs.batch_delete_orders if parent_rpcs.respond_to? :batch_delete_orders
      @batch_delete_orders = ::Gapic::Config::Method.new batch_delete_orders_config
      batch_disapprove_orders_config = parent_rpcs.batch_disapprove_orders if parent_rpcs.respond_to? :batch_disapprove_orders
      @batch_disapprove_orders = ::Gapic::Config::Method.new batch_disapprove_orders_config
      batch_disapprove_orders_without_reservation_changes_config = parent_rpcs.batch_disapprove_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_disapprove_orders_without_reservation_changes
      @batch_disapprove_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_disapprove_orders_without_reservation_changes_config
      batch_retract_orders_config = parent_rpcs.batch_retract_orders if parent_rpcs.respond_to? :batch_retract_orders
      @batch_retract_orders = ::Gapic::Config::Method.new batch_retract_orders_config
      batch_retract_orders_without_reservation_changes_config = parent_rpcs.batch_retract_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_retract_orders_without_reservation_changes
      @batch_retract_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_retract_orders_without_reservation_changes_config

      yield self if block_given?
    end
  end
end

#scope::Array<::String>

The OAuth scopes

Returns:

  • (::Array<::String>)


1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
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
2185
2186
2187
# File 'lib/google/ads/ad_manager/v1/order_service/rest/client.rb', line 1980

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil
  config_attr :logger, :default, ::Logger, nil, :default

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

    yield self if block_given?
  end

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

  ##
  # Configuration RPC class for the OrderService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `get_order`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_order
    ##
    # RPC-specific configuration for `list_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_orders
    ##
    # RPC-specific configuration for `batch_create_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_create_orders
    ##
    # RPC-specific configuration for `batch_update_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_update_orders
    ##
    # RPC-specific configuration for `batch_approve_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders
    ##
    # RPC-specific configuration for `batch_approve_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_and_overbook`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_and_overbook
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_pause_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_pause_orders
    ##
    # RPC-specific configuration for `batch_resume_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_orders
    ##
    # RPC-specific configuration for `batch_resume_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_approve_orders_without_reservation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders_without_reservation
    ##
    # RPC-specific configuration for `batch_archive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_archive_orders
    ##
    # RPC-specific configuration for `batch_unarchive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_unarchive_orders
    ##
    # RPC-specific configuration for `batch_delete_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_delete_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_retract_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders
    ##
    # RPC-specific configuration for `batch_retract_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders_without_reservation_changes

    # @private
    def initialize parent_rpcs = nil
      get_order_config = parent_rpcs.get_order if parent_rpcs.respond_to? :get_order
      @get_order = ::Gapic::Config::Method.new get_order_config
      list_orders_config = parent_rpcs.list_orders if parent_rpcs.respond_to? :list_orders
      @list_orders = ::Gapic::Config::Method.new list_orders_config
      batch_create_orders_config = parent_rpcs.batch_create_orders if parent_rpcs.respond_to? :batch_create_orders
      @batch_create_orders = ::Gapic::Config::Method.new batch_create_orders_config
      batch_update_orders_config = parent_rpcs.batch_update_orders if parent_rpcs.respond_to? :batch_update_orders
      @batch_update_orders = ::Gapic::Config::Method.new batch_update_orders_config
      batch_approve_orders_config = parent_rpcs.batch_approve_orders if parent_rpcs.respond_to? :batch_approve_orders
      @batch_approve_orders = ::Gapic::Config::Method.new batch_approve_orders_config
      batch_approve_and_overbook_orders_config = parent_rpcs.batch_approve_and_overbook_orders if parent_rpcs.respond_to? :batch_approve_and_overbook_orders
      @batch_approve_and_overbook_orders = ::Gapic::Config::Method.new batch_approve_and_overbook_orders_config
      batch_submit_orders_for_approval_config = parent_rpcs.batch_submit_orders_for_approval if parent_rpcs.respond_to? :batch_submit_orders_for_approval
      @batch_submit_orders_for_approval = ::Gapic::Config::Method.new batch_submit_orders_for_approval_config
      batch_submit_orders_for_approval_and_overbook_config = parent_rpcs.batch_submit_orders_for_approval_and_overbook if parent_rpcs.respond_to? :batch_submit_orders_for_approval_and_overbook
      @batch_submit_orders_for_approval_and_overbook = ::Gapic::Config::Method.new batch_submit_orders_for_approval_and_overbook_config
      batch_submit_orders_for_approval_without_reservation_changes_config = parent_rpcs.batch_submit_orders_for_approval_without_reservation_changes if parent_rpcs.respond_to? :batch_submit_orders_for_approval_without_reservation_changes
      @batch_submit_orders_for_approval_without_reservation_changes = ::Gapic::Config::Method.new batch_submit_orders_for_approval_without_reservation_changes_config
      batch_pause_orders_config = parent_rpcs.batch_pause_orders if parent_rpcs.respond_to? :batch_pause_orders
      @batch_pause_orders = ::Gapic::Config::Method.new batch_pause_orders_config
      batch_resume_orders_config = parent_rpcs.batch_resume_orders if parent_rpcs.respond_to? :batch_resume_orders
      @batch_resume_orders = ::Gapic::Config::Method.new batch_resume_orders_config
      batch_resume_and_overbook_orders_config = parent_rpcs.batch_resume_and_overbook_orders if parent_rpcs.respond_to? :batch_resume_and_overbook_orders
      @batch_resume_and_overbook_orders = ::Gapic::Config::Method.new batch_resume_and_overbook_orders_config
      batch_approve_orders_without_reservation_config = parent_rpcs.batch_approve_orders_without_reservation if parent_rpcs.respond_to? :batch_approve_orders_without_reservation
      @batch_approve_orders_without_reservation = ::Gapic::Config::Method.new batch_approve_orders_without_reservation_config
      batch_archive_orders_config = parent_rpcs.batch_archive_orders if parent_rpcs.respond_to? :batch_archive_orders
      @batch_archive_orders = ::Gapic::Config::Method.new batch_archive_orders_config
      batch_unarchive_orders_config = parent_rpcs.batch_unarchive_orders if parent_rpcs.respond_to? :batch_unarchive_orders
      @batch_unarchive_orders = ::Gapic::Config::Method.new batch_unarchive_orders_config
      batch_delete_orders_config = parent_rpcs.batch_delete_orders if parent_rpcs.respond_to? :batch_delete_orders
      @batch_delete_orders = ::Gapic::Config::Method.new batch_delete_orders_config
      batch_disapprove_orders_config = parent_rpcs.batch_disapprove_orders if parent_rpcs.respond_to? :batch_disapprove_orders
      @batch_disapprove_orders = ::Gapic::Config::Method.new batch_disapprove_orders_config
      batch_disapprove_orders_without_reservation_changes_config = parent_rpcs.batch_disapprove_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_disapprove_orders_without_reservation_changes
      @batch_disapprove_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_disapprove_orders_without_reservation_changes_config
      batch_retract_orders_config = parent_rpcs.batch_retract_orders if parent_rpcs.respond_to? :batch_retract_orders
      @batch_retract_orders = ::Gapic::Config::Method.new batch_retract_orders_config
      batch_retract_orders_without_reservation_changes_config = parent_rpcs.batch_retract_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_retract_orders_without_reservation_changes
      @batch_retract_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_retract_orders_without_reservation_changes_config

      yield self if block_given?
    end
  end
end

#timeout::Numeric

The call timeout in seconds.

Returns:

  • (::Numeric)


1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
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
2185
2186
2187
# File 'lib/google/ads/ad_manager/v1/order_service/rest/client.rb', line 1980

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil
  config_attr :logger, :default, ::Logger, nil, :default

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

    yield self if block_given?
  end

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

  ##
  # Configuration RPC class for the OrderService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `get_order`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_order
    ##
    # RPC-specific configuration for `list_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_orders
    ##
    # RPC-specific configuration for `batch_create_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_create_orders
    ##
    # RPC-specific configuration for `batch_update_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_update_orders
    ##
    # RPC-specific configuration for `batch_approve_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders
    ##
    # RPC-specific configuration for `batch_approve_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_and_overbook`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_and_overbook
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_pause_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_pause_orders
    ##
    # RPC-specific configuration for `batch_resume_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_orders
    ##
    # RPC-specific configuration for `batch_resume_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_approve_orders_without_reservation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders_without_reservation
    ##
    # RPC-specific configuration for `batch_archive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_archive_orders
    ##
    # RPC-specific configuration for `batch_unarchive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_unarchive_orders
    ##
    # RPC-specific configuration for `batch_delete_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_delete_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_retract_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders
    ##
    # RPC-specific configuration for `batch_retract_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders_without_reservation_changes

    # @private
    def initialize parent_rpcs = nil
      get_order_config = parent_rpcs.get_order if parent_rpcs.respond_to? :get_order
      @get_order = ::Gapic::Config::Method.new get_order_config
      list_orders_config = parent_rpcs.list_orders if parent_rpcs.respond_to? :list_orders
      @list_orders = ::Gapic::Config::Method.new list_orders_config
      batch_create_orders_config = parent_rpcs.batch_create_orders if parent_rpcs.respond_to? :batch_create_orders
      @batch_create_orders = ::Gapic::Config::Method.new batch_create_orders_config
      batch_update_orders_config = parent_rpcs.batch_update_orders if parent_rpcs.respond_to? :batch_update_orders
      @batch_update_orders = ::Gapic::Config::Method.new batch_update_orders_config
      batch_approve_orders_config = parent_rpcs.batch_approve_orders if parent_rpcs.respond_to? :batch_approve_orders
      @batch_approve_orders = ::Gapic::Config::Method.new batch_approve_orders_config
      batch_approve_and_overbook_orders_config = parent_rpcs.batch_approve_and_overbook_orders if parent_rpcs.respond_to? :batch_approve_and_overbook_orders
      @batch_approve_and_overbook_orders = ::Gapic::Config::Method.new batch_approve_and_overbook_orders_config
      batch_submit_orders_for_approval_config = parent_rpcs.batch_submit_orders_for_approval if parent_rpcs.respond_to? :batch_submit_orders_for_approval
      @batch_submit_orders_for_approval = ::Gapic::Config::Method.new batch_submit_orders_for_approval_config
      batch_submit_orders_for_approval_and_overbook_config = parent_rpcs.batch_submit_orders_for_approval_and_overbook if parent_rpcs.respond_to? :batch_submit_orders_for_approval_and_overbook
      @batch_submit_orders_for_approval_and_overbook = ::Gapic::Config::Method.new batch_submit_orders_for_approval_and_overbook_config
      batch_submit_orders_for_approval_without_reservation_changes_config = parent_rpcs.batch_submit_orders_for_approval_without_reservation_changes if parent_rpcs.respond_to? :batch_submit_orders_for_approval_without_reservation_changes
      @batch_submit_orders_for_approval_without_reservation_changes = ::Gapic::Config::Method.new batch_submit_orders_for_approval_without_reservation_changes_config
      batch_pause_orders_config = parent_rpcs.batch_pause_orders if parent_rpcs.respond_to? :batch_pause_orders
      @batch_pause_orders = ::Gapic::Config::Method.new batch_pause_orders_config
      batch_resume_orders_config = parent_rpcs.batch_resume_orders if parent_rpcs.respond_to? :batch_resume_orders
      @batch_resume_orders = ::Gapic::Config::Method.new batch_resume_orders_config
      batch_resume_and_overbook_orders_config = parent_rpcs.batch_resume_and_overbook_orders if parent_rpcs.respond_to? :batch_resume_and_overbook_orders
      @batch_resume_and_overbook_orders = ::Gapic::Config::Method.new batch_resume_and_overbook_orders_config
      batch_approve_orders_without_reservation_config = parent_rpcs.batch_approve_orders_without_reservation if parent_rpcs.respond_to? :batch_approve_orders_without_reservation
      @batch_approve_orders_without_reservation = ::Gapic::Config::Method.new batch_approve_orders_without_reservation_config
      batch_archive_orders_config = parent_rpcs.batch_archive_orders if parent_rpcs.respond_to? :batch_archive_orders
      @batch_archive_orders = ::Gapic::Config::Method.new batch_archive_orders_config
      batch_unarchive_orders_config = parent_rpcs.batch_unarchive_orders if parent_rpcs.respond_to? :batch_unarchive_orders
      @batch_unarchive_orders = ::Gapic::Config::Method.new batch_unarchive_orders_config
      batch_delete_orders_config = parent_rpcs.batch_delete_orders if parent_rpcs.respond_to? :batch_delete_orders
      @batch_delete_orders = ::Gapic::Config::Method.new batch_delete_orders_config
      batch_disapprove_orders_config = parent_rpcs.batch_disapprove_orders if parent_rpcs.respond_to? :batch_disapprove_orders
      @batch_disapprove_orders = ::Gapic::Config::Method.new batch_disapprove_orders_config
      batch_disapprove_orders_without_reservation_changes_config = parent_rpcs.batch_disapprove_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_disapprove_orders_without_reservation_changes
      @batch_disapprove_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_disapprove_orders_without_reservation_changes_config
      batch_retract_orders_config = parent_rpcs.batch_retract_orders if parent_rpcs.respond_to? :batch_retract_orders
      @batch_retract_orders = ::Gapic::Config::Method.new batch_retract_orders_config
      batch_retract_orders_without_reservation_changes_config = parent_rpcs.batch_retract_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_retract_orders_without_reservation_changes
      @batch_retract_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_retract_orders_without_reservation_changes_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)


1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
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
2185
2186
2187
# File 'lib/google/ads/ad_manager/v1/order_service/rest/client.rb', line 1980

class Configuration
  extend ::Gapic::Config

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

  config_attr :endpoint,      nil, ::String, nil
  config_attr :credentials,   nil do |value|
    allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Google::Auth::BaseClient, ::Signet::OAuth2::Client, nil]
    allowed.any? { |klass| klass === value }
  end
  config_attr :scope,         nil, ::String, ::Array, nil
  config_attr :lib_name,      nil, ::String, nil
  config_attr :lib_version,   nil, ::String, nil
  config_attr :timeout,       nil, ::Numeric, nil
  config_attr :metadata,      nil, ::Hash, nil
  config_attr :retry_policy,  nil, ::Hash, ::Proc, nil
  config_attr :quota_project, nil, ::String, nil
  config_attr :universe_domain, nil, ::String, nil
  config_attr :logger, :default, ::Logger, nil, :default

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

    yield self if block_given?
  end

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

  ##
  # Configuration RPC class for the OrderService API.
  #
  # Includes fields providing the configuration for each RPC in this service.
  # Each configuration object is of type `Gapic::Config::Method` and includes
  # the following configuration fields:
  #
  #  *  `timeout` (*type:* `Numeric`) - The call timeout in seconds
  #  *  `metadata` (*type:* `Hash{Symbol=>String}`) - Additional headers
  #  *  `retry_policy (*type:* `Hash`) - The retry policy. The policy fields
  #     include the following keys:
  #      *  `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds.
  #      *  `:max_delay` (*type:* `Numeric`) - The max delay in seconds.
  #      *  `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier.
  #      *  `:jitter` (*type:* `Numeric`) - The jitter in seconds. Default: 1.0.
  #      *  `:retry_codes` (*type:* `Array<String>`) - The error codes that should
  #         trigger a retry.
  #
  class Rpcs
    ##
    # RPC-specific configuration for `get_order`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :get_order
    ##
    # RPC-specific configuration for `list_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :list_orders
    ##
    # RPC-specific configuration for `batch_create_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_create_orders
    ##
    # RPC-specific configuration for `batch_update_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_update_orders
    ##
    # RPC-specific configuration for `batch_approve_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders
    ##
    # RPC-specific configuration for `batch_approve_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_and_overbook`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_and_overbook
    ##
    # RPC-specific configuration for `batch_submit_orders_for_approval_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_submit_orders_for_approval_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_pause_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_pause_orders
    ##
    # RPC-specific configuration for `batch_resume_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_orders
    ##
    # RPC-specific configuration for `batch_resume_and_overbook_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_resume_and_overbook_orders
    ##
    # RPC-specific configuration for `batch_approve_orders_without_reservation`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_approve_orders_without_reservation
    ##
    # RPC-specific configuration for `batch_archive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_archive_orders
    ##
    # RPC-specific configuration for `batch_unarchive_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_unarchive_orders
    ##
    # RPC-specific configuration for `batch_delete_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_delete_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders
    ##
    # RPC-specific configuration for `batch_disapprove_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_disapprove_orders_without_reservation_changes
    ##
    # RPC-specific configuration for `batch_retract_orders`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders
    ##
    # RPC-specific configuration for `batch_retract_orders_without_reservation_changes`
    # @return [::Gapic::Config::Method]
    #
    attr_reader :batch_retract_orders_without_reservation_changes

    # @private
    def initialize parent_rpcs = nil
      get_order_config = parent_rpcs.get_order if parent_rpcs.respond_to? :get_order
      @get_order = ::Gapic::Config::Method.new get_order_config
      list_orders_config = parent_rpcs.list_orders if parent_rpcs.respond_to? :list_orders
      @list_orders = ::Gapic::Config::Method.new list_orders_config
      batch_create_orders_config = parent_rpcs.batch_create_orders if parent_rpcs.respond_to? :batch_create_orders
      @batch_create_orders = ::Gapic::Config::Method.new batch_create_orders_config
      batch_update_orders_config = parent_rpcs.batch_update_orders if parent_rpcs.respond_to? :batch_update_orders
      @batch_update_orders = ::Gapic::Config::Method.new batch_update_orders_config
      batch_approve_orders_config = parent_rpcs.batch_approve_orders if parent_rpcs.respond_to? :batch_approve_orders
      @batch_approve_orders = ::Gapic::Config::Method.new batch_approve_orders_config
      batch_approve_and_overbook_orders_config = parent_rpcs.batch_approve_and_overbook_orders if parent_rpcs.respond_to? :batch_approve_and_overbook_orders
      @batch_approve_and_overbook_orders = ::Gapic::Config::Method.new batch_approve_and_overbook_orders_config
      batch_submit_orders_for_approval_config = parent_rpcs.batch_submit_orders_for_approval if parent_rpcs.respond_to? :batch_submit_orders_for_approval
      @batch_submit_orders_for_approval = ::Gapic::Config::Method.new batch_submit_orders_for_approval_config
      batch_submit_orders_for_approval_and_overbook_config = parent_rpcs.batch_submit_orders_for_approval_and_overbook if parent_rpcs.respond_to? :batch_submit_orders_for_approval_and_overbook
      @batch_submit_orders_for_approval_and_overbook = ::Gapic::Config::Method.new batch_submit_orders_for_approval_and_overbook_config
      batch_submit_orders_for_approval_without_reservation_changes_config = parent_rpcs.batch_submit_orders_for_approval_without_reservation_changes if parent_rpcs.respond_to? :batch_submit_orders_for_approval_without_reservation_changes
      @batch_submit_orders_for_approval_without_reservation_changes = ::Gapic::Config::Method.new batch_submit_orders_for_approval_without_reservation_changes_config
      batch_pause_orders_config = parent_rpcs.batch_pause_orders if parent_rpcs.respond_to? :batch_pause_orders
      @batch_pause_orders = ::Gapic::Config::Method.new batch_pause_orders_config
      batch_resume_orders_config = parent_rpcs.batch_resume_orders if parent_rpcs.respond_to? :batch_resume_orders
      @batch_resume_orders = ::Gapic::Config::Method.new batch_resume_orders_config
      batch_resume_and_overbook_orders_config = parent_rpcs.batch_resume_and_overbook_orders if parent_rpcs.respond_to? :batch_resume_and_overbook_orders
      @batch_resume_and_overbook_orders = ::Gapic::Config::Method.new batch_resume_and_overbook_orders_config
      batch_approve_orders_without_reservation_config = parent_rpcs.batch_approve_orders_without_reservation if parent_rpcs.respond_to? :batch_approve_orders_without_reservation
      @batch_approve_orders_without_reservation = ::Gapic::Config::Method.new batch_approve_orders_without_reservation_config
      batch_archive_orders_config = parent_rpcs.batch_archive_orders if parent_rpcs.respond_to? :batch_archive_orders
      @batch_archive_orders = ::Gapic::Config::Method.new batch_archive_orders_config
      batch_unarchive_orders_config = parent_rpcs.batch_unarchive_orders if parent_rpcs.respond_to? :batch_unarchive_orders
      @batch_unarchive_orders = ::Gapic::Config::Method.new batch_unarchive_orders_config
      batch_delete_orders_config = parent_rpcs.batch_delete_orders if parent_rpcs.respond_to? :batch_delete_orders
      @batch_delete_orders = ::Gapic::Config::Method.new batch_delete_orders_config
      batch_disapprove_orders_config = parent_rpcs.batch_disapprove_orders if parent_rpcs.respond_to? :batch_disapprove_orders
      @batch_disapprove_orders = ::Gapic::Config::Method.new batch_disapprove_orders_config
      batch_disapprove_orders_without_reservation_changes_config = parent_rpcs.batch_disapprove_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_disapprove_orders_without_reservation_changes
      @batch_disapprove_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_disapprove_orders_without_reservation_changes_config
      batch_retract_orders_config = parent_rpcs.batch_retract_orders if parent_rpcs.respond_to? :batch_retract_orders
      @batch_retract_orders = ::Gapic::Config::Method.new batch_retract_orders_config
      batch_retract_orders_without_reservation_changes_config = parent_rpcs.batch_retract_orders_without_reservation_changes if parent_rpcs.respond_to? :batch_retract_orders_without_reservation_changes
      @batch_retract_orders_without_reservation_changes = ::Gapic::Config::Method.new batch_retract_orders_without_reservation_changes_config

      yield self if block_given?
    end
  end
end

Instance Method Details

#rpcsRpcs

Configurations for individual RPCs

Returns:



2013
2014
2015
2016
2017
2018
2019
# File 'lib/google/ads/ad_manager/v1/order_service/rest/client.rb', line 2013

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