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