Class: Google::Cloud::Iot::V1::DeviceManager::Client::Configuration
- Inherits:
-
Object
- Object
- Google::Cloud::Iot::V1::DeviceManager::Client::Configuration
- Extended by:
- Gapic::Config
- Defined in:
- lib/google/cloud/iot/v1/device_manager/client.rb
Overview
Configuration class for the DeviceManager API.
This class represents the configuration for DeviceManager, 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.
Defined Under Namespace
Classes: Rpcs
Instance Attribute Summary collapse
-
#channel_args ⇒ ::Hash
Extra parameters passed to the gRPC channel.
-
#credentials ⇒ ::Object
Credentials to send with calls.
-
#endpoint ⇒ ::String?
A custom service endpoint, as a hostname or hostname:port.
-
#interceptors ⇒ ::Array<::GRPC::ClientInterceptor>
An array of interceptors that are run before calls are executed.
-
#lib_name ⇒ ::String
The library name as recorded in instrumentation and logging.
-
#lib_version ⇒ ::String
The library version as recorded in instrumentation and logging.
-
#metadata ⇒ ::Hash{::Symbol=>::String}
Additional gRPC headers to be sent with the call.
-
#quota_project ⇒ ::String
A separate project against which to charge quota.
-
#retry_policy ⇒ ::Hash
The retry policy.
-
#scope ⇒ ::Array<::String>
The OAuth scopes.
-
#timeout ⇒ ::Numeric
The call timeout in seconds.
-
#universe_domain ⇒ ::String?
The universe domain within which to make requests.
Instance Method Summary collapse
-
#channel_pool ⇒ ::Gapic::ServiceStub::ChannelPool::Configuration
Configuration for the channel pool.
-
#rpcs ⇒ Rpcs
Configurations for individual RPCs.
Instance Attribute Details
#channel_args ⇒ ::Hash
Extra parameters passed to the gRPC channel. Note: this is ignored if a
GRPC::Core::Channel
object is provided as the credential.
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 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 |
# File 'lib/google/cloud/iot/v1/device_manager/client.rb', line 2101 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "cloudiot.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the DeviceManager API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_device_registry` # @return [::Gapic::Config::Method] # attr_reader :create_device_registry ## # RPC-specific configuration for `get_device_registry` # @return [::Gapic::Config::Method] # attr_reader :get_device_registry ## # RPC-specific configuration for `update_device_registry` # @return [::Gapic::Config::Method] # attr_reader :update_device_registry ## # RPC-specific configuration for `delete_device_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_device_registry ## # RPC-specific configuration for `list_device_registries` # @return [::Gapic::Config::Method] # attr_reader :list_device_registries ## # RPC-specific configuration for `create_device` # @return [::Gapic::Config::Method] # attr_reader :create_device ## # RPC-specific configuration for `get_device` # @return [::Gapic::Config::Method] # attr_reader :get_device ## # RPC-specific configuration for `update_device` # @return [::Gapic::Config::Method] # attr_reader :update_device ## # RPC-specific configuration for `delete_device` # @return [::Gapic::Config::Method] # attr_reader :delete_device ## # RPC-specific configuration for `list_devices` # @return [::Gapic::Config::Method] # attr_reader :list_devices ## # RPC-specific configuration for `modify_cloud_to_device_config` # @return [::Gapic::Config::Method] # attr_reader :modify_cloud_to_device_config ## # RPC-specific configuration for `list_device_config_versions` # @return [::Gapic::Config::Method] # attr_reader :list_device_config_versions ## # RPC-specific configuration for `list_device_states` # @return [::Gapic::Config::Method] # attr_reader :list_device_states ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `send_command_to_device` # @return [::Gapic::Config::Method] # attr_reader :send_command_to_device ## # RPC-specific configuration for `bind_device_to_gateway` # @return [::Gapic::Config::Method] # attr_reader :bind_device_to_gateway ## # RPC-specific configuration for `unbind_device_from_gateway` # @return [::Gapic::Config::Method] # attr_reader :unbind_device_from_gateway # @private def initialize parent_rpcs = nil create_device_registry_config = parent_rpcs.create_device_registry if parent_rpcs.respond_to? :create_device_registry @create_device_registry = ::Gapic::Config::Method.new create_device_registry_config get_device_registry_config = parent_rpcs.get_device_registry if parent_rpcs.respond_to? :get_device_registry @get_device_registry = ::Gapic::Config::Method.new get_device_registry_config update_device_registry_config = parent_rpcs.update_device_registry if parent_rpcs.respond_to? :update_device_registry @update_device_registry = ::Gapic::Config::Method.new update_device_registry_config delete_device_registry_config = parent_rpcs.delete_device_registry if parent_rpcs.respond_to? :delete_device_registry @delete_device_registry = ::Gapic::Config::Method.new delete_device_registry_config list_device_registries_config = parent_rpcs.list_device_registries if parent_rpcs.respond_to? :list_device_registries @list_device_registries = ::Gapic::Config::Method.new list_device_registries_config create_device_config = parent_rpcs.create_device if parent_rpcs.respond_to? :create_device @create_device = ::Gapic::Config::Method.new create_device_config get_device_config = parent_rpcs.get_device if parent_rpcs.respond_to? :get_device @get_device = ::Gapic::Config::Method.new get_device_config update_device_config = parent_rpcs.update_device if parent_rpcs.respond_to? :update_device @update_device = ::Gapic::Config::Method.new update_device_config delete_device_config = parent_rpcs.delete_device if parent_rpcs.respond_to? :delete_device @delete_device = ::Gapic::Config::Method.new delete_device_config list_devices_config = parent_rpcs.list_devices if parent_rpcs.respond_to? :list_devices @list_devices = ::Gapic::Config::Method.new list_devices_config modify_cloud_to_device_config_config = parent_rpcs.modify_cloud_to_device_config if parent_rpcs.respond_to? :modify_cloud_to_device_config @modify_cloud_to_device_config = ::Gapic::Config::Method.new modify_cloud_to_device_config_config list_device_config_versions_config = parent_rpcs.list_device_config_versions if parent_rpcs.respond_to? :list_device_config_versions @list_device_config_versions = ::Gapic::Config::Method.new list_device_config_versions_config list_device_states_config = parent_rpcs.list_device_states if parent_rpcs.respond_to? :list_device_states @list_device_states = ::Gapic::Config::Method.new list_device_states_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new send_command_to_device_config = parent_rpcs.send_command_to_device if parent_rpcs.respond_to? :send_command_to_device @send_command_to_device = ::Gapic::Config::Method.new send_command_to_device_config bind_device_to_gateway_config = parent_rpcs.bind_device_to_gateway if parent_rpcs.respond_to? :bind_device_to_gateway @bind_device_to_gateway = ::Gapic::Config::Method.new bind_device_to_gateway_config unbind_device_from_gateway_config = parent_rpcs.unbind_device_from_gateway if parent_rpcs.respond_to? :unbind_device_from_gateway @unbind_device_from_gateway = ::Gapic::Config::Method.new unbind_device_from_gateway_config yield self if block_given? end end end |
#credentials ⇒ ::Object
Credentials to send with calls. You may provide any of the following types:
- (
String
) The path to a service account key file in JSON format - (
Hash
) A service account key as a Hash - (
Google::Auth::Credentials
) A googleauth credentials object (see the googleauth docs) - (
Signet::OAuth2::Client
) A signet oauth2 client object (see the signet docs) - (
GRPC::Core::Channel
) a gRPC channel with included credentials - (
GRPC::Core::ChannelCredentials
) a gRPC credentails object - (
nil
) indicating no credentials
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 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 |
# File 'lib/google/cloud/iot/v1/device_manager/client.rb', line 2101 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "cloudiot.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the DeviceManager API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_device_registry` # @return [::Gapic::Config::Method] # attr_reader :create_device_registry ## # RPC-specific configuration for `get_device_registry` # @return [::Gapic::Config::Method] # attr_reader :get_device_registry ## # RPC-specific configuration for `update_device_registry` # @return [::Gapic::Config::Method] # attr_reader :update_device_registry ## # RPC-specific configuration for `delete_device_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_device_registry ## # RPC-specific configuration for `list_device_registries` # @return [::Gapic::Config::Method] # attr_reader :list_device_registries ## # RPC-specific configuration for `create_device` # @return [::Gapic::Config::Method] # attr_reader :create_device ## # RPC-specific configuration for `get_device` # @return [::Gapic::Config::Method] # attr_reader :get_device ## # RPC-specific configuration for `update_device` # @return [::Gapic::Config::Method] # attr_reader :update_device ## # RPC-specific configuration for `delete_device` # @return [::Gapic::Config::Method] # attr_reader :delete_device ## # RPC-specific configuration for `list_devices` # @return [::Gapic::Config::Method] # attr_reader :list_devices ## # RPC-specific configuration for `modify_cloud_to_device_config` # @return [::Gapic::Config::Method] # attr_reader :modify_cloud_to_device_config ## # RPC-specific configuration for `list_device_config_versions` # @return [::Gapic::Config::Method] # attr_reader :list_device_config_versions ## # RPC-specific configuration for `list_device_states` # @return [::Gapic::Config::Method] # attr_reader :list_device_states ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `send_command_to_device` # @return [::Gapic::Config::Method] # attr_reader :send_command_to_device ## # RPC-specific configuration for `bind_device_to_gateway` # @return [::Gapic::Config::Method] # attr_reader :bind_device_to_gateway ## # RPC-specific configuration for `unbind_device_from_gateway` # @return [::Gapic::Config::Method] # attr_reader :unbind_device_from_gateway # @private def initialize parent_rpcs = nil create_device_registry_config = parent_rpcs.create_device_registry if parent_rpcs.respond_to? :create_device_registry @create_device_registry = ::Gapic::Config::Method.new create_device_registry_config get_device_registry_config = parent_rpcs.get_device_registry if parent_rpcs.respond_to? :get_device_registry @get_device_registry = ::Gapic::Config::Method.new get_device_registry_config update_device_registry_config = parent_rpcs.update_device_registry if parent_rpcs.respond_to? :update_device_registry @update_device_registry = ::Gapic::Config::Method.new update_device_registry_config delete_device_registry_config = parent_rpcs.delete_device_registry if parent_rpcs.respond_to? :delete_device_registry @delete_device_registry = ::Gapic::Config::Method.new delete_device_registry_config list_device_registries_config = parent_rpcs.list_device_registries if parent_rpcs.respond_to? :list_device_registries @list_device_registries = ::Gapic::Config::Method.new list_device_registries_config create_device_config = parent_rpcs.create_device if parent_rpcs.respond_to? :create_device @create_device = ::Gapic::Config::Method.new create_device_config get_device_config = parent_rpcs.get_device if parent_rpcs.respond_to? :get_device @get_device = ::Gapic::Config::Method.new get_device_config update_device_config = parent_rpcs.update_device if parent_rpcs.respond_to? :update_device @update_device = ::Gapic::Config::Method.new update_device_config delete_device_config = parent_rpcs.delete_device if parent_rpcs.respond_to? :delete_device @delete_device = ::Gapic::Config::Method.new delete_device_config list_devices_config = parent_rpcs.list_devices if parent_rpcs.respond_to? :list_devices @list_devices = ::Gapic::Config::Method.new list_devices_config modify_cloud_to_device_config_config = parent_rpcs.modify_cloud_to_device_config if parent_rpcs.respond_to? :modify_cloud_to_device_config @modify_cloud_to_device_config = ::Gapic::Config::Method.new modify_cloud_to_device_config_config list_device_config_versions_config = parent_rpcs.list_device_config_versions if parent_rpcs.respond_to? :list_device_config_versions @list_device_config_versions = ::Gapic::Config::Method.new list_device_config_versions_config list_device_states_config = parent_rpcs.list_device_states if parent_rpcs.respond_to? :list_device_states @list_device_states = ::Gapic::Config::Method.new list_device_states_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new send_command_to_device_config = parent_rpcs.send_command_to_device if parent_rpcs.respond_to? :send_command_to_device @send_command_to_device = ::Gapic::Config::Method.new send_command_to_device_config bind_device_to_gateway_config = parent_rpcs.bind_device_to_gateway if parent_rpcs.respond_to? :bind_device_to_gateway @bind_device_to_gateway = ::Gapic::Config::Method.new bind_device_to_gateway_config unbind_device_from_gateway_config = parent_rpcs.unbind_device_from_gateway if parent_rpcs.respond_to? :unbind_device_from_gateway @unbind_device_from_gateway = ::Gapic::Config::Method.new unbind_device_from_gateway_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.
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 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 |
# File 'lib/google/cloud/iot/v1/device_manager/client.rb', line 2101 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "cloudiot.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the DeviceManager API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_device_registry` # @return [::Gapic::Config::Method] # attr_reader :create_device_registry ## # RPC-specific configuration for `get_device_registry` # @return [::Gapic::Config::Method] # attr_reader :get_device_registry ## # RPC-specific configuration for `update_device_registry` # @return [::Gapic::Config::Method] # attr_reader :update_device_registry ## # RPC-specific configuration for `delete_device_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_device_registry ## # RPC-specific configuration for `list_device_registries` # @return [::Gapic::Config::Method] # attr_reader :list_device_registries ## # RPC-specific configuration for `create_device` # @return [::Gapic::Config::Method] # attr_reader :create_device ## # RPC-specific configuration for `get_device` # @return [::Gapic::Config::Method] # attr_reader :get_device ## # RPC-specific configuration for `update_device` # @return [::Gapic::Config::Method] # attr_reader :update_device ## # RPC-specific configuration for `delete_device` # @return [::Gapic::Config::Method] # attr_reader :delete_device ## # RPC-specific configuration for `list_devices` # @return [::Gapic::Config::Method] # attr_reader :list_devices ## # RPC-specific configuration for `modify_cloud_to_device_config` # @return [::Gapic::Config::Method] # attr_reader :modify_cloud_to_device_config ## # RPC-specific configuration for `list_device_config_versions` # @return [::Gapic::Config::Method] # attr_reader :list_device_config_versions ## # RPC-specific configuration for `list_device_states` # @return [::Gapic::Config::Method] # attr_reader :list_device_states ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `send_command_to_device` # @return [::Gapic::Config::Method] # attr_reader :send_command_to_device ## # RPC-specific configuration for `bind_device_to_gateway` # @return [::Gapic::Config::Method] # attr_reader :bind_device_to_gateway ## # RPC-specific configuration for `unbind_device_from_gateway` # @return [::Gapic::Config::Method] # attr_reader :unbind_device_from_gateway # @private def initialize parent_rpcs = nil create_device_registry_config = parent_rpcs.create_device_registry if parent_rpcs.respond_to? :create_device_registry @create_device_registry = ::Gapic::Config::Method.new create_device_registry_config get_device_registry_config = parent_rpcs.get_device_registry if parent_rpcs.respond_to? :get_device_registry @get_device_registry = ::Gapic::Config::Method.new get_device_registry_config update_device_registry_config = parent_rpcs.update_device_registry if parent_rpcs.respond_to? :update_device_registry @update_device_registry = ::Gapic::Config::Method.new update_device_registry_config delete_device_registry_config = parent_rpcs.delete_device_registry if parent_rpcs.respond_to? :delete_device_registry @delete_device_registry = ::Gapic::Config::Method.new delete_device_registry_config list_device_registries_config = parent_rpcs.list_device_registries if parent_rpcs.respond_to? :list_device_registries @list_device_registries = ::Gapic::Config::Method.new list_device_registries_config create_device_config = parent_rpcs.create_device if parent_rpcs.respond_to? :create_device @create_device = ::Gapic::Config::Method.new create_device_config get_device_config = parent_rpcs.get_device if parent_rpcs.respond_to? :get_device @get_device = ::Gapic::Config::Method.new get_device_config update_device_config = parent_rpcs.update_device if parent_rpcs.respond_to? :update_device @update_device = ::Gapic::Config::Method.new update_device_config delete_device_config = parent_rpcs.delete_device if parent_rpcs.respond_to? :delete_device @delete_device = ::Gapic::Config::Method.new delete_device_config list_devices_config = parent_rpcs.list_devices if parent_rpcs.respond_to? :list_devices @list_devices = ::Gapic::Config::Method.new list_devices_config modify_cloud_to_device_config_config = parent_rpcs.modify_cloud_to_device_config if parent_rpcs.respond_to? :modify_cloud_to_device_config @modify_cloud_to_device_config = ::Gapic::Config::Method.new modify_cloud_to_device_config_config list_device_config_versions_config = parent_rpcs.list_device_config_versions if parent_rpcs.respond_to? :list_device_config_versions @list_device_config_versions = ::Gapic::Config::Method.new list_device_config_versions_config list_device_states_config = parent_rpcs.list_device_states if parent_rpcs.respond_to? :list_device_states @list_device_states = ::Gapic::Config::Method.new list_device_states_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new send_command_to_device_config = parent_rpcs.send_command_to_device if parent_rpcs.respond_to? :send_command_to_device @send_command_to_device = ::Gapic::Config::Method.new send_command_to_device_config bind_device_to_gateway_config = parent_rpcs.bind_device_to_gateway if parent_rpcs.respond_to? :bind_device_to_gateway @bind_device_to_gateway = ::Gapic::Config::Method.new bind_device_to_gateway_config unbind_device_from_gateway_config = parent_rpcs.unbind_device_from_gateway if parent_rpcs.respond_to? :unbind_device_from_gateway @unbind_device_from_gateway = ::Gapic::Config::Method.new unbind_device_from_gateway_config yield self if block_given? end end end |
#interceptors ⇒ ::Array<::GRPC::ClientInterceptor>
An array of interceptors that are run before calls are executed.
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 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 |
# File 'lib/google/cloud/iot/v1/device_manager/client.rb', line 2101 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "cloudiot.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the DeviceManager API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_device_registry` # @return [::Gapic::Config::Method] # attr_reader :create_device_registry ## # RPC-specific configuration for `get_device_registry` # @return [::Gapic::Config::Method] # attr_reader :get_device_registry ## # RPC-specific configuration for `update_device_registry` # @return [::Gapic::Config::Method] # attr_reader :update_device_registry ## # RPC-specific configuration for `delete_device_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_device_registry ## # RPC-specific configuration for `list_device_registries` # @return [::Gapic::Config::Method] # attr_reader :list_device_registries ## # RPC-specific configuration for `create_device` # @return [::Gapic::Config::Method] # attr_reader :create_device ## # RPC-specific configuration for `get_device` # @return [::Gapic::Config::Method] # attr_reader :get_device ## # RPC-specific configuration for `update_device` # @return [::Gapic::Config::Method] # attr_reader :update_device ## # RPC-specific configuration for `delete_device` # @return [::Gapic::Config::Method] # attr_reader :delete_device ## # RPC-specific configuration for `list_devices` # @return [::Gapic::Config::Method] # attr_reader :list_devices ## # RPC-specific configuration for `modify_cloud_to_device_config` # @return [::Gapic::Config::Method] # attr_reader :modify_cloud_to_device_config ## # RPC-specific configuration for `list_device_config_versions` # @return [::Gapic::Config::Method] # attr_reader :list_device_config_versions ## # RPC-specific configuration for `list_device_states` # @return [::Gapic::Config::Method] # attr_reader :list_device_states ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `send_command_to_device` # @return [::Gapic::Config::Method] # attr_reader :send_command_to_device ## # RPC-specific configuration for `bind_device_to_gateway` # @return [::Gapic::Config::Method] # attr_reader :bind_device_to_gateway ## # RPC-specific configuration for `unbind_device_from_gateway` # @return [::Gapic::Config::Method] # attr_reader :unbind_device_from_gateway # @private def initialize parent_rpcs = nil create_device_registry_config = parent_rpcs.create_device_registry if parent_rpcs.respond_to? :create_device_registry @create_device_registry = ::Gapic::Config::Method.new create_device_registry_config get_device_registry_config = parent_rpcs.get_device_registry if parent_rpcs.respond_to? :get_device_registry @get_device_registry = ::Gapic::Config::Method.new get_device_registry_config update_device_registry_config = parent_rpcs.update_device_registry if parent_rpcs.respond_to? :update_device_registry @update_device_registry = ::Gapic::Config::Method.new update_device_registry_config delete_device_registry_config = parent_rpcs.delete_device_registry if parent_rpcs.respond_to? :delete_device_registry @delete_device_registry = ::Gapic::Config::Method.new delete_device_registry_config list_device_registries_config = parent_rpcs.list_device_registries if parent_rpcs.respond_to? :list_device_registries @list_device_registries = ::Gapic::Config::Method.new list_device_registries_config create_device_config = parent_rpcs.create_device if parent_rpcs.respond_to? :create_device @create_device = ::Gapic::Config::Method.new create_device_config get_device_config = parent_rpcs.get_device if parent_rpcs.respond_to? :get_device @get_device = ::Gapic::Config::Method.new get_device_config update_device_config = parent_rpcs.update_device if parent_rpcs.respond_to? :update_device @update_device = ::Gapic::Config::Method.new update_device_config delete_device_config = parent_rpcs.delete_device if parent_rpcs.respond_to? :delete_device @delete_device = ::Gapic::Config::Method.new delete_device_config list_devices_config = parent_rpcs.list_devices if parent_rpcs.respond_to? :list_devices @list_devices = ::Gapic::Config::Method.new list_devices_config modify_cloud_to_device_config_config = parent_rpcs.modify_cloud_to_device_config if parent_rpcs.respond_to? :modify_cloud_to_device_config @modify_cloud_to_device_config = ::Gapic::Config::Method.new modify_cloud_to_device_config_config list_device_config_versions_config = parent_rpcs.list_device_config_versions if parent_rpcs.respond_to? :list_device_config_versions @list_device_config_versions = ::Gapic::Config::Method.new list_device_config_versions_config list_device_states_config = parent_rpcs.list_device_states if parent_rpcs.respond_to? :list_device_states @list_device_states = ::Gapic::Config::Method.new list_device_states_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new send_command_to_device_config = parent_rpcs.send_command_to_device if parent_rpcs.respond_to? :send_command_to_device @send_command_to_device = ::Gapic::Config::Method.new send_command_to_device_config bind_device_to_gateway_config = parent_rpcs.bind_device_to_gateway if parent_rpcs.respond_to? :bind_device_to_gateway @bind_device_to_gateway = ::Gapic::Config::Method.new bind_device_to_gateway_config unbind_device_from_gateway_config = parent_rpcs.unbind_device_from_gateway if parent_rpcs.respond_to? :unbind_device_from_gateway @unbind_device_from_gateway = ::Gapic::Config::Method.new unbind_device_from_gateway_config yield self if block_given? end end end |
#lib_name ⇒ ::String
The library name as recorded in instrumentation and logging
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 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 |
# File 'lib/google/cloud/iot/v1/device_manager/client.rb', line 2101 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "cloudiot.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the DeviceManager API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_device_registry` # @return [::Gapic::Config::Method] # attr_reader :create_device_registry ## # RPC-specific configuration for `get_device_registry` # @return [::Gapic::Config::Method] # attr_reader :get_device_registry ## # RPC-specific configuration for `update_device_registry` # @return [::Gapic::Config::Method] # attr_reader :update_device_registry ## # RPC-specific configuration for `delete_device_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_device_registry ## # RPC-specific configuration for `list_device_registries` # @return [::Gapic::Config::Method] # attr_reader :list_device_registries ## # RPC-specific configuration for `create_device` # @return [::Gapic::Config::Method] # attr_reader :create_device ## # RPC-specific configuration for `get_device` # @return [::Gapic::Config::Method] # attr_reader :get_device ## # RPC-specific configuration for `update_device` # @return [::Gapic::Config::Method] # attr_reader :update_device ## # RPC-specific configuration for `delete_device` # @return [::Gapic::Config::Method] # attr_reader :delete_device ## # RPC-specific configuration for `list_devices` # @return [::Gapic::Config::Method] # attr_reader :list_devices ## # RPC-specific configuration for `modify_cloud_to_device_config` # @return [::Gapic::Config::Method] # attr_reader :modify_cloud_to_device_config ## # RPC-specific configuration for `list_device_config_versions` # @return [::Gapic::Config::Method] # attr_reader :list_device_config_versions ## # RPC-specific configuration for `list_device_states` # @return [::Gapic::Config::Method] # attr_reader :list_device_states ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `send_command_to_device` # @return [::Gapic::Config::Method] # attr_reader :send_command_to_device ## # RPC-specific configuration for `bind_device_to_gateway` # @return [::Gapic::Config::Method] # attr_reader :bind_device_to_gateway ## # RPC-specific configuration for `unbind_device_from_gateway` # @return [::Gapic::Config::Method] # attr_reader :unbind_device_from_gateway # @private def initialize parent_rpcs = nil create_device_registry_config = parent_rpcs.create_device_registry if parent_rpcs.respond_to? :create_device_registry @create_device_registry = ::Gapic::Config::Method.new create_device_registry_config get_device_registry_config = parent_rpcs.get_device_registry if parent_rpcs.respond_to? :get_device_registry @get_device_registry = ::Gapic::Config::Method.new get_device_registry_config update_device_registry_config = parent_rpcs.update_device_registry if parent_rpcs.respond_to? :update_device_registry @update_device_registry = ::Gapic::Config::Method.new update_device_registry_config delete_device_registry_config = parent_rpcs.delete_device_registry if parent_rpcs.respond_to? :delete_device_registry @delete_device_registry = ::Gapic::Config::Method.new delete_device_registry_config list_device_registries_config = parent_rpcs.list_device_registries if parent_rpcs.respond_to? :list_device_registries @list_device_registries = ::Gapic::Config::Method.new list_device_registries_config create_device_config = parent_rpcs.create_device if parent_rpcs.respond_to? :create_device @create_device = ::Gapic::Config::Method.new create_device_config get_device_config = parent_rpcs.get_device if parent_rpcs.respond_to? :get_device @get_device = ::Gapic::Config::Method.new get_device_config update_device_config = parent_rpcs.update_device if parent_rpcs.respond_to? :update_device @update_device = ::Gapic::Config::Method.new update_device_config delete_device_config = parent_rpcs.delete_device if parent_rpcs.respond_to? :delete_device @delete_device = ::Gapic::Config::Method.new delete_device_config list_devices_config = parent_rpcs.list_devices if parent_rpcs.respond_to? :list_devices @list_devices = ::Gapic::Config::Method.new list_devices_config modify_cloud_to_device_config_config = parent_rpcs.modify_cloud_to_device_config if parent_rpcs.respond_to? :modify_cloud_to_device_config @modify_cloud_to_device_config = ::Gapic::Config::Method.new modify_cloud_to_device_config_config list_device_config_versions_config = parent_rpcs.list_device_config_versions if parent_rpcs.respond_to? :list_device_config_versions @list_device_config_versions = ::Gapic::Config::Method.new list_device_config_versions_config list_device_states_config = parent_rpcs.list_device_states if parent_rpcs.respond_to? :list_device_states @list_device_states = ::Gapic::Config::Method.new list_device_states_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new send_command_to_device_config = parent_rpcs.send_command_to_device if parent_rpcs.respond_to? :send_command_to_device @send_command_to_device = ::Gapic::Config::Method.new send_command_to_device_config bind_device_to_gateway_config = parent_rpcs.bind_device_to_gateway if parent_rpcs.respond_to? :bind_device_to_gateway @bind_device_to_gateway = ::Gapic::Config::Method.new bind_device_to_gateway_config unbind_device_from_gateway_config = parent_rpcs.unbind_device_from_gateway if parent_rpcs.respond_to? :unbind_device_from_gateway @unbind_device_from_gateway = ::Gapic::Config::Method.new unbind_device_from_gateway_config yield self if block_given? end end end |
#lib_version ⇒ ::String
The library version as recorded in instrumentation and logging
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 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 |
# File 'lib/google/cloud/iot/v1/device_manager/client.rb', line 2101 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "cloudiot.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the DeviceManager API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_device_registry` # @return [::Gapic::Config::Method] # attr_reader :create_device_registry ## # RPC-specific configuration for `get_device_registry` # @return [::Gapic::Config::Method] # attr_reader :get_device_registry ## # RPC-specific configuration for `update_device_registry` # @return [::Gapic::Config::Method] # attr_reader :update_device_registry ## # RPC-specific configuration for `delete_device_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_device_registry ## # RPC-specific configuration for `list_device_registries` # @return [::Gapic::Config::Method] # attr_reader :list_device_registries ## # RPC-specific configuration for `create_device` # @return [::Gapic::Config::Method] # attr_reader :create_device ## # RPC-specific configuration for `get_device` # @return [::Gapic::Config::Method] # attr_reader :get_device ## # RPC-specific configuration for `update_device` # @return [::Gapic::Config::Method] # attr_reader :update_device ## # RPC-specific configuration for `delete_device` # @return [::Gapic::Config::Method] # attr_reader :delete_device ## # RPC-specific configuration for `list_devices` # @return [::Gapic::Config::Method] # attr_reader :list_devices ## # RPC-specific configuration for `modify_cloud_to_device_config` # @return [::Gapic::Config::Method] # attr_reader :modify_cloud_to_device_config ## # RPC-specific configuration for `list_device_config_versions` # @return [::Gapic::Config::Method] # attr_reader :list_device_config_versions ## # RPC-specific configuration for `list_device_states` # @return [::Gapic::Config::Method] # attr_reader :list_device_states ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `send_command_to_device` # @return [::Gapic::Config::Method] # attr_reader :send_command_to_device ## # RPC-specific configuration for `bind_device_to_gateway` # @return [::Gapic::Config::Method] # attr_reader :bind_device_to_gateway ## # RPC-specific configuration for `unbind_device_from_gateway` # @return [::Gapic::Config::Method] # attr_reader :unbind_device_from_gateway # @private def initialize parent_rpcs = nil create_device_registry_config = parent_rpcs.create_device_registry if parent_rpcs.respond_to? :create_device_registry @create_device_registry = ::Gapic::Config::Method.new create_device_registry_config get_device_registry_config = parent_rpcs.get_device_registry if parent_rpcs.respond_to? :get_device_registry @get_device_registry = ::Gapic::Config::Method.new get_device_registry_config update_device_registry_config = parent_rpcs.update_device_registry if parent_rpcs.respond_to? :update_device_registry @update_device_registry = ::Gapic::Config::Method.new update_device_registry_config delete_device_registry_config = parent_rpcs.delete_device_registry if parent_rpcs.respond_to? :delete_device_registry @delete_device_registry = ::Gapic::Config::Method.new delete_device_registry_config list_device_registries_config = parent_rpcs.list_device_registries if parent_rpcs.respond_to? :list_device_registries @list_device_registries = ::Gapic::Config::Method.new list_device_registries_config create_device_config = parent_rpcs.create_device if parent_rpcs.respond_to? :create_device @create_device = ::Gapic::Config::Method.new create_device_config get_device_config = parent_rpcs.get_device if parent_rpcs.respond_to? :get_device @get_device = ::Gapic::Config::Method.new get_device_config update_device_config = parent_rpcs.update_device if parent_rpcs.respond_to? :update_device @update_device = ::Gapic::Config::Method.new update_device_config delete_device_config = parent_rpcs.delete_device if parent_rpcs.respond_to? :delete_device @delete_device = ::Gapic::Config::Method.new delete_device_config list_devices_config = parent_rpcs.list_devices if parent_rpcs.respond_to? :list_devices @list_devices = ::Gapic::Config::Method.new list_devices_config modify_cloud_to_device_config_config = parent_rpcs.modify_cloud_to_device_config if parent_rpcs.respond_to? :modify_cloud_to_device_config @modify_cloud_to_device_config = ::Gapic::Config::Method.new modify_cloud_to_device_config_config list_device_config_versions_config = parent_rpcs.list_device_config_versions if parent_rpcs.respond_to? :list_device_config_versions @list_device_config_versions = ::Gapic::Config::Method.new list_device_config_versions_config list_device_states_config = parent_rpcs.list_device_states if parent_rpcs.respond_to? :list_device_states @list_device_states = ::Gapic::Config::Method.new list_device_states_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new send_command_to_device_config = parent_rpcs.send_command_to_device if parent_rpcs.respond_to? :send_command_to_device @send_command_to_device = ::Gapic::Config::Method.new send_command_to_device_config bind_device_to_gateway_config = parent_rpcs.bind_device_to_gateway if parent_rpcs.respond_to? :bind_device_to_gateway @bind_device_to_gateway = ::Gapic::Config::Method.new bind_device_to_gateway_config unbind_device_from_gateway_config = parent_rpcs.unbind_device_from_gateway if parent_rpcs.respond_to? :unbind_device_from_gateway @unbind_device_from_gateway = ::Gapic::Config::Method.new unbind_device_from_gateway_config yield self if block_given? end end end |
#metadata ⇒ ::Hash{::Symbol=>::String}
Additional gRPC headers to be sent with the call.
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 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 |
# File 'lib/google/cloud/iot/v1/device_manager/client.rb', line 2101 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "cloudiot.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the DeviceManager API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_device_registry` # @return [::Gapic::Config::Method] # attr_reader :create_device_registry ## # RPC-specific configuration for `get_device_registry` # @return [::Gapic::Config::Method] # attr_reader :get_device_registry ## # RPC-specific configuration for `update_device_registry` # @return [::Gapic::Config::Method] # attr_reader :update_device_registry ## # RPC-specific configuration for `delete_device_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_device_registry ## # RPC-specific configuration for `list_device_registries` # @return [::Gapic::Config::Method] # attr_reader :list_device_registries ## # RPC-specific configuration for `create_device` # @return [::Gapic::Config::Method] # attr_reader :create_device ## # RPC-specific configuration for `get_device` # @return [::Gapic::Config::Method] # attr_reader :get_device ## # RPC-specific configuration for `update_device` # @return [::Gapic::Config::Method] # attr_reader :update_device ## # RPC-specific configuration for `delete_device` # @return [::Gapic::Config::Method] # attr_reader :delete_device ## # RPC-specific configuration for `list_devices` # @return [::Gapic::Config::Method] # attr_reader :list_devices ## # RPC-specific configuration for `modify_cloud_to_device_config` # @return [::Gapic::Config::Method] # attr_reader :modify_cloud_to_device_config ## # RPC-specific configuration for `list_device_config_versions` # @return [::Gapic::Config::Method] # attr_reader :list_device_config_versions ## # RPC-specific configuration for `list_device_states` # @return [::Gapic::Config::Method] # attr_reader :list_device_states ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `send_command_to_device` # @return [::Gapic::Config::Method] # attr_reader :send_command_to_device ## # RPC-specific configuration for `bind_device_to_gateway` # @return [::Gapic::Config::Method] # attr_reader :bind_device_to_gateway ## # RPC-specific configuration for `unbind_device_from_gateway` # @return [::Gapic::Config::Method] # attr_reader :unbind_device_from_gateway # @private def initialize parent_rpcs = nil create_device_registry_config = parent_rpcs.create_device_registry if parent_rpcs.respond_to? :create_device_registry @create_device_registry = ::Gapic::Config::Method.new create_device_registry_config get_device_registry_config = parent_rpcs.get_device_registry if parent_rpcs.respond_to? :get_device_registry @get_device_registry = ::Gapic::Config::Method.new get_device_registry_config update_device_registry_config = parent_rpcs.update_device_registry if parent_rpcs.respond_to? :update_device_registry @update_device_registry = ::Gapic::Config::Method.new update_device_registry_config delete_device_registry_config = parent_rpcs.delete_device_registry if parent_rpcs.respond_to? :delete_device_registry @delete_device_registry = ::Gapic::Config::Method.new delete_device_registry_config list_device_registries_config = parent_rpcs.list_device_registries if parent_rpcs.respond_to? :list_device_registries @list_device_registries = ::Gapic::Config::Method.new list_device_registries_config create_device_config = parent_rpcs.create_device if parent_rpcs.respond_to? :create_device @create_device = ::Gapic::Config::Method.new create_device_config get_device_config = parent_rpcs.get_device if parent_rpcs.respond_to? :get_device @get_device = ::Gapic::Config::Method.new get_device_config update_device_config = parent_rpcs.update_device if parent_rpcs.respond_to? :update_device @update_device = ::Gapic::Config::Method.new update_device_config delete_device_config = parent_rpcs.delete_device if parent_rpcs.respond_to? :delete_device @delete_device = ::Gapic::Config::Method.new delete_device_config list_devices_config = parent_rpcs.list_devices if parent_rpcs.respond_to? :list_devices @list_devices = ::Gapic::Config::Method.new list_devices_config modify_cloud_to_device_config_config = parent_rpcs.modify_cloud_to_device_config if parent_rpcs.respond_to? :modify_cloud_to_device_config @modify_cloud_to_device_config = ::Gapic::Config::Method.new modify_cloud_to_device_config_config list_device_config_versions_config = parent_rpcs.list_device_config_versions if parent_rpcs.respond_to? :list_device_config_versions @list_device_config_versions = ::Gapic::Config::Method.new list_device_config_versions_config list_device_states_config = parent_rpcs.list_device_states if parent_rpcs.respond_to? :list_device_states @list_device_states = ::Gapic::Config::Method.new list_device_states_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new send_command_to_device_config = parent_rpcs.send_command_to_device if parent_rpcs.respond_to? :send_command_to_device @send_command_to_device = ::Gapic::Config::Method.new send_command_to_device_config bind_device_to_gateway_config = parent_rpcs.bind_device_to_gateway if parent_rpcs.respond_to? :bind_device_to_gateway @bind_device_to_gateway = ::Gapic::Config::Method.new bind_device_to_gateway_config unbind_device_from_gateway_config = parent_rpcs.unbind_device_from_gateway if parent_rpcs.respond_to? :unbind_device_from_gateway @unbind_device_from_gateway = ::Gapic::Config::Method.new unbind_device_from_gateway_config yield self if block_given? end end end |
#quota_project ⇒ ::String
A separate project against which to charge quota.
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 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 |
# File 'lib/google/cloud/iot/v1/device_manager/client.rb', line 2101 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "cloudiot.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the DeviceManager API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_device_registry` # @return [::Gapic::Config::Method] # attr_reader :create_device_registry ## # RPC-specific configuration for `get_device_registry` # @return [::Gapic::Config::Method] # attr_reader :get_device_registry ## # RPC-specific configuration for `update_device_registry` # @return [::Gapic::Config::Method] # attr_reader :update_device_registry ## # RPC-specific configuration for `delete_device_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_device_registry ## # RPC-specific configuration for `list_device_registries` # @return [::Gapic::Config::Method] # attr_reader :list_device_registries ## # RPC-specific configuration for `create_device` # @return [::Gapic::Config::Method] # attr_reader :create_device ## # RPC-specific configuration for `get_device` # @return [::Gapic::Config::Method] # attr_reader :get_device ## # RPC-specific configuration for `update_device` # @return [::Gapic::Config::Method] # attr_reader :update_device ## # RPC-specific configuration for `delete_device` # @return [::Gapic::Config::Method] # attr_reader :delete_device ## # RPC-specific configuration for `list_devices` # @return [::Gapic::Config::Method] # attr_reader :list_devices ## # RPC-specific configuration for `modify_cloud_to_device_config` # @return [::Gapic::Config::Method] # attr_reader :modify_cloud_to_device_config ## # RPC-specific configuration for `list_device_config_versions` # @return [::Gapic::Config::Method] # attr_reader :list_device_config_versions ## # RPC-specific configuration for `list_device_states` # @return [::Gapic::Config::Method] # attr_reader :list_device_states ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `send_command_to_device` # @return [::Gapic::Config::Method] # attr_reader :send_command_to_device ## # RPC-specific configuration for `bind_device_to_gateway` # @return [::Gapic::Config::Method] # attr_reader :bind_device_to_gateway ## # RPC-specific configuration for `unbind_device_from_gateway` # @return [::Gapic::Config::Method] # attr_reader :unbind_device_from_gateway # @private def initialize parent_rpcs = nil create_device_registry_config = parent_rpcs.create_device_registry if parent_rpcs.respond_to? :create_device_registry @create_device_registry = ::Gapic::Config::Method.new create_device_registry_config get_device_registry_config = parent_rpcs.get_device_registry if parent_rpcs.respond_to? :get_device_registry @get_device_registry = ::Gapic::Config::Method.new get_device_registry_config update_device_registry_config = parent_rpcs.update_device_registry if parent_rpcs.respond_to? :update_device_registry @update_device_registry = ::Gapic::Config::Method.new update_device_registry_config delete_device_registry_config = parent_rpcs.delete_device_registry if parent_rpcs.respond_to? :delete_device_registry @delete_device_registry = ::Gapic::Config::Method.new delete_device_registry_config list_device_registries_config = parent_rpcs.list_device_registries if parent_rpcs.respond_to? :list_device_registries @list_device_registries = ::Gapic::Config::Method.new list_device_registries_config create_device_config = parent_rpcs.create_device if parent_rpcs.respond_to? :create_device @create_device = ::Gapic::Config::Method.new create_device_config get_device_config = parent_rpcs.get_device if parent_rpcs.respond_to? :get_device @get_device = ::Gapic::Config::Method.new get_device_config update_device_config = parent_rpcs.update_device if parent_rpcs.respond_to? :update_device @update_device = ::Gapic::Config::Method.new update_device_config delete_device_config = parent_rpcs.delete_device if parent_rpcs.respond_to? :delete_device @delete_device = ::Gapic::Config::Method.new delete_device_config list_devices_config = parent_rpcs.list_devices if parent_rpcs.respond_to? :list_devices @list_devices = ::Gapic::Config::Method.new list_devices_config modify_cloud_to_device_config_config = parent_rpcs.modify_cloud_to_device_config if parent_rpcs.respond_to? :modify_cloud_to_device_config @modify_cloud_to_device_config = ::Gapic::Config::Method.new modify_cloud_to_device_config_config list_device_config_versions_config = parent_rpcs.list_device_config_versions if parent_rpcs.respond_to? :list_device_config_versions @list_device_config_versions = ::Gapic::Config::Method.new list_device_config_versions_config list_device_states_config = parent_rpcs.list_device_states if parent_rpcs.respond_to? :list_device_states @list_device_states = ::Gapic::Config::Method.new list_device_states_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new send_command_to_device_config = parent_rpcs.send_command_to_device if parent_rpcs.respond_to? :send_command_to_device @send_command_to_device = ::Gapic::Config::Method.new send_command_to_device_config bind_device_to_gateway_config = parent_rpcs.bind_device_to_gateway if parent_rpcs.respond_to? :bind_device_to_gateway @bind_device_to_gateway = ::Gapic::Config::Method.new bind_device_to_gateway_config unbind_device_from_gateway_config = parent_rpcs.unbind_device_from_gateway if parent_rpcs.respond_to? :unbind_device_from_gateway @unbind_device_from_gateway = ::Gapic::Config::Method.new unbind_device_from_gateway_config yield self if block_given? end end end |
#retry_policy ⇒ ::Hash
The retry policy. The value is a hash with the following keys:
-
:initial_delay
(type:Numeric
) - The initial delay in seconds. -
:max_delay
(type:Numeric
) - The max delay in seconds. -
:multiplier
(type:Numeric
) - The incremental backoff multiplier. -
:retry_codes
(type:Array<String>
) - The error codes that should trigger a retry.
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 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 |
# File 'lib/google/cloud/iot/v1/device_manager/client.rb', line 2101 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "cloudiot.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the DeviceManager API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_device_registry` # @return [::Gapic::Config::Method] # attr_reader :create_device_registry ## # RPC-specific configuration for `get_device_registry` # @return [::Gapic::Config::Method] # attr_reader :get_device_registry ## # RPC-specific configuration for `update_device_registry` # @return [::Gapic::Config::Method] # attr_reader :update_device_registry ## # RPC-specific configuration for `delete_device_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_device_registry ## # RPC-specific configuration for `list_device_registries` # @return [::Gapic::Config::Method] # attr_reader :list_device_registries ## # RPC-specific configuration for `create_device` # @return [::Gapic::Config::Method] # attr_reader :create_device ## # RPC-specific configuration for `get_device` # @return [::Gapic::Config::Method] # attr_reader :get_device ## # RPC-specific configuration for `update_device` # @return [::Gapic::Config::Method] # attr_reader :update_device ## # RPC-specific configuration for `delete_device` # @return [::Gapic::Config::Method] # attr_reader :delete_device ## # RPC-specific configuration for `list_devices` # @return [::Gapic::Config::Method] # attr_reader :list_devices ## # RPC-specific configuration for `modify_cloud_to_device_config` # @return [::Gapic::Config::Method] # attr_reader :modify_cloud_to_device_config ## # RPC-specific configuration for `list_device_config_versions` # @return [::Gapic::Config::Method] # attr_reader :list_device_config_versions ## # RPC-specific configuration for `list_device_states` # @return [::Gapic::Config::Method] # attr_reader :list_device_states ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `send_command_to_device` # @return [::Gapic::Config::Method] # attr_reader :send_command_to_device ## # RPC-specific configuration for `bind_device_to_gateway` # @return [::Gapic::Config::Method] # attr_reader :bind_device_to_gateway ## # RPC-specific configuration for `unbind_device_from_gateway` # @return [::Gapic::Config::Method] # attr_reader :unbind_device_from_gateway # @private def initialize parent_rpcs = nil create_device_registry_config = parent_rpcs.create_device_registry if parent_rpcs.respond_to? :create_device_registry @create_device_registry = ::Gapic::Config::Method.new create_device_registry_config get_device_registry_config = parent_rpcs.get_device_registry if parent_rpcs.respond_to? :get_device_registry @get_device_registry = ::Gapic::Config::Method.new get_device_registry_config update_device_registry_config = parent_rpcs.update_device_registry if parent_rpcs.respond_to? :update_device_registry @update_device_registry = ::Gapic::Config::Method.new update_device_registry_config delete_device_registry_config = parent_rpcs.delete_device_registry if parent_rpcs.respond_to? :delete_device_registry @delete_device_registry = ::Gapic::Config::Method.new delete_device_registry_config list_device_registries_config = parent_rpcs.list_device_registries if parent_rpcs.respond_to? :list_device_registries @list_device_registries = ::Gapic::Config::Method.new list_device_registries_config create_device_config = parent_rpcs.create_device if parent_rpcs.respond_to? :create_device @create_device = ::Gapic::Config::Method.new create_device_config get_device_config = parent_rpcs.get_device if parent_rpcs.respond_to? :get_device @get_device = ::Gapic::Config::Method.new get_device_config update_device_config = parent_rpcs.update_device if parent_rpcs.respond_to? :update_device @update_device = ::Gapic::Config::Method.new update_device_config delete_device_config = parent_rpcs.delete_device if parent_rpcs.respond_to? :delete_device @delete_device = ::Gapic::Config::Method.new delete_device_config list_devices_config = parent_rpcs.list_devices if parent_rpcs.respond_to? :list_devices @list_devices = ::Gapic::Config::Method.new list_devices_config modify_cloud_to_device_config_config = parent_rpcs.modify_cloud_to_device_config if parent_rpcs.respond_to? :modify_cloud_to_device_config @modify_cloud_to_device_config = ::Gapic::Config::Method.new modify_cloud_to_device_config_config list_device_config_versions_config = parent_rpcs.list_device_config_versions if parent_rpcs.respond_to? :list_device_config_versions @list_device_config_versions = ::Gapic::Config::Method.new list_device_config_versions_config list_device_states_config = parent_rpcs.list_device_states if parent_rpcs.respond_to? :list_device_states @list_device_states = ::Gapic::Config::Method.new list_device_states_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new send_command_to_device_config = parent_rpcs.send_command_to_device if parent_rpcs.respond_to? :send_command_to_device @send_command_to_device = ::Gapic::Config::Method.new send_command_to_device_config bind_device_to_gateway_config = parent_rpcs.bind_device_to_gateway if parent_rpcs.respond_to? :bind_device_to_gateway @bind_device_to_gateway = ::Gapic::Config::Method.new bind_device_to_gateway_config unbind_device_from_gateway_config = parent_rpcs.unbind_device_from_gateway if parent_rpcs.respond_to? :unbind_device_from_gateway @unbind_device_from_gateway = ::Gapic::Config::Method.new unbind_device_from_gateway_config yield self if block_given? end end end |
#scope ⇒ ::Array<::String>
The OAuth scopes
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 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 |
# File 'lib/google/cloud/iot/v1/device_manager/client.rb', line 2101 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "cloudiot.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the DeviceManager API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_device_registry` # @return [::Gapic::Config::Method] # attr_reader :create_device_registry ## # RPC-specific configuration for `get_device_registry` # @return [::Gapic::Config::Method] # attr_reader :get_device_registry ## # RPC-specific configuration for `update_device_registry` # @return [::Gapic::Config::Method] # attr_reader :update_device_registry ## # RPC-specific configuration for `delete_device_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_device_registry ## # RPC-specific configuration for `list_device_registries` # @return [::Gapic::Config::Method] # attr_reader :list_device_registries ## # RPC-specific configuration for `create_device` # @return [::Gapic::Config::Method] # attr_reader :create_device ## # RPC-specific configuration for `get_device` # @return [::Gapic::Config::Method] # attr_reader :get_device ## # RPC-specific configuration for `update_device` # @return [::Gapic::Config::Method] # attr_reader :update_device ## # RPC-specific configuration for `delete_device` # @return [::Gapic::Config::Method] # attr_reader :delete_device ## # RPC-specific configuration for `list_devices` # @return [::Gapic::Config::Method] # attr_reader :list_devices ## # RPC-specific configuration for `modify_cloud_to_device_config` # @return [::Gapic::Config::Method] # attr_reader :modify_cloud_to_device_config ## # RPC-specific configuration for `list_device_config_versions` # @return [::Gapic::Config::Method] # attr_reader :list_device_config_versions ## # RPC-specific configuration for `list_device_states` # @return [::Gapic::Config::Method] # attr_reader :list_device_states ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `send_command_to_device` # @return [::Gapic::Config::Method] # attr_reader :send_command_to_device ## # RPC-specific configuration for `bind_device_to_gateway` # @return [::Gapic::Config::Method] # attr_reader :bind_device_to_gateway ## # RPC-specific configuration for `unbind_device_from_gateway` # @return [::Gapic::Config::Method] # attr_reader :unbind_device_from_gateway # @private def initialize parent_rpcs = nil create_device_registry_config = parent_rpcs.create_device_registry if parent_rpcs.respond_to? :create_device_registry @create_device_registry = ::Gapic::Config::Method.new create_device_registry_config get_device_registry_config = parent_rpcs.get_device_registry if parent_rpcs.respond_to? :get_device_registry @get_device_registry = ::Gapic::Config::Method.new get_device_registry_config update_device_registry_config = parent_rpcs.update_device_registry if parent_rpcs.respond_to? :update_device_registry @update_device_registry = ::Gapic::Config::Method.new update_device_registry_config delete_device_registry_config = parent_rpcs.delete_device_registry if parent_rpcs.respond_to? :delete_device_registry @delete_device_registry = ::Gapic::Config::Method.new delete_device_registry_config list_device_registries_config = parent_rpcs.list_device_registries if parent_rpcs.respond_to? :list_device_registries @list_device_registries = ::Gapic::Config::Method.new list_device_registries_config create_device_config = parent_rpcs.create_device if parent_rpcs.respond_to? :create_device @create_device = ::Gapic::Config::Method.new create_device_config get_device_config = parent_rpcs.get_device if parent_rpcs.respond_to? :get_device @get_device = ::Gapic::Config::Method.new get_device_config update_device_config = parent_rpcs.update_device if parent_rpcs.respond_to? :update_device @update_device = ::Gapic::Config::Method.new update_device_config delete_device_config = parent_rpcs.delete_device if parent_rpcs.respond_to? :delete_device @delete_device = ::Gapic::Config::Method.new delete_device_config list_devices_config = parent_rpcs.list_devices if parent_rpcs.respond_to? :list_devices @list_devices = ::Gapic::Config::Method.new list_devices_config modify_cloud_to_device_config_config = parent_rpcs.modify_cloud_to_device_config if parent_rpcs.respond_to? :modify_cloud_to_device_config @modify_cloud_to_device_config = ::Gapic::Config::Method.new modify_cloud_to_device_config_config list_device_config_versions_config = parent_rpcs.list_device_config_versions if parent_rpcs.respond_to? :list_device_config_versions @list_device_config_versions = ::Gapic::Config::Method.new list_device_config_versions_config list_device_states_config = parent_rpcs.list_device_states if parent_rpcs.respond_to? :list_device_states @list_device_states = ::Gapic::Config::Method.new list_device_states_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new send_command_to_device_config = parent_rpcs.send_command_to_device if parent_rpcs.respond_to? :send_command_to_device @send_command_to_device = ::Gapic::Config::Method.new send_command_to_device_config bind_device_to_gateway_config = parent_rpcs.bind_device_to_gateway if parent_rpcs.respond_to? :bind_device_to_gateway @bind_device_to_gateway = ::Gapic::Config::Method.new bind_device_to_gateway_config unbind_device_from_gateway_config = parent_rpcs.unbind_device_from_gateway if parent_rpcs.respond_to? :unbind_device_from_gateway @unbind_device_from_gateway = ::Gapic::Config::Method.new unbind_device_from_gateway_config yield self if block_given? end end end |
#timeout ⇒ ::Numeric
The call timeout in seconds.
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 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 |
# File 'lib/google/cloud/iot/v1/device_manager/client.rb', line 2101 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "cloudiot.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the DeviceManager API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_device_registry` # @return [::Gapic::Config::Method] # attr_reader :create_device_registry ## # RPC-specific configuration for `get_device_registry` # @return [::Gapic::Config::Method] # attr_reader :get_device_registry ## # RPC-specific configuration for `update_device_registry` # @return [::Gapic::Config::Method] # attr_reader :update_device_registry ## # RPC-specific configuration for `delete_device_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_device_registry ## # RPC-specific configuration for `list_device_registries` # @return [::Gapic::Config::Method] # attr_reader :list_device_registries ## # RPC-specific configuration for `create_device` # @return [::Gapic::Config::Method] # attr_reader :create_device ## # RPC-specific configuration for `get_device` # @return [::Gapic::Config::Method] # attr_reader :get_device ## # RPC-specific configuration for `update_device` # @return [::Gapic::Config::Method] # attr_reader :update_device ## # RPC-specific configuration for `delete_device` # @return [::Gapic::Config::Method] # attr_reader :delete_device ## # RPC-specific configuration for `list_devices` # @return [::Gapic::Config::Method] # attr_reader :list_devices ## # RPC-specific configuration for `modify_cloud_to_device_config` # @return [::Gapic::Config::Method] # attr_reader :modify_cloud_to_device_config ## # RPC-specific configuration for `list_device_config_versions` # @return [::Gapic::Config::Method] # attr_reader :list_device_config_versions ## # RPC-specific configuration for `list_device_states` # @return [::Gapic::Config::Method] # attr_reader :list_device_states ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `send_command_to_device` # @return [::Gapic::Config::Method] # attr_reader :send_command_to_device ## # RPC-specific configuration for `bind_device_to_gateway` # @return [::Gapic::Config::Method] # attr_reader :bind_device_to_gateway ## # RPC-specific configuration for `unbind_device_from_gateway` # @return [::Gapic::Config::Method] # attr_reader :unbind_device_from_gateway # @private def initialize parent_rpcs = nil create_device_registry_config = parent_rpcs.create_device_registry if parent_rpcs.respond_to? :create_device_registry @create_device_registry = ::Gapic::Config::Method.new create_device_registry_config get_device_registry_config = parent_rpcs.get_device_registry if parent_rpcs.respond_to? :get_device_registry @get_device_registry = ::Gapic::Config::Method.new get_device_registry_config update_device_registry_config = parent_rpcs.update_device_registry if parent_rpcs.respond_to? :update_device_registry @update_device_registry = ::Gapic::Config::Method.new update_device_registry_config delete_device_registry_config = parent_rpcs.delete_device_registry if parent_rpcs.respond_to? :delete_device_registry @delete_device_registry = ::Gapic::Config::Method.new delete_device_registry_config list_device_registries_config = parent_rpcs.list_device_registries if parent_rpcs.respond_to? :list_device_registries @list_device_registries = ::Gapic::Config::Method.new list_device_registries_config create_device_config = parent_rpcs.create_device if parent_rpcs.respond_to? :create_device @create_device = ::Gapic::Config::Method.new create_device_config get_device_config = parent_rpcs.get_device if parent_rpcs.respond_to? :get_device @get_device = ::Gapic::Config::Method.new get_device_config update_device_config = parent_rpcs.update_device if parent_rpcs.respond_to? :update_device @update_device = ::Gapic::Config::Method.new update_device_config delete_device_config = parent_rpcs.delete_device if parent_rpcs.respond_to? :delete_device @delete_device = ::Gapic::Config::Method.new delete_device_config list_devices_config = parent_rpcs.list_devices if parent_rpcs.respond_to? :list_devices @list_devices = ::Gapic::Config::Method.new list_devices_config modify_cloud_to_device_config_config = parent_rpcs.modify_cloud_to_device_config if parent_rpcs.respond_to? :modify_cloud_to_device_config @modify_cloud_to_device_config = ::Gapic::Config::Method.new modify_cloud_to_device_config_config list_device_config_versions_config = parent_rpcs.list_device_config_versions if parent_rpcs.respond_to? :list_device_config_versions @list_device_config_versions = ::Gapic::Config::Method.new list_device_config_versions_config list_device_states_config = parent_rpcs.list_device_states if parent_rpcs.respond_to? :list_device_states @list_device_states = ::Gapic::Config::Method.new list_device_states_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new send_command_to_device_config = parent_rpcs.send_command_to_device if parent_rpcs.respond_to? :send_command_to_device @send_command_to_device = ::Gapic::Config::Method.new send_command_to_device_config bind_device_to_gateway_config = parent_rpcs.bind_device_to_gateway if parent_rpcs.respond_to? :bind_device_to_gateway @bind_device_to_gateway = ::Gapic::Config::Method.new bind_device_to_gateway_config unbind_device_from_gateway_config = parent_rpcs.unbind_device_from_gateway if parent_rpcs.respond_to? :unbind_device_from_gateway @unbind_device_from_gateway = ::Gapic::Config::Method.new unbind_device_from_gateway_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).
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 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 |
# File 'lib/google/cloud/iot/v1/device_manager/client.rb', line 2101 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "cloudiot.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the DeviceManager API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_device_registry` # @return [::Gapic::Config::Method] # attr_reader :create_device_registry ## # RPC-specific configuration for `get_device_registry` # @return [::Gapic::Config::Method] # attr_reader :get_device_registry ## # RPC-specific configuration for `update_device_registry` # @return [::Gapic::Config::Method] # attr_reader :update_device_registry ## # RPC-specific configuration for `delete_device_registry` # @return [::Gapic::Config::Method] # attr_reader :delete_device_registry ## # RPC-specific configuration for `list_device_registries` # @return [::Gapic::Config::Method] # attr_reader :list_device_registries ## # RPC-specific configuration for `create_device` # @return [::Gapic::Config::Method] # attr_reader :create_device ## # RPC-specific configuration for `get_device` # @return [::Gapic::Config::Method] # attr_reader :get_device ## # RPC-specific configuration for `update_device` # @return [::Gapic::Config::Method] # attr_reader :update_device ## # RPC-specific configuration for `delete_device` # @return [::Gapic::Config::Method] # attr_reader :delete_device ## # RPC-specific configuration for `list_devices` # @return [::Gapic::Config::Method] # attr_reader :list_devices ## # RPC-specific configuration for `modify_cloud_to_device_config` # @return [::Gapic::Config::Method] # attr_reader :modify_cloud_to_device_config ## # RPC-specific configuration for `list_device_config_versions` # @return [::Gapic::Config::Method] # attr_reader :list_device_config_versions ## # RPC-specific configuration for `list_device_states` # @return [::Gapic::Config::Method] # attr_reader :list_device_states ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions ## # RPC-specific configuration for `send_command_to_device` # @return [::Gapic::Config::Method] # attr_reader :send_command_to_device ## # RPC-specific configuration for `bind_device_to_gateway` # @return [::Gapic::Config::Method] # attr_reader :bind_device_to_gateway ## # RPC-specific configuration for `unbind_device_from_gateway` # @return [::Gapic::Config::Method] # attr_reader :unbind_device_from_gateway # @private def initialize parent_rpcs = nil create_device_registry_config = parent_rpcs.create_device_registry if parent_rpcs.respond_to? :create_device_registry @create_device_registry = ::Gapic::Config::Method.new create_device_registry_config get_device_registry_config = parent_rpcs.get_device_registry if parent_rpcs.respond_to? :get_device_registry @get_device_registry = ::Gapic::Config::Method.new get_device_registry_config update_device_registry_config = parent_rpcs.update_device_registry if parent_rpcs.respond_to? :update_device_registry @update_device_registry = ::Gapic::Config::Method.new update_device_registry_config delete_device_registry_config = parent_rpcs.delete_device_registry if parent_rpcs.respond_to? :delete_device_registry @delete_device_registry = ::Gapic::Config::Method.new delete_device_registry_config list_device_registries_config = parent_rpcs.list_device_registries if parent_rpcs.respond_to? :list_device_registries @list_device_registries = ::Gapic::Config::Method.new list_device_registries_config create_device_config = parent_rpcs.create_device if parent_rpcs.respond_to? :create_device @create_device = ::Gapic::Config::Method.new create_device_config get_device_config = parent_rpcs.get_device if parent_rpcs.respond_to? :get_device @get_device = ::Gapic::Config::Method.new get_device_config update_device_config = parent_rpcs.update_device if parent_rpcs.respond_to? :update_device @update_device = ::Gapic::Config::Method.new update_device_config delete_device_config = parent_rpcs.delete_device if parent_rpcs.respond_to? :delete_device @delete_device = ::Gapic::Config::Method.new delete_device_config list_devices_config = parent_rpcs.list_devices if parent_rpcs.respond_to? :list_devices @list_devices = ::Gapic::Config::Method.new list_devices_config modify_cloud_to_device_config_config = parent_rpcs.modify_cloud_to_device_config if parent_rpcs.respond_to? :modify_cloud_to_device_config @modify_cloud_to_device_config = ::Gapic::Config::Method.new modify_cloud_to_device_config_config list_device_config_versions_config = parent_rpcs.list_device_config_versions if parent_rpcs.respond_to? :list_device_config_versions @list_device_config_versions = ::Gapic::Config::Method.new list_device_config_versions_config list_device_states_config = parent_rpcs.list_device_states if parent_rpcs.respond_to? :list_device_states @list_device_states = ::Gapic::Config::Method.new list_device_states_config set_iam_policy_config = parent_rpcs.set_iam_policy if parent_rpcs.respond_to? :set_iam_policy @set_iam_policy = ::Gapic::Config::Method.new set_iam_policy_config get_iam_policy_config = parent_rpcs.get_iam_policy if parent_rpcs.respond_to? :get_iam_policy @get_iam_policy = ::Gapic::Config::Method.new get_iam_policy_config = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new send_command_to_device_config = parent_rpcs.send_command_to_device if parent_rpcs.respond_to? :send_command_to_device @send_command_to_device = ::Gapic::Config::Method.new send_command_to_device_config bind_device_to_gateway_config = parent_rpcs.bind_device_to_gateway if parent_rpcs.respond_to? :bind_device_to_gateway @bind_device_to_gateway = ::Gapic::Config::Method.new bind_device_to_gateway_config unbind_device_from_gateway_config = parent_rpcs.unbind_device_from_gateway if parent_rpcs.respond_to? :unbind_device_from_gateway @unbind_device_from_gateway = ::Gapic::Config::Method.new unbind_device_from_gateway_config yield self if block_given? end end end |
Instance Method Details
#channel_pool ⇒ ::Gapic::ServiceStub::ChannelPool::Configuration
Configuration for the channel pool
2148 2149 2150 |
# File 'lib/google/cloud/iot/v1/device_manager/client.rb', line 2148 def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end |
#rpcs ⇒ Rpcs
Configurations for individual RPCs
2136 2137 2138 2139 2140 2141 2142 |
# File 'lib/google/cloud/iot/v1/device_manager/client.rb', line 2136 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 |