OBJECT

K8sCluster

Description

Kubernetes cluster.

link GraphQL Schema definition

  • type K8sCluster implements HierarchyObject, PolarisHierarchyObject {
  • # Connection status of the Kubernetes cluster.
  • status: K8sClusterStatus!
  • # Time of the last successful refresh task on the Kubernetes cluster.
  • lastRefreshTime: DateTime
  • # The authorized operations on the object.
  • authorizedOperations: [Operation!]!
  • # List of descendants.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # sortBy: Sort hierarchy objects by hierarchy field.
  • # sortOrder: Sorting order for the results.
  • # typeFilter: Types of objects to include.
  • # filter: The hierarchy object filter.
  • # workloadHierarchy: Each enumeration value represents the
  • # hierarchy of a specific workload type for RBAC and SLA Domain assignments. The
  • # None value represents the hierarchy of all workload types.
  • descendantConnection(
  • first: Int,
  • after: String,
  • sortBy: HierarchySortByField,
  • sortOrder: SortOrder,
  • typeFilter: [HierarchyObjectTypeEnum!],
  • filter: [Filter!],
  • workloadHierarchy: WorkloadLevelHierarchy
  • ): K8sClusterDescendantConnection!
  • # Namespaces belonging to the Kubernetes cluster.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # sortBy: Sort hierarchy objects by hierarchy field.
  • # sortOrder: Sorting order for the results.
  • # filter: The hierarchy object filter.
  • k8sDescendantNamespaces(
  • first: Int,
  • after: String,
  • sortBy: HierarchySortByField,
  • sortOrder: SortOrder,
  • filter: [Filter!]
  • ): K8sNamespaceConnection!
  • # Information about the Kubernetes cluster.
  • clusterInfo: K8sClusterInfo!
  • # List of IPs for the Kubernetes cluster.
  • clusterIp: [String!]!
  • # Deprecated. Use clusterPortRanges instead.
  • rbsPortRanges: [K8sRbsInfo!]!
  • # Ranges for ports used for backup and recovery.
  • clusterPortRanges: [K8sClusterPortsInfo!]!
  • # The FID of the hierarchy object.
  • id: UUID!
  • # The name of the hierarchy object.
  • name: String!
  • # The type of this object.
  • objectType: HierarchyObjectTypeEnum!
  • # The SLA Domain assignment type for this object.
  • slaAssignment: SlaAssignmentTypeEnum!
  • # The effective SLA Domain of the hierarchy object.
  • effectiveSlaDomain: SlaDomain!
  • # The pause status of the effective SLA Domain of the hierarchy object.
  • slaPauseStatus: Boolean!
  • # The distribution of the snapshots of the hierarchy object.
  • snapshotDistribution: SnapshotDistribution!
  • # The effective retention of the SLA Domain of the hierarchy object.
  • effectiveRetentionSlaDomain: SlaDomain
  • # The SLA Domain configured for the hierarchy object.
  • configuredSlaDomain: SlaDomain!
  • # The path node of the effective SLA Domain source.
  • effectiveSlaSourceObject: PathNode
  • # A sequential list of this object's logical ancestors.
  • logicalPath: [PathNode!]!
  • # A sequential list of this object's physical ancestors.
  • physicalPath: [PathNode!]!
  • # The number of descendant workloads of this object.
  • numWorkloadDescendants: Int!
  • # The organizations to which this hierarchy object belongs.
  • allOrgs: [Org!]!
  • }