OBJECT

TaskDetail

Description

Task details.

link GraphQL Schema definition

  • type TaskDetail {
  • # The task monitoring ID.
  • id: Long!
  • # The job instance ID.
  • reportJobInstanceId: String!
  • # The cluster UUID of the task.
  • clusterUuid: UUID!
  • # The cluster name of the task.
  • clusterName: String!
  • # The cluster type of the task.
  • clusterType: String!
  • # The category type of the task.
  • taskCategory: String!
  • # The type of the task.
  • taskType: String!
  • # The status of the task.
  • status: String!
  • # The time when the task started.
  • startTime: DateTime!
  • # The time when the task ended.
  • endTime: DateTime!
  • # The time taken to run the task.
  • duration: Long!
  • # The fid of the object related to the task.
  • objectFid: String!
  • # The name of the object related to the task.
  • objectName: String!
  • # The type of the object related to the task.
  • objectType: String!
  • # The location of the task.
  • location: String!
  • # The SLA Domain ID of the task.
  • slaDomainId: String!
  • # The SLA Domain name of the task.
  • slaDomainName: String!
  • # The cluster location of the task.
  • clusterLocation: String!
  • # The replication source of a replication task.
  • replicationSource: String
  • # The replication target of a replication task.
  • replicationTarget: String
  • # The archival target of an archival task.
  • archivalTarget: String
  • # Specifies whether an archival task has direct archive enabled.
  • directArchive: String
  • # The recovery point of a recovery task.
  • recoveryPoint: String
  • # The recovery point type of a recovery task.
  • recoveryPointType: String
  • # The user who started the task.
  • userName: String
  • # The reason for failure if the task failed to complete.
  • failureReason: String
  • # Snapshot consistency of the task.
  • snapshotConsistency: String
  • # Protected volume of the task.
  • protectedVolume: String
  • # Physical bytes of the task.
  • physicalBytes: Long
  • # Logical bytes of the task.
  • logicalBytes: Long
  • # Total number of bytes transferred for the task.
  • dataTransferred: Long
  • # Total number of files transferred for the task.
  • totalFilesTransferred: Long
  • # Deduplication ratio of the task.
  • dedupRatio: Float
  • # Logical deduplication ratio of the task.
  • logicalDedupRatio: Float
  • # Data reduction of the task.
  • dataReduction: Float
  • # Logical data reduction of the task.
  • logicalDataReduction: Float
  • # The organization ID related to the task.
  • orgId: String
  • # Specifies the owner organization of the workload task detail.
  • taskOrg: WorkloadOrganization
  • # The organization name related to the task. This is deprecated.
  • orgName: String @deprecated( reason: "`taskOrg` field captures the basic org details." )
  • }