action anchore_update_account_state { label: "Update the state of an account to either enabled or disabled. For deletion use the DELETE route" provider: anchore method: PUT path: "/accounts/{accountname}/state" encoding: json input: { type: "object" properties: { accountname: { type: "string" } state: { type: "string" description: "The status of the account" enum: ["enabled", "disabled"] } } required: ["accountname"] additionalProperties: false } output: { type: "object" description: "A summary of account status" properties: { state: { type: "string" description: "The status of the account" enum: ["enabled", "disabled"] } } } }