action maif_update_group { label: "Update a service group" description: "Update a service group" provider: maif method: PUT path: "/api/groups/{serviceGroupId}" encoding: json input: { type: "object" properties: { description: { type: "string" description: "The descriptoin of the group" } id: { type: "string" description: "The unique id of the group. Usually 64 random alpha numerical characters, but can be anything" } name: { type: "string" description: "The name of the group" } serviceGroupId: { type: "string" } } required: ["id", "name", "serviceGroupId"] additionalProperties: false } output: { type: "object" description: "An Otoroshi service group is just a group of service descriptor. It is useful to be able to define Api Keys for the whole group" required: ["id", "name"] properties: { description: { type: "string" description: "The descriptoin of the group" } id: { type: "string" description: "The unique id of the group. Usually 64 random alpha numerical characters, but can be anything" } name: { type: "string" description: "The name of the group" } } } }