Class: Google::Cloud::Iot::V1::DeviceManager::Rest::Client::Configuration
- Inherits:
-
Object
- Object
- Google::Cloud::Iot::V1::DeviceManager::Rest::Client::Configuration
- Extended by:
- Gapic::Config
- Defined in:
- lib/google/cloud/iot/v1/device_manager/rest/client.rb
Overview
Configuration class for the DeviceManager REST API.
This class represents the configuration for DeviceManager REST, providing control over timeouts, retry behavior, logging, transport parameters, and other low-level controls. Certain parameters can also be applied individually to specific RPCs. See Rpcs for a list of RPCs that can be configured independently.
Configuration can be applied globally to all clients, or to a single client on construction.
Defined Under Namespace
Classes: Rpcs
Instance Attribute Summary collapse
-
#credentials ⇒ ::Object
Credentials to send with calls.
-
#endpoint ⇒ ::String?
A custom service endpoint, as a hostname or hostname:port.
-
#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 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
-
#rpcs ⇒ Rpcs
Configurations for individual RPCs.
Instance Attribute Details
#credentials ⇒ ::Object
Credentials to send with calls. You may provide any of the following types:
- (
String
) The path to a service account key file in JSON format - (
Hash
) A service account key as a Hash - (
Google::Auth::Credentials
) A googleauth credentials object (see the googleauth docs) - (
Signet::OAuth2::Client
) A signet oauth2 client object (see the signet docs) - (
nil
) indicating no credentials
1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/google/cloud/iot/v1/device_manager/rest/client.rb', line 1952 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.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the 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 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.
1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/google/cloud/iot/v1/device_manager/rest/client.rb', line 1952 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.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the 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 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
1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/google/cloud/iot/v1/device_manager/rest/client.rb', line 1952 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.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the 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 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
1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/google/cloud/iot/v1/device_manager/rest/client.rb', line 1952 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.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the 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 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 headers to be sent with the call.
1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/google/cloud/iot/v1/device_manager/rest/client.rb', line 1952 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.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the 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 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.
1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/google/cloud/iot/v1/device_manager/rest/client.rb', line 1952 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.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the 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 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.
1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/google/cloud/iot/v1/device_manager/rest/client.rb', line 1952 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.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the 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 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
1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/google/cloud/iot/v1/device_manager/rest/client.rb', line 1952 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.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the 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 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.
1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/google/cloud/iot/v1/device_manager/rest/client.rb', line 1952 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.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the 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 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).
1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/google/cloud/iot/v1/device_manager/rest/client.rb', line 1952 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.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the 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 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
#rpcs ⇒ Rpcs
Configurations for individual RPCs
1984 1985 1986 1987 1988 1989 1990 |
# File 'lib/google/cloud/iot/v1/device_manager/rest/client.rb', line 1984 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 |