action hetzner_get_load_balancer_types_id { label: "Get a Load Balancer Type" description: "Gets a specific Load Balancer type object." provider: hetzner method: GET path: "/load_balancer_types/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { load_balancer_type: { type: "object" required: ["deprecated", "description", "id", "max_assigned_certificates", "max_connections", "max_services", "max_targets", "name", "prices"] properties: { deprecated: { type: "string" description: "Point in time when the Load Balancer type is deprecated (in ISO-8601 format)" } description: { type: "string" description: "Description of the Load Balancer type" } id: { type: "number" description: "ID of the Load Balancer type" } max_assigned_certificates: { type: "number" description: "Number of SSL Certificates that can be assigned to a single Load Balancer" } max_connections: { type: "number" description: "Number of maximum simultaneous open connections" } max_services: { type: "number" description: "Number of services a Load Balancer of this type can have" } max_targets: { type: "number" description: "Number of targets a single Load Balancer can have" } name: { type: "string" description: "Unique identifier of the Load Balancer type" } prices: { type: "array" description: "Prices in different network zones" items: { type: "object" required: ["location", "price_hourly", "price_monthly"] properties: { location: { type: "string" description: "Name of the Location the price is for" } price_hourly: { type: "object" description: "Hourly costs for a Resource in this Location" required: ["net", "gross"] properties: { gross: { type: "string" description: "Price with VAT added" } net: { type: "string" description: "Price without VAT" } } } price_monthly: { type: "object" description: "Monthly costs for a Resource in this Location" required: ["net", "gross"] properties: { gross: { type: "string" description: "Price with VAT added" } net: { type: "string" description: "Price without VAT" } } } } } } } } } } }