action digitalocean_apps_get_tier { label: "Retrieve an App Tier" description: "Retrieve information about a specific app tier." provider: digitalocean method: GET path: "/v2/apps/tiers/{slug}" encoding: json input: { type: "object" properties: { slug: { type: "string" } } required: ["slug"] additionalProperties: false } output: { type: "object" properties: { tier: { 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" } } } } } }