lib/google/cloud/compute/v1/regions/rest/service_stub.rb in google-cloud-compute-v1-1.8.0 vs lib/google/cloud/compute/v1/regions/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 get REST call
#
@@ -53,11 +55,11 @@
# @return [::Google::Cloud::Compute::V1::Region]
# 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
@@ -90,11 +92,11 @@
# @return [::Google::Cloud::Compute::V1::RegionList]
# 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
@@ -110,23 +112,20 @@
yield result, response if block_given?
result
end
-
- private
-
##
# @private
#
# GRPC transcoding helper method for the get REST call
#
# @param request_pb [::Google::Cloud::Compute::V1::GetRegionRequest]
# 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}/regions/{region}",
matches: [
@@ -144,10 +143,10 @@
#
# @param request_pb [::Google::Cloud::Compute::V1::ListRegionsRequest]
# 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}/regions",
matches: [