action rudder_get_techniques_resources { label: "Technique's resources" description: "Get currently deployed resources of a technique" provider: rudder method: GET path: "/techniques/{techniqueId}/{techniqueVersion}/resources" encoding: json output: { type: "object" required: ["action", "data", "result"] properties: { action: { type: "string" description: "The id of the action" enum: ["listTechniques"] } data: { type: "object" required: ["resources"] properties: { resources: { type: "array" items: { type: "object" properties: { name: { type: "string" description: "Resource's name" } state: { type: "string" description: "State of the resource" } } } } } } result: { type: "string" description: "Result of the request" enum: ["success", "error"] } } } }