INPUT_OBJECT

NetworkEntityFlowTypeInput

encapsulates a complete set of input parameters required to fetch details on the flow types for a specific entity type. The following flow types are well known

  • Destination is Internet - count of flows from entity to internet
  • Source is Internet - count of flows from Internet to an entity
  • Destination is AWS - count of flows from entity to an AWS workload/service
  • Source is AWS - count of flows from AWS workload/service to an entity
  • Destination is Azure - count of flows from entity to an Azure workload/service
  • Source is Azure - count of flows from an Azure workload/service to an entity
  • Destination is Physical - count of flows from an entity to a physical IP address
  • Source is Physical - count of flows from a physical IP address to an entity

link GraphQL Schema definition

  • input NetworkEntityFlowTypeInput {
  • # An ISO-8601 compliant start time instance.
  • endTime: DateTime
  • # The product entity type as known in Ensemble. e.g. Application, Tier,
  • # VirtualMachine
  • entityType: String!
  • # A list of entities for which the flow type details need to be fetched.
  • filterEntities: [String!]!
  • # The flow type of interest.
  • flowType: NetworkFlowType!
  • # An ISO-8601 compliant start time instance.
  • startTime: DateTime
  • }