action digitalocean_apps_list_tiers { label: "List App Tiers" description: "List all app tiers." provider: digitalocean method: GET path: "/v2/apps/tiers" encoding: json output: { type: "object" properties: { tiers: { type: "array" items: { type: "object" properties: { build_seconds: { type: "string" format: "int64" } egress_bandwidth_bytes: { type: "string" format: "int64" } name: { type: "string" } slug: { type: "string" } storage_bytes: { type: "string" format: "int64" } } } } } } }