action solarvps_post_dns_domain_update { label: "Update dns record for a given domain" description: "You can try example.com below." provider: solarvps method: POST path: "/dns/{domain}/update" encoding: json input: { type: "object" properties: { content: { type: "string" } domain: { type: "string" } id: { type: "string" } name: { type: "string" } prio: { type: "string" } ttl: { type: "string" } type: { type: "string" } } required: ["domain", "id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }