lib/google/cloud/compute/v1/url_maps/rest/service_stub.rb in google-cloud-compute-v1-1.8.0 vs lib/google/cloud/compute/v1/url_maps/rest/service_stub.rb in google-cloud-compute-v1-1.9.0

- old
+ new

@@ -33,11 +33,13 @@ def initialize endpoint:, credentials: # These require statements are intentionally placed here to initialize # the REST modules only when it's required. require "gapic/rest" - @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, credentials: credentials, numeric_enums: false + @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint, credentials: credentials, + numeric_enums: false, + raise_faraday_errors: false end ## # Baseline implementation for the aggregated_list REST call # @@ -53,11 +55,11 @@ # @return [::Google::Cloud::Compute::V1::UrlMapsAggregatedList] # A result object deserialized from the server's reply def aggregated_list request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? - verb, uri, query_string_params, body = transcode_aggregated_list_request request_pb + verb, uri, query_string_params, body = ServiceStub.transcode_aggregated_list_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split("=", 2) } else {} end @@ -90,11 +92,11 @@ # @return [::Google::Cloud::Compute::V1::Operation] # A result object deserialized from the server's reply def delete request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? - verb, uri, query_string_params, body = transcode_delete_request request_pb + verb, uri, query_string_params, body = ServiceStub.transcode_delete_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split("=", 2) } else {} end @@ -127,11 +129,11 @@ # @return [::Google::Cloud::Compute::V1::UrlMap] # A result object deserialized from the server's reply def get request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? - verb, uri, query_string_params, body = transcode_get_request request_pb + verb, uri, query_string_params, body = ServiceStub.transcode_get_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split("=", 2) } else {} end @@ -164,11 +166,11 @@ # @return [::Google::Cloud::Compute::V1::Operation] # A result object deserialized from the server's reply def insert request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? - verb, uri, query_string_params, body = transcode_insert_request request_pb + verb, uri, query_string_params, body = ServiceStub.transcode_insert_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split("=", 2) } else {} end @@ -201,11 +203,11 @@ # @return [::Google::Cloud::Compute::V1::Operation] # A result object deserialized from the server's reply def invalidate_cache request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? - verb, uri, query_string_params, body = transcode_invalidate_cache_request request_pb + verb, uri, query_string_params, body = ServiceStub.transcode_invalidate_cache_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split("=", 2) } else {} end @@ -238,11 +240,11 @@ # @return [::Google::Cloud::Compute::V1::UrlMapList] # A result object deserialized from the server's reply def list request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? - verb, uri, query_string_params, body = transcode_list_request request_pb + verb, uri, query_string_params, body = ServiceStub.transcode_list_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split("=", 2) } else {} end @@ -275,11 +277,11 @@ # @return [::Google::Cloud::Compute::V1::Operation] # A result object deserialized from the server's reply def patch request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? - verb, uri, query_string_params, body = transcode_patch_request request_pb + verb, uri, query_string_params, body = ServiceStub.transcode_patch_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split("=", 2) } else {} end @@ -312,11 +314,11 @@ # @return [::Google::Cloud::Compute::V1::Operation] # A result object deserialized from the server's reply def update request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? - verb, uri, query_string_params, body = transcode_update_request request_pb + verb, uri, query_string_params, body = ServiceStub.transcode_update_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split("=", 2) } else {} end @@ -349,11 +351,11 @@ # @return [::Google::Cloud::Compute::V1::UrlMapsValidateResponse] # A result object deserialized from the server's reply def validate request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? - verb, uri, query_string_params, body = transcode_validate_request request_pb + verb, uri, query_string_params, body = ServiceStub.transcode_validate_request request_pb query_string_params = if query_string_params.any? query_string_params.to_h { |p| p.split("=", 2) } else {} end @@ -369,23 +371,20 @@ yield result, response if block_given? result end - - private - ## # @private # # GRPC transcoding helper method for the aggregated_list REST call # # @param request_pb [::Google::Cloud::Compute::V1::AggregatedListUrlMapsRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters - def transcode_aggregated_list_request request_pb + def self.transcode_aggregated_list_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/compute/v1/projects/{project}/aggregated/urlMaps", matches: [ @@ -402,11 +401,11 @@ # # @param request_pb [::Google::Cloud::Compute::V1::DeleteUrlMapRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters - def transcode_delete_request request_pb + def self.transcode_delete_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :delete, uri_template: "/compute/v1/projects/{project}/global/urlMaps/{url_map}", matches: [ @@ -424,11 +423,11 @@ # # @param request_pb [::Google::Cloud::Compute::V1::GetUrlMapRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters - def transcode_get_request request_pb + def self.transcode_get_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/compute/v1/projects/{project}/global/urlMaps/{url_map}", matches: [ @@ -446,11 +445,11 @@ # # @param request_pb [::Google::Cloud::Compute::V1::InsertUrlMapRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters - def transcode_insert_request request_pb + def self.transcode_insert_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/compute/v1/projects/{project}/global/urlMaps", body: "url_map_resource", @@ -468,11 +467,11 @@ # # @param request_pb [::Google::Cloud::Compute::V1::InvalidateCacheUrlMapRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters - def transcode_invalidate_cache_request request_pb + def self.transcode_invalidate_cache_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/compute/v1/projects/{project}/global/urlMaps/{url_map}/invalidateCache", body: "cache_invalidation_rule_resource", @@ -491,11 +490,11 @@ # # @param request_pb [::Google::Cloud::Compute::V1::ListUrlMapsRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters - def transcode_list_request request_pb + def self.transcode_list_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/compute/v1/projects/{project}/global/urlMaps", matches: [ @@ -512,11 +511,11 @@ # # @param request_pb [::Google::Cloud::Compute::V1::PatchUrlMapRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters - def transcode_patch_request request_pb + def self.transcode_patch_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :patch, uri_template: "/compute/v1/projects/{project}/global/urlMaps/{url_map}", body: "url_map_resource", @@ -535,11 +534,11 @@ # # @param request_pb [::Google::Cloud::Compute::V1::UpdateUrlMapRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters - def transcode_update_request request_pb + def self.transcode_update_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :put, uri_template: "/compute/v1/projects/{project}/global/urlMaps/{url_map}", body: "url_map_resource", @@ -558,10 +557,10 @@ # # @param request_pb [::Google::Cloud::Compute::V1::ValidateUrlMapRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters - def transcode_validate_request request_pb + def self.transcode_validate_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/compute/v1/projects/{project}/global/urlMaps/{url_map}/validate", body: "url_maps_validate_request_resource",