OBJECT

AzureNativeRoot

Description

Root of Azure native hierarchy.

link GraphQL Schema definition

  • type AzureNativeRoot {
  • # List of descendants of specific object type.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that occur after the
  • # specified cursor.
  • # sortBy: Sort hierarchy objects according to the hierarchy
  • # field.
  • # sortOrder: Sorts the order of results.
  • # objectTypeFilter: Type of objects to include.
  • # filter: Hierarchy object filter.
  • # includeSecurityMetadata: Filter to include the security
  • # metadata.
  • # workloadHierarchy: Each enumeration value represents the
  • # hierarchy of a specific workload type for RBAC and SLA Domain assignments. A
  • # value of 'None' represents the hierarchy of all workload types.
  • objectTypeDescendantConnection(
  • first: Int,
  • after: String,
  • sortBy: HierarchySortByField,
  • sortOrder: SortOrder,
  • objectTypeFilter: HierarchyObjectTypeEnum!,
  • filter: [Filter!],
  • includeSecurityMetadata: Boolean,
  • workloadHierarchy: WorkloadLevelHierarchy
  • ): AzureNativeHierarchyObjectTypeConnection!
  • }

link Require by