OBJECT

UserAudit

Description

An audit triggered by a user.

link GraphQL Schema definition

  • type UserAudit {
  • # The time the user audit occurred.
  • time: DateTime!
  • # The status of the user audit.
  • status: UserAuditStatusEnum!
  • # The type of the user audit.
  • auditType: UserAuditTypeEnum
  • # The username of the user who triggered the user audit.
  • userName: String
  • # The ID of the object associated with the user audit.
  • objectId: String!
  • # The name of the object associated with the user audit.
  • objectName: String
  • # The type of the object associated with the user audit.
  • objectType: UserAuditObjectTypeEnum!
  • # The associated message with the user audit.
  • message: String!
  • # The severity of the user audit.
  • severity: UserAuditSeverityEnum
  • # Optional user note.
  • userNote: String
  • # The organization ID of this user audit.
  • orgId: String!
  • # The organization name of this user audit.
  • orgName: String
  • # The IP address of the user who triggered this audit.
  • ipAddress: String
  • # The ID of the user audit.
  • id: ID!
  • # The ID of the Rubrik cluster to which this user audit belongs.
  • cluster: Cluster
  • }