Script
object
Represents a script entity.
Fields
id
ID!
non-null
Unique identifier for the script.
serviceOrganization
ServiceOrganization
Script service organization.
customer
Customer
Script customer.
site
Site
Script site.
name
String!
non-null
Script name.
description
String!
non-null
Script description.
language
ScriptLanguage!
non-null
Script language. Eg.: PowerShell.
isWindowsCompatible
Boolean!
non-null
Script runs on Windows.
isLinuxCompatible
Boolean!
non-null
Script runs on Linux.
isDarwinCompatible
Boolean!
non-null
Script runs on Darwin.
filename
String!
non-null
Script filename.
sizeKilobytes
Float!
non-null
Script size in kilobytes.
timeoutSeconds
Int!
non-null
Timeout in seconds set for script execution.
version
String!
non-null
Script version which will allow to track script changes.
content
String!
non-null
Script content.
inputs
[ScriptInputVariable!]!
non-null
Input variables.
outputs
[ScriptOutputVariable!]!
non-null
Output variables.
createdAt
DateTime!
non-null
Script creation date.
createdByUsername
String!
non-null
The user username that created the script.
updatedAt
DateTime!
non-null
Script last edition date.
updatedByUsername
String!
non-null
The user username that last updated the script.