action combell_configure_ssh { label: "Configure SSH" provider: combell method: PUT path: "/linuxhostings/{domainName}/ssh/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 SSH." } } required: ["domainName", "domain_name"] additionalProperties: false } output: { type: "object" additionalProperties: true } }