action linode_get_databases_type { label: "Managed Database Type View" description: "Display the details of a single Managed Database type. The type and number of nodes determine the resources and price of a Managed Database instance.\n" provider: linode method: GET path: "/databases/types/{typeId}" encoding: json output: { type: "object" description: "Managed Database plan type object." properties: { class: { type: "string" description: "The compute class category." } deprecated: { type: "boolean" description: "Whether this Database plan type has been deprecated and is no longer available." } disk: { type: "integer" description: "The amount of disk space set aside for Databases of this plan type. The value is represented in megabytes." } engines: { type: "object" properties: { mongodb: { type: "array" description: "Pricing details for MongoDB Managed Databases." items: { type: "object" properties: { price: { type: "object" description: "Cost in US dollars, broken down into hourly and monthly charges." properties: { hourly: { type: "number" description: "Cost (in US dollars) per hour for this subscription tier." } monthly: { type: "number" description: "Maximum cost (in US dollars) per month for this subscription tier." } } } quantity: { type: "integer" description: "The number of nodes for the Managed Database cluster for this subscription tier." enum: [1, 2, 3] } } } } mysql: { type: "array" description: "Pricing details for MySQL Managed Databases." items: { type: "object" additionalProperties: true } } postgresql: { type: "array" description: "Pricing details for PostgreSQL Managed Databases." items: { type: "object" additionalProperties: true } } } } id: { type: "string" description: "The ID representing the Managed Database node plan type." } label: { type: "string" description: "A human-readable string that describes each plan type. For display purposes only." } memory: { type: "integer" description: "The amount of RAM allocated to Database created of this plan type. The value is represented in megabytes." } vcpus: { type: "integer" description: "The integer of number CPUs allocated to databases of this plan type." } } } }