INPUT_OBJECT
UpdateEntityHealthInput
link GraphQL Schema definition
- input UpdateEntityHealthInput {
- # Optional client-supplied identifier passed on a mutation input and echoed back
- # unchanged on its payload, so a client can correlate the response with its
- # request (Relay convention).
- : String
- # Unique identifier of entity.
- : ID!
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # When false, health is configured but not evaluated for records of this type.
- : Boolean
- # Timestamp of the last full health recalculation across all matching records.
- : DateTime
- # Id of the account type.
- : ID
- # Revision when entity was lastly changed.
- : Int
- # Health configuration: indicator filter definitions for healthy and
- # critical-health states. Stored as a versioned JSON document; updates create a
- # new history entry.
- : EntityHealthSettingsJSONString
- }