mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
16 lines
527 B
YAML
16 lines
527 B
YAML
type: object
|
|
description: This configuration is required only when the subscription type is SCRIPT.
|
|
properties:
|
|
language:
|
|
type: string
|
|
description: The programming language of the script.
|
|
enum:
|
|
- JAVASCRIPT
|
|
example: JAVASCRIPT
|
|
responseMode:
|
|
$ref: './ResponseMode.yaml'
|
|
source:
|
|
type: string
|
|
example: "async (event, context) => { const triggerOutput = { approved: false }; return new EventCallResult(Status.SUCCESS, triggerOutput, null); }"
|
|
description: The source code of the script.
|