OBJECT

AlwaysUpFlow

A AlwaysUpFlow object.

link GraphQL Schema definition

1type AlwaysUpFlow {
2
3# The UUID of the AlwaysUpFlow.
4alwaysUpFlowId: ID
5
6# The ID of the organization this AlwaysUpFlow will belong to.
7# Defaults to the user's organization.
8organizationId: ID
9
10# The GUID of the organization this AlwaysUpFlow will belong to.
11# Defaults to the user's organization.
12organizationGuid: ID
13
14# The ID of the engine
15engineId: ID
16
17# The ID of specific build being used. Default null to use most up to date build
18buildId: ID
19
20# Scheduled value
21schedule: String
22
23# updateScheduled value
24updateSchedule: String
25
26# The status enum for a schedule as it will never be deleted.
27status: AlwaysUpFlowStatus
28
29# The flag used to mark the pod for deletion which will start a new pod defaulting
30# this boolean to false.
31restart: Boolean
32
33# Schedules last update time UTC time zone.
34dateModified: DateTime
35
36# The schedule was created UTC time zone
37dateCreated: DateTime
38
39createdBy: String
40
41modifiedBy: String
42
43}