INTERFACE

CloudDirectHierarchyWorkload

Description

A Cloud Direct managed hierarchy protected objects.

link GraphQL Schema definition

  • interface CloudDirectHierarchyWorkload {
  • # Organizations to which this hierarchy object belongs.
  • allOrgs: [Org!]!
  • # Cluster from which this workload originated.
  • cluster: Cluster!
  • # SLA Domain configured for the hierarchy object.
  • configuredSlaDomain: SlaDomain!
  • # Effective retention of the SLA Domain of the hierarchy object.
  • effectiveRetentionSlaDomain: SlaDomain
  • # Effective SLA Domain of the hierarchy object.
  • effectiveSlaDomain: SlaDomain!
  • # Path node of the effective SLA Domain source.
  • effectiveSlaSourceObject: PathNode
  • # FID of the hierarchy object.
  • id: UUID!
  • # Sequential list of the logical ancestors of this object.
  • logicalPath: [PathNode!]!
  • # Name of the hierarchy object.
  • name: String!
  • # Number of descendant workloads of this object.
  • #
  • # 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.
  • # objectTypes: Types of objects to limit the results. If absent,
  • # all object types are returned.
  • numWorkloadDescendants(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • objectTypes: [ManagedObjectType!]
  • ): Int!
  • # Type of this object.
  • objectType: HierarchyObjectTypeEnum!
  • # Sequential list of the physical ancestors of this object.
  • physicalPath: [PathNode!]!
  • # Security posture metadata.
  • securityMetadata: SecurityMetadata
  • # SLA Domain assignment type for this object.
  • slaAssignment: SlaAssignmentTypeEnum!
  • # Pause status of the effective SLA Domain of the hierarchy object.
  • slaPauseStatus: Boolean!
  • # Distribution of the snapshots of the hierarchy object.
  • snapshotDistribution: SnapshotDistribution!
  • }