Class: Google::Cloud::ServiceDirectory::V1::RegistrationService::Client::Configuration
- Inherits:
-
Object
- Object
- Google::Cloud::ServiceDirectory::V1::RegistrationService::Client::Configuration
- Extended by:
- Gapic::Config
- Defined in:
- lib/google/cloud/service_directory/v1/registration_service/client.rb
Overview
Configuration class for the RegistrationService API.
This class represents the configuration for RegistrationService, providing control over timeouts, retry behavior, logging, transport parameters, and other low-level controls. Certain parameters can also be applied individually to specific RPCs. See Rpcs for a list of RPCs that can be configured independently.
Configuration can be applied globally to all clients, or to a single client on construction.
Defined Under Namespace
Classes: Rpcs
Instance Attribute Summary collapse
-
#channel_args ⇒ ::Hash
Extra parameters passed to the gRPC channel.
-
#credentials ⇒ ::Object
Credentials to send with calls.
-
#endpoint ⇒ ::String?
A custom service endpoint, as a hostname or hostname:port.
-
#interceptors ⇒ ::Array<::GRPC::ClientInterceptor>
An array of interceptors that are run before calls are executed.
-
#lib_name ⇒ ::String
The library name as recorded in instrumentation and logging.
-
#lib_version ⇒ ::String
The library version as recorded in instrumentation and logging.
-
#metadata ⇒ ::Hash{::Symbol=>::String}
Additional gRPC headers to be sent with the call.
-
#quota_project ⇒ ::String
A separate project against which to charge quota.
-
#retry_policy ⇒ ::Hash
The retry policy.
-
#scope ⇒ ::Array<::String>
The OAuth scopes.
-
#timeout ⇒ ::Numeric
The call timeout in seconds.
-
#universe_domain ⇒ ::String?
The universe domain within which to make requests.
Instance Method Summary collapse
-
#channel_pool ⇒ ::Gapic::ServiceStub::ChannelPool::Configuration
Configuration for the channel pool.
-
#rpcs ⇒ Rpcs
Configurations for individual RPCs.
Instance Attribute Details
#channel_args ⇒ ::Hash
Extra parameters passed to the gRPC channel. Note: this is ignored if a
GRPC::Core::Channel
object is provided as the credential.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/google/cloud/service_directory/v1/registration_service/client.rb', line 2053 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "servicedirectory.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the RegistrationService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_namespace` # @return [::Gapic::Config::Method] # attr_reader :create_namespace ## # RPC-specific configuration for `list_namespaces` # @return [::Gapic::Config::Method] # attr_reader :list_namespaces ## # RPC-specific configuration for `get_namespace` # @return [::Gapic::Config::Method] # attr_reader :get_namespace ## # RPC-specific configuration for `update_namespace` # @return [::Gapic::Config::Method] # attr_reader :update_namespace ## # RPC-specific configuration for `delete_namespace` # @return [::Gapic::Config::Method] # attr_reader :delete_namespace ## # RPC-specific configuration for `create_service` # @return [::Gapic::Config::Method] # attr_reader :create_service ## # RPC-specific configuration for `list_services` # @return [::Gapic::Config::Method] # attr_reader :list_services ## # RPC-specific configuration for `get_service` # @return [::Gapic::Config::Method] # attr_reader :get_service ## # RPC-specific configuration for `update_service` # @return [::Gapic::Config::Method] # attr_reader :update_service ## # RPC-specific configuration for `delete_service` # @return [::Gapic::Config::Method] # attr_reader :delete_service ## # RPC-specific configuration for `create_endpoint` # @return [::Gapic::Config::Method] # attr_reader :create_endpoint ## # RPC-specific configuration for `list_endpoints` # @return [::Gapic::Config::Method] # attr_reader :list_endpoints ## # RPC-specific configuration for `get_endpoint` # @return [::Gapic::Config::Method] # attr_reader :get_endpoint ## # RPC-specific configuration for `update_endpoint` # @return [::Gapic::Config::Method] # attr_reader :update_endpoint ## # RPC-specific configuration for `delete_endpoint` # @return [::Gapic::Config::Method] # attr_reader :delete_endpoint ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil create_namespace_config = parent_rpcs.create_namespace if parent_rpcs.respond_to? :create_namespace @create_namespace = ::Gapic::Config::Method.new create_namespace_config list_namespaces_config = parent_rpcs.list_namespaces if parent_rpcs.respond_to? :list_namespaces @list_namespaces = ::Gapic::Config::Method.new list_namespaces_config get_namespace_config = parent_rpcs.get_namespace if parent_rpcs.respond_to? :get_namespace @get_namespace = ::Gapic::Config::Method.new get_namespace_config update_namespace_config = parent_rpcs.update_namespace if parent_rpcs.respond_to? :update_namespace @update_namespace = ::Gapic::Config::Method.new update_namespace_config delete_namespace_config = parent_rpcs.delete_namespace if parent_rpcs.respond_to? :delete_namespace @delete_namespace = ::Gapic::Config::Method.new delete_namespace_config create_service_config = parent_rpcs.create_service if parent_rpcs.respond_to? :create_service @create_service = ::Gapic::Config::Method.new create_service_config list_services_config = parent_rpcs.list_services if parent_rpcs.respond_to? :list_services @list_services = ::Gapic::Config::Method.new list_services_config get_service_config = parent_rpcs.get_service if parent_rpcs.respond_to? :get_service @get_service = ::Gapic::Config::Method.new get_service_config update_service_config = parent_rpcs.update_service if parent_rpcs.respond_to? :update_service @update_service = ::Gapic::Config::Method.new update_service_config delete_service_config = parent_rpcs.delete_service if parent_rpcs.respond_to? :delete_service @delete_service = ::Gapic::Config::Method.new delete_service_config create_endpoint_config = parent_rpcs.create_endpoint if parent_rpcs.respond_to? :create_endpoint @create_endpoint = ::Gapic::Config::Method.new create_endpoint_config list_endpoints_config = parent_rpcs.list_endpoints if parent_rpcs.respond_to? :list_endpoints @list_endpoints = ::Gapic::Config::Method.new list_endpoints_config get_endpoint_config = parent_rpcs.get_endpoint if parent_rpcs.respond_to? :get_endpoint @get_endpoint = ::Gapic::Config::Method.new get_endpoint_config update_endpoint_config = parent_rpcs.update_endpoint if parent_rpcs.respond_to? :update_endpoint @update_endpoint = ::Gapic::Config::Method.new update_endpoint_config delete_endpoint_config = parent_rpcs.delete_endpoint if parent_rpcs.respond_to? :delete_endpoint @delete_endpoint = ::Gapic::Config::Method.new delete_endpoint_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 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 = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
#credentials ⇒ ::Object
Credentials to send with calls. You may provide any of the following types:
- (
String
) The path to a service account key file in JSON format - (
Hash
) A service account key as a Hash - (
Google::Auth::Credentials
) A googleauth credentials object (see the googleauth docs) - (
Signet::OAuth2::Client
) A signet oauth2 client object (see the signet docs) - (
GRPC::Core::Channel
) a gRPC channel with included credentials - (
GRPC::Core::ChannelCredentials
) a gRPC credentails object - (
nil
) indicating no credentials
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/google/cloud/service_directory/v1/registration_service/client.rb', line 2053 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "servicedirectory.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the RegistrationService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_namespace` # @return [::Gapic::Config::Method] # attr_reader :create_namespace ## # RPC-specific configuration for `list_namespaces` # @return [::Gapic::Config::Method] # attr_reader :list_namespaces ## # RPC-specific configuration for `get_namespace` # @return [::Gapic::Config::Method] # attr_reader :get_namespace ## # RPC-specific configuration for `update_namespace` # @return [::Gapic::Config::Method] # attr_reader :update_namespace ## # RPC-specific configuration for `delete_namespace` # @return [::Gapic::Config::Method] # attr_reader :delete_namespace ## # RPC-specific configuration for `create_service` # @return [::Gapic::Config::Method] # attr_reader :create_service ## # RPC-specific configuration for `list_services` # @return [::Gapic::Config::Method] # attr_reader :list_services ## # RPC-specific configuration for `get_service` # @return [::Gapic::Config::Method] # attr_reader :get_service ## # RPC-specific configuration for `update_service` # @return [::Gapic::Config::Method] # attr_reader :update_service ## # RPC-specific configuration for `delete_service` # @return [::Gapic::Config::Method] # attr_reader :delete_service ## # RPC-specific configuration for `create_endpoint` # @return [::Gapic::Config::Method] # attr_reader :create_endpoint ## # RPC-specific configuration for `list_endpoints` # @return [::Gapic::Config::Method] # attr_reader :list_endpoints ## # RPC-specific configuration for `get_endpoint` # @return [::Gapic::Config::Method] # attr_reader :get_endpoint ## # RPC-specific configuration for `update_endpoint` # @return [::Gapic::Config::Method] # attr_reader :update_endpoint ## # RPC-specific configuration for `delete_endpoint` # @return [::Gapic::Config::Method] # attr_reader :delete_endpoint ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil create_namespace_config = parent_rpcs.create_namespace if parent_rpcs.respond_to? :create_namespace @create_namespace = ::Gapic::Config::Method.new create_namespace_config list_namespaces_config = parent_rpcs.list_namespaces if parent_rpcs.respond_to? :list_namespaces @list_namespaces = ::Gapic::Config::Method.new list_namespaces_config get_namespace_config = parent_rpcs.get_namespace if parent_rpcs.respond_to? :get_namespace @get_namespace = ::Gapic::Config::Method.new get_namespace_config update_namespace_config = parent_rpcs.update_namespace if parent_rpcs.respond_to? :update_namespace @update_namespace = ::Gapic::Config::Method.new update_namespace_config delete_namespace_config = parent_rpcs.delete_namespace if parent_rpcs.respond_to? :delete_namespace @delete_namespace = ::Gapic::Config::Method.new delete_namespace_config create_service_config = parent_rpcs.create_service if parent_rpcs.respond_to? :create_service @create_service = ::Gapic::Config::Method.new create_service_config list_services_config = parent_rpcs.list_services if parent_rpcs.respond_to? :list_services @list_services = ::Gapic::Config::Method.new list_services_config get_service_config = parent_rpcs.get_service if parent_rpcs.respond_to? :get_service @get_service = ::Gapic::Config::Method.new get_service_config update_service_config = parent_rpcs.update_service if parent_rpcs.respond_to? :update_service @update_service = ::Gapic::Config::Method.new update_service_config delete_service_config = parent_rpcs.delete_service if parent_rpcs.respond_to? :delete_service @delete_service = ::Gapic::Config::Method.new delete_service_config create_endpoint_config = parent_rpcs.create_endpoint if parent_rpcs.respond_to? :create_endpoint @create_endpoint = ::Gapic::Config::Method.new create_endpoint_config list_endpoints_config = parent_rpcs.list_endpoints if parent_rpcs.respond_to? :list_endpoints @list_endpoints = ::Gapic::Config::Method.new list_endpoints_config get_endpoint_config = parent_rpcs.get_endpoint if parent_rpcs.respond_to? :get_endpoint @get_endpoint = ::Gapic::Config::Method.new get_endpoint_config update_endpoint_config = parent_rpcs.update_endpoint if parent_rpcs.respond_to? :update_endpoint @update_endpoint = ::Gapic::Config::Method.new update_endpoint_config delete_endpoint_config = parent_rpcs.delete_endpoint if parent_rpcs.respond_to? :delete_endpoint @delete_endpoint = ::Gapic::Config::Method.new delete_endpoint_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 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 = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new 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.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/google/cloud/service_directory/v1/registration_service/client.rb', line 2053 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "servicedirectory.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the RegistrationService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_namespace` # @return [::Gapic::Config::Method] # attr_reader :create_namespace ## # RPC-specific configuration for `list_namespaces` # @return [::Gapic::Config::Method] # attr_reader :list_namespaces ## # RPC-specific configuration for `get_namespace` # @return [::Gapic::Config::Method] # attr_reader :get_namespace ## # RPC-specific configuration for `update_namespace` # @return [::Gapic::Config::Method] # attr_reader :update_namespace ## # RPC-specific configuration for `delete_namespace` # @return [::Gapic::Config::Method] # attr_reader :delete_namespace ## # RPC-specific configuration for `create_service` # @return [::Gapic::Config::Method] # attr_reader :create_service ## # RPC-specific configuration for `list_services` # @return [::Gapic::Config::Method] # attr_reader :list_services ## # RPC-specific configuration for `get_service` # @return [::Gapic::Config::Method] # attr_reader :get_service ## # RPC-specific configuration for `update_service` # @return [::Gapic::Config::Method] # attr_reader :update_service ## # RPC-specific configuration for `delete_service` # @return [::Gapic::Config::Method] # attr_reader :delete_service ## # RPC-specific configuration for `create_endpoint` # @return [::Gapic::Config::Method] # attr_reader :create_endpoint ## # RPC-specific configuration for `list_endpoints` # @return [::Gapic::Config::Method] # attr_reader :list_endpoints ## # RPC-specific configuration for `get_endpoint` # @return [::Gapic::Config::Method] # attr_reader :get_endpoint ## # RPC-specific configuration for `update_endpoint` # @return [::Gapic::Config::Method] # attr_reader :update_endpoint ## # RPC-specific configuration for `delete_endpoint` # @return [::Gapic::Config::Method] # attr_reader :delete_endpoint ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil create_namespace_config = parent_rpcs.create_namespace if parent_rpcs.respond_to? :create_namespace @create_namespace = ::Gapic::Config::Method.new create_namespace_config list_namespaces_config = parent_rpcs.list_namespaces if parent_rpcs.respond_to? :list_namespaces @list_namespaces = ::Gapic::Config::Method.new list_namespaces_config get_namespace_config = parent_rpcs.get_namespace if parent_rpcs.respond_to? :get_namespace @get_namespace = ::Gapic::Config::Method.new get_namespace_config update_namespace_config = parent_rpcs.update_namespace if parent_rpcs.respond_to? :update_namespace @update_namespace = ::Gapic::Config::Method.new update_namespace_config delete_namespace_config = parent_rpcs.delete_namespace if parent_rpcs.respond_to? :delete_namespace @delete_namespace = ::Gapic::Config::Method.new delete_namespace_config create_service_config = parent_rpcs.create_service if parent_rpcs.respond_to? :create_service @create_service = ::Gapic::Config::Method.new create_service_config list_services_config = parent_rpcs.list_services if parent_rpcs.respond_to? :list_services @list_services = ::Gapic::Config::Method.new list_services_config get_service_config = parent_rpcs.get_service if parent_rpcs.respond_to? :get_service @get_service = ::Gapic::Config::Method.new get_service_config update_service_config = parent_rpcs.update_service if parent_rpcs.respond_to? :update_service @update_service = ::Gapic::Config::Method.new update_service_config delete_service_config = parent_rpcs.delete_service if parent_rpcs.respond_to? :delete_service @delete_service = ::Gapic::Config::Method.new delete_service_config create_endpoint_config = parent_rpcs.create_endpoint if parent_rpcs.respond_to? :create_endpoint @create_endpoint = ::Gapic::Config::Method.new create_endpoint_config list_endpoints_config = parent_rpcs.list_endpoints if parent_rpcs.respond_to? :list_endpoints @list_endpoints = ::Gapic::Config::Method.new list_endpoints_config get_endpoint_config = parent_rpcs.get_endpoint if parent_rpcs.respond_to? :get_endpoint @get_endpoint = ::Gapic::Config::Method.new get_endpoint_config update_endpoint_config = parent_rpcs.update_endpoint if parent_rpcs.respond_to? :update_endpoint @update_endpoint = ::Gapic::Config::Method.new update_endpoint_config delete_endpoint_config = parent_rpcs.delete_endpoint if parent_rpcs.respond_to? :delete_endpoint @delete_endpoint = ::Gapic::Config::Method.new delete_endpoint_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 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 = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
#interceptors ⇒ ::Array<::GRPC::ClientInterceptor>
An array of interceptors that are run before calls are executed.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/google/cloud/service_directory/v1/registration_service/client.rb', line 2053 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "servicedirectory.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the RegistrationService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_namespace` # @return [::Gapic::Config::Method] # attr_reader :create_namespace ## # RPC-specific configuration for `list_namespaces` # @return [::Gapic::Config::Method] # attr_reader :list_namespaces ## # RPC-specific configuration for `get_namespace` # @return [::Gapic::Config::Method] # attr_reader :get_namespace ## # RPC-specific configuration for `update_namespace` # @return [::Gapic::Config::Method] # attr_reader :update_namespace ## # RPC-specific configuration for `delete_namespace` # @return [::Gapic::Config::Method] # attr_reader :delete_namespace ## # RPC-specific configuration for `create_service` # @return [::Gapic::Config::Method] # attr_reader :create_service ## # RPC-specific configuration for `list_services` # @return [::Gapic::Config::Method] # attr_reader :list_services ## # RPC-specific configuration for `get_service` # @return [::Gapic::Config::Method] # attr_reader :get_service ## # RPC-specific configuration for `update_service` # @return [::Gapic::Config::Method] # attr_reader :update_service ## # RPC-specific configuration for `delete_service` # @return [::Gapic::Config::Method] # attr_reader :delete_service ## # RPC-specific configuration for `create_endpoint` # @return [::Gapic::Config::Method] # attr_reader :create_endpoint ## # RPC-specific configuration for `list_endpoints` # @return [::Gapic::Config::Method] # attr_reader :list_endpoints ## # RPC-specific configuration for `get_endpoint` # @return [::Gapic::Config::Method] # attr_reader :get_endpoint ## # RPC-specific configuration for `update_endpoint` # @return [::Gapic::Config::Method] # attr_reader :update_endpoint ## # RPC-specific configuration for `delete_endpoint` # @return [::Gapic::Config::Method] # attr_reader :delete_endpoint ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil create_namespace_config = parent_rpcs.create_namespace if parent_rpcs.respond_to? :create_namespace @create_namespace = ::Gapic::Config::Method.new create_namespace_config list_namespaces_config = parent_rpcs.list_namespaces if parent_rpcs.respond_to? :list_namespaces @list_namespaces = ::Gapic::Config::Method.new list_namespaces_config get_namespace_config = parent_rpcs.get_namespace if parent_rpcs.respond_to? :get_namespace @get_namespace = ::Gapic::Config::Method.new get_namespace_config update_namespace_config = parent_rpcs.update_namespace if parent_rpcs.respond_to? :update_namespace @update_namespace = ::Gapic::Config::Method.new update_namespace_config delete_namespace_config = parent_rpcs.delete_namespace if parent_rpcs.respond_to? :delete_namespace @delete_namespace = ::Gapic::Config::Method.new delete_namespace_config create_service_config = parent_rpcs.create_service if parent_rpcs.respond_to? :create_service @create_service = ::Gapic::Config::Method.new create_service_config list_services_config = parent_rpcs.list_services if parent_rpcs.respond_to? :list_services @list_services = ::Gapic::Config::Method.new list_services_config get_service_config = parent_rpcs.get_service if parent_rpcs.respond_to? :get_service @get_service = ::Gapic::Config::Method.new get_service_config update_service_config = parent_rpcs.update_service if parent_rpcs.respond_to? :update_service @update_service = ::Gapic::Config::Method.new update_service_config delete_service_config = parent_rpcs.delete_service if parent_rpcs.respond_to? :delete_service @delete_service = ::Gapic::Config::Method.new delete_service_config create_endpoint_config = parent_rpcs.create_endpoint if parent_rpcs.respond_to? :create_endpoint @create_endpoint = ::Gapic::Config::Method.new create_endpoint_config list_endpoints_config = parent_rpcs.list_endpoints if parent_rpcs.respond_to? :list_endpoints @list_endpoints = ::Gapic::Config::Method.new list_endpoints_config get_endpoint_config = parent_rpcs.get_endpoint if parent_rpcs.respond_to? :get_endpoint @get_endpoint = ::Gapic::Config::Method.new get_endpoint_config update_endpoint_config = parent_rpcs.update_endpoint if parent_rpcs.respond_to? :update_endpoint @update_endpoint = ::Gapic::Config::Method.new update_endpoint_config delete_endpoint_config = parent_rpcs.delete_endpoint if parent_rpcs.respond_to? :delete_endpoint @delete_endpoint = ::Gapic::Config::Method.new delete_endpoint_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 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 = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
#lib_name ⇒ ::String
The library name as recorded in instrumentation and logging
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/google/cloud/service_directory/v1/registration_service/client.rb', line 2053 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "servicedirectory.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the RegistrationService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_namespace` # @return [::Gapic::Config::Method] # attr_reader :create_namespace ## # RPC-specific configuration for `list_namespaces` # @return [::Gapic::Config::Method] # attr_reader :list_namespaces ## # RPC-specific configuration for `get_namespace` # @return [::Gapic::Config::Method] # attr_reader :get_namespace ## # RPC-specific configuration for `update_namespace` # @return [::Gapic::Config::Method] # attr_reader :update_namespace ## # RPC-specific configuration for `delete_namespace` # @return [::Gapic::Config::Method] # attr_reader :delete_namespace ## # RPC-specific configuration for `create_service` # @return [::Gapic::Config::Method] # attr_reader :create_service ## # RPC-specific configuration for `list_services` # @return [::Gapic::Config::Method] # attr_reader :list_services ## # RPC-specific configuration for `get_service` # @return [::Gapic::Config::Method] # attr_reader :get_service ## # RPC-specific configuration for `update_service` # @return [::Gapic::Config::Method] # attr_reader :update_service ## # RPC-specific configuration for `delete_service` # @return [::Gapic::Config::Method] # attr_reader :delete_service ## # RPC-specific configuration for `create_endpoint` # @return [::Gapic::Config::Method] # attr_reader :create_endpoint ## # RPC-specific configuration for `list_endpoints` # @return [::Gapic::Config::Method] # attr_reader :list_endpoints ## # RPC-specific configuration for `get_endpoint` # @return [::Gapic::Config::Method] # attr_reader :get_endpoint ## # RPC-specific configuration for `update_endpoint` # @return [::Gapic::Config::Method] # attr_reader :update_endpoint ## # RPC-specific configuration for `delete_endpoint` # @return [::Gapic::Config::Method] # attr_reader :delete_endpoint ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil create_namespace_config = parent_rpcs.create_namespace if parent_rpcs.respond_to? :create_namespace @create_namespace = ::Gapic::Config::Method.new create_namespace_config list_namespaces_config = parent_rpcs.list_namespaces if parent_rpcs.respond_to? :list_namespaces @list_namespaces = ::Gapic::Config::Method.new list_namespaces_config get_namespace_config = parent_rpcs.get_namespace if parent_rpcs.respond_to? :get_namespace @get_namespace = ::Gapic::Config::Method.new get_namespace_config update_namespace_config = parent_rpcs.update_namespace if parent_rpcs.respond_to? :update_namespace @update_namespace = ::Gapic::Config::Method.new update_namespace_config delete_namespace_config = parent_rpcs.delete_namespace if parent_rpcs.respond_to? :delete_namespace @delete_namespace = ::Gapic::Config::Method.new delete_namespace_config create_service_config = parent_rpcs.create_service if parent_rpcs.respond_to? :create_service @create_service = ::Gapic::Config::Method.new create_service_config list_services_config = parent_rpcs.list_services if parent_rpcs.respond_to? :list_services @list_services = ::Gapic::Config::Method.new list_services_config get_service_config = parent_rpcs.get_service if parent_rpcs.respond_to? :get_service @get_service = ::Gapic::Config::Method.new get_service_config update_service_config = parent_rpcs.update_service if parent_rpcs.respond_to? :update_service @update_service = ::Gapic::Config::Method.new update_service_config delete_service_config = parent_rpcs.delete_service if parent_rpcs.respond_to? :delete_service @delete_service = ::Gapic::Config::Method.new delete_service_config create_endpoint_config = parent_rpcs.create_endpoint if parent_rpcs.respond_to? :create_endpoint @create_endpoint = ::Gapic::Config::Method.new create_endpoint_config list_endpoints_config = parent_rpcs.list_endpoints if parent_rpcs.respond_to? :list_endpoints @list_endpoints = ::Gapic::Config::Method.new list_endpoints_config get_endpoint_config = parent_rpcs.get_endpoint if parent_rpcs.respond_to? :get_endpoint @get_endpoint = ::Gapic::Config::Method.new get_endpoint_config update_endpoint_config = parent_rpcs.update_endpoint if parent_rpcs.respond_to? :update_endpoint @update_endpoint = ::Gapic::Config::Method.new update_endpoint_config delete_endpoint_config = parent_rpcs.delete_endpoint if parent_rpcs.respond_to? :delete_endpoint @delete_endpoint = ::Gapic::Config::Method.new delete_endpoint_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 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 = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
#lib_version ⇒ ::String
The library version as recorded in instrumentation and logging
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/google/cloud/service_directory/v1/registration_service/client.rb', line 2053 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "servicedirectory.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the RegistrationService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_namespace` # @return [::Gapic::Config::Method] # attr_reader :create_namespace ## # RPC-specific configuration for `list_namespaces` # @return [::Gapic::Config::Method] # attr_reader :list_namespaces ## # RPC-specific configuration for `get_namespace` # @return [::Gapic::Config::Method] # attr_reader :get_namespace ## # RPC-specific configuration for `update_namespace` # @return [::Gapic::Config::Method] # attr_reader :update_namespace ## # RPC-specific configuration for `delete_namespace` # @return [::Gapic::Config::Method] # attr_reader :delete_namespace ## # RPC-specific configuration for `create_service` # @return [::Gapic::Config::Method] # attr_reader :create_service ## # RPC-specific configuration for `list_services` # @return [::Gapic::Config::Method] # attr_reader :list_services ## # RPC-specific configuration for `get_service` # @return [::Gapic::Config::Method] # attr_reader :get_service ## # RPC-specific configuration for `update_service` # @return [::Gapic::Config::Method] # attr_reader :update_service ## # RPC-specific configuration for `delete_service` # @return [::Gapic::Config::Method] # attr_reader :delete_service ## # RPC-specific configuration for `create_endpoint` # @return [::Gapic::Config::Method] # attr_reader :create_endpoint ## # RPC-specific configuration for `list_endpoints` # @return [::Gapic::Config::Method] # attr_reader :list_endpoints ## # RPC-specific configuration for `get_endpoint` # @return [::Gapic::Config::Method] # attr_reader :get_endpoint ## # RPC-specific configuration for `update_endpoint` # @return [::Gapic::Config::Method] # attr_reader :update_endpoint ## # RPC-specific configuration for `delete_endpoint` # @return [::Gapic::Config::Method] # attr_reader :delete_endpoint ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil create_namespace_config = parent_rpcs.create_namespace if parent_rpcs.respond_to? :create_namespace @create_namespace = ::Gapic::Config::Method.new create_namespace_config list_namespaces_config = parent_rpcs.list_namespaces if parent_rpcs.respond_to? :list_namespaces @list_namespaces = ::Gapic::Config::Method.new list_namespaces_config get_namespace_config = parent_rpcs.get_namespace if parent_rpcs.respond_to? :get_namespace @get_namespace = ::Gapic::Config::Method.new get_namespace_config update_namespace_config = parent_rpcs.update_namespace if parent_rpcs.respond_to? :update_namespace @update_namespace = ::Gapic::Config::Method.new update_namespace_config delete_namespace_config = parent_rpcs.delete_namespace if parent_rpcs.respond_to? :delete_namespace @delete_namespace = ::Gapic::Config::Method.new delete_namespace_config create_service_config = parent_rpcs.create_service if parent_rpcs.respond_to? :create_service @create_service = ::Gapic::Config::Method.new create_service_config list_services_config = parent_rpcs.list_services if parent_rpcs.respond_to? :list_services @list_services = ::Gapic::Config::Method.new list_services_config get_service_config = parent_rpcs.get_service if parent_rpcs.respond_to? :get_service @get_service = ::Gapic::Config::Method.new get_service_config update_service_config = parent_rpcs.update_service if parent_rpcs.respond_to? :update_service @update_service = ::Gapic::Config::Method.new update_service_config delete_service_config = parent_rpcs.delete_service if parent_rpcs.respond_to? :delete_service @delete_service = ::Gapic::Config::Method.new delete_service_config create_endpoint_config = parent_rpcs.create_endpoint if parent_rpcs.respond_to? :create_endpoint @create_endpoint = ::Gapic::Config::Method.new create_endpoint_config list_endpoints_config = parent_rpcs.list_endpoints if parent_rpcs.respond_to? :list_endpoints @list_endpoints = ::Gapic::Config::Method.new list_endpoints_config get_endpoint_config = parent_rpcs.get_endpoint if parent_rpcs.respond_to? :get_endpoint @get_endpoint = ::Gapic::Config::Method.new get_endpoint_config update_endpoint_config = parent_rpcs.update_endpoint if parent_rpcs.respond_to? :update_endpoint @update_endpoint = ::Gapic::Config::Method.new update_endpoint_config delete_endpoint_config = parent_rpcs.delete_endpoint if parent_rpcs.respond_to? :delete_endpoint @delete_endpoint = ::Gapic::Config::Method.new delete_endpoint_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 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 = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
#metadata ⇒ ::Hash{::Symbol=>::String}
Additional gRPC headers to be sent with the call.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/google/cloud/service_directory/v1/registration_service/client.rb', line 2053 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "servicedirectory.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the RegistrationService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_namespace` # @return [::Gapic::Config::Method] # attr_reader :create_namespace ## # RPC-specific configuration for `list_namespaces` # @return [::Gapic::Config::Method] # attr_reader :list_namespaces ## # RPC-specific configuration for `get_namespace` # @return [::Gapic::Config::Method] # attr_reader :get_namespace ## # RPC-specific configuration for `update_namespace` # @return [::Gapic::Config::Method] # attr_reader :update_namespace ## # RPC-specific configuration for `delete_namespace` # @return [::Gapic::Config::Method] # attr_reader :delete_namespace ## # RPC-specific configuration for `create_service` # @return [::Gapic::Config::Method] # attr_reader :create_service ## # RPC-specific configuration for `list_services` # @return [::Gapic::Config::Method] # attr_reader :list_services ## # RPC-specific configuration for `get_service` # @return [::Gapic::Config::Method] # attr_reader :get_service ## # RPC-specific configuration for `update_service` # @return [::Gapic::Config::Method] # attr_reader :update_service ## # RPC-specific configuration for `delete_service` # @return [::Gapic::Config::Method] # attr_reader :delete_service ## # RPC-specific configuration for `create_endpoint` # @return [::Gapic::Config::Method] # attr_reader :create_endpoint ## # RPC-specific configuration for `list_endpoints` # @return [::Gapic::Config::Method] # attr_reader :list_endpoints ## # RPC-specific configuration for `get_endpoint` # @return [::Gapic::Config::Method] # attr_reader :get_endpoint ## # RPC-specific configuration for `update_endpoint` # @return [::Gapic::Config::Method] # attr_reader :update_endpoint ## # RPC-specific configuration for `delete_endpoint` # @return [::Gapic::Config::Method] # attr_reader :delete_endpoint ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil create_namespace_config = parent_rpcs.create_namespace if parent_rpcs.respond_to? :create_namespace @create_namespace = ::Gapic::Config::Method.new create_namespace_config list_namespaces_config = parent_rpcs.list_namespaces if parent_rpcs.respond_to? :list_namespaces @list_namespaces = ::Gapic::Config::Method.new list_namespaces_config get_namespace_config = parent_rpcs.get_namespace if parent_rpcs.respond_to? :get_namespace @get_namespace = ::Gapic::Config::Method.new get_namespace_config update_namespace_config = parent_rpcs.update_namespace if parent_rpcs.respond_to? :update_namespace @update_namespace = ::Gapic::Config::Method.new update_namespace_config delete_namespace_config = parent_rpcs.delete_namespace if parent_rpcs.respond_to? :delete_namespace @delete_namespace = ::Gapic::Config::Method.new delete_namespace_config create_service_config = parent_rpcs.create_service if parent_rpcs.respond_to? :create_service @create_service = ::Gapic::Config::Method.new create_service_config list_services_config = parent_rpcs.list_services if parent_rpcs.respond_to? :list_services @list_services = ::Gapic::Config::Method.new list_services_config get_service_config = parent_rpcs.get_service if parent_rpcs.respond_to? :get_service @get_service = ::Gapic::Config::Method.new get_service_config update_service_config = parent_rpcs.update_service if parent_rpcs.respond_to? :update_service @update_service = ::Gapic::Config::Method.new update_service_config delete_service_config = parent_rpcs.delete_service if parent_rpcs.respond_to? :delete_service @delete_service = ::Gapic::Config::Method.new delete_service_config create_endpoint_config = parent_rpcs.create_endpoint if parent_rpcs.respond_to? :create_endpoint @create_endpoint = ::Gapic::Config::Method.new create_endpoint_config list_endpoints_config = parent_rpcs.list_endpoints if parent_rpcs.respond_to? :list_endpoints @list_endpoints = ::Gapic::Config::Method.new list_endpoints_config get_endpoint_config = parent_rpcs.get_endpoint if parent_rpcs.respond_to? :get_endpoint @get_endpoint = ::Gapic::Config::Method.new get_endpoint_config update_endpoint_config = parent_rpcs.update_endpoint if parent_rpcs.respond_to? :update_endpoint @update_endpoint = ::Gapic::Config::Method.new update_endpoint_config delete_endpoint_config = parent_rpcs.delete_endpoint if parent_rpcs.respond_to? :delete_endpoint @delete_endpoint = ::Gapic::Config::Method.new delete_endpoint_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 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 = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
#quota_project ⇒ ::String
A separate project against which to charge quota.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/google/cloud/service_directory/v1/registration_service/client.rb', line 2053 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "servicedirectory.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the RegistrationService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_namespace` # @return [::Gapic::Config::Method] # attr_reader :create_namespace ## # RPC-specific configuration for `list_namespaces` # @return [::Gapic::Config::Method] # attr_reader :list_namespaces ## # RPC-specific configuration for `get_namespace` # @return [::Gapic::Config::Method] # attr_reader :get_namespace ## # RPC-specific configuration for `update_namespace` # @return [::Gapic::Config::Method] # attr_reader :update_namespace ## # RPC-specific configuration for `delete_namespace` # @return [::Gapic::Config::Method] # attr_reader :delete_namespace ## # RPC-specific configuration for `create_service` # @return [::Gapic::Config::Method] # attr_reader :create_service ## # RPC-specific configuration for `list_services` # @return [::Gapic::Config::Method] # attr_reader :list_services ## # RPC-specific configuration for `get_service` # @return [::Gapic::Config::Method] # attr_reader :get_service ## # RPC-specific configuration for `update_service` # @return [::Gapic::Config::Method] # attr_reader :update_service ## # RPC-specific configuration for `delete_service` # @return [::Gapic::Config::Method] # attr_reader :delete_service ## # RPC-specific configuration for `create_endpoint` # @return [::Gapic::Config::Method] # attr_reader :create_endpoint ## # RPC-specific configuration for `list_endpoints` # @return [::Gapic::Config::Method] # attr_reader :list_endpoints ## # RPC-specific configuration for `get_endpoint` # @return [::Gapic::Config::Method] # attr_reader :get_endpoint ## # RPC-specific configuration for `update_endpoint` # @return [::Gapic::Config::Method] # attr_reader :update_endpoint ## # RPC-specific configuration for `delete_endpoint` # @return [::Gapic::Config::Method] # attr_reader :delete_endpoint ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil create_namespace_config = parent_rpcs.create_namespace if parent_rpcs.respond_to? :create_namespace @create_namespace = ::Gapic::Config::Method.new create_namespace_config list_namespaces_config = parent_rpcs.list_namespaces if parent_rpcs.respond_to? :list_namespaces @list_namespaces = ::Gapic::Config::Method.new list_namespaces_config get_namespace_config = parent_rpcs.get_namespace if parent_rpcs.respond_to? :get_namespace @get_namespace = ::Gapic::Config::Method.new get_namespace_config update_namespace_config = parent_rpcs.update_namespace if parent_rpcs.respond_to? :update_namespace @update_namespace = ::Gapic::Config::Method.new update_namespace_config delete_namespace_config = parent_rpcs.delete_namespace if parent_rpcs.respond_to? :delete_namespace @delete_namespace = ::Gapic::Config::Method.new delete_namespace_config create_service_config = parent_rpcs.create_service if parent_rpcs.respond_to? :create_service @create_service = ::Gapic::Config::Method.new create_service_config list_services_config = parent_rpcs.list_services if parent_rpcs.respond_to? :list_services @list_services = ::Gapic::Config::Method.new list_services_config get_service_config = parent_rpcs.get_service if parent_rpcs.respond_to? :get_service @get_service = ::Gapic::Config::Method.new get_service_config update_service_config = parent_rpcs.update_service if parent_rpcs.respond_to? :update_service @update_service = ::Gapic::Config::Method.new update_service_config delete_service_config = parent_rpcs.delete_service if parent_rpcs.respond_to? :delete_service @delete_service = ::Gapic::Config::Method.new delete_service_config create_endpoint_config = parent_rpcs.create_endpoint if parent_rpcs.respond_to? :create_endpoint @create_endpoint = ::Gapic::Config::Method.new create_endpoint_config list_endpoints_config = parent_rpcs.list_endpoints if parent_rpcs.respond_to? :list_endpoints @list_endpoints = ::Gapic::Config::Method.new list_endpoints_config get_endpoint_config = parent_rpcs.get_endpoint if parent_rpcs.respond_to? :get_endpoint @get_endpoint = ::Gapic::Config::Method.new get_endpoint_config update_endpoint_config = parent_rpcs.update_endpoint if parent_rpcs.respond_to? :update_endpoint @update_endpoint = ::Gapic::Config::Method.new update_endpoint_config delete_endpoint_config = parent_rpcs.delete_endpoint if parent_rpcs.respond_to? :delete_endpoint @delete_endpoint = ::Gapic::Config::Method.new delete_endpoint_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 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 = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new 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.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/google/cloud/service_directory/v1/registration_service/client.rb', line 2053 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "servicedirectory.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the RegistrationService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_namespace` # @return [::Gapic::Config::Method] # attr_reader :create_namespace ## # RPC-specific configuration for `list_namespaces` # @return [::Gapic::Config::Method] # attr_reader :list_namespaces ## # RPC-specific configuration for `get_namespace` # @return [::Gapic::Config::Method] # attr_reader :get_namespace ## # RPC-specific configuration for `update_namespace` # @return [::Gapic::Config::Method] # attr_reader :update_namespace ## # RPC-specific configuration for `delete_namespace` # @return [::Gapic::Config::Method] # attr_reader :delete_namespace ## # RPC-specific configuration for `create_service` # @return [::Gapic::Config::Method] # attr_reader :create_service ## # RPC-specific configuration for `list_services` # @return [::Gapic::Config::Method] # attr_reader :list_services ## # RPC-specific configuration for `get_service` # @return [::Gapic::Config::Method] # attr_reader :get_service ## # RPC-specific configuration for `update_service` # @return [::Gapic::Config::Method] # attr_reader :update_service ## # RPC-specific configuration for `delete_service` # @return [::Gapic::Config::Method] # attr_reader :delete_service ## # RPC-specific configuration for `create_endpoint` # @return [::Gapic::Config::Method] # attr_reader :create_endpoint ## # RPC-specific configuration for `list_endpoints` # @return [::Gapic::Config::Method] # attr_reader :list_endpoints ## # RPC-specific configuration for `get_endpoint` # @return [::Gapic::Config::Method] # attr_reader :get_endpoint ## # RPC-specific configuration for `update_endpoint` # @return [::Gapic::Config::Method] # attr_reader :update_endpoint ## # RPC-specific configuration for `delete_endpoint` # @return [::Gapic::Config::Method] # attr_reader :delete_endpoint ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil create_namespace_config = parent_rpcs.create_namespace if parent_rpcs.respond_to? :create_namespace @create_namespace = ::Gapic::Config::Method.new create_namespace_config list_namespaces_config = parent_rpcs.list_namespaces if parent_rpcs.respond_to? :list_namespaces @list_namespaces = ::Gapic::Config::Method.new list_namespaces_config get_namespace_config = parent_rpcs.get_namespace if parent_rpcs.respond_to? :get_namespace @get_namespace = ::Gapic::Config::Method.new get_namespace_config update_namespace_config = parent_rpcs.update_namespace if parent_rpcs.respond_to? :update_namespace @update_namespace = ::Gapic::Config::Method.new update_namespace_config delete_namespace_config = parent_rpcs.delete_namespace if parent_rpcs.respond_to? :delete_namespace @delete_namespace = ::Gapic::Config::Method.new delete_namespace_config create_service_config = parent_rpcs.create_service if parent_rpcs.respond_to? :create_service @create_service = ::Gapic::Config::Method.new create_service_config list_services_config = parent_rpcs.list_services if parent_rpcs.respond_to? :list_services @list_services = ::Gapic::Config::Method.new list_services_config get_service_config = parent_rpcs.get_service if parent_rpcs.respond_to? :get_service @get_service = ::Gapic::Config::Method.new get_service_config update_service_config = parent_rpcs.update_service if parent_rpcs.respond_to? :update_service @update_service = ::Gapic::Config::Method.new update_service_config delete_service_config = parent_rpcs.delete_service if parent_rpcs.respond_to? :delete_service @delete_service = ::Gapic::Config::Method.new delete_service_config create_endpoint_config = parent_rpcs.create_endpoint if parent_rpcs.respond_to? :create_endpoint @create_endpoint = ::Gapic::Config::Method.new create_endpoint_config list_endpoints_config = parent_rpcs.list_endpoints if parent_rpcs.respond_to? :list_endpoints @list_endpoints = ::Gapic::Config::Method.new list_endpoints_config get_endpoint_config = parent_rpcs.get_endpoint if parent_rpcs.respond_to? :get_endpoint @get_endpoint = ::Gapic::Config::Method.new get_endpoint_config update_endpoint_config = parent_rpcs.update_endpoint if parent_rpcs.respond_to? :update_endpoint @update_endpoint = ::Gapic::Config::Method.new update_endpoint_config delete_endpoint_config = parent_rpcs.delete_endpoint if parent_rpcs.respond_to? :delete_endpoint @delete_endpoint = ::Gapic::Config::Method.new delete_endpoint_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 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 = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
#scope ⇒ ::Array<::String>
The OAuth scopes
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/google/cloud/service_directory/v1/registration_service/client.rb', line 2053 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "servicedirectory.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the RegistrationService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_namespace` # @return [::Gapic::Config::Method] # attr_reader :create_namespace ## # RPC-specific configuration for `list_namespaces` # @return [::Gapic::Config::Method] # attr_reader :list_namespaces ## # RPC-specific configuration for `get_namespace` # @return [::Gapic::Config::Method] # attr_reader :get_namespace ## # RPC-specific configuration for `update_namespace` # @return [::Gapic::Config::Method] # attr_reader :update_namespace ## # RPC-specific configuration for `delete_namespace` # @return [::Gapic::Config::Method] # attr_reader :delete_namespace ## # RPC-specific configuration for `create_service` # @return [::Gapic::Config::Method] # attr_reader :create_service ## # RPC-specific configuration for `list_services` # @return [::Gapic::Config::Method] # attr_reader :list_services ## # RPC-specific configuration for `get_service` # @return [::Gapic::Config::Method] # attr_reader :get_service ## # RPC-specific configuration for `update_service` # @return [::Gapic::Config::Method] # attr_reader :update_service ## # RPC-specific configuration for `delete_service` # @return [::Gapic::Config::Method] # attr_reader :delete_service ## # RPC-specific configuration for `create_endpoint` # @return [::Gapic::Config::Method] # attr_reader :create_endpoint ## # RPC-specific configuration for `list_endpoints` # @return [::Gapic::Config::Method] # attr_reader :list_endpoints ## # RPC-specific configuration for `get_endpoint` # @return [::Gapic::Config::Method] # attr_reader :get_endpoint ## # RPC-specific configuration for `update_endpoint` # @return [::Gapic::Config::Method] # attr_reader :update_endpoint ## # RPC-specific configuration for `delete_endpoint` # @return [::Gapic::Config::Method] # attr_reader :delete_endpoint ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil create_namespace_config = parent_rpcs.create_namespace if parent_rpcs.respond_to? :create_namespace @create_namespace = ::Gapic::Config::Method.new create_namespace_config list_namespaces_config = parent_rpcs.list_namespaces if parent_rpcs.respond_to? :list_namespaces @list_namespaces = ::Gapic::Config::Method.new list_namespaces_config get_namespace_config = parent_rpcs.get_namespace if parent_rpcs.respond_to? :get_namespace @get_namespace = ::Gapic::Config::Method.new get_namespace_config update_namespace_config = parent_rpcs.update_namespace if parent_rpcs.respond_to? :update_namespace @update_namespace = ::Gapic::Config::Method.new update_namespace_config delete_namespace_config = parent_rpcs.delete_namespace if parent_rpcs.respond_to? :delete_namespace @delete_namespace = ::Gapic::Config::Method.new delete_namespace_config create_service_config = parent_rpcs.create_service if parent_rpcs.respond_to? :create_service @create_service = ::Gapic::Config::Method.new create_service_config list_services_config = parent_rpcs.list_services if parent_rpcs.respond_to? :list_services @list_services = ::Gapic::Config::Method.new list_services_config get_service_config = parent_rpcs.get_service if parent_rpcs.respond_to? :get_service @get_service = ::Gapic::Config::Method.new get_service_config update_service_config = parent_rpcs.update_service if parent_rpcs.respond_to? :update_service @update_service = ::Gapic::Config::Method.new update_service_config delete_service_config = parent_rpcs.delete_service if parent_rpcs.respond_to? :delete_service @delete_service = ::Gapic::Config::Method.new delete_service_config create_endpoint_config = parent_rpcs.create_endpoint if parent_rpcs.respond_to? :create_endpoint @create_endpoint = ::Gapic::Config::Method.new create_endpoint_config list_endpoints_config = parent_rpcs.list_endpoints if parent_rpcs.respond_to? :list_endpoints @list_endpoints = ::Gapic::Config::Method.new list_endpoints_config get_endpoint_config = parent_rpcs.get_endpoint if parent_rpcs.respond_to? :get_endpoint @get_endpoint = ::Gapic::Config::Method.new get_endpoint_config update_endpoint_config = parent_rpcs.update_endpoint if parent_rpcs.respond_to? :update_endpoint @update_endpoint = ::Gapic::Config::Method.new update_endpoint_config delete_endpoint_config = parent_rpcs.delete_endpoint if parent_rpcs.respond_to? :delete_endpoint @delete_endpoint = ::Gapic::Config::Method.new delete_endpoint_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 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 = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
#timeout ⇒ ::Numeric
The call timeout in seconds.
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/google/cloud/service_directory/v1/registration_service/client.rb', line 2053 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "servicedirectory.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the RegistrationService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_namespace` # @return [::Gapic::Config::Method] # attr_reader :create_namespace ## # RPC-specific configuration for `list_namespaces` # @return [::Gapic::Config::Method] # attr_reader :list_namespaces ## # RPC-specific configuration for `get_namespace` # @return [::Gapic::Config::Method] # attr_reader :get_namespace ## # RPC-specific configuration for `update_namespace` # @return [::Gapic::Config::Method] # attr_reader :update_namespace ## # RPC-specific configuration for `delete_namespace` # @return [::Gapic::Config::Method] # attr_reader :delete_namespace ## # RPC-specific configuration for `create_service` # @return [::Gapic::Config::Method] # attr_reader :create_service ## # RPC-specific configuration for `list_services` # @return [::Gapic::Config::Method] # attr_reader :list_services ## # RPC-specific configuration for `get_service` # @return [::Gapic::Config::Method] # attr_reader :get_service ## # RPC-specific configuration for `update_service` # @return [::Gapic::Config::Method] # attr_reader :update_service ## # RPC-specific configuration for `delete_service` # @return [::Gapic::Config::Method] # attr_reader :delete_service ## # RPC-specific configuration for `create_endpoint` # @return [::Gapic::Config::Method] # attr_reader :create_endpoint ## # RPC-specific configuration for `list_endpoints` # @return [::Gapic::Config::Method] # attr_reader :list_endpoints ## # RPC-specific configuration for `get_endpoint` # @return [::Gapic::Config::Method] # attr_reader :get_endpoint ## # RPC-specific configuration for `update_endpoint` # @return [::Gapic::Config::Method] # attr_reader :update_endpoint ## # RPC-specific configuration for `delete_endpoint` # @return [::Gapic::Config::Method] # attr_reader :delete_endpoint ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil create_namespace_config = parent_rpcs.create_namespace if parent_rpcs.respond_to? :create_namespace @create_namespace = ::Gapic::Config::Method.new create_namespace_config list_namespaces_config = parent_rpcs.list_namespaces if parent_rpcs.respond_to? :list_namespaces @list_namespaces = ::Gapic::Config::Method.new list_namespaces_config get_namespace_config = parent_rpcs.get_namespace if parent_rpcs.respond_to? :get_namespace @get_namespace = ::Gapic::Config::Method.new get_namespace_config update_namespace_config = parent_rpcs.update_namespace if parent_rpcs.respond_to? :update_namespace @update_namespace = ::Gapic::Config::Method.new update_namespace_config delete_namespace_config = parent_rpcs.delete_namespace if parent_rpcs.respond_to? :delete_namespace @delete_namespace = ::Gapic::Config::Method.new delete_namespace_config create_service_config = parent_rpcs.create_service if parent_rpcs.respond_to? :create_service @create_service = ::Gapic::Config::Method.new create_service_config list_services_config = parent_rpcs.list_services if parent_rpcs.respond_to? :list_services @list_services = ::Gapic::Config::Method.new list_services_config get_service_config = parent_rpcs.get_service if parent_rpcs.respond_to? :get_service @get_service = ::Gapic::Config::Method.new get_service_config update_service_config = parent_rpcs.update_service if parent_rpcs.respond_to? :update_service @update_service = ::Gapic::Config::Method.new update_service_config delete_service_config = parent_rpcs.delete_service if parent_rpcs.respond_to? :delete_service @delete_service = ::Gapic::Config::Method.new delete_service_config create_endpoint_config = parent_rpcs.create_endpoint if parent_rpcs.respond_to? :create_endpoint @create_endpoint = ::Gapic::Config::Method.new create_endpoint_config list_endpoints_config = parent_rpcs.list_endpoints if parent_rpcs.respond_to? :list_endpoints @list_endpoints = ::Gapic::Config::Method.new list_endpoints_config get_endpoint_config = parent_rpcs.get_endpoint if parent_rpcs.respond_to? :get_endpoint @get_endpoint = ::Gapic::Config::Method.new get_endpoint_config update_endpoint_config = parent_rpcs.update_endpoint if parent_rpcs.respond_to? :update_endpoint @update_endpoint = ::Gapic::Config::Method.new update_endpoint_config delete_endpoint_config = parent_rpcs.delete_endpoint if parent_rpcs.respond_to? :delete_endpoint @delete_endpoint = ::Gapic::Config::Method.new delete_endpoint_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 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 = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new 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).
2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 |
# File 'lib/google/cloud/service_directory/v1/registration_service/client.rb', line 2053 class Configuration extend ::Gapic::Config # @private # The endpoint specific to the default "googleapis.com" universe. Deprecated. DEFAULT_ENDPOINT = "servicedirectory.googleapis.com" config_attr :endpoint, nil, ::String, nil config_attr :credentials, nil do |value| allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil] allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC allowed.any? { |klass| klass === value } end config_attr :scope, nil, ::String, ::Array, nil config_attr :lib_name, nil, ::String, nil config_attr :lib_version, nil, ::String, nil config_attr(:channel_args, { "grpc.service_config_disable_resolution" => 1 }, ::Hash, nil) config_attr :interceptors, nil, ::Array, nil config_attr :timeout, nil, ::Numeric, nil config_attr :metadata, nil, ::Hash, nil config_attr :retry_policy, nil, ::Hash, ::Proc, nil config_attr :quota_project, nil, ::String, nil config_attr :universe_domain, nil, ::String, nil # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration for the channel pool # @return [::Gapic::ServiceStub::ChannelPool::Configuration] # def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end ## # Configuration RPC class for the RegistrationService API. # # Includes fields providing the configuration for each RPC in this service. # Each configuration object is of type `Gapic::Config::Method` and includes # the following configuration fields: # # * `timeout` (*type:* `Numeric`) - The call timeout in seconds # * `metadata` (*type:* `Hash{Symbol=>String}`) - Additional gRPC headers # * `retry_policy (*type:* `Hash`) - The retry policy. The policy fields # include the following keys: # * `:initial_delay` (*type:* `Numeric`) - The initial delay in seconds. # * `:max_delay` (*type:* `Numeric`) - The max delay in seconds. # * `:multiplier` (*type:* `Numeric`) - The incremental backoff multiplier. # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should # trigger a retry. # class Rpcs ## # RPC-specific configuration for `create_namespace` # @return [::Gapic::Config::Method] # attr_reader :create_namespace ## # RPC-specific configuration for `list_namespaces` # @return [::Gapic::Config::Method] # attr_reader :list_namespaces ## # RPC-specific configuration for `get_namespace` # @return [::Gapic::Config::Method] # attr_reader :get_namespace ## # RPC-specific configuration for `update_namespace` # @return [::Gapic::Config::Method] # attr_reader :update_namespace ## # RPC-specific configuration for `delete_namespace` # @return [::Gapic::Config::Method] # attr_reader :delete_namespace ## # RPC-specific configuration for `create_service` # @return [::Gapic::Config::Method] # attr_reader :create_service ## # RPC-specific configuration for `list_services` # @return [::Gapic::Config::Method] # attr_reader :list_services ## # RPC-specific configuration for `get_service` # @return [::Gapic::Config::Method] # attr_reader :get_service ## # RPC-specific configuration for `update_service` # @return [::Gapic::Config::Method] # attr_reader :update_service ## # RPC-specific configuration for `delete_service` # @return [::Gapic::Config::Method] # attr_reader :delete_service ## # RPC-specific configuration for `create_endpoint` # @return [::Gapic::Config::Method] # attr_reader :create_endpoint ## # RPC-specific configuration for `list_endpoints` # @return [::Gapic::Config::Method] # attr_reader :list_endpoints ## # RPC-specific configuration for `get_endpoint` # @return [::Gapic::Config::Method] # attr_reader :get_endpoint ## # RPC-specific configuration for `update_endpoint` # @return [::Gapic::Config::Method] # attr_reader :update_endpoint ## # RPC-specific configuration for `delete_endpoint` # @return [::Gapic::Config::Method] # attr_reader :delete_endpoint ## # RPC-specific configuration for `get_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :get_iam_policy ## # RPC-specific configuration for `set_iam_policy` # @return [::Gapic::Config::Method] # attr_reader :set_iam_policy ## # RPC-specific configuration for `test_iam_permissions` # @return [::Gapic::Config::Method] # attr_reader :test_iam_permissions # @private def initialize parent_rpcs = nil create_namespace_config = parent_rpcs.create_namespace if parent_rpcs.respond_to? :create_namespace @create_namespace = ::Gapic::Config::Method.new create_namespace_config list_namespaces_config = parent_rpcs.list_namespaces if parent_rpcs.respond_to? :list_namespaces @list_namespaces = ::Gapic::Config::Method.new list_namespaces_config get_namespace_config = parent_rpcs.get_namespace if parent_rpcs.respond_to? :get_namespace @get_namespace = ::Gapic::Config::Method.new get_namespace_config update_namespace_config = parent_rpcs.update_namespace if parent_rpcs.respond_to? :update_namespace @update_namespace = ::Gapic::Config::Method.new update_namespace_config delete_namespace_config = parent_rpcs.delete_namespace if parent_rpcs.respond_to? :delete_namespace @delete_namespace = ::Gapic::Config::Method.new delete_namespace_config create_service_config = parent_rpcs.create_service if parent_rpcs.respond_to? :create_service @create_service = ::Gapic::Config::Method.new create_service_config list_services_config = parent_rpcs.list_services if parent_rpcs.respond_to? :list_services @list_services = ::Gapic::Config::Method.new list_services_config get_service_config = parent_rpcs.get_service if parent_rpcs.respond_to? :get_service @get_service = ::Gapic::Config::Method.new get_service_config update_service_config = parent_rpcs.update_service if parent_rpcs.respond_to? :update_service @update_service = ::Gapic::Config::Method.new update_service_config delete_service_config = parent_rpcs.delete_service if parent_rpcs.respond_to? :delete_service @delete_service = ::Gapic::Config::Method.new delete_service_config create_endpoint_config = parent_rpcs.create_endpoint if parent_rpcs.respond_to? :create_endpoint @create_endpoint = ::Gapic::Config::Method.new create_endpoint_config list_endpoints_config = parent_rpcs.list_endpoints if parent_rpcs.respond_to? :list_endpoints @list_endpoints = ::Gapic::Config::Method.new list_endpoints_config get_endpoint_config = parent_rpcs.get_endpoint if parent_rpcs.respond_to? :get_endpoint @get_endpoint = ::Gapic::Config::Method.new get_endpoint_config update_endpoint_config = parent_rpcs.update_endpoint if parent_rpcs.respond_to? :update_endpoint @update_endpoint = ::Gapic::Config::Method.new update_endpoint_config delete_endpoint_config = parent_rpcs.delete_endpoint if parent_rpcs.respond_to? :delete_endpoint @delete_endpoint = ::Gapic::Config::Method.new delete_endpoint_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 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 = parent_rpcs. if parent_rpcs.respond_to? :test_iam_permissions @test_iam_permissions = ::Gapic::Config::Method.new yield self if block_given? end end end |
Instance Method Details
#channel_pool ⇒ ::Gapic::ServiceStub::ChannelPool::Configuration
Configuration for the channel pool
2100 2101 2102 |
# File 'lib/google/cloud/service_directory/v1/registration_service/client.rb', line 2100 def channel_pool @channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new end |
#rpcs ⇒ Rpcs
Configurations for individual RPCs
2088 2089 2090 2091 2092 2093 2094 |
# File 'lib/google/cloud/service_directory/v1/registration_service/client.rb', line 2088 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 |