action maif_patch_group { label: "Update a service group with a diff" description: "Update a service group with a diff" provider: maif method: PATCH path: "/api/groups/{serviceGroupId}" encoding: json input: { type: "object" properties: { serviceGroupId: { type: "string" } } required: ["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" } } } }