ScriptUpdateMutationInput
input
Script information to be updated in a mutation.
Input Fields
scriptId
ID!
required
Identification of the script to be updated.
organizationId
ID!
required
Organization id where the script is going to be updated.
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. Eg.: 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 for script execution in seconds. 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).
inputs
[ScriptInputVariableInput!]!
required
Input variables.
outputs
[ScriptOutputVariableInput!]!
required
Output variables.