forked from f5devcentral/go-bigip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsys.go
531 lines (435 loc) · 13.2 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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
package bigip
import (
"encoding/json"
"log"
)
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"`
}
type Bigiplicenses struct {
Bigiplicenses []Bigiplicense `json:"items"`
}
type Bigiplicense struct {
Registration_key string `json:"registrationKey,omitempty"`
Command string `json:"command,omitempty"`
}
type LogIPFIXs struct {
LogIPFIXs []LogIPFIX `json:"items"`
}
type LogIPFIX struct {
AppService string `json:"appService,omitempty"`
Name string `json:"name,omitempty"`
PoolName string `json:"poolName,omitempty"`
ProtocolVersion string `json:"protocolVersion,omitempty"`
ServersslProfile string `json:"serversslProfile,omitempty"`
TemplateDeleteDelay int `json:"templateDeleteDelay,omitempty"`
TemplateRetransmitInterval int `json:"templateRetransmitInterval,omitempty"`
TransportProfile string `json:"transportProfile,omitempty"`
}
type LogPublishers struct {
LogPublishers []LogPublisher `json:"items"`
}
type LogPublisher struct {
Name string `json:"name,omitempty"`
Dests []Destinations
}
type Destinations struct {
Name string `json:"name,omitempty"`
Partition string `json:"partition,omitempty"`
}
type destinationsDTO struct {
Name string `json:"name,omitempty"`
Partition string `json:"partition,omitempty"`
Dests struct {
Items []Destinations `json:"items,omitempty"`
} `json:"destinationsReference,omitempty"`
}
func (p *LogPublisher) MarshalJSON() ([]byte, error) {
return json.Marshal(destinationsDTO{
Name: p.Name,
Dests: struct {
Items []Destinations `json:"items,omitempty"`
}{Items: p.Dests},
})
}
func (p *LogPublisher) UnmarshalJSON(b []byte) error {
var dto destinationsDTO
err := json.Unmarshal(b, &dto)
if err != nil {
return err
}
p.Name = dto.Name
p.Dests = dto.Dests.Items
return nil
}
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"
uriLicense = "license"
uriLogConfig = "logConfig"
uriDestination = "destination"
uriIPFIX = "ipfix"
uriPublisher = "publisher"
)
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)
}
// DNS & NTP resource does not support Delete API
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 fullPath == "/Common/asm" {
return b.put(config, uriSys, uriProvision, uriAsm)
}
if fullPath == "/Common/afm" {
return b.put(config, uriSys, uriProvision, uriAfm)
}
if fullPath == "/Common/gtm" {
return b.put(config, uriSys, uriProvision, uriGtm)
}
if fullPath == "/Common/apm" {
return b.put(config, uriSys, uriProvision, uriApm)
}
if fullPath == "/Common/avr" {
return b.put(config, uriSys, uriProvision, uriAvr)
}
if fullPath == "/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 {
// Delete API does not exists for resource Provision
return b.delete(uriSys, uriProvision, uriIlx, name)
}
func (b *BigIP) Provisions(name string) (*Provision, error) {
var provision Provision
if name == "afm" {
err, _ := b.getForEntity(&provision, uriSys, uriProvision, uriAfm)
if err != nil {
return nil, err
}
}
if name == "asm" {
err, _ := b.getForEntity(&provision, uriSys, uriProvision, uriAsm)
if err != nil {
return nil, err
}
}
if name == "gtm" {
err, _ := b.getForEntity(&provision, uriSys, uriProvision, uriGtm)
if err != nil {
return nil, err
}
}
if name == "apm" {
err, _ := b.getForEntity(&provision, uriSys, uriProvision, uriApm)
if err != nil {
return nil, err
}
}
if name == "avr" {
err, _ := b.getForEntity(&provision, uriSys, uriProvision, uriAvr)
if err != nil {
return nil, err
}
}
if name == "ilx" {
err, _ := b.getForEntity(&provision, uriSys, uriProvision, uriIlx)
if err != nil {
return nil, err
}
}
log.Println("Display ****************** provision ", provision)
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)
}
func (b *BigIP) Bigiplicenses() (*Bigiplicense, error) {
var bigiplicense Bigiplicense
err, _ := b.getForEntity(&bigiplicense, uriSys, uriLicense)
if err != nil {
return nil, err
}
return &bigiplicense, nil
}
func (b *BigIP) CreateBigiplicense(command, registration_key string) error {
config := &Bigiplicense{
Command: command,
Registration_key: registration_key,
}
return b.post(config, uriSys, uriLicense)
}
func (b *BigIP) ModifyBigiplicense(config *Bigiplicense) error {
return b.put(config, uriSys, uriLicense)
}
func (b *BigIP) LogIPFIXs() (*LogIPFIX, error) {
var logipfix LogIPFIX
err, _ := b.getForEntity(&logipfix, uriSys, uriLogConfig, uriDestination, uriIPFIX)
if err != nil {
return nil, err
}
return &logipfix, nil
}
func (b *BigIP) CreateLogIPFIX(name, appService, poolName, protocolVersion, serversslProfile string, templateDeleteDelay, templateRetransmitInterval int, transportProfile string) error {
config := &LogIPFIX{
Name: name,
AppService: appService,
PoolName: poolName,
ProtocolVersion: protocolVersion,
ServersslProfile: serversslProfile,
TemplateDeleteDelay: templateDeleteDelay,
TemplateRetransmitInterval: templateRetransmitInterval,
TransportProfile: transportProfile,
}
return b.post(config, uriSys, uriLogConfig, uriDestination, uriIPFIX)
}
func (b *BigIP) ModifyLogIPFIX(config *LogIPFIX) error {
return b.put(config, uriSys, uriLogConfig, uriDestination, uriIPFIX)
}
func (b *BigIP) DeleteLogIPFIX(name string) error {
return b.delete(uriSys, uriLogConfig, uriDestination, uriIPFIX, name)
}
func (b *BigIP) LogPublisher() (*LogPublisher, error) {
var logpublisher LogPublisher
err, _ := b.getForEntity(&logpublisher, uriSys, uriLogConfig, uriPublisher)
if err != nil {
return nil, err
}
return &logpublisher, nil
}
func (b *BigIP) CreateLogPublisher(r *LogPublisher) error {
return b.post(r, uriSys, uriLogConfig, uriPublisher)
}
func (b *BigIP) ModifyLogPublisher(r *LogPublisher) error {
return b.put(r, uriSys, uriLogConfig, uriPublisher)
}
func (b *BigIP) DeleteLogPublisher(name string) error {
return b.delete(uriSys, uriLogConfig, uriPublisher, name)
}