The "18. Populate project lables" step is not bringing all labels for GCP project through the Discover Google Organization patternDescriptionDiscover Google Organization pattern does not parse all Labels (cmdb_key_value) if there are more than 1000 Google projectsSteps to Reproduce 1. Have a GCP account with more than 1000 projects2. Run discovery on the GCP account3. Notice that only 1000 projects have cmdb_key_value. Any project over 1000 count doesn't have it.WorkaroundStep 11 get the projects from google Pagination was added recently therefore 'project_response' is now an array of response with max 1000 results each element. Step 11 ended up fetching 2050 projects in an array of 3 responses Step 18 parses this response to build 'cmdb_key_value'. However, the step assumed that it's a single page response with the following statement:var projectObj=project_response_Obj[0].projects As a result, projects in 2nd and 3rd elements are ignored resulted in many project with missing 'cmdb_key_value' added steps to iterate over project_response_Obj to parse all pages. Previously missing 'cmdb_key_value' are now created.Related Problem: PRB1508087