Reputation: 21
Googled enough and I'm not able to find on Google Cloud Platform documentation or anywhere else documentation similar to this one:
https://docs.aws.amazon.com/general/latest/gr/acm.html
I need a list for all GCP service endpoints. All I was able to find was this:
https://cloud.google.com/pubsub/docs/reference/service_apis_overview
That provides the level of detail I'm after under:
https://cloud.google.com/pubsub/docs/reference/service_apis_overview#service_endpoints
Trying to build an uptime monitor and would like to query those service endpoints to present a dashboard for the operational standing of GCP services a project is consuming.
Upvotes: 0
Views: 1274
Reputation: 40061
I'm unsure whether they're listed in a single HTML page.
You can use:
gcloud services list --format="value(config.name)" --available
will only yield the global endpoint and not regional as Cloud Run above.I want to say that this should be in the platform's discovery document(s) but they're not. As with #1 above you'd need to retrieve the discovery document for each service and then e.g. Cloud Run (v2) only returns the global endpoint.
Quotas are documented per service but you can also enumerate a project's quotas at:
https://console.cloud.google.com/iam-admin/quotas?project=${PROJECT}
Upvotes: 1