Class: Google::Cloud::AutoML::V1::AutoML::Client::Configuration
- Inherits:
-
Object
- Object
- Google::Cloud::AutoML::V1::AutoML::Client::Configuration
- Extended by:
- Gapic::Config
- Defined in:
- lib/google/cloud/automl/v1/automl/client.rb
Overview
Configuration class for the AutoMl API.
This class represents the configuration for AutoMl, 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
Constant Summary collapse
- DEFAULT_ENDPOINT =
"automl.googleapis.com"
Instance Attribute Summary collapse
-
#channel_args ⇒ ::Hash
Extra parameters passed to the gRPC channel.
-
#credentials ⇒ ::Object
Credentials to send with calls.
-
#endpoint ⇒ ::String
The hostname or hostname:port of the service endpoint.
-
#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.
Instance Method Summary collapse
-
#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.
2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 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 |
# File 'lib/google/cloud/automl/v1/automl/client.rb', line 2050 class Configuration extend ::Gapic::Config DEFAULT_ENDPOINT = "automl.googleapis.com" config_attr :endpoint, DEFAULT_ENDPOINT, ::String 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 # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the AutoMl 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_dataset` # @return [::Gapic::Config::Method] # attr_reader :create_dataset ## # RPC-specific configuration for `get_dataset` # @return [::Gapic::Config::Method] # attr_reader :get_dataset ## # RPC-specific configuration for `list_datasets` # @return [::Gapic::Config::Method] # attr_reader :list_datasets ## # RPC-specific configuration for `update_dataset` # @return [::Gapic::Config::Method] # attr_reader :update_dataset ## # RPC-specific configuration for `delete_dataset` # @return [::Gapic::Config::Method] # attr_reader :delete_dataset ## # RPC-specific configuration for `import_data` # @return [::Gapic::Config::Method] # attr_reader :import_data ## # RPC-specific configuration for `export_data` # @return [::Gapic::Config::Method] # attr_reader :export_data ## # RPC-specific configuration for `get_annotation_spec` # @return [::Gapic::Config::Method] # attr_reader :get_annotation_spec ## # RPC-specific configuration for `create_model` # @return [::Gapic::Config::Method] # attr_reader :create_model ## # RPC-specific configuration for `get_model` # @return [::Gapic::Config::Method] # attr_reader :get_model ## # RPC-specific configuration for `list_models` # @return [::Gapic::Config::Method] # attr_reader :list_models ## # RPC-specific configuration for `delete_model` # @return [::Gapic::Config::Method] # attr_reader :delete_model ## # RPC-specific configuration for `update_model` # @return [::Gapic::Config::Method] # attr_reader :update_model ## # RPC-specific configuration for `deploy_model` # @return [::Gapic::Config::Method] # attr_reader :deploy_model ## # RPC-specific configuration for `undeploy_model` # @return [::Gapic::Config::Method] # attr_reader :undeploy_model ## # RPC-specific configuration for `export_model` # @return [::Gapic::Config::Method] # attr_reader :export_model ## # RPC-specific configuration for `get_model_evaluation` # @return [::Gapic::Config::Method] # attr_reader :get_model_evaluation ## # RPC-specific configuration for `list_model_evaluations` # @return [::Gapic::Config::Method] # attr_reader :list_model_evaluations # @private def initialize parent_rpcs = nil create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset @create_dataset = ::Gapic::Config::Method.new create_dataset_config get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset @get_dataset = ::Gapic::Config::Method.new get_dataset_config list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets @list_datasets = ::Gapic::Config::Method.new list_datasets_config update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset @update_dataset = ::Gapic::Config::Method.new update_dataset_config delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data @import_data = ::Gapic::Config::Method.new import_data_config export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data @export_data = ::Gapic::Config::Method.new export_data_config get_annotation_spec_config = parent_rpcs.get_annotation_spec if parent_rpcs.respond_to? :get_annotation_spec @get_annotation_spec = ::Gapic::Config::Method.new get_annotation_spec_config create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model @create_model = ::Gapic::Config::Method.new create_model_config get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model @get_model = ::Gapic::Config::Method.new get_model_config list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models @list_models = ::Gapic::Config::Method.new list_models_config delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model @delete_model = ::Gapic::Config::Method.new delete_model_config update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model @update_model = ::Gapic::Config::Method.new update_model_config deploy_model_config = parent_rpcs.deploy_model if parent_rpcs.respond_to? :deploy_model @deploy_model = ::Gapic::Config::Method.new deploy_model_config undeploy_model_config = parent_rpcs.undeploy_model if parent_rpcs.respond_to? :undeploy_model @undeploy_model = ::Gapic::Config::Method.new undeploy_model_config export_model_config = parent_rpcs.export_model if parent_rpcs.respond_to? :export_model @export_model = ::Gapic::Config::Method.new export_model_config get_model_evaluation_config = parent_rpcs.get_model_evaluation if parent_rpcs.respond_to? :get_model_evaluation @get_model_evaluation = ::Gapic::Config::Method.new get_model_evaluation_config list_model_evaluations_config = parent_rpcs.list_model_evaluations if parent_rpcs.respond_to? :list_model_evaluations @list_model_evaluations = ::Gapic::Config::Method.new list_model_evaluations_config yield self if block_given? end end end |
#credentials ⇒ ::Object
Credentials to send with calls. You may provide any of the following types:
- (
String
) The path to a service account key file in JSON format - (
Hash
) A service account key as a Hash - (
Google::Auth::Credentials
) A googleauth credentials object (see the googleauth docs) - (
Signet::OAuth2::Client
) A signet oauth2 client object (see the signet docs) - (
GRPC::Core::Channel
) a gRPC channel with included credentials - (
GRPC::Core::ChannelCredentials
) a gRPC credentails object - (
nil
) indicating no credentials
2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 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 |
# File 'lib/google/cloud/automl/v1/automl/client.rb', line 2050 class Configuration extend ::Gapic::Config DEFAULT_ENDPOINT = "automl.googleapis.com" config_attr :endpoint, DEFAULT_ENDPOINT, ::String 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 # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the AutoMl 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_dataset` # @return [::Gapic::Config::Method] # attr_reader :create_dataset ## # RPC-specific configuration for `get_dataset` # @return [::Gapic::Config::Method] # attr_reader :get_dataset ## # RPC-specific configuration for `list_datasets` # @return [::Gapic::Config::Method] # attr_reader :list_datasets ## # RPC-specific configuration for `update_dataset` # @return [::Gapic::Config::Method] # attr_reader :update_dataset ## # RPC-specific configuration for `delete_dataset` # @return [::Gapic::Config::Method] # attr_reader :delete_dataset ## # RPC-specific configuration for `import_data` # @return [::Gapic::Config::Method] # attr_reader :import_data ## # RPC-specific configuration for `export_data` # @return [::Gapic::Config::Method] # attr_reader :export_data ## # RPC-specific configuration for `get_annotation_spec` # @return [::Gapic::Config::Method] # attr_reader :get_annotation_spec ## # RPC-specific configuration for `create_model` # @return [::Gapic::Config::Method] # attr_reader :create_model ## # RPC-specific configuration for `get_model` # @return [::Gapic::Config::Method] # attr_reader :get_model ## # RPC-specific configuration for `list_models` # @return [::Gapic::Config::Method] # attr_reader :list_models ## # RPC-specific configuration for `delete_model` # @return [::Gapic::Config::Method] # attr_reader :delete_model ## # RPC-specific configuration for `update_model` # @return [::Gapic::Config::Method] # attr_reader :update_model ## # RPC-specific configuration for `deploy_model` # @return [::Gapic::Config::Method] # attr_reader :deploy_model ## # RPC-specific configuration for `undeploy_model` # @return [::Gapic::Config::Method] # attr_reader :undeploy_model ## # RPC-specific configuration for `export_model` # @return [::Gapic::Config::Method] # attr_reader :export_model ## # RPC-specific configuration for `get_model_evaluation` # @return [::Gapic::Config::Method] # attr_reader :get_model_evaluation ## # RPC-specific configuration for `list_model_evaluations` # @return [::Gapic::Config::Method] # attr_reader :list_model_evaluations # @private def initialize parent_rpcs = nil create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset @create_dataset = ::Gapic::Config::Method.new create_dataset_config get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset @get_dataset = ::Gapic::Config::Method.new get_dataset_config list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets @list_datasets = ::Gapic::Config::Method.new list_datasets_config update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset @update_dataset = ::Gapic::Config::Method.new update_dataset_config delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data @import_data = ::Gapic::Config::Method.new import_data_config export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data @export_data = ::Gapic::Config::Method.new export_data_config get_annotation_spec_config = parent_rpcs.get_annotation_spec if parent_rpcs.respond_to? :get_annotation_spec @get_annotation_spec = ::Gapic::Config::Method.new get_annotation_spec_config create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model @create_model = ::Gapic::Config::Method.new create_model_config get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model @get_model = ::Gapic::Config::Method.new get_model_config list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models @list_models = ::Gapic::Config::Method.new list_models_config delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model @delete_model = ::Gapic::Config::Method.new delete_model_config update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model @update_model = ::Gapic::Config::Method.new update_model_config deploy_model_config = parent_rpcs.deploy_model if parent_rpcs.respond_to? :deploy_model @deploy_model = ::Gapic::Config::Method.new deploy_model_config undeploy_model_config = parent_rpcs.undeploy_model if parent_rpcs.respond_to? :undeploy_model @undeploy_model = ::Gapic::Config::Method.new undeploy_model_config export_model_config = parent_rpcs.export_model if parent_rpcs.respond_to? :export_model @export_model = ::Gapic::Config::Method.new export_model_config get_model_evaluation_config = parent_rpcs.get_model_evaluation if parent_rpcs.respond_to? :get_model_evaluation @get_model_evaluation = ::Gapic::Config::Method.new get_model_evaluation_config list_model_evaluations_config = parent_rpcs.list_model_evaluations if parent_rpcs.respond_to? :list_model_evaluations @list_model_evaluations = ::Gapic::Config::Method.new list_model_evaluations_config yield self if block_given? end end end |
#endpoint ⇒ ::String
The hostname or hostname:port of the service endpoint.
Defaults to "automl.googleapis.com"
.
2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 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 |
# File 'lib/google/cloud/automl/v1/automl/client.rb', line 2050 class Configuration extend ::Gapic::Config DEFAULT_ENDPOINT = "automl.googleapis.com" config_attr :endpoint, DEFAULT_ENDPOINT, ::String 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 # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the AutoMl 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_dataset` # @return [::Gapic::Config::Method] # attr_reader :create_dataset ## # RPC-specific configuration for `get_dataset` # @return [::Gapic::Config::Method] # attr_reader :get_dataset ## # RPC-specific configuration for `list_datasets` # @return [::Gapic::Config::Method] # attr_reader :list_datasets ## # RPC-specific configuration for `update_dataset` # @return [::Gapic::Config::Method] # attr_reader :update_dataset ## # RPC-specific configuration for `delete_dataset` # @return [::Gapic::Config::Method] # attr_reader :delete_dataset ## # RPC-specific configuration for `import_data` # @return [::Gapic::Config::Method] # attr_reader :import_data ## # RPC-specific configuration for `export_data` # @return [::Gapic::Config::Method] # attr_reader :export_data ## # RPC-specific configuration for `get_annotation_spec` # @return [::Gapic::Config::Method] # attr_reader :get_annotation_spec ## # RPC-specific configuration for `create_model` # @return [::Gapic::Config::Method] # attr_reader :create_model ## # RPC-specific configuration for `get_model` # @return [::Gapic::Config::Method] # attr_reader :get_model ## # RPC-specific configuration for `list_models` # @return [::Gapic::Config::Method] # attr_reader :list_models ## # RPC-specific configuration for `delete_model` # @return [::Gapic::Config::Method] # attr_reader :delete_model ## # RPC-specific configuration for `update_model` # @return [::Gapic::Config::Method] # attr_reader :update_model ## # RPC-specific configuration for `deploy_model` # @return [::Gapic::Config::Method] # attr_reader :deploy_model ## # RPC-specific configuration for `undeploy_model` # @return [::Gapic::Config::Method] # attr_reader :undeploy_model ## # RPC-specific configuration for `export_model` # @return [::Gapic::Config::Method] # attr_reader :export_model ## # RPC-specific configuration for `get_model_evaluation` # @return [::Gapic::Config::Method] # attr_reader :get_model_evaluation ## # RPC-specific configuration for `list_model_evaluations` # @return [::Gapic::Config::Method] # attr_reader :list_model_evaluations # @private def initialize parent_rpcs = nil create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset @create_dataset = ::Gapic::Config::Method.new create_dataset_config get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset @get_dataset = ::Gapic::Config::Method.new get_dataset_config list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets @list_datasets = ::Gapic::Config::Method.new list_datasets_config update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset @update_dataset = ::Gapic::Config::Method.new update_dataset_config delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data @import_data = ::Gapic::Config::Method.new import_data_config export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data @export_data = ::Gapic::Config::Method.new export_data_config get_annotation_spec_config = parent_rpcs.get_annotation_spec if parent_rpcs.respond_to? :get_annotation_spec @get_annotation_spec = ::Gapic::Config::Method.new get_annotation_spec_config create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model @create_model = ::Gapic::Config::Method.new create_model_config get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model @get_model = ::Gapic::Config::Method.new get_model_config list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models @list_models = ::Gapic::Config::Method.new list_models_config delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model @delete_model = ::Gapic::Config::Method.new delete_model_config update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model @update_model = ::Gapic::Config::Method.new update_model_config deploy_model_config = parent_rpcs.deploy_model if parent_rpcs.respond_to? :deploy_model @deploy_model = ::Gapic::Config::Method.new deploy_model_config undeploy_model_config = parent_rpcs.undeploy_model if parent_rpcs.respond_to? :undeploy_model @undeploy_model = ::Gapic::Config::Method.new undeploy_model_config export_model_config = parent_rpcs.export_model if parent_rpcs.respond_to? :export_model @export_model = ::Gapic::Config::Method.new export_model_config get_model_evaluation_config = parent_rpcs.get_model_evaluation if parent_rpcs.respond_to? :get_model_evaluation @get_model_evaluation = ::Gapic::Config::Method.new get_model_evaluation_config list_model_evaluations_config = parent_rpcs.list_model_evaluations if parent_rpcs.respond_to? :list_model_evaluations @list_model_evaluations = ::Gapic::Config::Method.new list_model_evaluations_config yield self if block_given? end end end |
#interceptors ⇒ ::Array<::GRPC::ClientInterceptor>
An array of interceptors that are run before calls are executed.
2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 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 |
# File 'lib/google/cloud/automl/v1/automl/client.rb', line 2050 class Configuration extend ::Gapic::Config DEFAULT_ENDPOINT = "automl.googleapis.com" config_attr :endpoint, DEFAULT_ENDPOINT, ::String 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 # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the AutoMl 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_dataset` # @return [::Gapic::Config::Method] # attr_reader :create_dataset ## # RPC-specific configuration for `get_dataset` # @return [::Gapic::Config::Method] # attr_reader :get_dataset ## # RPC-specific configuration for `list_datasets` # @return [::Gapic::Config::Method] # attr_reader :list_datasets ## # RPC-specific configuration for `update_dataset` # @return [::Gapic::Config::Method] # attr_reader :update_dataset ## # RPC-specific configuration for `delete_dataset` # @return [::Gapic::Config::Method] # attr_reader :delete_dataset ## # RPC-specific configuration for `import_data` # @return [::Gapic::Config::Method] # attr_reader :import_data ## # RPC-specific configuration for `export_data` # @return [::Gapic::Config::Method] # attr_reader :export_data ## # RPC-specific configuration for `get_annotation_spec` # @return [::Gapic::Config::Method] # attr_reader :get_annotation_spec ## # RPC-specific configuration for `create_model` # @return [::Gapic::Config::Method] # attr_reader :create_model ## # RPC-specific configuration for `get_model` # @return [::Gapic::Config::Method] # attr_reader :get_model ## # RPC-specific configuration for `list_models` # @return [::Gapic::Config::Method] # attr_reader :list_models ## # RPC-specific configuration for `delete_model` # @return [::Gapic::Config::Method] # attr_reader :delete_model ## # RPC-specific configuration for `update_model` # @return [::Gapic::Config::Method] # attr_reader :update_model ## # RPC-specific configuration for `deploy_model` # @return [::Gapic::Config::Method] # attr_reader :deploy_model ## # RPC-specific configuration for `undeploy_model` # @return [::Gapic::Config::Method] # attr_reader :undeploy_model ## # RPC-specific configuration for `export_model` # @return [::Gapic::Config::Method] # attr_reader :export_model ## # RPC-specific configuration for `get_model_evaluation` # @return [::Gapic::Config::Method] # attr_reader :get_model_evaluation ## # RPC-specific configuration for `list_model_evaluations` # @return [::Gapic::Config::Method] # attr_reader :list_model_evaluations # @private def initialize parent_rpcs = nil create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset @create_dataset = ::Gapic::Config::Method.new create_dataset_config get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset @get_dataset = ::Gapic::Config::Method.new get_dataset_config list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets @list_datasets = ::Gapic::Config::Method.new list_datasets_config update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset @update_dataset = ::Gapic::Config::Method.new update_dataset_config delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data @import_data = ::Gapic::Config::Method.new import_data_config export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data @export_data = ::Gapic::Config::Method.new export_data_config get_annotation_spec_config = parent_rpcs.get_annotation_spec if parent_rpcs.respond_to? :get_annotation_spec @get_annotation_spec = ::Gapic::Config::Method.new get_annotation_spec_config create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model @create_model = ::Gapic::Config::Method.new create_model_config get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model @get_model = ::Gapic::Config::Method.new get_model_config list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models @list_models = ::Gapic::Config::Method.new list_models_config delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model @delete_model = ::Gapic::Config::Method.new delete_model_config update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model @update_model = ::Gapic::Config::Method.new update_model_config deploy_model_config = parent_rpcs.deploy_model if parent_rpcs.respond_to? :deploy_model @deploy_model = ::Gapic::Config::Method.new deploy_model_config undeploy_model_config = parent_rpcs.undeploy_model if parent_rpcs.respond_to? :undeploy_model @undeploy_model = ::Gapic::Config::Method.new undeploy_model_config export_model_config = parent_rpcs.export_model if parent_rpcs.respond_to? :export_model @export_model = ::Gapic::Config::Method.new export_model_config get_model_evaluation_config = parent_rpcs.get_model_evaluation if parent_rpcs.respond_to? :get_model_evaluation @get_model_evaluation = ::Gapic::Config::Method.new get_model_evaluation_config list_model_evaluations_config = parent_rpcs.list_model_evaluations if parent_rpcs.respond_to? :list_model_evaluations @list_model_evaluations = ::Gapic::Config::Method.new list_model_evaluations_config yield self if block_given? end end end |
#lib_name ⇒ ::String
The library name as recorded in instrumentation and logging
2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 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 |
# File 'lib/google/cloud/automl/v1/automl/client.rb', line 2050 class Configuration extend ::Gapic::Config DEFAULT_ENDPOINT = "automl.googleapis.com" config_attr :endpoint, DEFAULT_ENDPOINT, ::String 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 # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the AutoMl 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_dataset` # @return [::Gapic::Config::Method] # attr_reader :create_dataset ## # RPC-specific configuration for `get_dataset` # @return [::Gapic::Config::Method] # attr_reader :get_dataset ## # RPC-specific configuration for `list_datasets` # @return [::Gapic::Config::Method] # attr_reader :list_datasets ## # RPC-specific configuration for `update_dataset` # @return [::Gapic::Config::Method] # attr_reader :update_dataset ## # RPC-specific configuration for `delete_dataset` # @return [::Gapic::Config::Method] # attr_reader :delete_dataset ## # RPC-specific configuration for `import_data` # @return [::Gapic::Config::Method] # attr_reader :import_data ## # RPC-specific configuration for `export_data` # @return [::Gapic::Config::Method] # attr_reader :export_data ## # RPC-specific configuration for `get_annotation_spec` # @return [::Gapic::Config::Method] # attr_reader :get_annotation_spec ## # RPC-specific configuration for `create_model` # @return [::Gapic::Config::Method] # attr_reader :create_model ## # RPC-specific configuration for `get_model` # @return [::Gapic::Config::Method] # attr_reader :get_model ## # RPC-specific configuration for `list_models` # @return [::Gapic::Config::Method] # attr_reader :list_models ## # RPC-specific configuration for `delete_model` # @return [::Gapic::Config::Method] # attr_reader :delete_model ## # RPC-specific configuration for `update_model` # @return [::Gapic::Config::Method] # attr_reader :update_model ## # RPC-specific configuration for `deploy_model` # @return [::Gapic::Config::Method] # attr_reader :deploy_model ## # RPC-specific configuration for `undeploy_model` # @return [::Gapic::Config::Method] # attr_reader :undeploy_model ## # RPC-specific configuration for `export_model` # @return [::Gapic::Config::Method] # attr_reader :export_model ## # RPC-specific configuration for `get_model_evaluation` # @return [::Gapic::Config::Method] # attr_reader :get_model_evaluation ## # RPC-specific configuration for `list_model_evaluations` # @return [::Gapic::Config::Method] # attr_reader :list_model_evaluations # @private def initialize parent_rpcs = nil create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset @create_dataset = ::Gapic::Config::Method.new create_dataset_config get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset @get_dataset = ::Gapic::Config::Method.new get_dataset_config list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets @list_datasets = ::Gapic::Config::Method.new list_datasets_config update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset @update_dataset = ::Gapic::Config::Method.new update_dataset_config delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data @import_data = ::Gapic::Config::Method.new import_data_config export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data @export_data = ::Gapic::Config::Method.new export_data_config get_annotation_spec_config = parent_rpcs.get_annotation_spec if parent_rpcs.respond_to? :get_annotation_spec @get_annotation_spec = ::Gapic::Config::Method.new get_annotation_spec_config create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model @create_model = ::Gapic::Config::Method.new create_model_config get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model @get_model = ::Gapic::Config::Method.new get_model_config list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models @list_models = ::Gapic::Config::Method.new list_models_config delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model @delete_model = ::Gapic::Config::Method.new delete_model_config update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model @update_model = ::Gapic::Config::Method.new update_model_config deploy_model_config = parent_rpcs.deploy_model if parent_rpcs.respond_to? :deploy_model @deploy_model = ::Gapic::Config::Method.new deploy_model_config undeploy_model_config = parent_rpcs.undeploy_model if parent_rpcs.respond_to? :undeploy_model @undeploy_model = ::Gapic::Config::Method.new undeploy_model_config export_model_config = parent_rpcs.export_model if parent_rpcs.respond_to? :export_model @export_model = ::Gapic::Config::Method.new export_model_config get_model_evaluation_config = parent_rpcs.get_model_evaluation if parent_rpcs.respond_to? :get_model_evaluation @get_model_evaluation = ::Gapic::Config::Method.new get_model_evaluation_config list_model_evaluations_config = parent_rpcs.list_model_evaluations if parent_rpcs.respond_to? :list_model_evaluations @list_model_evaluations = ::Gapic::Config::Method.new list_model_evaluations_config yield self if block_given? end end end |
#lib_version ⇒ ::String
The library version as recorded in instrumentation and logging
2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 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 |
# File 'lib/google/cloud/automl/v1/automl/client.rb', line 2050 class Configuration extend ::Gapic::Config DEFAULT_ENDPOINT = "automl.googleapis.com" config_attr :endpoint, DEFAULT_ENDPOINT, ::String 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 # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the AutoMl 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_dataset` # @return [::Gapic::Config::Method] # attr_reader :create_dataset ## # RPC-specific configuration for `get_dataset` # @return [::Gapic::Config::Method] # attr_reader :get_dataset ## # RPC-specific configuration for `list_datasets` # @return [::Gapic::Config::Method] # attr_reader :list_datasets ## # RPC-specific configuration for `update_dataset` # @return [::Gapic::Config::Method] # attr_reader :update_dataset ## # RPC-specific configuration for `delete_dataset` # @return [::Gapic::Config::Method] # attr_reader :delete_dataset ## # RPC-specific configuration for `import_data` # @return [::Gapic::Config::Method] # attr_reader :import_data ## # RPC-specific configuration for `export_data` # @return [::Gapic::Config::Method] # attr_reader :export_data ## # RPC-specific configuration for `get_annotation_spec` # @return [::Gapic::Config::Method] # attr_reader :get_annotation_spec ## # RPC-specific configuration for `create_model` # @return [::Gapic::Config::Method] # attr_reader :create_model ## # RPC-specific configuration for `get_model` # @return [::Gapic::Config::Method] # attr_reader :get_model ## # RPC-specific configuration for `list_models` # @return [::Gapic::Config::Method] # attr_reader :list_models ## # RPC-specific configuration for `delete_model` # @return [::Gapic::Config::Method] # attr_reader :delete_model ## # RPC-specific configuration for `update_model` # @return [::Gapic::Config::Method] # attr_reader :update_model ## # RPC-specific configuration for `deploy_model` # @return [::Gapic::Config::Method] # attr_reader :deploy_model ## # RPC-specific configuration for `undeploy_model` # @return [::Gapic::Config::Method] # attr_reader :undeploy_model ## # RPC-specific configuration for `export_model` # @return [::Gapic::Config::Method] # attr_reader :export_model ## # RPC-specific configuration for `get_model_evaluation` # @return [::Gapic::Config::Method] # attr_reader :get_model_evaluation ## # RPC-specific configuration for `list_model_evaluations` # @return [::Gapic::Config::Method] # attr_reader :list_model_evaluations # @private def initialize parent_rpcs = nil create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset @create_dataset = ::Gapic::Config::Method.new create_dataset_config get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset @get_dataset = ::Gapic::Config::Method.new get_dataset_config list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets @list_datasets = ::Gapic::Config::Method.new list_datasets_config update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset @update_dataset = ::Gapic::Config::Method.new update_dataset_config delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data @import_data = ::Gapic::Config::Method.new import_data_config export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data @export_data = ::Gapic::Config::Method.new export_data_config get_annotation_spec_config = parent_rpcs.get_annotation_spec if parent_rpcs.respond_to? :get_annotation_spec @get_annotation_spec = ::Gapic::Config::Method.new get_annotation_spec_config create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model @create_model = ::Gapic::Config::Method.new create_model_config get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model @get_model = ::Gapic::Config::Method.new get_model_config list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models @list_models = ::Gapic::Config::Method.new list_models_config delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model @delete_model = ::Gapic::Config::Method.new delete_model_config update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model @update_model = ::Gapic::Config::Method.new update_model_config deploy_model_config = parent_rpcs.deploy_model if parent_rpcs.respond_to? :deploy_model @deploy_model = ::Gapic::Config::Method.new deploy_model_config undeploy_model_config = parent_rpcs.undeploy_model if parent_rpcs.respond_to? :undeploy_model @undeploy_model = ::Gapic::Config::Method.new undeploy_model_config export_model_config = parent_rpcs.export_model if parent_rpcs.respond_to? :export_model @export_model = ::Gapic::Config::Method.new export_model_config get_model_evaluation_config = parent_rpcs.get_model_evaluation if parent_rpcs.respond_to? :get_model_evaluation @get_model_evaluation = ::Gapic::Config::Method.new get_model_evaluation_config list_model_evaluations_config = parent_rpcs.list_model_evaluations if parent_rpcs.respond_to? :list_model_evaluations @list_model_evaluations = ::Gapic::Config::Method.new list_model_evaluations_config yield self if block_given? end end end |
#metadata ⇒ ::Hash{::Symbol=>::String}
Additional gRPC headers to be sent with the call.
2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 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 |
# File 'lib/google/cloud/automl/v1/automl/client.rb', line 2050 class Configuration extend ::Gapic::Config DEFAULT_ENDPOINT = "automl.googleapis.com" config_attr :endpoint, DEFAULT_ENDPOINT, ::String 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 # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the AutoMl 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_dataset` # @return [::Gapic::Config::Method] # attr_reader :create_dataset ## # RPC-specific configuration for `get_dataset` # @return [::Gapic::Config::Method] # attr_reader :get_dataset ## # RPC-specific configuration for `list_datasets` # @return [::Gapic::Config::Method] # attr_reader :list_datasets ## # RPC-specific configuration for `update_dataset` # @return [::Gapic::Config::Method] # attr_reader :update_dataset ## # RPC-specific configuration for `delete_dataset` # @return [::Gapic::Config::Method] # attr_reader :delete_dataset ## # RPC-specific configuration for `import_data` # @return [::Gapic::Config::Method] # attr_reader :import_data ## # RPC-specific configuration for `export_data` # @return [::Gapic::Config::Method] # attr_reader :export_data ## # RPC-specific configuration for `get_annotation_spec` # @return [::Gapic::Config::Method] # attr_reader :get_annotation_spec ## # RPC-specific configuration for `create_model` # @return [::Gapic::Config::Method] # attr_reader :create_model ## # RPC-specific configuration for `get_model` # @return [::Gapic::Config::Method] # attr_reader :get_model ## # RPC-specific configuration for `list_models` # @return [::Gapic::Config::Method] # attr_reader :list_models ## # RPC-specific configuration for `delete_model` # @return [::Gapic::Config::Method] # attr_reader :delete_model ## # RPC-specific configuration for `update_model` # @return [::Gapic::Config::Method] # attr_reader :update_model ## # RPC-specific configuration for `deploy_model` # @return [::Gapic::Config::Method] # attr_reader :deploy_model ## # RPC-specific configuration for `undeploy_model` # @return [::Gapic::Config::Method] # attr_reader :undeploy_model ## # RPC-specific configuration for `export_model` # @return [::Gapic::Config::Method] # attr_reader :export_model ## # RPC-specific configuration for `get_model_evaluation` # @return [::Gapic::Config::Method] # attr_reader :get_model_evaluation ## # RPC-specific configuration for `list_model_evaluations` # @return [::Gapic::Config::Method] # attr_reader :list_model_evaluations # @private def initialize parent_rpcs = nil create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset @create_dataset = ::Gapic::Config::Method.new create_dataset_config get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset @get_dataset = ::Gapic::Config::Method.new get_dataset_config list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets @list_datasets = ::Gapic::Config::Method.new list_datasets_config update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset @update_dataset = ::Gapic::Config::Method.new update_dataset_config delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data @import_data = ::Gapic::Config::Method.new import_data_config export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data @export_data = ::Gapic::Config::Method.new export_data_config get_annotation_spec_config = parent_rpcs.get_annotation_spec if parent_rpcs.respond_to? :get_annotation_spec @get_annotation_spec = ::Gapic::Config::Method.new get_annotation_spec_config create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model @create_model = ::Gapic::Config::Method.new create_model_config get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model @get_model = ::Gapic::Config::Method.new get_model_config list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models @list_models = ::Gapic::Config::Method.new list_models_config delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model @delete_model = ::Gapic::Config::Method.new delete_model_config update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model @update_model = ::Gapic::Config::Method.new update_model_config deploy_model_config = parent_rpcs.deploy_model if parent_rpcs.respond_to? :deploy_model @deploy_model = ::Gapic::Config::Method.new deploy_model_config undeploy_model_config = parent_rpcs.undeploy_model if parent_rpcs.respond_to? :undeploy_model @undeploy_model = ::Gapic::Config::Method.new undeploy_model_config export_model_config = parent_rpcs.export_model if parent_rpcs.respond_to? :export_model @export_model = ::Gapic::Config::Method.new export_model_config get_model_evaluation_config = parent_rpcs.get_model_evaluation if parent_rpcs.respond_to? :get_model_evaluation @get_model_evaluation = ::Gapic::Config::Method.new get_model_evaluation_config list_model_evaluations_config = parent_rpcs.list_model_evaluations if parent_rpcs.respond_to? :list_model_evaluations @list_model_evaluations = ::Gapic::Config::Method.new list_model_evaluations_config yield self if block_given? end end end |
#quota_project ⇒ ::String
A separate project against which to charge quota.
2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 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 |
# File 'lib/google/cloud/automl/v1/automl/client.rb', line 2050 class Configuration extend ::Gapic::Config DEFAULT_ENDPOINT = "automl.googleapis.com" config_attr :endpoint, DEFAULT_ENDPOINT, ::String 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 # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the AutoMl 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_dataset` # @return [::Gapic::Config::Method] # attr_reader :create_dataset ## # RPC-specific configuration for `get_dataset` # @return [::Gapic::Config::Method] # attr_reader :get_dataset ## # RPC-specific configuration for `list_datasets` # @return [::Gapic::Config::Method] # attr_reader :list_datasets ## # RPC-specific configuration for `update_dataset` # @return [::Gapic::Config::Method] # attr_reader :update_dataset ## # RPC-specific configuration for `delete_dataset` # @return [::Gapic::Config::Method] # attr_reader :delete_dataset ## # RPC-specific configuration for `import_data` # @return [::Gapic::Config::Method] # attr_reader :import_data ## # RPC-specific configuration for `export_data` # @return [::Gapic::Config::Method] # attr_reader :export_data ## # RPC-specific configuration for `get_annotation_spec` # @return [::Gapic::Config::Method] # attr_reader :get_annotation_spec ## # RPC-specific configuration for `create_model` # @return [::Gapic::Config::Method] # attr_reader :create_model ## # RPC-specific configuration for `get_model` # @return [::Gapic::Config::Method] # attr_reader :get_model ## # RPC-specific configuration for `list_models` # @return [::Gapic::Config::Method] # attr_reader :list_models ## # RPC-specific configuration for `delete_model` # @return [::Gapic::Config::Method] # attr_reader :delete_model ## # RPC-specific configuration for `update_model` # @return [::Gapic::Config::Method] # attr_reader :update_model ## # RPC-specific configuration for `deploy_model` # @return [::Gapic::Config::Method] # attr_reader :deploy_model ## # RPC-specific configuration for `undeploy_model` # @return [::Gapic::Config::Method] # attr_reader :undeploy_model ## # RPC-specific configuration for `export_model` # @return [::Gapic::Config::Method] # attr_reader :export_model ## # RPC-specific configuration for `get_model_evaluation` # @return [::Gapic::Config::Method] # attr_reader :get_model_evaluation ## # RPC-specific configuration for `list_model_evaluations` # @return [::Gapic::Config::Method] # attr_reader :list_model_evaluations # @private def initialize parent_rpcs = nil create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset @create_dataset = ::Gapic::Config::Method.new create_dataset_config get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset @get_dataset = ::Gapic::Config::Method.new get_dataset_config list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets @list_datasets = ::Gapic::Config::Method.new list_datasets_config update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset @update_dataset = ::Gapic::Config::Method.new update_dataset_config delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data @import_data = ::Gapic::Config::Method.new import_data_config export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data @export_data = ::Gapic::Config::Method.new export_data_config get_annotation_spec_config = parent_rpcs.get_annotation_spec if parent_rpcs.respond_to? :get_annotation_spec @get_annotation_spec = ::Gapic::Config::Method.new get_annotation_spec_config create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model @create_model = ::Gapic::Config::Method.new create_model_config get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model @get_model = ::Gapic::Config::Method.new get_model_config list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models @list_models = ::Gapic::Config::Method.new list_models_config delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model @delete_model = ::Gapic::Config::Method.new delete_model_config update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model @update_model = ::Gapic::Config::Method.new update_model_config deploy_model_config = parent_rpcs.deploy_model if parent_rpcs.respond_to? :deploy_model @deploy_model = ::Gapic::Config::Method.new deploy_model_config undeploy_model_config = parent_rpcs.undeploy_model if parent_rpcs.respond_to? :undeploy_model @undeploy_model = ::Gapic::Config::Method.new undeploy_model_config export_model_config = parent_rpcs.export_model if parent_rpcs.respond_to? :export_model @export_model = ::Gapic::Config::Method.new export_model_config get_model_evaluation_config = parent_rpcs.get_model_evaluation if parent_rpcs.respond_to? :get_model_evaluation @get_model_evaluation = ::Gapic::Config::Method.new get_model_evaluation_config list_model_evaluations_config = parent_rpcs.list_model_evaluations if parent_rpcs.respond_to? :list_model_evaluations @list_model_evaluations = ::Gapic::Config::Method.new list_model_evaluations_config yield self if block_given? end end end |
#retry_policy ⇒ ::Hash
The retry policy. The value is a hash with the following keys:
-
:initial_delay
(type:Numeric
) - The initial delay in seconds. -
:max_delay
(type:Numeric
) - The max delay in seconds. -
:multiplier
(type:Numeric
) - The incremental backoff multiplier. -
:retry_codes
(type:Array<String>
) - The error codes that should trigger a retry.
2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 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 |
# File 'lib/google/cloud/automl/v1/automl/client.rb', line 2050 class Configuration extend ::Gapic::Config DEFAULT_ENDPOINT = "automl.googleapis.com" config_attr :endpoint, DEFAULT_ENDPOINT, ::String 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 # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the AutoMl 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_dataset` # @return [::Gapic::Config::Method] # attr_reader :create_dataset ## # RPC-specific configuration for `get_dataset` # @return [::Gapic::Config::Method] # attr_reader :get_dataset ## # RPC-specific configuration for `list_datasets` # @return [::Gapic::Config::Method] # attr_reader :list_datasets ## # RPC-specific configuration for `update_dataset` # @return [::Gapic::Config::Method] # attr_reader :update_dataset ## # RPC-specific configuration for `delete_dataset` # @return [::Gapic::Config::Method] # attr_reader :delete_dataset ## # RPC-specific configuration for `import_data` # @return [::Gapic::Config::Method] # attr_reader :import_data ## # RPC-specific configuration for `export_data` # @return [::Gapic::Config::Method] # attr_reader :export_data ## # RPC-specific configuration for `get_annotation_spec` # @return [::Gapic::Config::Method] # attr_reader :get_annotation_spec ## # RPC-specific configuration for `create_model` # @return [::Gapic::Config::Method] # attr_reader :create_model ## # RPC-specific configuration for `get_model` # @return [::Gapic::Config::Method] # attr_reader :get_model ## # RPC-specific configuration for `list_models` # @return [::Gapic::Config::Method] # attr_reader :list_models ## # RPC-specific configuration for `delete_model` # @return [::Gapic::Config::Method] # attr_reader :delete_model ## # RPC-specific configuration for `update_model` # @return [::Gapic::Config::Method] # attr_reader :update_model ## # RPC-specific configuration for `deploy_model` # @return [::Gapic::Config::Method] # attr_reader :deploy_model ## # RPC-specific configuration for `undeploy_model` # @return [::Gapic::Config::Method] # attr_reader :undeploy_model ## # RPC-specific configuration for `export_model` # @return [::Gapic::Config::Method] # attr_reader :export_model ## # RPC-specific configuration for `get_model_evaluation` # @return [::Gapic::Config::Method] # attr_reader :get_model_evaluation ## # RPC-specific configuration for `list_model_evaluations` # @return [::Gapic::Config::Method] # attr_reader :list_model_evaluations # @private def initialize parent_rpcs = nil create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset @create_dataset = ::Gapic::Config::Method.new create_dataset_config get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset @get_dataset = ::Gapic::Config::Method.new get_dataset_config list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets @list_datasets = ::Gapic::Config::Method.new list_datasets_config update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset @update_dataset = ::Gapic::Config::Method.new update_dataset_config delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data @import_data = ::Gapic::Config::Method.new import_data_config export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data @export_data = ::Gapic::Config::Method.new export_data_config get_annotation_spec_config = parent_rpcs.get_annotation_spec if parent_rpcs.respond_to? :get_annotation_spec @get_annotation_spec = ::Gapic::Config::Method.new get_annotation_spec_config create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model @create_model = ::Gapic::Config::Method.new create_model_config get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model @get_model = ::Gapic::Config::Method.new get_model_config list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models @list_models = ::Gapic::Config::Method.new list_models_config delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model @delete_model = ::Gapic::Config::Method.new delete_model_config update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model @update_model = ::Gapic::Config::Method.new update_model_config deploy_model_config = parent_rpcs.deploy_model if parent_rpcs.respond_to? :deploy_model @deploy_model = ::Gapic::Config::Method.new deploy_model_config undeploy_model_config = parent_rpcs.undeploy_model if parent_rpcs.respond_to? :undeploy_model @undeploy_model = ::Gapic::Config::Method.new undeploy_model_config export_model_config = parent_rpcs.export_model if parent_rpcs.respond_to? :export_model @export_model = ::Gapic::Config::Method.new export_model_config get_model_evaluation_config = parent_rpcs.get_model_evaluation if parent_rpcs.respond_to? :get_model_evaluation @get_model_evaluation = ::Gapic::Config::Method.new get_model_evaluation_config list_model_evaluations_config = parent_rpcs.list_model_evaluations if parent_rpcs.respond_to? :list_model_evaluations @list_model_evaluations = ::Gapic::Config::Method.new list_model_evaluations_config yield self if block_given? end end end |
#scope ⇒ ::Array<::String>
The OAuth scopes
2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 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 |
# File 'lib/google/cloud/automl/v1/automl/client.rb', line 2050 class Configuration extend ::Gapic::Config DEFAULT_ENDPOINT = "automl.googleapis.com" config_attr :endpoint, DEFAULT_ENDPOINT, ::String 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 # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the AutoMl 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_dataset` # @return [::Gapic::Config::Method] # attr_reader :create_dataset ## # RPC-specific configuration for `get_dataset` # @return [::Gapic::Config::Method] # attr_reader :get_dataset ## # RPC-specific configuration for `list_datasets` # @return [::Gapic::Config::Method] # attr_reader :list_datasets ## # RPC-specific configuration for `update_dataset` # @return [::Gapic::Config::Method] # attr_reader :update_dataset ## # RPC-specific configuration for `delete_dataset` # @return [::Gapic::Config::Method] # attr_reader :delete_dataset ## # RPC-specific configuration for `import_data` # @return [::Gapic::Config::Method] # attr_reader :import_data ## # RPC-specific configuration for `export_data` # @return [::Gapic::Config::Method] # attr_reader :export_data ## # RPC-specific configuration for `get_annotation_spec` # @return [::Gapic::Config::Method] # attr_reader :get_annotation_spec ## # RPC-specific configuration for `create_model` # @return [::Gapic::Config::Method] # attr_reader :create_model ## # RPC-specific configuration for `get_model` # @return [::Gapic::Config::Method] # attr_reader :get_model ## # RPC-specific configuration for `list_models` # @return [::Gapic::Config::Method] # attr_reader :list_models ## # RPC-specific configuration for `delete_model` # @return [::Gapic::Config::Method] # attr_reader :delete_model ## # RPC-specific configuration for `update_model` # @return [::Gapic::Config::Method] # attr_reader :update_model ## # RPC-specific configuration for `deploy_model` # @return [::Gapic::Config::Method] # attr_reader :deploy_model ## # RPC-specific configuration for `undeploy_model` # @return [::Gapic::Config::Method] # attr_reader :undeploy_model ## # RPC-specific configuration for `export_model` # @return [::Gapic::Config::Method] # attr_reader :export_model ## # RPC-specific configuration for `get_model_evaluation` # @return [::Gapic::Config::Method] # attr_reader :get_model_evaluation ## # RPC-specific configuration for `list_model_evaluations` # @return [::Gapic::Config::Method] # attr_reader :list_model_evaluations # @private def initialize parent_rpcs = nil create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset @create_dataset = ::Gapic::Config::Method.new create_dataset_config get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset @get_dataset = ::Gapic::Config::Method.new get_dataset_config list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets @list_datasets = ::Gapic::Config::Method.new list_datasets_config update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset @update_dataset = ::Gapic::Config::Method.new update_dataset_config delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data @import_data = ::Gapic::Config::Method.new import_data_config export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data @export_data = ::Gapic::Config::Method.new export_data_config get_annotation_spec_config = parent_rpcs.get_annotation_spec if parent_rpcs.respond_to? :get_annotation_spec @get_annotation_spec = ::Gapic::Config::Method.new get_annotation_spec_config create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model @create_model = ::Gapic::Config::Method.new create_model_config get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model @get_model = ::Gapic::Config::Method.new get_model_config list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models @list_models = ::Gapic::Config::Method.new list_models_config delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model @delete_model = ::Gapic::Config::Method.new delete_model_config update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model @update_model = ::Gapic::Config::Method.new update_model_config deploy_model_config = parent_rpcs.deploy_model if parent_rpcs.respond_to? :deploy_model @deploy_model = ::Gapic::Config::Method.new deploy_model_config undeploy_model_config = parent_rpcs.undeploy_model if parent_rpcs.respond_to? :undeploy_model @undeploy_model = ::Gapic::Config::Method.new undeploy_model_config export_model_config = parent_rpcs.export_model if parent_rpcs.respond_to? :export_model @export_model = ::Gapic::Config::Method.new export_model_config get_model_evaluation_config = parent_rpcs.get_model_evaluation if parent_rpcs.respond_to? :get_model_evaluation @get_model_evaluation = ::Gapic::Config::Method.new get_model_evaluation_config list_model_evaluations_config = parent_rpcs.list_model_evaluations if parent_rpcs.respond_to? :list_model_evaluations @list_model_evaluations = ::Gapic::Config::Method.new list_model_evaluations_config yield self if block_given? end end end |
#timeout ⇒ ::Numeric
The call timeout in seconds.
2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 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 |
# File 'lib/google/cloud/automl/v1/automl/client.rb', line 2050 class Configuration extend ::Gapic::Config DEFAULT_ENDPOINT = "automl.googleapis.com" config_attr :endpoint, DEFAULT_ENDPOINT, ::String 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 # @private def initialize parent_config = nil @parent_config = parent_config unless parent_config.nil? yield self if block_given? end ## # Configurations for individual RPCs # @return [Rpcs] # def rpcs @rpcs ||= begin parent_rpcs = nil parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config.respond_to?(:rpcs) Rpcs.new parent_rpcs end end ## # Configuration RPC class for the AutoMl 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_dataset` # @return [::Gapic::Config::Method] # attr_reader :create_dataset ## # RPC-specific configuration for `get_dataset` # @return [::Gapic::Config::Method] # attr_reader :get_dataset ## # RPC-specific configuration for `list_datasets` # @return [::Gapic::Config::Method] # attr_reader :list_datasets ## # RPC-specific configuration for `update_dataset` # @return [::Gapic::Config::Method] # attr_reader :update_dataset ## # RPC-specific configuration for `delete_dataset` # @return [::Gapic::Config::Method] # attr_reader :delete_dataset ## # RPC-specific configuration for `import_data` # @return [::Gapic::Config::Method] # attr_reader :import_data ## # RPC-specific configuration for `export_data` # @return [::Gapic::Config::Method] # attr_reader :export_data ## # RPC-specific configuration for `get_annotation_spec` # @return [::Gapic::Config::Method] # attr_reader :get_annotation_spec ## # RPC-specific configuration for `create_model` # @return [::Gapic::Config::Method] # attr_reader :create_model ## # RPC-specific configuration for `get_model` # @return [::Gapic::Config::Method] # attr_reader :get_model ## # RPC-specific configuration for `list_models` # @return [::Gapic::Config::Method] # attr_reader :list_models ## # RPC-specific configuration for `delete_model` # @return [::Gapic::Config::Method] # attr_reader :delete_model ## # RPC-specific configuration for `update_model` # @return [::Gapic::Config::Method] # attr_reader :update_model ## # RPC-specific configuration for `deploy_model` # @return [::Gapic::Config::Method] # attr_reader :deploy_model ## # RPC-specific configuration for `undeploy_model` # @return [::Gapic::Config::Method] # attr_reader :undeploy_model ## # RPC-specific configuration for `export_model` # @return [::Gapic::Config::Method] # attr_reader :export_model ## # RPC-specific configuration for `get_model_evaluation` # @return [::Gapic::Config::Method] # attr_reader :get_model_evaluation ## # RPC-specific configuration for `list_model_evaluations` # @return [::Gapic::Config::Method] # attr_reader :list_model_evaluations # @private def initialize parent_rpcs = nil create_dataset_config = parent_rpcs.create_dataset if parent_rpcs.respond_to? :create_dataset @create_dataset = ::Gapic::Config::Method.new create_dataset_config get_dataset_config = parent_rpcs.get_dataset if parent_rpcs.respond_to? :get_dataset @get_dataset = ::Gapic::Config::Method.new get_dataset_config list_datasets_config = parent_rpcs.list_datasets if parent_rpcs.respond_to? :list_datasets @list_datasets = ::Gapic::Config::Method.new list_datasets_config update_dataset_config = parent_rpcs.update_dataset if parent_rpcs.respond_to? :update_dataset @update_dataset = ::Gapic::Config::Method.new update_dataset_config delete_dataset_config = parent_rpcs.delete_dataset if parent_rpcs.respond_to? :delete_dataset @delete_dataset = ::Gapic::Config::Method.new delete_dataset_config import_data_config = parent_rpcs.import_data if parent_rpcs.respond_to? :import_data @import_data = ::Gapic::Config::Method.new import_data_config export_data_config = parent_rpcs.export_data if parent_rpcs.respond_to? :export_data @export_data = ::Gapic::Config::Method.new export_data_config get_annotation_spec_config = parent_rpcs.get_annotation_spec if parent_rpcs.respond_to? :get_annotation_spec @get_annotation_spec = ::Gapic::Config::Method.new get_annotation_spec_config create_model_config = parent_rpcs.create_model if parent_rpcs.respond_to? :create_model @create_model = ::Gapic::Config::Method.new create_model_config get_model_config = parent_rpcs.get_model if parent_rpcs.respond_to? :get_model @get_model = ::Gapic::Config::Method.new get_model_config list_models_config = parent_rpcs.list_models if parent_rpcs.respond_to? :list_models @list_models = ::Gapic::Config::Method.new list_models_config delete_model_config = parent_rpcs.delete_model if parent_rpcs.respond_to? :delete_model @delete_model = ::Gapic::Config::Method.new delete_model_config update_model_config = parent_rpcs.update_model if parent_rpcs.respond_to? :update_model @update_model = ::Gapic::Config::Method.new update_model_config deploy_model_config = parent_rpcs.deploy_model if parent_rpcs.respond_to? :deploy_model @deploy_model = ::Gapic::Config::Method.new deploy_model_config undeploy_model_config = parent_rpcs.undeploy_model if parent_rpcs.respond_to? :undeploy_model @undeploy_model = ::Gapic::Config::Method.new undeploy_model_config export_model_config = parent_rpcs.export_model if parent_rpcs.respond_to? :export_model @export_model = ::Gapic::Config::Method.new export_model_config get_model_evaluation_config = parent_rpcs.get_model_evaluation if parent_rpcs.respond_to? :get_model_evaluation @get_model_evaluation = ::Gapic::Config::Method.new get_model_evaluation_config list_model_evaluations_config = parent_rpcs.list_model_evaluations if parent_rpcs.respond_to? :list_model_evaluations @list_model_evaluations = ::Gapic::Config::Method.new list_model_evaluations_config yield self if block_given? end end end |
Instance Method Details
#rpcs ⇒ Rpcs
Configurations for individual RPCs
2082 2083 2084 2085 2086 2087 2088 |
# File 'lib/google/cloud/automl/v1/automl/client.rb', line 2082 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 |