OBJECT

Activity

Description

An activity that occurred on RSC or a Rubrik cluster.

link GraphQL Schema definition

  • type Activity {
  • # The time at which this activity occurred.
  • time: DateTime!
  • # The type of this activity.
  • type: ActivityTypeEnum!
  • # The status of this activity.
  • status: ActivityStatusEnum!
  • # The severity of this activity.
  • severity: ActivitySeverityEnum!
  • # The message attached to this activity.
  • message: String!
  • # The ID of the object associated with this activity.
  • objectId: String!
  • # The type of the object associated with this activity.
  • objectType: ActivityObjectTypeEnum!
  • # The current progress of this activity.
  • progress: String
  • # Additional information pertaining to this activity.
  • activityInfo: String
  • # The ID of the activity.
  • id: ID!
  • # The activity series to which this activity belongs.
  • activitySeries: ActivitySeries!
  • # The ID of the Rubrik cluster where this activity occurred.
  • clusterId: UUID!
  • }