-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparams.go
58 lines (41 loc) · 1.83 KB
/
params.go
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
* Telstra Programmable Network API
*
* Telstra Programmable Network is a self-provisioning platform that allows its users to create on-demand connectivity services between multiple end-points and add various network functions to those services. Programmable Network enables to connectivity to a global ecosystem of networking services as well as public and private cloud services. Once you are connected to the platform on one or more POPs (points of presence), you can start creating those services based on the use case that you want to accomplish. The Programmable Network API is available to all customers who have registered to use the Programmable Network. To register, please contact your account representative.
*
* API version: 2.1.3
* Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
*/
package TelstraTPN
type Params struct {
//
Description string `json:"description,omitempty"`
// Duration of contract in minutes
Duration int32 `json:"duration,omitempty"`
// Bandwidth in kB/s
Bandwidth int32 `json:"bandwidth,omitempty"`
// Latency: 0=Low, 1=Standard, 2=Best Effort
Latency int32 `json:"latency,omitempty"`
// Identifier of a link
Linkid string `json:"linkid,omitempty"`
// Identifier of a contract
Contractid string `json:"contractid,omitempty"`
//
Price int32 `json:"price,omitempty"`
//
Tag string `json:"tag,omitempty"`
//
Connections []string `json:"connections,omitempty"`
//
TopologyTagUuid string `json:"topology_tag_uuid,omitempty"`
//
BillingId string `json:"billing-id,omitempty"`
// Renewal Option: 0=Auto Disconnect, 1=Auto Renew, 2=Pay per hour
RenewalOption int32 `json:"renewal-option,omitempty"`
//
LatencySla string `json:"latency-sla,omitempty"`
//
Linkstatus int32 `json:"linkstatus,omitempty"`
//
LinkType string `json:"link-type,omitempty"`
}