action wowza_delete_live_stream { label: "Delete a live stream" description: "This operation deletes a live stream, including all assigned outputs and targets." provider: wowza method: DELETE path: "/live_streams/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }