-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapplication.go
126 lines (108 loc) · 3.48 KB
/
application.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
package wallarm
import "encoding/json"
type (
// Application contains operations available on Application resource
Application interface {
AppRead(appBody *AppRead) (*AppReadResp, error)
AppCreate(appBody *AppCreate) error
AppDelete(appBody *AppDelete) error
AppUpdate(appBody *AppUpdate) error
}
// AppCreate is a request body to set ID and Name for the App.
// ID is optional when creating a new application.
// If ID is not provided, the system will generate one automatically.
AppCreate struct {
ID *int `json:"id,omitempty"`
Clientid int `json:"clientid"`
Name string `json:"name"`
}
// AppFilter is used to filter applications by ID and ClientID.
AppFilter struct {
ID int `json:"id"`
Clientid int `json:"clientid"`
}
// AppDelete is a root object for deleting filter.
AppDelete struct {
Filter *AppFilter `json:"filter"`
}
// AppReadFilter is a filter by Client ID.
AppReadFilter struct {
Clientid []int `json:"clientid"`
}
// AppRead is a request body for filtration of the App.
AppRead struct {
Limit int `json:"limit"`
Offset int `json:"offset"`
Filter *AppReadFilter `json:"filter"`
}
// AppReadResp is a response with parameters of the application.
AppReadResp struct {
Status int `json:"status"`
Body []struct {
ID *int `json:"id"`
Clientid int `json:"clientid"`
Name string `json:"name"`
Deleted bool `json:"deleted"`
} `json:"body"`
}
// AppUpdate is a request body to update Fields in the existing Application defined by Filter.
AppUpdate struct {
Filter *AppUpdateFilter `json:"filter"`
Fields *AppUpdateFields `json:"fields"`
}
// AppUpdateFilter is used as a filter with ID of the Application.
AppUpdateFilter struct {
*AppReadFilter
ID int `json:"id"`
}
// AppUpdateFields is used as identificator what should be changed in Application.
// Only Name is supported.
AppUpdateFields struct {
Name string `json:"name"`
}
)
// AppRead reads Applications and returns params of the Application.
// API reference: https://apiconsole.eu1.wallarm.com
func (api *api) AppRead(appBody *AppRead) (*AppReadResp, error) {
uri := "/v1/objects/pool"
respBody, err := api.makeRequest("POST", uri, "app", appBody)
if err != nil {
return nil, err
}
var a AppReadResp
if err = json.Unmarshal(respBody, &a); err != nil {
return nil, err
}
return &a, nil
}
// AppCreate returns nothing if Application has been created successfully, otherwise error.
// ID is optional when creating a new application. If ID is not provided, the system will generate one automatically.
// API reference: https://apiconsole.eu1.wallarm.com
func (api *api) AppCreate(appBody *AppCreate) error {
uri := "/v1/objects/pool/create"
_, err := api.makeRequest("POST", uri, "app", appBody)
if err != nil {
return err
}
return nil
}
// AppDelete returns nothing if Application has been deleted successfully, otherwise error.
// API reference: https://apiconsole.eu1.wallarm.com
func (api *api) AppDelete(appBody *AppDelete) error {
uri := "/v1/objects/pool/delete"
_, err := api.makeRequest("POST", uri, "app", appBody)
if err != nil {
return err
}
return nil
}
// AppUpdate returns nothing if the Application has been updated successfully, otherwise error.
// API reference: https://apiconsole.eu1.wallarm.com
func (api *api) AppUpdate(appBody *AppUpdate) error {
uri := "/v1/objects/pool/update"
_, err := api.makeRequest("POST", uri, "app", appBody)
if err != nil {
return err
}
return nil
}