I am running some scripts to do some ad-hoc jobs in GCP, using the Python client libraries.
These are ad-hoc and thus I believe they should be run on my end user credentials instead of a service account.
I keep seeing this warning and it makes it hard to debug my script standard output:
UserWarning: Your application has authenticated using end user credentials from Google Cloud SDK without a quota project. You might receive a "quota exceeded" or "API not enabled" error. We recommend you rerun `gcloud auth application-default login` and make sure a quota project is added. Or you can use service accounts instead. For more information about service accounts, see https://cloud.google.com/docs/authentication/
I did the suggested gcloud auth application-default login
but the same warning message still appears repeatedly.
How do I disable this warning?