forked from f5devcentral/go-bigip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsys.go
337 lines (274 loc) · 8.11 KB
/
sys.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
package bigip
import "encoding/json"
type NTPs struct {
NTPs []NTP `json:"items"`
}
type NTP struct {
Description string `json:"description,omitempty"`
Servers []string `json:"servers,omitempty"`
Timezone string `json:"timezone,omitempty"`
}
type DNSs struct {
DNSs []DNS `json:"items"`
}
type DNS struct {
Description string `json:"description,omitempty"`
NameServers []string `json:"nameServers,omitempty"`
NumberOfDots int `json:"numberOfDots,omitempty"`
Search []string `json:"search,omitempty"`
}
type Provisions struct {
Provisions []Provision `json:"items"`
}
type Provision struct {
Name string `json:"name,omitempty"`
FullPath string `json:"fullPath,omitempty"`
CpuRatio int `json:"cpuRatio,omitempty"`
DiskRatio int `json:"diskRatio,omitempty"`
Level string `json:"level,omitempty"`
MemoryRatio int `json:"memoryRatio,omitempty"`
}
type Syslogs struct {
Syslogs []Syslog `json:"items"`
}
type Syslog struct {
AuthPrivFrom string
RemoteServers []RemoteServer
}
type syslogDTO struct {
AuthPrivFrom string `json:"authPrivFrom,omitempty"`
RemoteServers struct {
Items []RemoteServer `json:"items,omitempty"`
} `json:"remoteServers,omitempty"`
}
func (p *Syslog) MarshalJSON() ([]byte, error) {
var dto syslogDTO
return json.Marshal(dto)
}
func (p *Syslog) UnmarshalJSON(b []byte) error {
var dto syslogDTO
err := json.Unmarshal(b, &dto)
if err != nil {
return err
}
p.AuthPrivFrom = dto.AuthPrivFrom
p.RemoteServers = dto.RemoteServers.Items
return nil
}
type RemoteServer struct {
Name string `json:"name,omitempty"`
Host string `json:"host,omitempty"`
RemotePort int `json:"remotePort,omitempty"`
}
type remoteServerDTO struct {
Name string `json:"name,omitempty"`
Host string `json:"host,omitempty"`
RemotePort int `json:"remotePort,omitempty"`
}
func (p *RemoteServer) MarshalJSON() ([]byte, error) {
return json.Marshal(remoteServerDTO{
Name: p.Name,
Host: p.Host,
RemotePort: p.RemotePort,
})
}
func (p *RemoteServer) UnmarshalJSON(b []byte) error {
var dto remoteServerDTO
err := json.Unmarshal(b, &dto)
if err != nil {
return err
}
p.Name = dto.Name
p.Host = dto.Host
p.RemotePort = dto.RemotePort
return nil
}
type SNMPs struct {
SNMPs []SNMP `json:"items"`
}
type SNMP struct {
SysContact string `json:"sysContact,omitempty"`
SysLocation string `json:"sysLocation,omitempty"`
AllowedAddresses []string `json:"allowedAddresses,omitempty"`
}
type TRAPs struct {
SNMPs []SNMP `json:"items"`
}
type TRAP struct {
Name string `json:"name,omitempty"`
AuthPasswordEncrypted string `json:"authPasswordEncrypted,omitempty"`
AuthProtocol string `json:"authProtocol,omitempty"`
Community string `json:"community,omitempty"`
Description string `json:"description,omitempty"`
EngineId string `json:"engineId,omitempty"`
Host string `json:"host,omitempty"`
Port int `json:"port,omitempty"`
PrivacyPassword string `json:"privacyPassword,omitempty"`
PrivacyPasswordEncrypted string `json:"privacyPasswordEncrypted,omitempty"`
PrivacyProtocol string `json:"privacyProtocol,omitempty"`
SecurityLevel string `json:"securityLevel,omitempty"`
SecurityName string `json:"SecurityName,omitempty"`
Version string `json:"version,omitempty"`
}
const (
uriSys = "sys"
uriNtp = "ntp"
uriDNS = "dns"
uriProvision = "provision"
uriAfm = "afm"
uriAsm = "asm"
uriApm = "apm"
uriAvr = "avr"
uriIlx = "ilx"
uriSyslog = "syslog"
uriSnmp = "snmp"
uriTraps = "traps"
)
func (b *BigIP) CreateNTP(description string, servers []string, timezone string) error {
config := &NTP{
Description: description,
Servers: servers,
Timezone: timezone,
}
return b.patch(config, uriSys, uriNtp)
}
func (b *BigIP) ModifyNTP(config *NTP) error {
return b.put(config, uriSys, uriNtp)
}
func (b *BigIP) NTPs() (*NTP, error) {
var ntp NTP
err, _ := b.getForEntity(&ntp, uriSys, uriNtp)
if err != nil {
return nil, err
}
return &ntp, nil
}
func (b *BigIP) CreateDNS(description string, nameservers []string, numberofdots int, search []string) error {
config := &DNS{
Description: description,
NameServers: nameservers,
NumberOfDots: numberofdots,
Search: search,
}
return b.patch(config, uriSys, uriDNS)
}
func (b *BigIP) ModifyDNS(config *DNS) error {
return b.put(config, uriSys, uriDNS)
}
func (b *BigIP) DNSs() (*DNS, error) {
var dns DNS
err, _ := b.getForEntity(&dns, uriSys, uriDNS)
if err != nil {
return nil, err
}
return &dns, nil
}
func (b *BigIP) CreateProvision(name string, fullPath string, cpuRatio int, diskRatio int, level string, memoryRatio int) error {
config := &Provision{
Name: name,
FullPath: fullPath,
CpuRatio: cpuRatio,
DiskRatio: diskRatio,
Level: level,
MemoryRatio: memoryRatio,
}
if name == "/Common/asm" {
return b.put(config, uriSys, uriProvision, uriAsm)
}
if name == "/Common/afm" {
return b.put(config, uriSys, uriProvision, uriAfm)
}
if name == "/Common/gtm" {
return b.put(config, uriSys, uriProvision, uriGtm)
}
if name == "/Common/apm" {
return b.put(config, uriSys, uriProvision, uriApm)
}
if name == "/Common/avr" {
return b.put(config, uriSys, uriProvision, uriAvr)
}
if name == "/Common/ilx" {
return b.put(config, uriSys, uriProvision, uriIlx)
}
return nil
}
func (b *BigIP) ModifyProvision(config *Provision) error {
return b.put(config, uriSys, uriProvision, uriAfm)
}
func (b *BigIP) DeleteProvision(name string) error {
return b.delete(uriSys, uriProvision, uriIlx, name)
}
func (b *BigIP) Provisions() (*Provision, error) {
var provision Provision
err, _ := b.getForEntity(&provision, uriProvision, uriAfm)
if err != nil {
return nil, err
}
return &provision, nil
}
func (b *BigIP) Syslogs() (*Syslog, error) {
var syslog Syslog
err, _ := b.getForEntity(&syslog, uriSys, uriSyslog)
if err != nil {
return nil, err
}
return &syslog, nil
}
func (b *BigIP) CreateSyslog(r *Syslog) error {
return b.patch(r, uriSys, uriSyslog)
}
func (b *BigIP) ModifySyslog(r *Syslog) error {
return b.put(r, uriSys, uriSyslog)
}
func (b *BigIP) CreateSNMP(sysContact string, sysLocation string, allowedAddresses []string) error {
config := &SNMP{
SysContact: sysContact,
SysLocation: sysLocation,
AllowedAddresses: allowedAddresses,
}
return b.patch(config, uriSys, uriSnmp)
}
func (b *BigIP) ModifySNMP(config *SNMP) error {
return b.put(config, uriSys, uriSnmp)
}
func (b *BigIP) SNMPs() (*SNMP, error) {
var snmp SNMP
err, _ := b.getForEntity(&snmp, uriSys, uriSnmp)
if err != nil {
return nil, err
}
return &snmp, nil
}
func (b *BigIP) CreateTRAP(name string, authPasswordEncrypted string, authProtocol string, community string, description string, engineId string, host string, port int, privacyPassword string, privacyPasswordEncrypted string, privacyProtocol string, securityLevel string, securityName string, version string) error {
config := &TRAP{
Name: name,
AuthPasswordEncrypted: authPasswordEncrypted,
AuthProtocol: authProtocol,
Community: community,
Description: description,
EngineId: engineId,
Host: host,
Port: port,
PrivacyPassword: privacyPassword,
PrivacyPasswordEncrypted: privacyPasswordEncrypted,
PrivacyProtocol: privacyProtocol,
SecurityLevel: securityLevel,
SecurityName: securityName,
Version: version,
}
return b.post(config, uriSys, uriSnmp, uriTraps)
}
func (b *BigIP) ModifyTRAP(config *TRAP) error {
return b.put(config, uriSys, uriSnmp, uriTraps)
}
func (b *BigIP) TRAPs() (*TRAP, error) {
var traps TRAP
err, _ := b.getForEntity(&traps, uriSys, uriSnmp, uriTraps)
if err != nil {
return nil, err
}
return &traps, nil
}
func (b *BigIP) DeleteTRAP(name string) error {
return b.delete(uriSys, uriSnmp, uriTraps, name)
}