Pattern: Google Cloud Platform (GCP)-Discover Related Projects error on Step 11.DescriptionIn the Pattern: Google Cloud Platform (GCP)-Discover Related Projects there is an error on Step 11. Error is a HTTP 400 response code. Test failed: Custom operation Cloud REST - add response to context failed to execute script due to Custom operation Failed to run script due to the following error: JAVASCRIPT_CODE_FAILURE: com.snc.sw.exception.CommandFailureException: Cloud request failed. URL: https://container.googleapis.com/v1/projects/gke-nonprod-5e9952/locations/-/clusters Status: 403 Response: HttpResponseProxy{HTTP/1.1 403 Forbidden [Vary: X-Origin, Vary: Referer, Content-Type: application/json; charset=UTF-8, Date: Wed, 28 Sep 2022 15:22:16 GMT, Server: ESF, Cache-Control: private, X-XSS-Protection: 0, X-Frame-Options: SAMEORIGIN, X-Content-Type-Options: nosniff, Alt-Svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000,h3-Q050=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000,quic=":443"; ma=2592000; v="46,43", Accept-Ranges: none, Vary: Origin,Accept-Encoding, Connection: close, Transfer-Encoding: chunked] ResponseEntityProxy{[Content-Type: application/json; charset=UTF-8,Chunked: true]}} (script_include:GoogleApiCommand; line 124). Check the discovery logs for more details.Steps to Reproduce Login InstanceOpen the Pattern debugger for the pattern Google Cloud Platform (GCP)-Discover Related ProjectsDebug the PatternAttempt to execute Step 11Review the error output from the stepNavigate to Step 12 and attempt to TestWorkaroundInvestigations Currently, Adding "maxResults=100" query parameter for URL path contains "compute"If project Id contains compute sting, it is unexpectedly adding maxResults=100 query param. it causing issues Ex: In Google Cloud Platform (GCP)-Discover Related Projects pattern -> Pattern step: Create resource table for getting Organization -->Making POST API call to get Org details. https://cloudresourcemanager.googleapis.com/v1/projects/<Project_id>:getAncestry If the project id contains compute string then the maxResults query param is added to the URL. Hence, this API call failed with a 400 error - bad request. Workaround: Mid server script include : GoogleApiCall at line#40 . Now Organization id is populating for problematic compute-XXX-XXXXhttps://<InstanceName>.service-now.com/ecc_agent_script_include.do?sys_id=505bfd12db106300d504788dbf96190c Before changeif (path.indexOf("compute") > -1) {After changeif (path.indexOf("/compute/") > -1) { Observe, I added / before and after compute string.Related Problem: PRB1614757