action etsi_app_package_patch { label: "Updates the operational state of an individual application package resource" description: "Updates the operational state of an individual application package resources" provider: etsi method: PATCH path: "/app_packages/{appPkgId}" encoding: json input: { type: "object" description: "'The data type represents the operational state for an application package resource'" required: ["operationState"] properties: { operationState: { type: "string" enum: ["DISABLED", "ENABLED"] } } } output: { type: "object" description: "'The data type represents the operational state for an application package resource'" required: ["operationState"] properties: { operationState: { type: "string" enum: ["DISABLED", "ENABLED"] } } } }