github.com/vmware/go-vmware-nsxt@v0.0.0-20230223012718-d31b8a1ca05e/monitoring/packet_data.go (about) 1 /* Copyright © 2017 VMware, Inc. All Rights Reserved. 2 SPDX-License-Identifier: BSD-2-Clause 3 4 Generated by: https://github.com/swagger-api/swagger-codegen.git */ 5 6 package monitoring 7 8 type PacketData struct { 9 10 // If the requested frame_size is too small (given the payload and traceflow metadata requirement of 16 bytes), the traceflow request will fail with an appropriate message. The frame will be zero padded to the requested size. 11 FrameSize int64 `json:"frame_size,omitempty"` 12 13 // Packet configuration 14 ResourceType string `json:"resource_type"` 15 16 // A flag, when set true, indicates that the traceflow packet is of L3 routing. 17 Routed bool `json:"routed,omitempty"` 18 19 // transport type of the traceflow packet 20 TransportType string `json:"transport_type,omitempty"` 21 }