-
Notifications
You must be signed in to change notification settings - Fork 3
/
api.go
84 lines (69 loc) · 1.9 KB
/
api.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package policy_client
import (
"encoding/json"
"strconv"
)
type Policies struct {
TotalPolicies int `json:"total_policies"`
Policies []Policy `json:"policies"`
}
type Policy struct {
Source Source `json:"source"`
Destination Destination `json:"destination"`
}
type SecurityGroup struct {
Guid string `json:"guid"`
Name string `json:"name"`
Rules SecurityGroupRules `json:"rules"`
StagingDefault bool `json:"staging_default"`
RunningDefault bool `json:"running_default"`
StagingSpaceGuids []string `json:"staging_space_guids"`
RunningSpaceGuids []string `json:"running_space_guids"`
}
type IPRange struct {
Start string `json:"start"`
End string `json:"end"`
}
type Source struct {
ID string `json:"id"`
Tag string `json:"tag,omitempty"`
}
type Destination struct {
ID string `json:"id"`
Tag string `json:"tag,omitempty"`
Protocol string `json:"protocol"`
Ports Ports `json:"ports"`
}
type Ports struct {
Start int `json:"start"`
End int `json:"end"`
}
type Tag struct {
ID string `json:"id"`
Tag string `json:"tag"`
}
type Space struct {
Name string `json:"name"`
OrgGUID string `json:"organization_guid"`
}
type SecurityGroupRules []SecurityGroupRule
type SecurityGroupRule struct {
Protocol string `json:"protocol"`
Destination string `json:"destination"`
Ports string `json:"ports,omitempty"`
Type int `json:"type"`
Code int `json:"code"`
Description string `json:"description,omitempty"`
Log bool `json:"log"`
}
func (sgr *SecurityGroupRules) UnmarshalJSON(data []byte) error {
s, err := strconv.Unquote(string(data))
if err != nil {
return err
}
type securityGroups SecurityGroupRules
if err := json.Unmarshal([]byte(s), (*securityGroups)(sgr)); err != nil {
return err
}
return nil
}