action signl4_post_scripts_instances_instance_id_enable { label: "Enables a script instance." provider: signl4 method: POST path: "/scripts/instances/{instanceId}/enable" encoding: json input: { type: "object" properties: { instanceId: { type: "string" } } required: ["instanceId"] additionalProperties: false } output: { type: "object" properties: { config: { type: "object" } customScriptDescription: { type: "string" } customScriptName: { type: "string" } enabled: { type: "boolean" } eventPattern: { type: "object" } instanceId: { type: "string" } lastModified: { type: "string" format: "date-time" } runtimeInformation: { type: "object" properties: { status: { type: "integer" format: "int32" enum: [0, 1, 2, 3, -1] } statusMessage: { type: "string" } } additionalProperties: false } scriptId: { type: "string" } scriptName: { type: "string" } subscriptionId: { type: "string" } teamId: { type: "string" } } additionalProperties: false } }