Reputation: 41
I am working on a project which requires me to list out all the Azure and GCP cloud's availability regions, is there any API or endpoint to make a call to fetch them all. Not looking for CLI commands.
Upvotes: 0
Views: 281
Reputation: 81464
For GCP the endpoint is:
https://compute.googleapis.com/compute/v1/projects/{project}/regions
Replace {project}
with your Project ID (not Project Name).
Documentation:
There are also a number of SDKs for popular languages:
Example:
API Documentation for listing regions using Python
Upvotes: 1
Reputation: 16238
For Azure the API is
GET https://management.azure.com/subscriptions/{subscriptionId}/locations?api-version=2020-01-01
https://learn.microsoft.com//rest/api/resources/subscriptions/list-locations
Upvotes: 0