Description
Hello,
We are using the discovery service in our cli tool and would like to modify the user agent string as a way for concord to collect data from the api calls made by our tool.
I tried this bit of code L53 to L60:
but when making print statements of the http request it shows the following L104 to 117:
---Creating GCP Project Call1-----
------Printing info for http call-------
headers: {'accept': 'application/json', 'accept-encoding': 'gzip, deflate', 'user-agent': 'google-api-python-client/1.7.5 (gzip)', 'content-type': 'application/json', 'content-length': '108'}
body: {"name": "Django Project", "projectId": "doesntmatter", "parent": {"id": "blabla", "type": "folder"}}
uri: https://cloudresourcemanager.googleapis.com/v1/projects?alt=json
---Finished GCP Project Call-----
I modified the http.py execute method within the google-api-python-client for the print statements.