-
Notifications
You must be signed in to change notification settings - Fork 20
/
url_db.go
71 lines (60 loc) · 1.91 KB
/
url_db.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
// Copyright e-Xpert Solutions SA. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package sys
import "github.com/e-XpertSolutions/f5-rest-client/f5"
// URLDBConfigList holds a list of URLDB configuration.
type URLDBConfigList struct {
Items []URLDBConfig `json:"items"`
Kind string `json:"kind"`
SelfLink string `json:"selflink"`
}
// URLDBConfig holds the configuration of a single URLDB.
type URLDBConfig struct {
Reference struct {
Link string `json:"link"`
} `json:"reference"`
}
// URLDBEndpoint represents the REST resource for managing URLDB.
const URLDBEndpoint = "/url-db"
// URLDBResource provides an API to manage URLDB configurations.
type URLDBResource struct {
c *f5.Client
}
// ListAll lists all the URLDB configurations.
func (r *URLDBResource) ListAll() (*URLDBConfigList, error) {
var list URLDBConfigList
if err := r.c.ReadQuery(BasePath+URLDBEndpoint, &list); err != nil {
return nil, err
}
return &list, nil
}
// Get a single URLDB configuration identified by id.
func (r *URLDBResource) Get(id string) (*URLDBConfig, error) {
var item URLDBConfig
if err := r.c.ReadQuery(BasePath+URLDBEndpoint, &item); err != nil {
return nil, err
}
return &item, nil
}
// Create a new URLDB configuration.
func (r *URLDBResource) Create(item URLDBConfig) error {
if err := r.c.ModQuery("POST", BasePath+URLDBEndpoint, item); err != nil {
return err
}
return nil
}
// Edit a URLDB configuration identified by id.
func (r *URLDBResource) Edit(id string, item URLDBConfig) error {
if err := r.c.ModQuery("PUT", BasePath+URLDBEndpoint+"/"+id, item); err != nil {
return err
}
return nil
}
// Delete a single URLDB configuration identified by id.
func (r *URLDBResource) Delete(id string) error {
if err := r.c.ModQuery("DELETE", BasePath+URLDBEndpoint+"/"+id, nil); err != nil {
return err
}
return nil
}