action combell_configure_http2 { label: "Configure HTTP/2" provider: combell method: PUT path: "/linuxhostings/{domainName}/sites/{siteName}/http2/configuration" encoding: json input: { type: "object" properties: { domainName: { type: "string" } domain_name: { type: "string" description: "Linux hosting domain name." } enabled: { type: "boolean" description: "Enable or disable HTTP/2." } siteName: { type: "string" } site_name: { type: "string" description: "Site name where HTTP/2 should be configured.
\nFor HTTP/2 to work correctly, the site must have ssl enabled." } } required: ["domainName", "domain_name", "siteName", "site_name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }