-
Notifications
You must be signed in to change notification settings - Fork 20
/
sshd.go
68 lines (57 loc) · 1.8 KB
/
sshd.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
// 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"
// SSHDConfigList holds a list of SSHD configuration.
type SSHDConfigList struct {
Items []SSHDConfig `json:"items"`
Kind string `json:"kind"`
SelfLink string `json:"selflink"`
}
// SSHDConfig holds the configuration of a single SSHD.
type SSHDConfig struct {
}
// SSHDEndpoint represents the REST resource for managing SSHD.
const SSHDEndpoint = "/sshd"
// SSHDResource provides an API to manage SSHD configurations.
type SSHDResource struct {
c *f5.Client
}
// ListAll lists all the SSHD configurations.
func (r *SSHDResource) ListAll() (*SSHDConfigList, error) {
var list SSHDConfigList
if err := r.c.ReadQuery(BasePath+SSHDEndpoint, &list); err != nil {
return nil, err
}
return &list, nil
}
// Get a single SSHD configuration identified by id.
func (r *SSHDResource) Get(id string) (*SSHDConfig, error) {
var item SSHDConfig
if err := r.c.ReadQuery(BasePath+SSHDEndpoint, &item); err != nil {
return nil, err
}
return &item, nil
}
// Create a new SSHD configuration.
func (r *SSHDResource) Create(item SSHDConfig) error {
if err := r.c.ModQuery("POST", BasePath+SSHDEndpoint, item); err != nil {
return err
}
return nil
}
// Edit a SSHD configuration identified by id.
func (r *SSHDResource) Edit(id string, item SSHDConfig) error {
if err := r.c.ModQuery("PUT", BasePath+SSHDEndpoint+"/"+id, item); err != nil {
return err
}
return nil
}
// Delete a single SSHD configuration identified by id.
func (r *SSHDResource) Delete(id string) error {
if err := r.c.ModQuery("DELETE", BasePath+SSHDEndpoint+"/"+id, nil); err != nil {
return err
}
return nil
}