Class: Google::Cloud::Compute::V1::RegionTargetHttpProxies::Rest::Client
- Inherits:
-
Object
- Object
- Google::Cloud::Compute::V1::RegionTargetHttpProxies::Rest::Client
- Includes:
- GrpcTranscoding
- Defined in:
- lib/google/cloud/compute/v1/region_target_http_proxies/rest/client.rb
Overview
REST client for the RegionTargetHttpProxies service.
The RegionTargetHttpProxies API.
Defined Under Namespace
Classes: Configuration
Class Method Summary collapse
-
.configure {|config| ... } ⇒ Client::Configuration
Configure the RegionTargetHttpProxies Client class.
Instance Method Summary collapse
-
#configure {|config| ... } ⇒ Client::Configuration
Configure the RegionTargetHttpProxies Client instance.
-
#delete(request, options = nil) {|result, env| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Deletes the specified TargetHttpProxy resource.
-
#get(request, options = nil) {|result, env| ... } ⇒ ::Google::Cloud::Compute::V1::TargetHttpProxy
Returns the specified TargetHttpProxy resource in the specified region.
-
#initialize {|config| ... } ⇒ Client
constructor
Create a new RegionTargetHttpProxies REST client object.
-
#insert(request, options = nil) {|result, env| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Creates a TargetHttpProxy resource in the specified project and region using the data included in the request.
-
#list(request, options = nil) {|result, env| ... } ⇒ ::Google::Cloud::Compute::V1::TargetHttpProxyList
Retrieves the list of TargetHttpProxy resources available to the specified project in the specified region.
-
#set_url_map(request, options = nil) {|result, env| ... } ⇒ ::Google::Cloud::Compute::V1::Operation
Changes the URL map for TargetHttpProxy.
Methods included from GrpcTranscoding
#transcode_delete, #transcode_get, #transcode_insert, #transcode_list, #transcode_set_url_map
Constructor Details
#initialize {|config| ... } ⇒ Client
Create a new RegionTargetHttpProxies REST client object.
Examples
To create a new RegionTargetHttpProxies REST client with the default configuration:
client = ::Google::Cloud::Compute::V1::RegionTargetHttpProxies::Rest::Client.new
To create a new RegionTargetHttpProxies REST client with a custom configuration:
client = ::Google::Cloud::Compute::V1::RegionTargetHttpProxies::Rest::Client.new do |config|
config.timeout = 10.0
end
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
# File 'lib/google/cloud/compute/v1/region_target_http_proxies/rest/client.rb', line 115 def initialize # These require statements are intentionally placed here to initialize # the REST modules only when it's required. require "gapic/rest" # Create the configuration object @config = Configuration.new Client.configure # Yield the configuration if needed yield @config if block_given? # Create credentials credentials = @config.credentials credentials ||= Credentials.default scope: @config.scope if credentials.is_a?(String) || credentials.is_a?(Hash) credentials = Credentials.new credentials, scope: @config.scope end @client_stub = ::Gapic::Rest::ClientStub.new endpoint: @config.endpoint, credentials: credentials end |
Class Method Details
.configure {|config| ... } ⇒ Client::Configuration
Configure the RegionTargetHttpProxies Client class.
See Configuration for a description of the configuration fields.
Example
To modify the configuration for all RegionTargetHttpProxies clients:
::Google::Cloud::Compute::V1::RegionTargetHttpProxies::Rest::Client.configure do |config|
config.timeout = 10.0
end
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/google/cloud/compute/v1/region_target_http_proxies/rest/client.rb', line 58 def self.configure @configure ||= begin namespace = ["Google", "Cloud", "Compute", "V1"] parent_config = while namespace.any? parent_name = namespace.join "::" parent_const = const_get parent_name break parent_const.configure if parent_const.respond_to? :configure namespace.pop end default_config = Client::Configuration.new parent_config default_config end yield @configure if block_given? @configure end |
Instance Method Details
#configure {|config| ... } ⇒ Client::Configuration
Configure the RegionTargetHttpProxies Client instance.
The configuration is set to the derived mode, meaning that values can be changed, but structural changes (adding new fields, etc.) are not allowed. Structural changes should be made on configure.
See Configuration for a description of the configuration fields.
90 91 92 93 |
# File 'lib/google/cloud/compute/v1/region_target_http_proxies/rest/client.rb', line 90 def configure yield @config if block_given? @config end |
#delete(request, options = nil) ⇒ ::Google::Cloud::Compute::V1::Operation #delete(project: nil, region: nil, request_id: nil, target_http_proxy: nil) ⇒ ::Google::Cloud::Compute::V1::Operation
Deletes the specified TargetHttpProxy resource.
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
# File 'lib/google/cloud/compute/v1/region_target_http_proxies/rest/client.rb', line 177 def delete request, = nil raise ::ArgumentError, "request must be provided" if request.nil? request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Compute::V1::DeleteRegionTargetHttpProxyRequest # Converts hash and nil to an options object = ::Gapic::CallOptions.new(**.to_h) if .respond_to? :to_h # Customize the options with defaults = {} # Set x-goog-api-client header [:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \ lib_name: @config.lib_name, lib_version: @config.lib_version, gapic_version: ::Google::Cloud::Compute::V1::VERSION, transports_version_send: [:rest] .apply_defaults timeout: @config.timeout, metadata: uri, _body, query_string_params = transcode_delete request response = @client_stub.make_delete_request( uri: uri, params: query_string_params, options: ) result = ::Google::Cloud::Compute::V1::Operation.decode_json response.body, ignore_unknown_fields: true yield result, response if block_given? result rescue ::Faraday::Error => e gapic_error = ::Gapic::Rest::Error.wrap_faraday_error e raise ::Google::Cloud::Error.from_error(gapic_error) end |
#get(request, options = nil) ⇒ ::Google::Cloud::Compute::V1::TargetHttpProxy #get(project: nil, region: nil, target_http_proxy: nil) ⇒ ::Google::Cloud::Compute::V1::TargetHttpProxy
Returns the specified TargetHttpProxy resource in the specified region. Gets a list of available target HTTP proxies by making a list() request.
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 |
# File 'lib/google/cloud/compute/v1/region_target_http_proxies/rest/client.rb', line 245 def get request, = nil raise ::ArgumentError, "request must be provided" if request.nil? request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Compute::V1::GetRegionTargetHttpProxyRequest # Converts hash and nil to an options object = ::Gapic::CallOptions.new(**.to_h) if .respond_to? :to_h # Customize the options with defaults = {} # Set x-goog-api-client header [:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \ lib_name: @config.lib_name, lib_version: @config.lib_version, gapic_version: ::Google::Cloud::Compute::V1::VERSION, transports_version_send: [:rest] .apply_defaults timeout: @config.timeout, metadata: uri, _body, _query_string_params = transcode_get request response = @client_stub.make_get_request( uri: uri, options: ) result = ::Google::Cloud::Compute::V1::TargetHttpProxy.decode_json response.body, ignore_unknown_fields: true yield result, response if block_given? result rescue ::Faraday::Error => e gapic_error = ::Gapic::Rest::Error.wrap_faraday_error e raise ::Google::Cloud::Error.from_error(gapic_error) end |
#insert(request, options = nil) ⇒ ::Google::Cloud::Compute::V1::Operation #insert(project: nil, region: nil, request_id: nil, target_http_proxy_resource: nil) ⇒ ::Google::Cloud::Compute::V1::Operation
Creates a TargetHttpProxy resource in the specified project and region using the data included in the request.
318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 |
# File 'lib/google/cloud/compute/v1/region_target_http_proxies/rest/client.rb', line 318 def insert request, = nil raise ::ArgumentError, "request must be provided" if request.nil? request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Compute::V1::InsertRegionTargetHttpProxyRequest # Converts hash and nil to an options object = ::Gapic::CallOptions.new(**.to_h) if .respond_to? :to_h # Customize the options with defaults = {} # Set x-goog-api-client header [:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \ lib_name: @config.lib_name, lib_version: @config.lib_version, gapic_version: ::Google::Cloud::Compute::V1::VERSION, transports_version_send: [:rest] .apply_defaults timeout: @config.timeout, metadata: uri, body, query_string_params = transcode_insert request response = @client_stub.make_post_request( uri: uri, body: body, params: query_string_params, options: ) result = ::Google::Cloud::Compute::V1::Operation.decode_json response.body, ignore_unknown_fields: true yield result, response if block_given? result rescue ::Faraday::Error => e gapic_error = ::Gapic::Rest::Error.wrap_faraday_error e raise ::Google::Cloud::Error.from_error(gapic_error) end |
#list(request, options = nil) ⇒ ::Google::Cloud::Compute::V1::TargetHttpProxyList #list(filter: nil, max_results: nil, order_by: nil, page_token: nil, project: nil, region: nil, return_partial_success: nil) ⇒ ::Google::Cloud::Compute::V1::TargetHttpProxyList
Retrieves the list of TargetHttpProxy resources available to the specified project in the specified region.
405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 |
# File 'lib/google/cloud/compute/v1/region_target_http_proxies/rest/client.rb', line 405 def list request, = nil raise ::ArgumentError, "request must be provided" if request.nil? request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Compute::V1::ListRegionTargetHttpProxiesRequest # Converts hash and nil to an options object = ::Gapic::CallOptions.new(**.to_h) if .respond_to? :to_h # Customize the options with defaults = {} # Set x-goog-api-client header [:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \ lib_name: @config.lib_name, lib_version: @config.lib_version, gapic_version: ::Google::Cloud::Compute::V1::VERSION, transports_version_send: [:rest] .apply_defaults timeout: @config.timeout, metadata: uri, _body, query_string_params = transcode_list request response = @client_stub.make_get_request( uri: uri, params: query_string_params, options: ) result = ::Google::Cloud::Compute::V1::TargetHttpProxyList.decode_json response.body, ignore_unknown_fields: true yield result, response if block_given? result rescue ::Faraday::Error => e gapic_error = ::Gapic::Rest::Error.wrap_faraday_error e raise ::Google::Cloud::Error.from_error(gapic_error) end |
#set_url_map(request, options = nil) ⇒ ::Google::Cloud::Compute::V1::Operation #set_url_map(project: nil, region: nil, request_id: nil, target_http_proxy: nil, url_map_reference_resource: nil) ⇒ ::Google::Cloud::Compute::V1::Operation
Changes the URL map for TargetHttpProxy.
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 |
# File 'lib/google/cloud/compute/v1/region_target_http_proxies/rest/client.rb', line 481 def set_url_map request, = nil raise ::ArgumentError, "request must be provided" if request.nil? request = ::Gapic::Protobuf.coerce request, to: ::Google::Cloud::Compute::V1::SetUrlMapRegionTargetHttpProxyRequest # Converts hash and nil to an options object = ::Gapic::CallOptions.new(**.to_h) if .respond_to? :to_h # Customize the options with defaults = {} # Set x-goog-api-client header [:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \ lib_name: @config.lib_name, lib_version: @config.lib_version, gapic_version: ::Google::Cloud::Compute::V1::VERSION, transports_version_send: [:rest] .apply_defaults timeout: @config.timeout, metadata: uri, body, query_string_params = transcode_set_url_map request response = @client_stub.make_post_request( uri: uri, body: body, params: query_string_params, options: ) result = ::Google::Cloud::Compute::V1::Operation.decode_json response.body, ignore_unknown_fields: true yield result, response if block_given? result rescue ::Faraday::Error => e gapic_error = ::Gapic::Rest::Error.wrap_faraday_error e raise ::Google::Cloud::Error.from_error(gapic_error) end |