OBJECT

ActiveDirectoryObjectAttributesDiffResponse

Description

The difference in attribute values between snapshots for the Active Directory (AD) object.

link GraphQL Schema definition

  • type ActiveDirectoryObjectAttributesDiffResponse {
  • # Required. The display name of the Active Directory (AD) object.
  • name: String!
  • # Required. The count of the values in the left object.
  • countLeft: Int!
  • # Required. Specifies whether there are additional values.
  • isTruncated: Boolean
  • # Specifies whether the values have changed.
  • isChanged: Boolean
  • # Required. The count of the values in the right object.
  • countRight: Int!
  • # The value of the difference for the attribute.
  • values: [ActiveDirectoryObjectAttributeDiffValue!]!
  • # Contains the first non-null value from the two snapshots or a snapshot and live
  • # data.
  • firstNonNullValues: ActiveDirectoryObjectAttributeDiffValue!
  • }