OBJECT

ActivitySeries

Description

A series of activities on either the RSC or a Rubrik cluster.

link GraphQL Schema definition

  • type ActivitySeries {
  • # The ID of the activity series.
  • id: Long!
  • # The time that the activity series started.
  • startTime: DateTime
  • # The most recent time that the activity series was updated.
  • lastUpdated: DateTime!
  • # The type of the most recent activity in the activity series.
  • lastActivityType: ActivityTypeEnum!
  • # The status of the most recent activity in the activity series.
  • lastActivityStatus: ActivityStatusEnum!
  • # The severity of the most recent activity in the activity series.
  • severity: ActivitySeverityEnum!
  • # The ID of the object associated with the activity series.
  • objectId: String!
  • # The forever ID of the object associated with the activity series.
  • fid: UUID!
  • # The name of the object associated with the activity series.
  • objectName: String
  • # The type of the object associated with the activity series.
  • objectType: ActivityObjectTypeEnum!
  • # The UUID of the cluster which the activity series belongs to.
  • clusterUuid: UUID!
  • # The name of the cluster which the activity series belongs to.
  • clusterName: String!
  • # The time at which the most recent activity was added to the activity series.
  • lastEventAddedAt: DateTime
  • # The most recent time that the activity series was verified.
  • lastVerifiedAt: DateTime
  • # Whether the activity series can be canceled or not.
  • isCancelable: Boolean
  • # The location of this activity series.
  • location: String!
  • # Whether the event series is native to RSC or not.
  • isPolarisEventSeries: Boolean!
  • # The organization ID of this event series.
  • orgId: UUID @deprecated( reason: "Deprecated. Refer to organizations." )
  • # The organization name of this event series.
  • orgName: String @deprecated( reason: "Deprecated. Refer to organizations." )
  • # The effective throughput associated with this event, in bytes per second.
  • effectiveThroughput: Long
  • # The data transferred associated with this event, in bytes.
  • dataTransferred: Long
  • # Logical size (if applicable), in bytes.
  • logicalSize: Long
  • # The ID of the activity series.
  • activitySeriesId: UUID!
  • # The total progress of the event series.
  • progress: String
  • # The organizations associated with this event series.
  • organizations: [Org!]!
  • # The reason the activity series failed.
  • failureReason: String
  • # The cause of the activity series failure.
  • causeErrorMessage: String
  • # The error code for the cause of the failure of the activity series failed.
  • causeErrorCode: String
  • # The reason for the activity series failure.
  • causeErrorReason: String
  • # The remedy for the cause of the activity series failure.
  • causeErrorRemedy: String
  • # Information about the cluster that the activity series belongs to.
  • cluster: Cluster
  • # The list of activities.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # last: Returns the last n elements from the list.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • activityConnection(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String
  • ): ActivityConnection!
  • }