action digitalocean_apps_list_regions { label: "List App Regions" description: "List all regions supported by App Platform." provider: digitalocean method: GET path: "/v2/apps/regions" encoding: json output: { type: "object" properties: { regions: { type: "array" items: { type: "object" properties: { continent: { type: "string" } data_centers: { type: "array" items: { type: "string" } } default: { type: "boolean" description: "Whether or not the region is presented as the default." } disabled: { type: "boolean" } flag: { type: "string" } label: { type: "string" } reason: { type: "string" } slug: { type: "string" } } } } } } }