Skip to content

Latest commit

 

History

History
41 lines (26 loc) · 1.34 KB

File metadata and controls

41 lines (26 loc) · 1.34 KB

AutomationEvent

Properties

Name Type Description Notes
id String Unique identifier of the automation event. [optional]
automationId String Identifier of the automation that produced this event. [optional]
state StateEnum Outcome of the automation run. [optional]
triggeredBy TriggeredByEnum What caused the automation to run. [optional]
createdAt OffsetDateTime Timestamp when the event was created. [optional]
jobsCreated Integer Number of jobs created during this automation run. [optional]
jobIds List<String> Identifiers of the jobs created during this automation run. [optional]
project AutomationEventProject [optional]
details String Error message describing the failure when state is `failure`; null otherwise. [optional]

Enum: StateEnum

Name Value
SUCCESS "success"
FAILURE "failure"
IN_PROGRESS "in_progress"

Enum: TriggeredByEnum

Name Value
MANUAL "manual"
SCHEDULE "schedule"
UPLOAD "upload"
UPLOAD_BATCH "upload_batch"