Organization id where the script is going to be created.
name
String!
required
Script name. Must not exceed 64 characters.
description
String!
required
Script description. Must not exceed 1024 characters.
language
ScriptLanguageInput!
required
Script language. For example: PowerShell.
isWindowsCompatible
Boolean!
required
Script runs on Windows.
isLinuxCompatible
Boolean!
required
Script runs on Linux.
isDarwinCompatible
Boolean!
required
Script runs on Darwin.
content
String!
required
Script content.
timeoutSeconds
Int!
required
Timeout in seconds set for script execution. Must be a non-negative integer and cannot exceed 3600 (1 hour).
A value of 0 is treated as the maximum allowed timeout (3600 seconds).