lib/google/cloud/compute/v1/backend_buckets/rest/service_stub.rb in google-cloud-compute-v1-2.5.0 vs lib/google/cloud/compute/v1/backend_buckets/rest/service_stub.rb in google-cloud-compute-v1-2.6.0
- old
+ new
@@ -191,10 +191,48 @@
yield result, operation if block_given?
result
end
##
+ # Baseline implementation for the get_iam_policy REST call
+ #
+ # @param request_pb [::Google::Cloud::Compute::V1::GetIamPolicyBackendBucketRequest]
+ # A request object representing the call parameters. Required.
+ # @param options [::Gapic::CallOptions]
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
+ #
+ # @yield [result, operation] Access the result along with the TransportOperation object
+ # @yieldparam result [::Google::Cloud::Compute::V1::Policy]
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
+ #
+ # @return [::Google::Cloud::Compute::V1::Policy]
+ # A result object deserialized from the server's reply
+ def get_iam_policy request_pb, options = nil
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
+
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_iam_policy_request request_pb
+ query_string_params = if query_string_params.any?
+ query_string_params.to_h { |p| p.split "=", 2 }
+ else
+ {}
+ end
+
+ response = @client_stub.make_http_request(
+ verb,
+ uri: uri,
+ body: body || "",
+ params: query_string_params,
+ options: options
+ )
+ operation = ::Gapic::Rest::TransportOperation.new response
+ result = ::Google::Cloud::Compute::V1::Policy.decode_json response.body, ignore_unknown_fields: true
+
+ yield result, operation if block_given?
+ result
+ end
+
+ ##
# Baseline implementation for the insert REST call
#
# @param request_pb [::Google::Cloud::Compute::V1::InsertBackendBucketRequest]
# A request object representing the call parameters. Required.
# @param options [::Gapic::CallOptions]
@@ -343,10 +381,86 @@
yield result, operation if block_given?
result
end
##
+ # Baseline implementation for the set_iam_policy REST call
+ #
+ # @param request_pb [::Google::Cloud::Compute::V1::SetIamPolicyBackendBucketRequest]
+ # A request object representing the call parameters. Required.
+ # @param options [::Gapic::CallOptions]
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
+ #
+ # @yield [result, operation] Access the result along with the TransportOperation object
+ # @yieldparam result [::Google::Cloud::Compute::V1::Policy]
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
+ #
+ # @return [::Google::Cloud::Compute::V1::Policy]
+ # A result object deserialized from the server's reply
+ def set_iam_policy request_pb, options = nil
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
+
+ verb, uri, query_string_params, body = ServiceStub.transcode_set_iam_policy_request request_pb
+ query_string_params = if query_string_params.any?
+ query_string_params.to_h { |p| p.split "=", 2 }
+ else
+ {}
+ end
+
+ response = @client_stub.make_http_request(
+ verb,
+ uri: uri,
+ body: body || "",
+ params: query_string_params,
+ options: options
+ )
+ operation = ::Gapic::Rest::TransportOperation.new response
+ result = ::Google::Cloud::Compute::V1::Policy.decode_json response.body, ignore_unknown_fields: true
+
+ yield result, operation if block_given?
+ result
+ end
+
+ ##
+ # Baseline implementation for the test_iam_permissions REST call
+ #
+ # @param request_pb [::Google::Cloud::Compute::V1::TestIamPermissionsBackendBucketRequest]
+ # A request object representing the call parameters. Required.
+ # @param options [::Gapic::CallOptions]
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
+ #
+ # @yield [result, operation] Access the result along with the TransportOperation object
+ # @yieldparam result [::Google::Cloud::Compute::V1::TestPermissionsResponse]
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
+ #
+ # @return [::Google::Cloud::Compute::V1::TestPermissionsResponse]
+ # A result object deserialized from the server's reply
+ def test_iam_permissions request_pb, options = nil
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
+
+ verb, uri, query_string_params, body = ServiceStub.transcode_test_iam_permissions_request request_pb
+ query_string_params = if query_string_params.any?
+ query_string_params.to_h { |p| p.split "=", 2 }
+ else
+ {}
+ end
+
+ response = @client_stub.make_http_request(
+ verb,
+ uri: uri,
+ body: body || "",
+ params: query_string_params,
+ options: options
+ )
+ operation = ::Gapic::Rest::TransportOperation.new response
+ result = ::Google::Cloud::Compute::V1::TestPermissionsResponse.decode_json response.body, ignore_unknown_fields: true
+
+ yield result, operation if block_given?
+ result
+ end
+
+ ##
# Baseline implementation for the update REST call
#
# @param request_pb [::Google::Cloud::Compute::V1::UpdateBackendBucketRequest]
# A request object representing the call parameters. Required.
# @param options [::Gapic::CallOptions]
@@ -472,10 +586,32 @@
end
##
# @private
#
+ # GRPC transcoding helper method for the get_iam_policy REST call
+ #
+ # @param request_pb [::Google::Cloud::Compute::V1::GetIamPolicyBackendBucketRequest]
+ # A request object representing the call parameters. Required.
+ # @return [Array(String, [String, nil], Hash{String => String})]
+ # Uri, Body, Query string parameters
+ def self.transcode_get_iam_policy_request request_pb
+ transcoder = Gapic::Rest::GrpcTranscoder.new
+ .with_bindings(
+ uri_method: :get,
+ uri_template: "/compute/v1/projects/{project}/global/backendBuckets/{resource}/getIamPolicy",
+ matches: [
+ ["project", %r{^[^/]+/?$}, false],
+ ["resource", %r{^[^/]+/?$}, false]
+ ]
+ )
+ transcoder.transcode request_pb
+ end
+
+ ##
+ # @private
+ #
# GRPC transcoding helper method for the insert REST call
#
# @param request_pb [::Google::Cloud::Compute::V1::InsertBackendBucketRequest]
# A request object representing the call parameters. Required.
# @return [Array(String, [String, nil], Hash{String => String})]
@@ -553,9 +689,55 @@
uri_template: "/compute/v1/projects/{project}/global/backendBuckets/{backend_bucket}/setEdgeSecurityPolicy",
body: "security_policy_reference_resource",
matches: [
["project", %r{^[^/]+/?$}, false],
["backend_bucket", %r{^[^/]+/?$}, false]
+ ]
+ )
+ transcoder.transcode request_pb
+ end
+
+ ##
+ # @private
+ #
+ # GRPC transcoding helper method for the set_iam_policy REST call
+ #
+ # @param request_pb [::Google::Cloud::Compute::V1::SetIamPolicyBackendBucketRequest]
+ # A request object representing the call parameters. Required.
+ # @return [Array(String, [String, nil], Hash{String => String})]
+ # Uri, Body, Query string parameters
+ def self.transcode_set_iam_policy_request request_pb
+ transcoder = Gapic::Rest::GrpcTranscoder.new
+ .with_bindings(
+ uri_method: :post,
+ uri_template: "/compute/v1/projects/{project}/global/backendBuckets/{resource}/setIamPolicy",
+ body: "global_set_policy_request_resource",
+ matches: [
+ ["project", %r{^[^/]+/?$}, false],
+ ["resource", %r{^[^/]+/?$}, false]
+ ]
+ )
+ transcoder.transcode request_pb
+ end
+
+ ##
+ # @private
+ #
+ # GRPC transcoding helper method for the test_iam_permissions REST call
+ #
+ # @param request_pb [::Google::Cloud::Compute::V1::TestIamPermissionsBackendBucketRequest]
+ # A request object representing the call parameters. Required.
+ # @return [Array(String, [String, nil], Hash{String => String})]
+ # Uri, Body, Query string parameters
+ def self.transcode_test_iam_permissions_request request_pb
+ transcoder = Gapic::Rest::GrpcTranscoder.new
+ .with_bindings(
+ uri_method: :post,
+ uri_template: "/compute/v1/projects/{project}/global/backendBuckets/{resource}/testIamPermissions",
+ body: "test_permissions_request_resource",
+ matches: [
+ ["project", %r{^[^/]+/?$}, false],
+ ["resource", %r{^[^/]+/?$}, false]
]
)
transcoder.transcode request_pb
end