action digitalocean_apps_get_instance_size { label: "Retrieve an Instance Size" description: "Retrieve information about a specific instance size for `service`, `worker`, and `job` components." provider: digitalocean method: GET path: "/v2/apps/tiers/instance_sizes/{slug}" encoding: json input: { type: "object" properties: { slug: { type: "string" } } required: ["slug"] additionalProperties: false } output: { type: "object" properties: { instance_size: { type: "object" properties: { cpu_type: { type: "string" enum: ["UNSPECIFIED", "SHARED", "DEDICATED"] } cpus: { type: "string" format: "int64" } memory_bytes: { type: "string" format: "int64" } name: { type: "string" } slug: { type: "string" } tier_downgrade_to: { type: "string" } tier_slug: { type: "string" } tier_upgrade_to: { type: "string" } usd_per_month: { type: "string" } usd_per_second: { type: "string" } } } } } }