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.
- Long! :
- # The time that the activity series started.
- DateTime :
- # The most recent time that the activity series was updated.
- DateTime! :
- # The type of the most recent activity in the activity series.
- ActivityTypeEnum! :
- # The status of the most recent activity in the activity series.
- ActivityStatusEnum! :
- # The severity of the most recent activity in the activity series.
- ActivitySeverityEnum! :
- # The ID of the object associated with the activity series.
- String! :
- # The forever ID of the object associated with the activity series.
- UUID! :
- # The name of the object associated with the activity series.
- String :
- # The type of the object associated with the activity series.
- ActivityObjectTypeEnum! :
- # The UUID of the cluster which the activity series belongs to.
- UUID! :
- # The name of the cluster which the activity series belongs to.
- String! :
- # The time at which the most recent activity was added to the activity series.
- DateTime :
- # The most recent time that the activity series was verified.
- DateTime :
- # Whether the activity series can be canceled or not.
- Boolean :
- # The location of this activity series.
- String! :
- # Whether the event series is native to RSC or not.
- Boolean! :
- # The organization ID of this event series.
- UUID @deprecated( reason: "Deprecated. Refer to organizations." ) :
- # The organization name of this event series.
- String @deprecated( reason: "Deprecated. Refer to organizations." ) :
- # The effective throughput associated with this event, in bytes per second.
- Long :
- # The data transferred associated with this event, in bytes.
- Long :
- # Logical size (if applicable), in bytes.
- Long :
- # A JSON string with variable URL parameters.
- String :
- # The ID of the activity series.
- UUID! :
- # The total progress of the event series.
- String :
- # The organizations associated with this event series.
- Org!]! : [
- # The reason the activity series failed.
- String :
- # The cause of the activity series failure.
- String :
- # The error code for the cause of the failure of the activity series failed.
- String :
- # The reason for the activity series failure.
- String :
- # The remedy for the cause of the activity series failure.
- String :
- # Information about the cluster that the activity series belongs to.
- Cluster :
- # The list of activities.
- #
- # Arguments
- # first: Returns the first n elements from the list.
- # after: Returns the elements in the list that occur after the
- # specified cursor.
- # last: Returns the last n elements from the list.
- # before: Returns the elements in the list that occur before the
- # specified cursor.
- (
- Int, :
- String, :
- Int, :
- String :
- ): ActivityConnection!
- }
link Require by
- ActivityAn activity that occurred on RSC or a Rubrik cluster.
- ActivitySeriesConnectionPaginated list of ActivitySeries objects. Each page of the results includes at most 1000 entries. Query the `pageInfo.hasNextPage` field to know whether all objects were returned.
- ActivitySeriesEdgeWrapper around the ActivitySeries object. This wrapper is used for pagination.
- Query