racampos.dnac.flow_analysis (0.0.1) — module

Manage FlowAnalysis objects of PathTrace

| "added in version" 1.0 of racampos.dnac"

Authors: first last (@GitHubID)

preview | supported by community

This plugin has a corresponding action plugin.

Install collection

Install with ansible-galaxy collection install racampos.dnac:==0.0.1


Add to requirements.yml

  collections:
    - name: racampos.dnac
      version: 0.0.1

Description

Returns a summary of all flow analyses stored. Results can be filtered by specified parameters.

Initiates a new flow analysis with periodic refresh and stat collection options. Returns a request id and a task id to get results and follow progress.

Returns result of a previously requested flow analysis by its Flow Analysis id.

Deletes a flow analysis request by its id.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: retrives_all_previous_pathtraces_summary
  cisco.dnac.flow_analysis:
    state: query  # required
    dest_ip: SomeValue  # string
    dest_port: SomeValue  # string
    gt_create_time: SomeValue  # string
    last_update_time: SomeValue  # string
    limit: SomeValue  # string
    lt_create_time: SomeValue  # string
    offset: SomeValue  # string
    order: SomeValue  # string
    periodic_refresh: True  # boolean
    protocol: SomeValue  # string
    sort_by: SomeValue  # string
    source_ip: SomeValue  # string
    source_port: SomeValue  # string
    status: SomeValue  # string
    task_id: SomeValue  # string
  register: query_result
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
  
- name: initiate_a_new_pathtrace
  cisco.dnac.flow_analysis:
    state: create  # required
    destIP: SomeValue  # string, required
    sourceIP: SomeValue  # string, required
    controlPath: True  # boolean
    destPort: SomeValue  # string
    inclusions:
    - SomeValue  # string
    periodicRefresh: True  # boolean
    protocol: SomeValue  # string
    sourcePort: SomeValue  # string
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
  
- name: retrieves_previous_pathtrace
  cisco.dnac.flow_analysis:
    state: query  # required
    flow_analysis_id: SomeValue  # string, required
  register: query_result
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
  
- name: deletes_pathtrace_by_id
  cisco.dnac.flow_analysis:
    state: delete  # required
    flow_analysis_id: SomeValue  # string, required

Inputs

    
limit:
    description:
    - Number of resources returned.
    type: str

order:
    description:
    - Order by this field.
    type: str

destIP:
    description:
    - FlowAnalysisRequest's destIP.
    - Required for state create.
    type: str

offset:
    description:
    - Start index of resources returned (1-based).
    type: str

status:
    description:
    - Status query parameter.
    type: str

dest_ip:
    description:
    - Destination IP address.
    type: str

sort_by:
    description:
    - Sort by this field.
    type: str

task_id:
    description:
    - Task ID.
    type: str

destPort:
    description:
    - FlowAnalysisRequest's destPort.
    type: str

protocol:
    description:
    - Protocol query parameter.
    - FlowAnalysisRequest's protocol.
    type: str

sourceIP:
    description:
    - FlowAnalysisRequest's sourceIP.
    - Required for state create.
    type: str

dest_port:
    description:
    - Destination port.
    type: str

source_ip:
    description:
    - Source IP address.
    type: str

inclusions:
    description:
    - FlowAnalysisRequest's inclusions (list of strings).
    type: list

sourcePort:
    description:
    - FlowAnalysisRequest's sourcePort.
    type: str

controlPath:
    description:
    - FlowAnalysisRequest's controlPath.
    type: bool

source_port:
    description:
    - Source port.
    type: str

gt_create_time:
    description:
    - Analyses requested after this time.
    type: str

lt_create_time:
    description:
    - Analyses requested before this time.
    type: str

periodicRefresh:
    description:
    - FlowAnalysisRequest's periodicRefresh.
    type: bool

flow_analysis_id:
    description:
    - Flow analysis request id.
    required: true
    type: str

last_update_time:
    description:
    - Last update time.
    type: str

periodic_refresh:
    description:
    - Is analysis periodically refreshed?.
    type: bool

Outputs

deletes_pathtrace_by_id:
  contains: null
  description: Deletes a flow analysis request by its id.
  response:
    contains:
      taskId:
        description: It is the flow analysis's taskId.
        returned: success
        type: dict
      url:
        description: It is the flow analysis's url.
        returned: success
        sample: <url>
        type: str
    description: Response, property of the response body.
    returned: success
    type: dict
  returned: success
  type: dict
  version:
    description: Version, property of the response body.
    returned: success
    sample: '1.0'
    type: str
initiate_a_new_pathtrace:
  contains: null
  description: Initiates a new flow analysis with periodic refresh and stat collection
    options. Returns a request id and a task id to get results and follow progress.
  response:
    contains:
      flowAnalysisId:
        description: It is the flow analysis's flowAnalysisId.
        returned: success
        sample: <flowanalysisid>
        type: str
      taskId:
        description: It is the flow analysis's taskId.
        returned: success
        sample: aeed229047801200e0ef563dbb9a71c2
        type: str
      url:
        description: It is the flow analysis's url.
        returned: success
        sample: <url>
        type: str
    description: FlowAnalysisRequest's response.
    returned: success
    type: dict
  returned: success
  type: dict
  version:
    description: FlowAnalysisRequest's version.
    returned: success
    sample: '1.0'
    type: str
retrieves_previous_pathtrace:
  contains: null
  description: Returns result of a previously requested flow analysis by its Flow
    Analysis id.
  response:
    contains:
      detailedStatus:
        contains:
          aclTraceCalculation:
            description: It is the flow analysis's aclTraceCalculation.
            returned: always
            sample: <acltracecalculation>
            type: str
          aclTraceCalculationFailureReason:
            description: It is the flow analysis's aclTraceCalculationFailureReason.
            returned: always
            sample: <acltracecalculationfailurereason>
            type: str
        description: It is the flow analysis's detailedStatus.
        returned: always
        type: dict
      lastUpdate:
        description: It is the flow analysis's lastUpdate.
        returned: always
        sample: <lastupdate>
        type: str
      networkElements:
        contains:
          accuracyList:
            contains:
              percent:
                description: It is the flow analysis's percent.
                returned: always
                sample: 0
                type: int
              reason:
                description: It is the flow analysis's reason.
                returned: always
                sample: <reason>
                type: str
            description: It is the flow analysis's accuracyList.
            returned: always
            type: list
          detailedStatus:
            contains:
              aclTraceCalculation:
                description: It is the flow analysis's aclTraceCalculation.
                returned: always
                sample: <acltracecalculation>
                type: str
              aclTraceCalculationFailureReason:
                description: It is the flow analysis's aclTraceCalculationFailureReason.
                returned: always
                sample: <acltracecalculationfailurereason>
                type: str
            description: It is the flow analysis's detailedStatus.
            returned: always
            type: dict
          deviceStatistics:
            contains:
              cpuStatistics:
                contains:
                  fiveMinUsageInPercentage:
                    description: It is the flow analysis's fiveMinUsageInPercentage.
                    returned: always
                    sample: 0
                    type: int
                  fiveSecsUsageInPercentage:
                    description: It is the flow analysis's fiveSecsUsageInPercentage.
                    returned: always
                    sample: 0
                    type: int
                  oneMinUsageInPercentage:
                    description: It is the flow analysis's oneMinUsageInPercentage.
                    returned: always
                    sample: 0
                    type: int
                  refreshedAt:
                    description: It is the flow analysis's refreshedAt.
                    returned: always
                    sample: 0
                    type: int
                description: It is the flow analysis's cpuStatistics.
                returned: always
                type: dict
              memoryStatistics:
                contains:
                  memoryUsage:
                    description: It is the flow analysis's memoryUsage.
                    returned: always
                    sample: 0
                    type: int
                  refreshedAt:
                    description: It is the flow analysis's refreshedAt.
                    returned: always
                    sample: 0
                    type: int
                  totalMemory:
                    description: It is the flow analysis's totalMemory.
                    returned: always
                    sample: 0
                    type: int
                description: It is the flow analysis's memoryStatistics.
                returned: always
                type: dict
            description: It is the flow analysis's deviceStatistics.
            returned: always
            type: dict
          deviceStatsCollection:
            description: It is the flow analysis's deviceStatsCollection.
            returned: always
            sample: <devicestatscollection>
            type: str
          deviceStatsCollectionFailureReason:
            description: It is the flow analysis's deviceStatsCollectionFailureReason.
            returned: always
            sample: <devicestatscollectionfailurereason>
            type: str
          egressPhysicalInterface:
            contains:
              aclAnalysis:
                contains:
                  aclName:
                    description: It is the flow analysis's aclName.
                    returned: always
                    sample: <aclname>
                    type: str
                  matchingAces:
                    contains:
                      ace:
                        description: It is the flow analysis's ace.
                        returned: always
                        sample: <ace>
                        type: str
                      matchingPorts:
                        contains:
                          ports:
                            contains:
                              destPorts:
                                description: It is the flow analysis's destPorts.
                                returned: always
                                type: list
                              sourcePorts:
                                description: It is the flow analysis's sourcePorts.
                                returned: always
                                type: list
                            description: It is the flow analysis's ports.
                            returned: always
                            type: list
                          protocol:
                            description: It is the flow analysis's protocol.
                            returned: always
                            sample: <protocol>
                            type: str
                        description: It is the flow analysis's matchingPorts.
                        returned: always
                        type: list
                      result:
                        description: It is the flow analysis's result.
                        returned: always
                        sample: <result>
                        type: str
                    description: It is the flow analysis's matchingAces.
                    returned: always
                    type: list
                  result:
                    description: It is the flow analysis's result.
                    returned: always
                    sample: <result>
                    type: str
                description: It is the flow analysis's aclAnalysis.
                returned: always
                type: dict
              id:
                description: It is the flow analysis's id.
                returned: always
                sample: '478012'
                type: str
              interfaceStatistics:
                contains:
                  adminStatus:
                    description: It is the flow analysis's adminStatus.
                    returned: always
                    sample: <adminstatus>
                    type: str
                  inputPackets:
                    description: It is the flow analysis's inputPackets.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueCount:
                    description: It is the flow analysis's inputQueueCount.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueDrops:
                    description: It is the flow analysis's inputQueueDrops.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueFlushes:
                    description: It is the flow analysis's inputQueueFlushes.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueMaxDepth:
                    description: It is the flow analysis's inputQueueMaxDepth.
                    returned: always
                    sample: 0
                    type: int
                  inputRatebps:
                    description: It is the flow analysis's inputRatebps.
                    returned: always
                    sample: 0
                    type: int
                  operationalStatus:
                    description: It is the flow analysis's operationalStatus.
                    returned: always
                    sample: <operationalstatus>
                    type: str
                  outputDrop:
                    description: It is the flow analysis's outputDrop.
                    returned: always
                    sample: 0
                    type: int
                  outputPackets:
                    description: It is the flow analysis's outputPackets.
                    returned: always
                    sample: 0
                    type: int
                  outputQueueCount:
                    description: It is the flow analysis's outputQueueCount.
                    returned: always
                    sample: 0
                    type: int
                  outputQueueDepth:
                    description: It is the flow analysis's outputQueueDepth.
                    returned: always
                    sample: 0
                    type: int
                  outputRatebps:
                    description: It is the flow analysis's outputRatebps.
                    returned: always
                    sample: 0
                    type: int
                  refreshedAt:
                    description: It is the flow analysis's refreshedAt.
                    returned: always
                    sample: 0
                    type: int
                description: It is the flow analysis's interfaceStatistics.
                returned: always
                type: dict
              interfaceStatsCollection:
                description: It is the flow analysis's interfaceStatsCollection.
                returned: always
                sample: <interfacestatscollection>
                type: str
              interfaceStatsCollectionFailureReason:
                description: It is the flow analysis's interfaceStatsCollectionFailureReason.
                returned: always
                sample: <interfacestatscollectionfailurereason>
                type: str
              name:
                description: It is the flow analysis's name.
                returned: always
                sample: <name>
                type: str
              pathOverlayInfo:
                contains:
                  controlPlane:
                    description: It is the flow analysis's controlPlane.
                    returned: always
                    sample: <controlplane>
                    type: str
                  dataPacketEncapsulation:
                    description: It is the flow analysis's dataPacketEncapsulation.
                    returned: always
                    sample: <datapacketencapsulation>
                    type: str
                  destIp:
                    description: It is the flow analysis's destIp.
                    returned: always
                    sample: <destip>
                    type: str
                  destPort:
                    description: It is the flow analysis's destPort.
                    returned: always
                    sample: <destport>
                    type: str
                  protocol:
                    description: It is the flow analysis's protocol.
                    returned: always
                    sample: <protocol>
                    type: str
                  sourceIp:
                    description: It is the flow analysis's sourceIp.
                    returned: always
                    sample: <sourceip>
                    type: str
                  sourcePort:
                    description: It is the flow analysis's sourcePort.
                    returned: always
                    sample: <sourceport>
                    type: str
                  vxlanInfo:
                    contains:
                      dscp:
                        description: It is the flow analysis's dscp.
                        returned: always
                        sample: <dscp>
                        type: str
                      vnid:
                        description: It is the flow analysis's vnid.
                        returned: always
                        sample: <vnid>
                        type: str
                    description: It is the flow analysis's vxlanInfo.
                    returned: always
                    type: dict
                description: It is the flow analysis's pathOverlayInfo.
                returned: always
                type: list
              qosStatistics:
                contains:
                  classMapName:
                    description: It is the flow analysis's classMapName.
                    returned: always
                    sample: <classmapname>
                    type: str
                  dropRate:
                    description: It is the flow analysis's dropRate.
                    returned: always
                    sample: 0
                    type: int
                  numBytes:
                    description: It is the flow analysis's numBytes.
                    returned: always
                    sample: 0
                    type: int
                  numPackets:
                    description: It is the flow analysis's numPackets.
                    returned: always
                    sample: 0
                    type: int
                  offeredRate:
                    description: It is the flow analysis's offeredRate.
                    returned: always
                    sample: 0
                    type: int
                  queueBandwidthbps:
                    description: It is the flow analysis's queueBandwidthbps.
                    returned: always
                    sample: <queuebandwidthbps>
                    type: str
                  queueDepth:
                    description: It is the flow analysis's queueDepth.
                    returned: always
                    sample: 0
                    type: int
                  queueNoBufferDrops:
                    description: It is the flow analysis's queueNoBufferDrops.
                    returned: always
                    sample: 0
                    type: int
                  queueTotalDrops:
                    description: It is the flow analysis's queueTotalDrops.
                    returned: always
                    sample: 0
                    type: int
                  refreshedAt:
                    description: It is the flow analysis's refreshedAt.
                    returned: always
                    sample: 0
                    type: int
                description: It is the flow analysis's qosStatistics.
                returned: always
                type: list
              qosStatsCollection:
                description: It is the flow analysis's qosStatsCollection.
                returned: always
                sample: <qosstatscollection>
                type: str
              qosStatsCollectionFailureReason:
                description: It is the flow analysis's qosStatsCollectionFailureReason.
                returned: always
                sample: <qosstatscollectionfailurereason>
                type: str
              usedVlan:
                description: It is the flow analysis's usedVlan.
                returned: always
                sample: <usedvlan>
                type: str
              vrfName:
                description: It is the flow analysis's vrfName.
                returned: always
                sample: <vrfname>
                type: str
            description: It is the flow analysis's egressPhysicalInterface.
            returned: always
            type: dict
          egressVirtualInterface:
            contains:
              aclAnalysis:
                contains:
                  aclName:
                    description: It is the flow analysis's aclName.
                    returned: always
                    sample: <aclname>
                    type: str
                  matchingAces:
                    contains:
                      ace:
                        description: It is the flow analysis's ace.
                        returned: always
                        sample: <ace>
                        type: str
                      matchingPorts:
                        contains:
                          ports:
                            contains:
                              destPorts:
                                description: It is the flow analysis's destPorts.
                                returned: always
                                type: list
                              sourcePorts:
                                description: It is the flow analysis's sourcePorts.
                                returned: always
                                type: list
                            description: It is the flow analysis's ports.
                            returned: always
                            type: list
                          protocol:
                            description: It is the flow analysis's protocol.
                            returned: always
                            sample: <protocol>
                            type: str
                        description: It is the flow analysis's matchingPorts.
                        returned: always
                        type: list
                      result:
                        description: It is the flow analysis's result.
                        returned: always
                        sample: <result>
                        type: str
                    description: It is the flow analysis's matchingAces.
                    returned: always
                    type: list
                  result:
                    description: It is the flow analysis's result.
                    returned: always
                    sample: <result>
                    type: str
                description: It is the flow analysis's aclAnalysis.
                returned: always
                type: dict
              id:
                description: It is the flow analysis's id.
                returned: always
                sample: '478012'
                type: str
              interfaceStatistics:
                contains:
                  adminStatus:
                    description: It is the flow analysis's adminStatus.
                    returned: always
                    sample: <adminstatus>
                    type: str
                  inputPackets:
                    description: It is the flow analysis's inputPackets.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueCount:
                    description: It is the flow analysis's inputQueueCount.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueDrops:
                    description: It is the flow analysis's inputQueueDrops.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueFlushes:
                    description: It is the flow analysis's inputQueueFlushes.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueMaxDepth:
                    description: It is the flow analysis's inputQueueMaxDepth.
                    returned: always
                    sample: 0
                    type: int
                  inputRatebps:
                    description: It is the flow analysis's inputRatebps.
                    returned: always
                    sample: 0
                    type: int
                  operationalStatus:
                    description: It is the flow analysis's operationalStatus.
                    returned: always
                    sample: <operationalstatus>
                    type: str
                  outputDrop:
                    description: It is the flow analysis's outputDrop.
                    returned: always
                    sample: 0
                    type: int
                  outputPackets:
                    description: It is the flow analysis's outputPackets.
                    returned: always
                    sample: 0
                    type: int
                  outputQueueCount:
                    description: It is the flow analysis's outputQueueCount.
                    returned: always
                    sample: 0
                    type: int
                  outputQueueDepth:
                    description: It is the flow analysis's outputQueueDepth.
                    returned: always
                    sample: 0
                    type: int
                  outputRatebps:
                    description: It is the flow analysis's outputRatebps.
                    returned: always
                    sample: 0
                    type: int
                  refreshedAt:
                    description: It is the flow analysis's refreshedAt.
                    returned: always
                    sample: 0
                    type: int
                description: It is the flow analysis's interfaceStatistics.
                returned: always
                type: dict
              interfaceStatsCollection:
                description: It is the flow analysis's interfaceStatsCollection.
                returned: always
                sample: <interfacestatscollection>
                type: str
              interfaceStatsCollectionFailureReason:
                description: It is the flow analysis's interfaceStatsCollectionFailureReason.
                returned: always
                sample: <interfacestatscollectionfailurereason>
                type: str
              name:
                description: It is the flow analysis's name.
                returned: always
                sample: <name>
                type: str
              pathOverlayInfo:
                contains:
                  controlPlane:
                    description: It is the flow analysis's controlPlane.
                    returned: always
                    sample: <controlplane>
                    type: str
                  dataPacketEncapsulation:
                    description: It is the flow analysis's dataPacketEncapsulation.
                    returned: always
                    sample: <datapacketencapsulation>
                    type: str
                  destIp:
                    description: It is the flow analysis's destIp.
                    returned: always
                    sample: <destip>
                    type: str
                  destPort:
                    description: It is the flow analysis's destPort.
                    returned: always
                    sample: <destport>
                    type: str
                  protocol:
                    description: It is the flow analysis's protocol.
                    returned: always
                    sample: <protocol>
                    type: str
                  sourceIp:
                    description: It is the flow analysis's sourceIp.
                    returned: always
                    sample: <sourceip>
                    type: str
                  sourcePort:
                    description: It is the flow analysis's sourcePort.
                    returned: always
                    sample: <sourceport>
                    type: str
                  vxlanInfo:
                    contains:
                      dscp:
                        description: It is the flow analysis's dscp.
                        returned: always
                        sample: <dscp>
                        type: str
                      vnid:
                        description: It is the flow analysis's vnid.
                        returned: always
                        sample: <vnid>
                        type: str
                    description: It is the flow analysis's vxlanInfo.
                    returned: always
                    type: dict
                description: It is the flow analysis's pathOverlayInfo.
                returned: always
                type: list
              qosStatistics:
                contains:
                  classMapName:
                    description: It is the flow analysis's classMapName.
                    returned: always
                    sample: <classmapname>
                    type: str
                  dropRate:
                    description: It is the flow analysis's dropRate.
                    returned: always
                    sample: 0
                    type: int
                  numBytes:
                    description: It is the flow analysis's numBytes.
                    returned: always
                    sample: 0
                    type: int
                  numPackets:
                    description: It is the flow analysis's numPackets.
                    returned: always
                    sample: 0
                    type: int
                  offeredRate:
                    description: It is the flow analysis's offeredRate.
                    returned: always
                    sample: 0
                    type: int
                  queueBandwidthbps:
                    description: It is the flow analysis's queueBandwidthbps.
                    returned: always
                    sample: <queuebandwidthbps>
                    type: str
                  queueDepth:
                    description: It is the flow analysis's queueDepth.
                    returned: always
                    sample: 0
                    type: int
                  queueNoBufferDrops:
                    description: It is the flow analysis's queueNoBufferDrops.
                    returned: always
                    sample: 0
                    type: int
                  queueTotalDrops:
                    description: It is the flow analysis's queueTotalDrops.
                    returned: always
                    sample: 0
                    type: int
                  refreshedAt:
                    description: It is the flow analysis's refreshedAt.
                    returned: always
                    sample: 0
                    type: int
                description: It is the flow analysis's qosStatistics.
                returned: always
                type: list
              qosStatsCollection:
                description: It is the flow analysis's qosStatsCollection.
                returned: always
                sample: <qosstatscollection>
                type: str
              qosStatsCollectionFailureReason:
                description: It is the flow analysis's qosStatsCollectionFailureReason.
                returned: always
                sample: <qosstatscollectionfailurereason>
                type: str
              usedVlan:
                description: It is the flow analysis's usedVlan.
                returned: always
                sample: <usedvlan>
                type: str
              vrfName:
                description: It is the flow analysis's vrfName.
                returned: always
                sample: <vrfname>
                type: str
            description: It is the flow analysis's egressVirtualInterface.
            returned: always
            type: dict
          flexConnect:
            contains:
              authentication:
                description: It is the flow analysis's authentication.
                returned: always
                sample: <authentication>
                type: str
              dataSwitching:
                description: It is the flow analysis's dataSwitching.
                returned: always
                sample: <dataswitching>
                type: str
              egressAclAnalysis:
                contains:
                  aclName:
                    description: It is the flow analysis's aclName.
                    returned: always
                    sample: <aclname>
                    type: str
                  matchingAces:
                    contains:
                      ace:
                        description: It is the flow analysis's ace.
                        returned: always
                        sample: <ace>
                        type: str
                      matchingPorts:
                        contains:
                          ports:
                            contains:
                              destPorts:
                                description: It is the flow analysis's destPorts.
                                returned: always
                                type: list
                              sourcePorts:
                                description: It is the flow analysis's sourcePorts.
                                returned: always
                                type: list
                            description: It is the flow analysis's ports.
                            returned: always
                            type: list
                          protocol:
                            description: It is the flow analysis's protocol.
                            returned: always
                            sample: <protocol>
                            type: str
                        description: It is the flow analysis's matchingPorts.
                        returned: always
                        type: list
                      result:
                        description: It is the flow analysis's result.
                        returned: always
                        sample: <result>
                        type: str
                    description: It is the flow analysis's matchingAces.
                    returned: always
                    type: list
                  result:
                    description: It is the flow analysis's result.
                    returned: always
                    sample: <result>
                    type: str
                description: It is the flow analysis's egressAclAnalysis.
                returned: always
                type: dict
              ingressAclAnalysis:
                contains:
                  aclName:
                    description: It is the flow analysis's aclName.
                    returned: always
                    sample: <aclname>
                    type: str
                  matchingAces:
                    contains:
                      ace:
                        description: It is the flow analysis's ace.
                        returned: always
                        sample: <ace>
                        type: str
                      matchingPorts:
                        contains:
                          ports:
                            contains:
                              destPorts:
                                description: It is the flow analysis's destPorts.
                                returned: always
                                type: list
                              sourcePorts:
                                description: It is the flow analysis's sourcePorts.
                                returned: always
                                type: list
                            description: It is the flow analysis's ports.
                            returned: always
                            type: list
                          protocol:
                            description: It is the flow analysis's protocol.
                            returned: always
                            sample: <protocol>
                            type: str
                        description: It is the flow analysis's matchingPorts.
                        returned: always
                        type: list
                      result:
                        description: It is the flow analysis's result.
                        returned: always
                        sample: <result>
                        type: str
                    description: It is the flow analysis's matchingAces.
                    returned: always
                    type: list
                  result:
                    description: It is the flow analysis's result.
                    returned: always
                    sample: <result>
                    type: str
                description: It is the flow analysis's ingressAclAnalysis.
                returned: always
                type: dict
              wirelessLanControllerId:
                description: It is the flow analysis's wirelessLanControllerId.
                returned: always
                sample: <wirelesslancontrollerid>
                type: str
              wirelessLanControllerName:
                description: It is the flow analysis's wirelessLanControllerName.
                returned: always
                sample: <wirelesslancontrollername>
                type: str
            description: It is the flow analysis's flexConnect.
            returned: always
            type: dict
          id:
            description: It is the flow analysis's id.
            returned: always
            sample: '478012'
            type: str
          ingressPhysicalInterface:
            contains:
              aclAnalysis:
                contains:
                  aclName:
                    description: It is the flow analysis's aclName.
                    returned: always
                    sample: <aclname>
                    type: str
                  matchingAces:
                    contains:
                      ace:
                        description: It is the flow analysis's ace.
                        returned: always
                        sample: <ace>
                        type: str
                      matchingPorts:
                        contains:
                          ports:
                            contains:
                              destPorts:
                                description: It is the flow analysis's destPorts.
                                returned: always
                                type: list
                              sourcePorts:
                                description: It is the flow analysis's sourcePorts.
                                returned: always
                                type: list
                            description: It is the flow analysis's ports.
                            returned: always
                            type: list
                          protocol:
                            description: It is the flow analysis's protocol.
                            returned: always
                            sample: <protocol>
                            type: str
                        description: It is the flow analysis's matchingPorts.
                        returned: always
                        type: list
                      result:
                        description: It is the flow analysis's result.
                        returned: always
                        sample: <result>
                        type: str
                    description: It is the flow analysis's matchingAces.
                    returned: always
                    type: list
                  result:
                    description: It is the flow analysis's result.
                    returned: always
                    sample: <result>
                    type: str
                description: It is the flow analysis's aclAnalysis.
                returned: always
                type: dict
              id:
                description: It is the flow analysis's id.
                returned: always
                sample: '478012'
                type: str
              interfaceStatistics:
                contains:
                  adminStatus:
                    description: It is the flow analysis's adminStatus.
                    returned: always
                    sample: <adminstatus>
                    type: str
                  inputPackets:
                    description: It is the flow analysis's inputPackets.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueCount:
                    description: It is the flow analysis's inputQueueCount.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueDrops:
                    description: It is the flow analysis's inputQueueDrops.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueFlushes:
                    description: It is the flow analysis's inputQueueFlushes.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueMaxDepth:
                    description: It is the flow analysis's inputQueueMaxDepth.
                    returned: always
                    sample: 0
                    type: int
                  inputRatebps:
                    description: It is the flow analysis's inputRatebps.
                    returned: always
                    sample: 0
                    type: int
                  operationalStatus:
                    description: It is the flow analysis's operationalStatus.
                    returned: always
                    sample: <operationalstatus>
                    type: str
                  outputDrop:
                    description: It is the flow analysis's outputDrop.
                    returned: always
                    sample: 0
                    type: int
                  outputPackets:
                    description: It is the flow analysis's outputPackets.
                    returned: always
                    sample: 0
                    type: int
                  outputQueueCount:
                    description: It is the flow analysis's outputQueueCount.
                    returned: always
                    sample: 0
                    type: int
                  outputQueueDepth:
                    description: It is the flow analysis's outputQueueDepth.
                    returned: always
                    sample: 0
                    type: int
                  outputRatebps:
                    description: It is the flow analysis's outputRatebps.
                    returned: always
                    sample: 0
                    type: int
                  refreshedAt:
                    description: It is the flow analysis's refreshedAt.
                    returned: always
                    sample: 0
                    type: int
                description: It is the flow analysis's interfaceStatistics.
                returned: always
                type: dict
              interfaceStatsCollection:
                description: It is the flow analysis's interfaceStatsCollection.
                returned: always
                sample: <interfacestatscollection>
                type: str
              interfaceStatsCollectionFailureReason:
                description: It is the flow analysis's interfaceStatsCollectionFailureReason.
                returned: always
                sample: <interfacestatscollectionfailurereason>
                type: str
              name:
                description: It is the flow analysis's name.
                returned: always
                sample: <name>
                type: str
              pathOverlayInfo:
                contains:
                  controlPlane:
                    description: It is the flow analysis's controlPlane.
                    returned: always
                    sample: <controlplane>
                    type: str
                  dataPacketEncapsulation:
                    description: It is the flow analysis's dataPacketEncapsulation.
                    returned: always
                    sample: <datapacketencapsulation>
                    type: str
                  destIp:
                    description: It is the flow analysis's destIp.
                    returned: always
                    sample: <destip>
                    type: str
                  destPort:
                    description: It is the flow analysis's destPort.
                    returned: always
                    sample: <destport>
                    type: str
                  protocol:
                    description: It is the flow analysis's protocol.
                    returned: always
                    sample: <protocol>
                    type: str
                  sourceIp:
                    description: It is the flow analysis's sourceIp.
                    returned: always
                    sample: <sourceip>
                    type: str
                  sourcePort:
                    description: It is the flow analysis's sourcePort.
                    returned: always
                    sample: <sourceport>
                    type: str
                  vxlanInfo:
                    contains:
                      dscp:
                        description: It is the flow analysis's dscp.
                        returned: always
                        sample: <dscp>
                        type: str
                      vnid:
                        description: It is the flow analysis's vnid.
                        returned: always
                        sample: <vnid>
                        type: str
                    description: It is the flow analysis's vxlanInfo.
                    returned: always
                    type: dict
                description: It is the flow analysis's pathOverlayInfo.
                returned: always
                type: list
              qosStatistics:
                contains:
                  classMapName:
                    description: It is the flow analysis's classMapName.
                    returned: always
                    sample: <classmapname>
                    type: str
                  dropRate:
                    description: It is the flow analysis's dropRate.
                    returned: always
                    sample: 0
                    type: int
                  numBytes:
                    description: It is the flow analysis's numBytes.
                    returned: always
                    sample: 0
                    type: int
                  numPackets:
                    description: It is the flow analysis's numPackets.
                    returned: always
                    sample: 0
                    type: int
                  offeredRate:
                    description: It is the flow analysis's offeredRate.
                    returned: always
                    sample: 0
                    type: int
                  queueBandwidthbps:
                    description: It is the flow analysis's queueBandwidthbps.
                    returned: always
                    sample: <queuebandwidthbps>
                    type: str
                  queueDepth:
                    description: It is the flow analysis's queueDepth.
                    returned: always
                    sample: 0
                    type: int
                  queueNoBufferDrops:
                    description: It is the flow analysis's queueNoBufferDrops.
                    returned: always
                    sample: 0
                    type: int
                  queueTotalDrops:
                    description: It is the flow analysis's queueTotalDrops.
                    returned: always
                    sample: 0
                    type: int
                  refreshedAt:
                    description: It is the flow analysis's refreshedAt.
                    returned: always
                    sample: 0
                    type: int
                description: It is the flow analysis's qosStatistics.
                returned: always
                type: list
              qosStatsCollection:
                description: It is the flow analysis's qosStatsCollection.
                returned: always
                sample: <qosstatscollection>
                type: str
              qosStatsCollectionFailureReason:
                description: It is the flow analysis's qosStatsCollectionFailureReason.
                returned: always
                sample: <qosstatscollectionfailurereason>
                type: str
              usedVlan:
                description: It is the flow analysis's usedVlan.
                returned: always
                sample: <usedvlan>
                type: str
              vrfName:
                description: It is the flow analysis's vrfName.
                returned: always
                sample: <vrfname>
                type: str
            description: It is the flow analysis's ingressPhysicalInterface.
            returned: always
            type: dict
          ingressVirtualInterface:
            contains:
              aclAnalysis:
                contains:
                  aclName:
                    description: It is the flow analysis's aclName.
                    returned: always
                    sample: <aclname>
                    type: str
                  matchingAces:
                    contains:
                      ace:
                        description: It is the flow analysis's ace.
                        returned: always
                        sample: <ace>
                        type: str
                      matchingPorts:
                        contains:
                          ports:
                            contains:
                              destPorts:
                                description: It is the flow analysis's destPorts.
                                returned: always
                                type: list
                              sourcePorts:
                                description: It is the flow analysis's sourcePorts.
                                returned: always
                                type: list
                            description: It is the flow analysis's ports.
                            returned: always
                            type: list
                          protocol:
                            description: It is the flow analysis's protocol.
                            returned: always
                            sample: <protocol>
                            type: str
                        description: It is the flow analysis's matchingPorts.
                        returned: always
                        type: list
                      result:
                        description: It is the flow analysis's result.
                        returned: always
                        sample: <result>
                        type: str
                    description: It is the flow analysis's matchingAces.
                    returned: always
                    type: list
                  result:
                    description: It is the flow analysis's result.
                    returned: always
                    sample: <result>
                    type: str
                description: It is the flow analysis's aclAnalysis.
                returned: always
                type: dict
              id:
                description: It is the flow analysis's id.
                returned: always
                sample: '478012'
                type: str
              interfaceStatistics:
                contains:
                  adminStatus:
                    description: It is the flow analysis's adminStatus.
                    returned: always
                    sample: <adminstatus>
                    type: str
                  inputPackets:
                    description: It is the flow analysis's inputPackets.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueCount:
                    description: It is the flow analysis's inputQueueCount.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueDrops:
                    description: It is the flow analysis's inputQueueDrops.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueFlushes:
                    description: It is the flow analysis's inputQueueFlushes.
                    returned: always
                    sample: 0
                    type: int
                  inputQueueMaxDepth:
                    description: It is the flow analysis's inputQueueMaxDepth.
                    returned: always
                    sample: 0
                    type: int
                  inputRatebps:
                    description: It is the flow analysis's inputRatebps.
                    returned: always
                    sample: 0
                    type: int
                  operationalStatus:
                    description: It is the flow analysis's operationalStatus.
                    returned: always
                    sample: <operationalstatus>
                    type: str
                  outputDrop:
                    description: It is the flow analysis's outputDrop.
                    returned: always
                    sample: 0
                    type: int
                  outputPackets:
                    description: It is the flow analysis's outputPackets.
                    returned: always
                    sample: 0
                    type: int
                  outputQueueCount:
                    description: It is the flow analysis's outputQueueCount.
                    returned: always
                    sample: 0
                    type: int
                  outputQueueDepth:
                    description: It is the flow analysis's outputQueueDepth.
                    returned: always
                    sample: 0
                    type: int
                  outputRatebps:
                    description: It is the flow analysis's outputRatebps.
                    returned: always
                    sample: 0
                    type: int
                  refreshedAt:
                    description: It is the flow analysis's refreshedAt.
                    returned: always
                    sample: 0
                    type: int
                description: It is the flow analysis's interfaceStatistics.
                returned: always
                type: dict
              interfaceStatsCollection:
                description: It is the flow analysis's interfaceStatsCollection.
                returned: always
                sample: <interfacestatscollection>
                type: str
              interfaceStatsCollectionFailureReason:
                description: It is the flow analysis's interfaceStatsCollectionFailureReason.
                returned: always
                sample: <interfacestatscollectionfailurereason>
                type: str
              name:
                description: It is the flow analysis's name.
                returned: always
                sample: <name>
                type: str
              pathOverlayInfo:
                contains:
                  controlPlane:
                    description: It is the flow analysis's controlPlane.
                    returned: always
                    sample: <controlplane>
                    type: str
                  dataPacketEncapsulation:
                    description: It is the flow analysis's dataPacketEncapsulation.
                    returned: always
                    sample: <datapacketencapsulation>
                    type: str
                  destIp:
                    description: It is the flow analysis's destIp.
                    returned: always
                    sample: <destip>
                    type: str
                  destPort:
                    description: It is the flow analysis's destPort.
                    returned: always
                    sample: <destport>
                    type: str
                  protocol:
                    description: It is the flow analysis's protocol.
                    returned: always
                    sample: <protocol>
                    type: str
                  sourceIp:
                    description: It is the flow analysis's sourceIp.
                    returned: always
                    sample: <sourceip>
                    type: str
                  sourcePort:
                    description: It is the flow analysis's sourcePort.
                    returned: always
                    sample: <sourceport>
                    type: str
                  vxlanInfo:
                    contains:
                      dscp:
                        description: It is the flow analysis's dscp.
                        returned: always
                        sample: <dscp>
                        type: str
                      vnid:
                        description: It is the flow analysis's vnid.
                        returned: always
                        sample: <vnid>
                        type: str
                    description: It is the flow analysis's vxlanInfo.
                    returned: always
                    type: dict
                description: It is the flow analysis's pathOverlayInfo.
                returned: always
                type: list
              qosStatistics:
                contains:
                  classMapName:
                    description: It is the flow analysis's classMapName.
                    returned: always
                    sample: <classmapname>
                    type: str
                  dropRate:
                    description: It is the flow analysis's dropRate.
                    returned: always
                    sample: 0
                    type: int
                  numBytes:
                    description: It is the flow analysis's numBytes.
                    returned: always
                    sample: 0
                    type: int
                  numPackets:
                    description: It is the flow analysis's numPackets.
                    returned: always
                    sample: 0
                    type: int
                  offeredRate:
                    description: It is the flow analysis's offeredRate.
                    returned: always
                    sample: 0
                    type: int
                  queueBandwidthbps:
                    description: It is the flow analysis's queueBandwidthbps.
                    returned: always
                    sample: <queuebandwidthbps>
                    type: str
                  queueDepth:
                    description: It is the flow analysis's queueDepth.
                    returned: always
                    sample: 0
                    type: int
                  queueNoBufferDrops:
                    description: It is the flow analysis's queueNoBufferDrops.
                    returned: always
                    sample: 0
                    type: int
                  queueTotalDrops:
                    description: It is the flow analysis's queueTotalDrops.
                    returned: always
                    sample: 0
                    type: int
                  refreshedAt:
                    description: It is the flow analysis's refreshedAt.
                    returned: always
                    sample: 0
                    type: int
                description: It is the flow analysis's qosStatistics.
                returned: always
                type: list
              qosStatsCollection:
                description: It is the flow analysis's qosStatsCollection.
                returned: always
                sample: <qosstatscollection>
                type: str
              qosStatsCollectionFailureReason:
                description: It is the flow analysis's qosStatsCollectionFailureReason.
                returned: always
                sample: <qosstatscollectionfailurereason>
                type: str
              usedVlan:
                description: It is the flow analysis's usedVlan.
                returned: always
                sample: <usedvlan>
                type: str
              vrfName:
                description: It is the flow analysis's vrfName.
                returned: always
                sample: <vrfname>
                type: str
            description: It is the flow analysis's ingressVirtualInterface.
            returned: always
            type: dict
          ip:
            description: It is the flow analysis's ip.
            returned: always
            sample: 1.1.1.17
            type: str
          linkInformationSource:
            description: It is the flow analysis's linkInformationSource.
            returned: always
            sample: <linkinformationsource>
            type: str
          name:
            description: It is the flow analysis's name.
            returned: always
            sample: <name>
            type: str
          perfMonCollection:
            description: It is the flow analysis's perfMonCollection.
            returned: always
            sample: <perfmoncollection>
            type: str
          perfMonCollectionFailureReason:
            description: It is the flow analysis's perfMonCollectionFailureReason.
            returned: always
            sample: <perfmoncollectionfailurereason>
            type: str
          perfMonStatistics:
            contains:
              byteRate:
                description: It is the flow analysis's byteRate.
                returned: always
                sample: 0
                type: int
              destIpAddress:
                description: It is the flow analysis's destIpAddress.
                returned: always
                sample: <destipaddress>
                type: str
              destPort:
                description: It is the flow analysis's destPort.
                returned: always
                sample: <destport>
                type: str
              inputInterface:
                description: It is the flow analysis's inputInterface.
                returned: always
                sample: <inputinterface>
                type: str
              ipv4DSCP:
                description: It is the flow analysis's ipv4DSCP.
                returned: always
                sample: <ipv4dscp>
                type: str
              ipv4TTL:
                description: It is the flow analysis's ipv4TTL.
                returned: always
                sample: 0
                type: int
              outputInterface:
                description: It is the flow analysis's outputInterface.
                returned: always
                sample: <outputinterface>
                type: str
              packetBytes:
                description: It is the flow analysis's packetBytes.
                returned: always
                sample: 0
                type: int
              packetCount:
                description: It is the flow analysis's packetCount.
                returned: always
                sample: 0
                type: int
              packetLoss:
                description: It is the flow analysis's packetLoss.
                returned: always
                sample: 0
                type: int
              packetLossPercentage:
                description: It is the flow analysis's packetLossPercentage.
                returned: always
                sample: 0
                type: int
              protocol:
                description: It is the flow analysis's protocol.
                returned: always
                sample: <protocol>
                type: str
              refreshedAt:
                description: It is the flow analysis's refreshedAt.
                returned: always
                sample: 0
                type: int
              rtpJitterMax:
                description: It is the flow analysis's rtpJitterMax.
                returned: always
                sample: 0
                type: int
              rtpJitterMean:
                description: It is the flow analysis's rtpJitterMean.
                returned: always
                sample: 0
                type: int
              rtpJitterMin:
                description: It is the flow analysis's rtpJitterMin.
                returned: always
                sample: 0
                type: int
              sourceIpAddress:
                description: It is the flow analysis's sourceIpAddress.
                returned: always
                sample: <sourceipaddress>
                type: str
              sourcePort:
                description: It is the flow analysis's sourcePort.
                returned: always
                sample: <sourceport>
                type: str
            description: It is the flow analysis's perfMonStatistics.
            returned: always
            type: list
          role:
            description: It is the flow analysis's role.
            returned: always
            sample: <role>
            type: str
          ssid:
            description: It is the flow analysis's ssid.
            returned: always
            sample: <ssid>
            type: str
          tunnels:
            description: It is the flow analysis's tunnels.
            returned: always
            type: list
          type:
            description: It is the flow analysis's type.
            returned: always
            sample: <type>
            type: str
          wlanId:
            description: It is the flow analysis's wlanId.
            returned: always
            sample: <wlanid>
            type: str
        description: It is the flow analysis's networkElements.
        returned: always
        type: list
      networkElementsInfo:
        contains:
          accuracyList:
            contains:
              percent:
                description: It is the flow analysis's percent.
                returned: always
                sample: 0
                type: int
              reason:
                description: It is the flow analysis's reason.
                returned: always
                sample: <reason>
                type: str
            description: It is the flow analysis's accuracyList.
            returned: always
            type: list
          detailedStatus:
            contains:
              aclTraceCalculation:
                description: It is the flow analysis's aclTraceCalculation.
                returned: always
                sample: <acltracecalculation>
                type: str
              aclTraceCalculationFailureReason:
                description: It is the flow analysis's aclTraceCalculationFailureReason.
                returned: always
                sample: <acltracecalculationfailurereason>
                type: str
            description: It is the flow analysis's detailedStatus.
            returned: always
            type: dict
          deviceStatistics:
            contains:
              cpuStatistics:
                contains:
                  fiveMinUsageInPercentage:
                    description: It is the flow analysis's fiveMinUsageInPercentage.
                    returned: always
                    sample: 0
                    type: int
                  fiveSecsUsageInPercentage:
                    description: It is the flow analysis's fiveSecsUsageInPercentage.
                    returned: always
                    sample: 0
                    type: int
                  oneMinUsageInPercentage:
                    description: It is the flow analysis's oneMinUsageInPercentage.
                    returned: always
                    sample: 0
                    type: int
                  refreshedAt:
                    description: It is the flow analysis's refreshedAt.
                    returned: always
                    sample: 0
                    type: int
                description: It is the flow analysis's cpuStatistics.
                returned: always
                type: dict
              memoryStatistics:
                contains:
                  memoryUsage:
                    description: It is the flow analysis's memoryUsage.
                    returned: always
                    sample: 0
                    type: int
                  refreshedAt:
                    description: It is the flow analysis's refreshedAt.
                    returned: always
                    sample: 0
                    type: int
                  totalMemory:
                    description: It is the flow analysis's totalMemory.
                    returned: always
                    sample: 0
                    type: int
                description: It is the flow analysis's memoryStatistics.
                returned: always
                type: dict
            description: It is the flow analysis's deviceStatistics.
            returned: always
            type: dict
          deviceStatsCollection:
            description: It is the flow analysis's deviceStatsCollection.
            returned: always
            sample: <devicestatscollection>
            type: str
          deviceStatsCollectionFailureReason:
            description: It is the flow analysis's deviceStatsCollectionFailureReason.
            returned: always
            sample: <devicestatscollectionfailurereason>
            type: str
          egressInterface:
            contains:
              physicalInterface:
                contains:
                  aclAnalysis:
                    contains:
                      aclName:
                        description: It is the flow analysis's aclName.
                        returned: always
                        sample: <aclname>
                        type: str
                      matchingAces:
                        contains:
                          ace:
                            description: It is the flow analysis's ace.
                            returned: always
                            sample: <ace>
                            type: str
                          matchingPorts:
                            contains:
                              ports:
                                contains:
                                  destPorts:
                                    description: It is the flow analysis's destPorts.
                                    returned: always
                                    type: list
                                  sourcePorts:
                                    description: It is the flow analysis's sourcePorts.
                                    returned: always
                                    type: list
                                description: It is the flow analysis's ports.
                                returned: always
                                type: list
                              protocol:
                                description: It is the flow analysis's protocol.
                                returned: always
                                sample: <protocol>
                                type: str
                            description: It is the flow analysis's matchingPorts.
                            returned: always
                            type: list
                          result:
                            description: It is the flow analysis's result.
                            returned: always
                            sample: <result>
                            type: str
                        description: It is the flow analysis's matchingAces.
                        returned: always
                        type: list
                      result:
                        description: It is the flow analysis's result.
                        returned: always
                        sample: <result>
                        type: str
                    description: It is the flow analysis's aclAnalysis.
                    returned: always
                    type: dict
                  id:
                    description: It is the flow analysis's id.
                    returned: always
                    sample: '478012'
                    type: str
                  interfaceStatistics:
                    contains:
                      adminStatus:
                        description: It is the flow analysis's adminStatus.
                        returned: always
                        sample: <adminstatus>
                        type: str
                      inputPackets:
                        description: It is the flow analysis's inputPackets.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueCount:
                        description: It is the flow analysis's inputQueueCount.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueDrops:
                        description: It is the flow analysis's inputQueueDrops.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueFlushes:
                        description: It is the flow analysis's inputQueueFlushes.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueMaxDepth:
                        description: It is the flow analysis's inputQueueMaxDepth.
                        returned: always
                        sample: 0
                        type: int
                      inputRatebps:
                        description: It is the flow analysis's inputRatebps.
                        returned: always
                        sample: 0
                        type: int
                      operationalStatus:
                        description: It is the flow analysis's operationalStatus.
                        returned: always
                        sample: <operationalstatus>
                        type: str
                      outputDrop:
                        description: It is the flow analysis's outputDrop.
                        returned: always
                        sample: 0
                        type: int
                      outputPackets:
                        description: It is the flow analysis's outputPackets.
                        returned: always
                        sample: 0
                        type: int
                      outputQueueCount:
                        description: It is the flow analysis's outputQueueCount.
                        returned: always
                        sample: 0
                        type: int
                      outputQueueDepth:
                        description: It is the flow analysis's outputQueueDepth.
                        returned: always
                        sample: 0
                        type: int
                      outputRatebps:
                        description: It is the flow analysis's outputRatebps.
                        returned: always
                        sample: 0
                        type: int
                      refreshedAt:
                        description: It is the flow analysis's refreshedAt.
                        returned: always
                        sample: 0
                        type: int
                    description: It is the flow analysis's interfaceStatistics.
                    returned: always
                    type: dict
                  interfaceStatsCollection:
                    description: It is the flow analysis's interfaceStatsCollection.
                    returned: always
                    sample: <interfacestatscollection>
                    type: str
                  interfaceStatsCollectionFailureReason:
                    description: It is the flow analysis's interfaceStatsCollectionFailureReason.
                    returned: always
                    sample: <interfacestatscollectionfailurereason>
                    type: str
                  name:
                    description: It is the flow analysis's name.
                    returned: always
                    sample: <name>
                    type: str
                  pathOverlayInfo:
                    contains:
                      controlPlane:
                        description: It is the flow analysis's controlPlane.
                        returned: always
                        sample: <controlplane>
                        type: str
                      dataPacketEncapsulation:
                        description: It is the flow analysis's dataPacketEncapsulation.
                        returned: always
                        sample: <datapacketencapsulation>
                        type: str
                      destIp:
                        description: It is the flow analysis's destIp.
                        returned: always
                        sample: <destip>
                        type: str
                      destPort:
                        description: It is the flow analysis's destPort.
                        returned: always
                        sample: <destport>
                        type: str
                      protocol:
                        description: It is the flow analysis's protocol.
                        returned: always
                        sample: <protocol>
                        type: str
                      sourceIp:
                        description: It is the flow analysis's sourceIp.
                        returned: always
                        sample: <sourceip>
                        type: str
                      sourcePort:
                        description: It is the flow analysis's sourcePort.
                        returned: always
                        sample: <sourceport>
                        type: str
                      vxlanInfo:
                        contains:
                          dscp:
                            description: It is the flow analysis's dscp.
                            returned: always
                            sample: <dscp>
                            type: str
                          vnid:
                            description: It is the flow analysis's vnid.
                            returned: always
                            sample: <vnid>
                            type: str
                        description: It is the flow analysis's vxlanInfo.
                        returned: always
                        type: dict
                    description: It is the flow analysis's pathOverlayInfo.
                    returned: always
                    type: list
                  qosStatistics:
                    contains:
                      classMapName:
                        description: It is the flow analysis's classMapName.
                        returned: always
                        sample: <classmapname>
                        type: str
                      dropRate:
                        description: It is the flow analysis's dropRate.
                        returned: always
                        sample: 0
                        type: int
                      numBytes:
                        description: It is the flow analysis's numBytes.
                        returned: always
                        sample: 0
                        type: int
                      numPackets:
                        description: It is the flow analysis's numPackets.
                        returned: always
                        sample: 0
                        type: int
                      offeredRate:
                        description: It is the flow analysis's offeredRate.
                        returned: always
                        sample: 0
                        type: int
                      queueBandwidthbps:
                        description: It is the flow analysis's queueBandwidthbps.
                        returned: always
                        sample: <queuebandwidthbps>
                        type: str
                      queueDepth:
                        description: It is the flow analysis's queueDepth.
                        returned: always
                        sample: 0
                        type: int
                      queueNoBufferDrops:
                        description: It is the flow analysis's queueNoBufferDrops.
                        returned: always
                        sample: 0
                        type: int
                      queueTotalDrops:
                        description: It is the flow analysis's queueTotalDrops.
                        returned: always
                        sample: 0
                        type: int
                      refreshedAt:
                        description: It is the flow analysis's refreshedAt.
                        returned: always
                        sample: 0
                        type: int
                    description: It is the flow analysis's qosStatistics.
                    returned: always
                    type: list
                  qosStatsCollection:
                    description: It is the flow analysis's qosStatsCollection.
                    returned: always
                    sample: <qosstatscollection>
                    type: str
                  qosStatsCollectionFailureReason:
                    description: It is the flow analysis's qosStatsCollectionFailureReason.
                    returned: always
                    sample: <qosstatscollectionfailurereason>
                    type: str
                  usedVlan:
                    description: It is the flow analysis's usedVlan.
                    returned: always
                    sample: <usedvlan>
                    type: str
                  vrfName:
                    description: It is the flow analysis's vrfName.
                    returned: always
                    sample: <vrfname>
                    type: str
                description: It is the flow analysis's physicalInterface.
                returned: always
                type: dict
              virtualInterface:
                contains:
                  aclAnalysis:
                    contains:
                      aclName:
                        description: It is the flow analysis's aclName.
                        returned: always
                        sample: <aclname>
                        type: str
                      matchingAces:
                        contains:
                          ace:
                            description: It is the flow analysis's ace.
                            returned: always
                            sample: <ace>
                            type: str
                          matchingPorts:
                            contains:
                              ports:
                                contains:
                                  destPorts:
                                    description: It is the flow analysis's destPorts.
                                    returned: always
                                    type: list
                                  sourcePorts:
                                    description: It is the flow analysis's sourcePorts.
                                    returned: always
                                    type: list
                                description: It is the flow analysis's ports.
                                returned: always
                                type: list
                              protocol:
                                description: It is the flow analysis's protocol.
                                returned: always
                                sample: <protocol>
                                type: str
                            description: It is the flow analysis's matchingPorts.
                            returned: always
                            type: list
                          result:
                            description: It is the flow analysis's result.
                            returned: always
                            sample: <result>
                            type: str
                        description: It is the flow analysis's matchingAces.
                        returned: always
                        type: list
                      result:
                        description: It is the flow analysis's result.
                        returned: always
                        sample: <result>
                        type: str
                    description: It is the flow analysis's aclAnalysis.
                    returned: always
                    type: dict
                  id:
                    description: It is the flow analysis's id.
                    returned: always
                    sample: '478012'
                    type: str
                  interfaceStatistics:
                    contains:
                      adminStatus:
                        description: It is the flow analysis's adminStatus.
                        returned: always
                        sample: <adminstatus>
                        type: str
                      inputPackets:
                        description: It is the flow analysis's inputPackets.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueCount:
                        description: It is the flow analysis's inputQueueCount.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueDrops:
                        description: It is the flow analysis's inputQueueDrops.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueFlushes:
                        description: It is the flow analysis's inputQueueFlushes.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueMaxDepth:
                        description: It is the flow analysis's inputQueueMaxDepth.
                        returned: always
                        sample: 0
                        type: int
                      inputRatebps:
                        description: It is the flow analysis's inputRatebps.
                        returned: always
                        sample: 0
                        type: int
                      operationalStatus:
                        description: It is the flow analysis's operationalStatus.
                        returned: always
                        sample: <operationalstatus>
                        type: str
                      outputDrop:
                        description: It is the flow analysis's outputDrop.
                        returned: always
                        sample: 0
                        type: int
                      outputPackets:
                        description: It is the flow analysis's outputPackets.
                        returned: always
                        sample: 0
                        type: int
                      outputQueueCount:
                        description: It is the flow analysis's outputQueueCount.
                        returned: always
                        sample: 0
                        type: int
                      outputQueueDepth:
                        description: It is the flow analysis's outputQueueDepth.
                        returned: always
                        sample: 0
                        type: int
                      outputRatebps:
                        description: It is the flow analysis's outputRatebps.
                        returned: always
                        sample: 0
                        type: int
                      refreshedAt:
                        description: It is the flow analysis's refreshedAt.
                        returned: always
                        sample: 0
                        type: int
                    description: It is the flow analysis's interfaceStatistics.
                    returned: always
                    type: dict
                  interfaceStatsCollection:
                    description: It is the flow analysis's interfaceStatsCollection.
                    returned: always
                    sample: <interfacestatscollection>
                    type: str
                  interfaceStatsCollectionFailureReason:
                    description: It is the flow analysis's interfaceStatsCollectionFailureReason.
                    returned: always
                    sample: <interfacestatscollectionfailurereason>
                    type: str
                  name:
                    description: It is the flow analysis's name.
                    returned: always
                    sample: <name>
                    type: str
                  pathOverlayInfo:
                    contains:
                      controlPlane:
                        description: It is the flow analysis's controlPlane.
                        returned: always
                        sample: <controlplane>
                        type: str
                      dataPacketEncapsulation:
                        description: It is the flow analysis's dataPacketEncapsulation.
                        returned: always
                        sample: <datapacketencapsulation>
                        type: str
                      destIp:
                        description: It is the flow analysis's destIp.
                        returned: always
                        sample: <destip>
                        type: str
                      destPort:
                        description: It is the flow analysis's destPort.
                        returned: always
                        sample: <destport>
                        type: str
                      protocol:
                        description: It is the flow analysis's protocol.
                        returned: always
                        sample: <protocol>
                        type: str
                      sourceIp:
                        description: It is the flow analysis's sourceIp.
                        returned: always
                        sample: <sourceip>
                        type: str
                      sourcePort:
                        description: It is the flow analysis's sourcePort.
                        returned: always
                        sample: <sourceport>
                        type: str
                      vxlanInfo:
                        contains:
                          dscp:
                            description: It is the flow analysis's dscp.
                            returned: always
                            sample: <dscp>
                            type: str
                          vnid:
                            description: It is the flow analysis's vnid.
                            returned: always
                            sample: <vnid>
                            type: str
                        description: It is the flow analysis's vxlanInfo.
                        returned: always
                        type: dict
                    description: It is the flow analysis's pathOverlayInfo.
                    returned: always
                    type: list
                  qosStatistics:
                    contains:
                      classMapName:
                        description: It is the flow analysis's classMapName.
                        returned: always
                        sample: <classmapname>
                        type: str
                      dropRate:
                        description: It is the flow analysis's dropRate.
                        returned: always
                        sample: 0
                        type: int
                      numBytes:
                        description: It is the flow analysis's numBytes.
                        returned: always
                        sample: 0
                        type: int
                      numPackets:
                        description: It is the flow analysis's numPackets.
                        returned: always
                        sample: 0
                        type: int
                      offeredRate:
                        description: It is the flow analysis's offeredRate.
                        returned: always
                        sample: 0
                        type: int
                      queueBandwidthbps:
                        description: It is the flow analysis's queueBandwidthbps.
                        returned: always
                        sample: <queuebandwidthbps>
                        type: str
                      queueDepth:
                        description: It is the flow analysis's queueDepth.
                        returned: always
                        sample: 0
                        type: int
                      queueNoBufferDrops:
                        description: It is the flow analysis's queueNoBufferDrops.
                        returned: always
                        sample: 0
                        type: int
                      queueTotalDrops:
                        description: It is the flow analysis's queueTotalDrops.
                        returned: always
                        sample: 0
                        type: int
                      refreshedAt:
                        description: It is the flow analysis's refreshedAt.
                        returned: always
                        sample: 0
                        type: int
                    description: It is the flow analysis's qosStatistics.
                    returned: always
                    type: list
                  qosStatsCollection:
                    description: It is the flow analysis's qosStatsCollection.
                    returned: always
                    sample: <qosstatscollection>
                    type: str
                  qosStatsCollectionFailureReason:
                    description: It is the flow analysis's qosStatsCollectionFailureReason.
                    returned: always
                    sample: <qosstatscollectionfailurereason>
                    type: str
                  usedVlan:
                    description: It is the flow analysis's usedVlan.
                    returned: always
                    sample: <usedvlan>
                    type: str
                  vrfName:
                    description: It is the flow analysis's vrfName.
                    returned: always
                    sample: <vrfname>
                    type: str
                description: It is the flow analysis's virtualInterface.
                returned: always
                type: list
            description: It is the flow analysis's egressInterface.
            returned: always
            type: dict
          flexConnect:
            contains:
              authentication:
                description: It is the flow analysis's authentication.
                returned: always
                sample: <authentication>
                type: str
              dataSwitching:
                description: It is the flow analysis's dataSwitching.
                returned: always
                sample: <dataswitching>
                type: str
              egressAclAnalysis:
                contains:
                  aclName:
                    description: It is the flow analysis's aclName.
                    returned: always
                    sample: <aclname>
                    type: str
                  matchingAces:
                    contains:
                      ace:
                        description: It is the flow analysis's ace.
                        returned: always
                        sample: <ace>
                        type: str
                      matchingPorts:
                        contains:
                          ports:
                            contains:
                              destPorts:
                                description: It is the flow analysis's destPorts.
                                returned: always
                                type: list
                              sourcePorts:
                                description: It is the flow analysis's sourcePorts.
                                returned: always
                                type: list
                            description: It is the flow analysis's ports.
                            returned: always
                            type: list
                          protocol:
                            description: It is the flow analysis's protocol.
                            returned: always
                            sample: <protocol>
                            type: str
                        description: It is the flow analysis's matchingPorts.
                        returned: always
                        type: list
                      result:
                        description: It is the flow analysis's result.
                        returned: always
                        sample: <result>
                        type: str
                    description: It is the flow analysis's matchingAces.
                    returned: always
                    type: list
                  result:
                    description: It is the flow analysis's result.
                    returned: always
                    sample: <result>
                    type: str
                description: It is the flow analysis's egressAclAnalysis.
                returned: always
                type: dict
              ingressAclAnalysis:
                contains:
                  aclName:
                    description: It is the flow analysis's aclName.
                    returned: always
                    sample: <aclname>
                    type: str
                  matchingAces:
                    contains:
                      ace:
                        description: It is the flow analysis's ace.
                        returned: always
                        sample: <ace>
                        type: str
                      matchingPorts:
                        contains:
                          ports:
                            contains:
                              destPorts:
                                description: It is the flow analysis's destPorts.
                                returned: always
                                type: list
                              sourcePorts:
                                description: It is the flow analysis's sourcePorts.
                                returned: always
                                type: list
                            description: It is the flow analysis's ports.
                            returned: always
                            type: list
                          protocol:
                            description: It is the flow analysis's protocol.
                            returned: always
                            sample: <protocol>
                            type: str
                        description: It is the flow analysis's matchingPorts.
                        returned: always
                        type: list
                      result:
                        description: It is the flow analysis's result.
                        returned: always
                        sample: <result>
                        type: str
                    description: It is the flow analysis's matchingAces.
                    returned: always
                    type: list
                  result:
                    description: It is the flow analysis's result.
                    returned: always
                    sample: <result>
                    type: str
                description: It is the flow analysis's ingressAclAnalysis.
                returned: always
                type: dict
              wirelessLanControllerId:
                description: It is the flow analysis's wirelessLanControllerId.
                returned: always
                sample: <wirelesslancontrollerid>
                type: str
              wirelessLanControllerName:
                description: It is the flow analysis's wirelessLanControllerName.
                returned: always
                sample: <wirelesslancontrollername>
                type: str
            description: It is the flow analysis's flexConnect.
            returned: always
            type: dict
          id:
            description: It is the flow analysis's id.
            returned: always
            sample: '478012'
            type: str
          ingressInterface:
            contains:
              physicalInterface:
                contains:
                  aclAnalysis:
                    contains:
                      aclName:
                        description: It is the flow analysis's aclName.
                        returned: always
                        sample: <aclname>
                        type: str
                      matchingAces:
                        contains:
                          ace:
                            description: It is the flow analysis's ace.
                            returned: always
                            sample: <ace>
                            type: str
                          matchingPorts:
                            contains:
                              ports:
                                contains:
                                  destPorts:
                                    description: It is the flow analysis's destPorts.
                                    returned: always
                                    type: list
                                  sourcePorts:
                                    description: It is the flow analysis's sourcePorts.
                                    returned: always
                                    type: list
                                description: It is the flow analysis's ports.
                                returned: always
                                type: list
                              protocol:
                                description: It is the flow analysis's protocol.
                                returned: always
                                sample: <protocol>
                                type: str
                            description: It is the flow analysis's matchingPorts.
                            returned: always
                            type: list
                          result:
                            description: It is the flow analysis's result.
                            returned: always
                            sample: <result>
                            type: str
                        description: It is the flow analysis's matchingAces.
                        returned: always
                        type: list
                      result:
                        description: It is the flow analysis's result.
                        returned: always
                        sample: <result>
                        type: str
                    description: It is the flow analysis's aclAnalysis.
                    returned: always
                    type: dict
                  id:
                    description: It is the flow analysis's id.
                    returned: always
                    sample: '478012'
                    type: str
                  interfaceStatistics:
                    contains:
                      adminStatus:
                        description: It is the flow analysis's adminStatus.
                        returned: always
                        sample: <adminstatus>
                        type: str
                      inputPackets:
                        description: It is the flow analysis's inputPackets.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueCount:
                        description: It is the flow analysis's inputQueueCount.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueDrops:
                        description: It is the flow analysis's inputQueueDrops.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueFlushes:
                        description: It is the flow analysis's inputQueueFlushes.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueMaxDepth:
                        description: It is the flow analysis's inputQueueMaxDepth.
                        returned: always
                        sample: 0
                        type: int
                      inputRatebps:
                        description: It is the flow analysis's inputRatebps.
                        returned: always
                        sample: 0
                        type: int
                      operationalStatus:
                        description: It is the flow analysis's operationalStatus.
                        returned: always
                        sample: <operationalstatus>
                        type: str
                      outputDrop:
                        description: It is the flow analysis's outputDrop.
                        returned: always
                        sample: 0
                        type: int
                      outputPackets:
                        description: It is the flow analysis's outputPackets.
                        returned: always
                        sample: 0
                        type: int
                      outputQueueCount:
                        description: It is the flow analysis's outputQueueCount.
                        returned: always
                        sample: 0
                        type: int
                      outputQueueDepth:
                        description: It is the flow analysis's outputQueueDepth.
                        returned: always
                        sample: 0
                        type: int
                      outputRatebps:
                        description: It is the flow analysis's outputRatebps.
                        returned: always
                        sample: 0
                        type: int
                      refreshedAt:
                        description: It is the flow analysis's refreshedAt.
                        returned: always
                        sample: 0
                        type: int
                    description: It is the flow analysis's interfaceStatistics.
                    returned: always
                    type: dict
                  interfaceStatsCollection:
                    description: It is the flow analysis's interfaceStatsCollection.
                    returned: always
                    sample: <interfacestatscollection>
                    type: str
                  interfaceStatsCollectionFailureReason:
                    description: It is the flow analysis's interfaceStatsCollectionFailureReason.
                    returned: always
                    sample: <interfacestatscollectionfailurereason>
                    type: str
                  name:
                    description: It is the flow analysis's name.
                    returned: always
                    sample: <name>
                    type: str
                  pathOverlayInfo:
                    contains:
                      controlPlane:
                        description: It is the flow analysis's controlPlane.
                        returned: always
                        sample: <controlplane>
                        type: str
                      dataPacketEncapsulation:
                        description: It is the flow analysis's dataPacketEncapsulation.
                        returned: always
                        sample: <datapacketencapsulation>
                        type: str
                      destIp:
                        description: It is the flow analysis's destIp.
                        returned: always
                        sample: <destip>
                        type: str
                      destPort:
                        description: It is the flow analysis's destPort.
                        returned: always
                        sample: <destport>
                        type: str
                      protocol:
                        description: It is the flow analysis's protocol.
                        returned: always
                        sample: <protocol>
                        type: str
                      sourceIp:
                        description: It is the flow analysis's sourceIp.
                        returned: always
                        sample: <sourceip>
                        type: str
                      sourcePort:
                        description: It is the flow analysis's sourcePort.
                        returned: always
                        sample: <sourceport>
                        type: str
                      vxlanInfo:
                        contains:
                          dscp:
                            description: It is the flow analysis's dscp.
                            returned: always
                            sample: <dscp>
                            type: str
                          vnid:
                            description: It is the flow analysis's vnid.
                            returned: always
                            sample: <vnid>
                            type: str
                        description: It is the flow analysis's vxlanInfo.
                        returned: always
                        type: dict
                    description: It is the flow analysis's pathOverlayInfo.
                    returned: always
                    type: list
                  qosStatistics:
                    contains:
                      classMapName:
                        description: It is the flow analysis's classMapName.
                        returned: always
                        sample: <classmapname>
                        type: str
                      dropRate:
                        description: It is the flow analysis's dropRate.
                        returned: always
                        sample: 0
                        type: int
                      numBytes:
                        description: It is the flow analysis's numBytes.
                        returned: always
                        sample: 0
                        type: int
                      numPackets:
                        description: It is the flow analysis's numPackets.
                        returned: always
                        sample: 0
                        type: int
                      offeredRate:
                        description: It is the flow analysis's offeredRate.
                        returned: always
                        sample: 0
                        type: int
                      queueBandwidthbps:
                        description: It is the flow analysis's queueBandwidthbps.
                        returned: always
                        sample: <queuebandwidthbps>
                        type: str
                      queueDepth:
                        description: It is the flow analysis's queueDepth.
                        returned: always
                        sample: 0
                        type: int
                      queueNoBufferDrops:
                        description: It is the flow analysis's queueNoBufferDrops.
                        returned: always
                        sample: 0
                        type: int
                      queueTotalDrops:
                        description: It is the flow analysis's queueTotalDrops.
                        returned: always
                        sample: 0
                        type: int
                      refreshedAt:
                        description: It is the flow analysis's refreshedAt.
                        returned: always
                        sample: 0
                        type: int
                    description: It is the flow analysis's qosStatistics.
                    returned: always
                    type: list
                  qosStatsCollection:
                    description: It is the flow analysis's qosStatsCollection.
                    returned: always
                    sample: <qosstatscollection>
                    type: str
                  qosStatsCollectionFailureReason:
                    description: It is the flow analysis's qosStatsCollectionFailureReason.
                    returned: always
                    sample: <qosstatscollectionfailurereason>
                    type: str
                  usedVlan:
                    description: It is the flow analysis's usedVlan.
                    returned: always
                    sample: <usedvlan>
                    type: str
                  vrfName:
                    description: It is the flow analysis's vrfName.
                    returned: always
                    sample: <vrfname>
                    type: str
                description: It is the flow analysis's physicalInterface.
                returned: always
                type: dict
              virtualInterface:
                contains:
                  aclAnalysis:
                    contains:
                      aclName:
                        description: It is the flow analysis's aclName.
                        returned: always
                        sample: <aclname>
                        type: str
                      matchingAces:
                        contains:
                          ace:
                            description: It is the flow analysis's ace.
                            returned: always
                            sample: <ace>
                            type: str
                          matchingPorts:
                            contains:
                              ports:
                                contains:
                                  destPorts:
                                    description: It is the flow analysis's destPorts.
                                    returned: always
                                    type: list
                                  sourcePorts:
                                    description: It is the flow analysis's sourcePorts.
                                    returned: always
                                    type: list
                                description: It is the flow analysis's ports.
                                returned: always
                                type: list
                              protocol:
                                description: It is the flow analysis's protocol.
                                returned: always
                                sample: <protocol>
                                type: str
                            description: It is the flow analysis's matchingPorts.
                            returned: always
                            type: list
                          result:
                            description: It is the flow analysis's result.
                            returned: always
                            sample: <result>
                            type: str
                        description: It is the flow analysis's matchingAces.
                        returned: always
                        type: list
                      result:
                        description: It is the flow analysis's result.
                        returned: always
                        sample: <result>
                        type: str
                    description: It is the flow analysis's aclAnalysis.
                    returned: always
                    type: dict
                  id:
                    description: It is the flow analysis's id.
                    returned: always
                    sample: '478012'
                    type: str
                  interfaceStatistics:
                    contains:
                      adminStatus:
                        description: It is the flow analysis's adminStatus.
                        returned: always
                        sample: <adminstatus>
                        type: str
                      inputPackets:
                        description: It is the flow analysis's inputPackets.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueCount:
                        description: It is the flow analysis's inputQueueCount.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueDrops:
                        description: It is the flow analysis's inputQueueDrops.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueFlushes:
                        description: It is the flow analysis's inputQueueFlushes.
                        returned: always
                        sample: 0
                        type: int
                      inputQueueMaxDepth:
                        description: It is the flow analysis's inputQueueMaxDepth.
                        returned: always
                        sample: 0
                        type: int
                      inputRatebps:
                        description: It is the flow analysis's inputRatebps.
                        returned: always
                        sample: 0
                        type: int
                      operationalStatus:
                        description: It is the flow analysis's operationalStatus.
                        returned: always
                        sample: <operationalstatus>
                        type: str
                      outputDrop:
                        description: It is the flow analysis's outputDrop.
                        returned: always
                        sample: 0
                        type: int
                      outputPackets:
                        description: It is the flow analysis's outputPackets.
                        returned: always
                        sample: 0
                        type: int
                      outputQueueCount:
                        description: It is the flow analysis's outputQueueCount.
                        returned: always
                        sample: 0
                        type: int
                      outputQueueDepth:
                        description: It is the flow analysis's outputQueueDepth.
                        returned: always
                        sample: 0
                        type: int
                      outputRatebps:
                        description: It is the flow analysis's outputRatebps.
                        returned: always
                        sample: 0
                        type: int
                      refreshedAt:
                        description: It is the flow analysis's refreshedAt.
                        returned: always
                        sample: 0
                        type: int
                    description: It is the flow analysis's interfaceStatistics.
                    returned: always
                    type: dict
                  interfaceStatsCollection:
                    description: It is the flow analysis's interfaceStatsCollection.
                    returned: always
                    sample: <interfacestatscollection>
                    type: str
                  interfaceStatsCollectionFailureReason:
                    description: It is the flow analysis's interfaceStatsCollectionFailureReason.
                    returned: always
                    sample: <interfacestatscollectionfailurereason>
                    type: str
                  name:
                    description: It is the flow analysis's name.
                    returned: always
                    sample: <name>
                    type: str
                  pathOverlayInfo:
                    contains:
                      controlPlane:
                        description: It is the flow analysis's controlPlane.
                        returned: always
                        sample: <controlplane>
                        type: str
                      dataPacketEncapsulation:
                        description: It is the flow analysis's dataPacketEncapsulation.
                        returned: always
                        sample: <datapacketencapsulation>
                        type: str
                      destIp:
                        description: It is the flow analysis's destIp.
                        returned: always
                        sample: <destip>
                        type: str
                      destPort:
                        description: It is the flow analysis's destPort.
                        returned: always
                        sample: <destport>
                        type: str
                      protocol:
                        description: It is the flow analysis's protocol.
                        returned: always
                        sample: <protocol>
                        type: str
                      sourceIp:
                        description: It is the flow analysis's sourceIp.
                        returned: always
                        sample: <sourceip>
                        type: str
                      sourcePort:
                        description: It is the flow analysis's sourcePort.
                        returned: always
                        sample: <sourceport>
                        type: str
                      vxlanInfo:
                        contains:
                          dscp:
                            description: It is the flow analysis's dscp.
                            returned: always
                            sample: <dscp>
                            type: str
                          vnid:
                            description: It is the flow analysis's vnid.
                            returned: always
                            sample: <vnid>
                            type: str
                        description: It is the flow analysis's vxlanInfo.
                        returned: always
                        type: dict
                    description: It is the flow analysis's pathOverlayInfo.
                    returned: always
                    type: list
                  qosStatistics:
                    contains:
                      classMapName:
                        description: It is the flow analysis's classMapName.
                        returned: always
                        sample: <classmapname>
                        type: str
                      dropRate:
                        description: It is the flow analysis's dropRate.
                        returned: always
                        sample: 0
                        type: int
                      numBytes:
                        description: It is the flow analysis's numBytes.
                        returned: always
                        sample: 0
                        type: int
                      numPackets:
                        description: It is the flow analysis's numPackets.
                        returned: always
                        sample: 0
                        type: int
                      offeredRate:
                        description: It is the flow analysis's offeredRate.
                        returned: always
                        sample: 0
                        type: int
                      queueBandwidthbps:
                        description: It is the flow analysis's queueBandwidthbps.
                        returned: always
                        sample: <queuebandwidthbps>
                        type: str
                      queueDepth:
                        description: It is the flow analysis's queueDepth.
                        returned: always
                        sample: 0
                        type: int
                      queueNoBufferDrops:
                        description: It is the flow analysis's queueNoBufferDrops.
                        returned: always
                        sample: 0
                        type: int
                      queueTotalDrops:
                        description: It is the flow analysis's queueTotalDrops.
                        returned: always
                        sample: 0
                        type: int
                      refreshedAt:
                        description: It is the flow analysis's refreshedAt.
                        returned: always
                        sample: 0
                        type: int
                    description: It is the flow analysis's qosStatistics.
                    returned: always
                    type: list
                  qosStatsCollection:
                    description: It is the flow analysis's qosStatsCollection.
                    returned: always
                    sample: <qosstatscollection>
                    type: str
                  qosStatsCollectionFailureReason:
                    description: It is the flow analysis's qosStatsCollectionFailureReason.
                    returned: always
                    sample: <qosstatscollectionfailurereason>
                    type: str
                  usedVlan:
                    description: It is the flow analysis's usedVlan.
                    returned: always
                    sample: <usedvlan>
                    type: str
                  vrfName:
                    description: It is the flow analysis's vrfName.
                    returned: always
                    sample: <vrfname>
                    type: str
                description: It is the flow analysis's virtualInterface.
                returned: always
                type: list
            description: It is the flow analysis's ingressInterface.
            returned: always
            type: dict
          ip:
            description: It is the flow analysis's ip.
            returned: always
            sample: 1.1.1.17
            type: str
          linkInformationSource:
            description: It is the flow analysis's linkInformationSource.
            returned: always
            sample: <linkinformationsource>
            type: str
          name:
            description: It is the flow analysis's name.
            returned: always
            sample: <name>
            type: str
          perfMonCollection:
            description: It is the flow analysis's perfMonCollection.
            returned: always
            sample: <perfmoncollection>
            type: str
          perfMonCollectionFailureReason:
            description: It is the flow analysis's perfMonCollectionFailureReason.
            returned: always
            sample: <perfmoncollectionfailurereason>
            type: str
          perfMonitorStatistics:
            contains:
              byteRate:
                description: It is the flow analysis's byteRate.
                returned: always
                sample: 0
                type: int
              destIpAddress:
                description: It is the flow analysis's destIpAddress.
                returned: always
                sample: <destipaddress>
                type: str
              destPort:
                description: It is the flow analysis's destPort.
                returned: always
                sample: <destport>
                type: str
              inputInterface:
                description: It is the flow analysis's inputInterface.
                returned: always
                sample: <inputinterface>
                type: str
              ipv4DSCP:
                description: It is the flow analysis's ipv4DSCP.
                returned: always
                sample: <ipv4dscp>
                type: str
              ipv4TTL:
                description: It is the flow analysis's ipv4TTL.
                returned: always
                sample: 0
                type: int
              outputInterface:
                description: It is the flow analysis's outputInterface.
                returned: always
                sample: <outputinterface>
                type: str
              packetBytes:
                description: It is the flow analysis's packetBytes.
                returned: always
                sample: 0
                type: int
              packetCount:
                description: It is the flow analysis's packetCount.
                returned: always
                sample: 0
                type: int
              packetLoss:
                description: It is the flow analysis's packetLoss.
                returned: always
                sample: 0
                type: int
              packetLossPercentage:
                description: It is the flow analysis's packetLossPercentage.
                returned: always
                sample: 0
                type: int
              protocol:
                description: It is the flow analysis's protocol.
                returned: always
                sample: <protocol>
                type: str
              refreshedAt:
                description: It is the flow analysis's refreshedAt.
                returned: always
                sample: 0
                type: int
              rtpJitterMax:
                description: It is the flow analysis's rtpJitterMax.
                returned: always
                sample: 0
                type: int
              rtpJitterMean:
                description: It is the flow analysis's rtpJitterMean.
                returned: always
                sample: 0
                type: int
              rtpJitterMin:
                description: It is the flow analysis's rtpJitterMin.
                returned: always
                sample: 0
                type: int
              sourceIpAddress:
                description: It is the flow analysis's sourceIpAddress.
                returned: always
                sample: <sourceipaddress>
                type: str
              sourcePort:
                description: It is the flow analysis's sourcePort.
                returned: always
                sample: <sourceport>
                type: str
            description: It is the flow analysis's perfMonitorStatistics.
            returned: always
            type: list
          role:
            description: It is the flow analysis's role.
            returned: always
            sample: <role>
            type: str
          ssid:
            description: It is the flow analysis's ssid.
            returned: always
            sample: <ssid>
            type: str
          tunnels:
            description: It is the flow analysis's tunnels.
            returned: always
            type: list
          type:
            description: It is the flow analysis's type.
            returned: always
            sample: <type>
            type: str
          wlanId:
            description: It is the flow analysis's wlanId.
            returned: always
            sample: <wlanid>
            type: str
        description: It is the flow analysis's networkElementsInfo.
        returned: always
        type: list
      properties:
        description: It is the flow analysis's properties.
        returned: always
        type: list
      request:
        contains:
          controlPath:
            description: It is the flow analysis's controlPath.
            returned: always
            sample: false
            type: bool
          createTime:
            description: It is the flow analysis's createTime.
            returned: always
            sample: 0
            type: int
          destIP:
            description: It is the flow analysis's destIP.
            returned: always
            sample: <destip>
            type: str
          destPort:
            description: It is the flow analysis's destPort.
            returned: always
            sample: <destport>
            type: str
          failureReason:
            description: It is the flow analysis's failureReason.
            returned: always
            sample: <failurereason>
            type: str
          id:
            description: It is the flow analysis's id.
            returned: always
            sample: '478012'
            type: str
          inclusions:
            description: It is the flow analysis's inclusions.
            returned: always
            type: list
          lastUpdateTime:
            description: It is the flow analysis's lastUpdateTime.
            returned: always
            sample: 0
            type: int
          periodicRefresh:
            description: It is the flow analysis's periodicRefresh.
            returned: always
            sample: false
            type: bool
          protocol:
            description: It is the flow analysis's protocol.
            returned: always
            sample: <protocol>
            type: str
          sourceIP:
            description: It is the flow analysis's sourceIP.
            returned: always
            sample: <sourceip>
            type: str
          sourcePort:
            description: It is the flow analysis's sourcePort.
            returned: always
            sample: <sourceport>
            type: str
          status:
            description: It is the flow analysis's status.
            returned: always
            sample: <status>
            type: str
        description: It is the flow analysis's request.
        returned: always
        type: dict
    description: Response, property of the response body.
    returned: always
    type: dict
  returned: always
  type: dict
  version:
    description: Version, property of the response body.
    returned: always
    sample: '1.0'
    type: str
retrives_all_previous_pathtraces_summary:
  contains: null
  description: Returns a summary of all flow analyses stored. Results can be filtered
    by specified parameters.
  response:
    contains:
      controlPath:
        description: It is the flow analysis's controlPath.
        returned: always
        sample: false
        type: bool
      createTime:
        description: It is the flow analysis's createTime.
        returned: always
        sample: 0
        type: int
      destIP:
        description: It is the flow analysis's destIP.
        returned: always
        sample: <destip>
        type: str
      destPort:
        description: It is the flow analysis's destPort.
        returned: always
        sample: <destport>
        type: str
      failureReason:
        description: It is the flow analysis's failureReason.
        returned: always
        sample: <failurereason>
        type: str
      id:
        description: It is the flow analysis's id.
        returned: always
        sample: '478012'
        type: str
      inclusions:
        description: It is the flow analysis's inclusions.
        returned: always
        type: list
      lastUpdateTime:
        description: It is the flow analysis's lastUpdateTime.
        returned: always
        sample: 0
        type: int
      periodicRefresh:
        description: It is the flow analysis's periodicRefresh.
        returned: always
        sample: false
        type: bool
      protocol:
        description: It is the flow analysis's protocol.
        returned: always
        sample: <protocol>
        type: str
      sourceIP:
        description: It is the flow analysis's sourceIP.
        returned: always
        sample: <sourceip>
        type: str
      sourcePort:
        description: It is the flow analysis's sourcePort.
        returned: always
        sample: <sourceport>
        type: str
      status:
        description: It is the flow analysis's status.
        returned: always
        sample: <status>
        type: str
    description: Response, property of the response body (list of objects).
    returned: always
    type: list
  returned: always
  type: dict
  version:
    description: Version, property of the response body.
    returned: always
    sample: '1.0'
    type: str

See also