Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* MEEP Controller REST API
*
* MEEP Controller REST API
*
* API version: 1.0.0
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package client
// Logical network location object
type NetworkLocation struct {
// Unique network location ID
Id string `json:"id,omitempty"`
// Network location name
Name string `json:"name,omitempty"`
// Network location type
Type_ string `json:"type,omitempty"`
// Latency in ms for all terminal links within network location
TerminalLinkLatency int32 `json:"terminalLinkLatency,omitempty"`
// Latency variation in ms for all terminal links within network location
TerminalLinkLatencyVariation int32 `json:"terminalLinkLatencyVariation,omitempty"`
// The limit of the traffic supported for all terminal links within the network location
TerminalLinkThroughput int32 `json:"terminalLinkThroughput,omitempty"`
// Packet lost (in terms of percentage) for all terminal links within the network location
TerminalLinkPacketLoss float64 `json:"terminalLinkPacketLoss,omitempty"`
PhysicalLocations []PhysicalLocation `json:"physicalLocations,omitempty"`
}