lib/google/cloud/compute/v1/license_codes/rest/service_stub.rb in google-cloud-compute-v1-1.5.0 vs lib/google/cloud/compute/v1/license_codes/rest/service_stub.rb in google-cloud-compute-v1-1.6.0
- old
+ new
@@ -24,12 +24,12 @@
module V1
module LicenseCodes
module Rest
##
# REST service stub for the LicenseCodes service.
- # service stub contains baseline method implementations
- # including transcoding, making the REST call and deserialing the response
+ # Service stub contains baseline method implementations
+ # including transcoding, making the REST call, and deserialing the response.
#
class ServiceStub
def initialize endpoint:, credentials:
# These require statements are intentionally placed here to initialize
# the REST modules only when it's required.
@@ -128,12 +128,12 @@
transcoder = Gapic::Rest::GrpcTranscoder.new
.with_bindings(
uri_method: :get,
uri_template: "/compute/v1/projects/{project}/global/licenseCodes/{license_code}",
matches: [
- ["project", %r{[^/]+}, false],
- ["license_code", %r{[^/]+}, false]
+ ["project", %r{^[^/]+/?$}, false],
+ ["license_code", %r{^[^/]+/?$}, false]
]
)
transcoder.transcode request_pb
end
@@ -151,11 +151,11 @@
.with_bindings(
uri_method: :post,
uri_template: "/compute/v1/projects/{project}/global/licenseCodes/{resource}/testIamPermissions",
body: "test_permissions_request_resource",
matches: [
- ["project", %r{[^/]+}, false],
- ["resource", %r{[^/]+}, false]
+ ["project", %r{^[^/]+/?$}, false],
+ ["resource", %r{^[^/]+/?$}, false]
]
)
transcoder.transcode request_pb
end
end