# frozen_string_literal: true # Copyright 2024 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Auto-generated by gapic-generator-ruby. DO NOT EDIT! require "google/cloud/privilegedaccessmanager/v1/privilegedaccessmanager_pb" module Google module Cloud module PrivilegedAccessManager module V1 module PrivilegedAccessManager module Rest ## # REST service stub for the PrivilegedAccessManager service. # Service stub contains baseline method implementations # including transcoding, making the REST call, and deserialing the response. # class ServiceStub def initialize endpoint:, endpoint_template:, universe_domain:, 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, endpoint_template: endpoint_template, universe_domain: universe_domain, credentials: credentials, numeric_enums: true, raise_faraday_errors: false end ## # The effective universe domain # # @return [String] # def universe_domain @client_stub.universe_domain end ## # The effective endpoint # # @return [String] # def endpoint @client_stub.endpoint end ## # Baseline implementation for the check_onboarding_status REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::CheckOnboardingStatusRequest] # 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::PrivilegedAccessManager::V1::CheckOnboardingStatusResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::PrivilegedAccessManager::V1::CheckOnboardingStatusResponse] # A result object deserialized from the server's reply def check_onboarding_status request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_check_onboarding_status_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::PrivilegedAccessManager::V1::CheckOnboardingStatusResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the list_entitlements REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::ListEntitlementsRequest] # 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::PrivilegedAccessManager::V1::ListEntitlementsResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::PrivilegedAccessManager::V1::ListEntitlementsResponse] # A result object deserialized from the server's reply def list_entitlements request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_entitlements_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::PrivilegedAccessManager::V1::ListEntitlementsResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the search_entitlements REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::SearchEntitlementsRequest] # 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::PrivilegedAccessManager::V1::SearchEntitlementsResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::PrivilegedAccessManager::V1::SearchEntitlementsResponse] # A result object deserialized from the server's reply def search_entitlements request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_search_entitlements_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::PrivilegedAccessManager::V1::SearchEntitlementsResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the get_entitlement REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::GetEntitlementRequest] # 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::PrivilegedAccessManager::V1::Entitlement] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::PrivilegedAccessManager::V1::Entitlement] # A result object deserialized from the server's reply def get_entitlement request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_entitlement_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::PrivilegedAccessManager::V1::Entitlement.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the create_entitlement REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::CreateEntitlementRequest] # 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::Longrunning::Operation] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Longrunning::Operation] # A result object deserialized from the server's reply def create_entitlement request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_create_entitlement_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::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the delete_entitlement REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::DeleteEntitlementRequest] # 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::Longrunning::Operation] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Longrunning::Operation] # A result object deserialized from the server's reply def delete_entitlement request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_delete_entitlement_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::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the update_entitlement REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::UpdateEntitlementRequest] # 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::Longrunning::Operation] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Longrunning::Operation] # A result object deserialized from the server's reply def update_entitlement request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_update_entitlement_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::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the list_grants REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::ListGrantsRequest] # 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::PrivilegedAccessManager::V1::ListGrantsResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::PrivilegedAccessManager::V1::ListGrantsResponse] # A result object deserialized from the server's reply def list_grants request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_list_grants_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::PrivilegedAccessManager::V1::ListGrantsResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the search_grants REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::SearchGrantsRequest] # 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::PrivilegedAccessManager::V1::SearchGrantsResponse] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::PrivilegedAccessManager::V1::SearchGrantsResponse] # A result object deserialized from the server's reply def search_grants request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_search_grants_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::PrivilegedAccessManager::V1::SearchGrantsResponse.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the get_grant REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::GetGrantRequest] # 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::PrivilegedAccessManager::V1::Grant] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::PrivilegedAccessManager::V1::Grant] # A result object deserialized from the server's reply def get_grant request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_get_grant_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::PrivilegedAccessManager::V1::Grant.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the create_grant REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::CreateGrantRequest] # 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::PrivilegedAccessManager::V1::Grant] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::PrivilegedAccessManager::V1::Grant] # A result object deserialized from the server's reply def create_grant request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_create_grant_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::PrivilegedAccessManager::V1::Grant.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the approve_grant REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::ApproveGrantRequest] # 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::PrivilegedAccessManager::V1::Grant] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::PrivilegedAccessManager::V1::Grant] # A result object deserialized from the server's reply def approve_grant request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_approve_grant_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::PrivilegedAccessManager::V1::Grant.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the deny_grant REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::DenyGrantRequest] # 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::PrivilegedAccessManager::V1::Grant] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Cloud::PrivilegedAccessManager::V1::Grant] # A result object deserialized from the server's reply def deny_grant request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_deny_grant_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::PrivilegedAccessManager::V1::Grant.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # Baseline implementation for the revoke_grant REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::RevokeGrantRequest] # 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::Longrunning::Operation] # @yieldparam operation [::Gapic::Rest::TransportOperation] # # @return [::Google::Longrunning::Operation] # A result object deserialized from the server's reply def revoke_grant request_pb, options = nil raise ::ArgumentError, "request must be provided" if request_pb.nil? verb, uri, query_string_params, body = ServiceStub.transcode_revoke_grant_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::Longrunning::Operation.decode_json response.body, ignore_unknown_fields: true yield result, operation if block_given? result end ## # @private # # GRPC transcoding helper method for the check_onboarding_status REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::CheckOnboardingStatusRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_check_onboarding_status_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v1/{parent}:checkOnboardingStatus", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v1/{parent}:checkOnboardingStatus", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v1/{parent}:checkOnboardingStatus", matches: [ ["parent", %r{^folders/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the list_entitlements REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::ListEntitlementsRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_list_entitlements_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v1/{parent}/entitlements", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v1/{parent}/entitlements", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v1/{parent}/entitlements", matches: [ ["parent", %r{^folders/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the search_entitlements REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::SearchEntitlementsRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_search_entitlements_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v1/{parent}/entitlements:search", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v1/{parent}/entitlements:search", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v1/{parent}/entitlements:search", matches: [ ["parent", %r{^folders/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the get_entitlement REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::GetEntitlementRequest] # 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_entitlement_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v1/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v1/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v1/{name}", matches: [ ["name", %r{^folders/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the create_entitlement REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::CreateEntitlementRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_create_entitlement_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v1/{parent}/entitlements", body: "entitlement", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v1/{parent}/entitlements", body: "entitlement", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v1/{parent}/entitlements", body: "entitlement", matches: [ ["parent", %r{^folders/[^/]+/locations/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the delete_entitlement REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::DeleteEntitlementRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_delete_entitlement_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :delete, uri_template: "/v1/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v1/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :delete, uri_template: "/v1/{name}", matches: [ ["name", %r{^folders/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the update_entitlement REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::UpdateEntitlementRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_update_entitlement_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :patch, uri_template: "/v1/{entitlement.name}", body: "entitlement", matches: [ ["entitlement.name", %r{^projects/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :patch, uri_template: "/v1/{entitlement.name}", body: "entitlement", matches: [ ["entitlement.name", %r{^organizations/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :patch, uri_template: "/v1/{entitlement.name}", body: "entitlement", matches: [ ["entitlement.name", %r{^folders/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the list_grants REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::ListGrantsRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_list_grants_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v1/{parent}/grants", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v1/{parent}/grants", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v1/{parent}/grants", matches: [ ["parent", %r{^folders/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the search_grants REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::SearchGrantsRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_search_grants_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v1/{parent}/grants:search", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v1/{parent}/grants:search", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v1/{parent}/grants:search", matches: [ ["parent", %r{^folders/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the get_grant REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::GetGrantRequest] # 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_grant_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :get, uri_template: "/v1/{name}", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/entitlements/[^/]+/grants/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v1/{name}", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/entitlements/[^/]+/grants/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :get, uri_template: "/v1/{name}", matches: [ ["name", %r{^folders/[^/]+/locations/[^/]+/entitlements/[^/]+/grants/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the create_grant REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::CreateGrantRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_create_grant_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v1/{parent}/grants", body: "grant", matches: [ ["parent", %r{^projects/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v1/{parent}/grants", body: "grant", matches: [ ["parent", %r{^organizations/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v1/{parent}/grants", body: "grant", matches: [ ["parent", %r{^folders/[^/]+/locations/[^/]+/entitlements/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the approve_grant REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::ApproveGrantRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_approve_grant_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v1/{name}:approve", body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/entitlements/[^/]+/grants/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v1/{name}:approve", body: "*", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/entitlements/[^/]+/grants/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v1/{name}:approve", body: "*", matches: [ ["name", %r{^folders/[^/]+/locations/[^/]+/entitlements/[^/]+/grants/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the deny_grant REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::DenyGrantRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_deny_grant_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v1/{name}:deny", body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/entitlements/[^/]+/grants/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v1/{name}:deny", body: "*", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/entitlements/[^/]+/grants/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v1/{name}:deny", body: "*", matches: [ ["name", %r{^folders/[^/]+/locations/[^/]+/entitlements/[^/]+/grants/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end ## # @private # # GRPC transcoding helper method for the revoke_grant REST call # # @param request_pb [::Google::Cloud::PrivilegedAccessManager::V1::RevokeGrantRequest] # A request object representing the call parameters. Required. # @return [Array(String, [String, nil], Hash{String => String})] # Uri, Body, Query string parameters def self.transcode_revoke_grant_request request_pb transcoder = Gapic::Rest::GrpcTranscoder.new .with_bindings( uri_method: :post, uri_template: "/v1/{name}:revoke", body: "*", matches: [ ["name", %r{^projects/[^/]+/locations/[^/]+/entitlements/[^/]+/grants/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v1/{name}:revoke", body: "*", matches: [ ["name", %r{^organizations/[^/]+/locations/[^/]+/entitlements/[^/]+/grants/[^/]+/?$}, false] ] ) .with_bindings( uri_method: :post, uri_template: "/v1/{name}:revoke", body: "*", matches: [ ["name", %r{^folders/[^/]+/locations/[^/]+/entitlements/[^/]+/grants/[^/]+/?$}, false] ] ) transcoder.transcode request_pb end end end end end end end end