action meshery_id_delete_performance_profile { label: "Handle Delete requests for performance profiles" description: "Deletes a performance profile with the given id" provider: meshery method: DELETE path: "/api/user/performance/profiles/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" format: "uuid" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }