OBJECT

ClusterCapacityQuota

Description

Cluster capacity quota.

link GraphQL Schema definition

  • type ClusterCapacityQuota {
  • # Organization on which the capacity quota is enforced.
  • orgId: String!
  • # Hard limit of the capacity quota (in gigabytes).
  • hardLimitGb: Long!
  • # Soft limit of the capacity quota (in gigabytes).
  • softLimitGb: Long!
  • # The organization's current usage on the cluster.
  • currentUsageGb: Long!
  • # The time at which the current usage was computed. If null, the usage has not
  • # been computed yet.
  • usageComputedAt: DateTime
  • # The type of capacity quota, either physical or logical bytes.
  • clusterCapacityQuotaType: ClusterCapacityQuotaType!
  • # Cluster on which the capacity quota is enforced.
  • cluster: Cluster!
  • }