ENUM

ManagementEndpointDiscoveredAccountResponseFormat

Response format for discovered accounts. Discovered accounts can be requested in one of the following formats: TREE, FLATTENED_TREE, LIST.

link GraphQL Schema definition

  • enum ManagementEndpointDiscoveredAccountResponseFormat {
  • # FLATTENED_TREE would contain all the nodes in the top-level
  • # discoveredNodeConnection connection. The parent and childConnection fields of
  • # individual nodes would only cont ain 'id' field to establish the relationship
  • # among nodes.
  • FLATTENED_TREE
  • # LIST would return only discovered accounts. Organisation structure (account
  • # groupings like OrganisationalUnit in case of AWS) will not be part of the
  • # response. All the discovered accounts will be present in top-level
  • # discoveredNodeConnection field. The parent and childConnection fields of
  • # individual nodes will not be populated in this case.
  • LIST
  • # TREE response would contain a hierarchical nested response structure. The
  • # top-level discoveredNodeConnection field would only contain the 'base' nodes and
  • # the nesting would be found inside childConnection field of individual nodes.
  • TREE
  • }