-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcloud_database_configuration_groups.go
244 lines (192 loc) · 7.06 KB
/
cloud_database_configuration_groups.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
// This file is part of gobizfly
package gobizfly
import (
"context"
"encoding/json"
"net/http"
)
const (
cloudDatabaseConfigurationsResourcePath = "/configurations"
)
type cloudDatabaseConfigurations struct {
client *Client
}
// CloudDatabaseNodeUseConfiguration contains info of node use configuration.
type CloudDatabaseNodeUseConfiguration struct {
ID string `json:"id"`
Name string `json:"name"`
}
// CloudDatabaseConfiguration contains detail of a configuration.
type CloudDatabaseConfiguration struct {
CreatedAt string `json:"created_at"`
Datastore CloudDatabaseDatastore `json:"datastore"`
ID string `json:"id"`
Message string `json:"message"`
Name string `json:"name"`
NodeCount int `json:"node_count"`
Nodes []CloudDatabaseNodeUseConfiguration `json:"nodes"`
Values map[string]interface{} `json:"values"`
}
// CloudDatabaseConfigurationCreate contains payload create configuration.
type CloudDatabaseConfigurationCreate struct {
Datastore CloudDatabaseDatastore `json:"datastore,omitempty" validate:"required"`
Name string `json:"configuration_name,omitempty" validate:"required"`
Parameters map[string]interface{} `json:"configuration_parameters,omitempty" validate:"required"`
}
// CloudDatabaseConfigurationUpdate contains payload to update a configuration.
type CloudDatabaseConfigurationUpdate struct {
Datastore CloudDatabaseDatastore `json:"datastore,omitempty" validate:"required"`
Parameters map[string]interface{} `json:"configuration_parameters" validate:"required"`
}
func (db *cloudDatabaseService) Configurations() *cloudDatabaseConfigurations {
return &cloudDatabaseConfigurations{client: db.client}
}
// CloudDatabase Configuration Resource Path
func (cfg *cloudDatabaseConfigurations) resourcePath(cfgID string) string {
return cloudDatabaseConfigurationsResourcePath + "/" + cfgID
}
// CloudDatabase Configuration Resource Action Path
func (cfg *cloudDatabaseConfigurations) resourceActionPath(nodeID string, cfgID string) string {
return cloudDatabaseNodesResourcePath + "/" + nodeID + "/configuration/" + cfgID
}
// List all configurations.
func (cfg *cloudDatabaseConfigurations) List(ctx context.Context, opts *CloudDatabaseListOption) ([]*CloudDatabaseConfiguration, error) {
req, err := cfg.client.NewRequest(ctx, http.MethodGet, databaseServiceName, cloudDatabaseConfigurationsResourcePath, nil)
if err != nil {
return nil, err
}
AddParamsListOption(req, opts)
resp, err := cfg.client.Do(ctx, req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var data struct {
Configurations []*CloudDatabaseConfiguration `json:"configurations"`
}
if err := json.NewDecoder(resp.Body).Decode(&data); err != nil {
return nil, err
}
return data.Configurations, nil
}
// Create a new configurations.
func (cfg *cloudDatabaseConfigurations) Create(ctx context.Context, cr *CloudDatabaseConfigurationCreate) (*CloudDatabaseConfiguration, error) {
req, err := cfg.client.NewRequest(ctx, http.MethodPost, databaseServiceName, cloudDatabaseConfigurationsResourcePath, &cr)
if err != nil {
return nil, err
}
resp, err := cfg.client.Do(ctx, req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var configuration *CloudDatabaseConfiguration
if err := json.NewDecoder(resp.Body).Decode(&configuration); err != nil {
return nil, err
}
return configuration, nil
}
// Get a configurations.
func (cfg *cloudDatabaseConfigurations) Get(ctx context.Context, cfgID string) (*CloudDatabaseConfiguration, error) {
req, err := cfg.client.NewRequest(ctx, http.MethodGet, databaseServiceName, cfg.resourcePath(cfgID), nil)
if err != nil {
return nil, err
}
resp, err := cfg.client.Do(ctx, req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var configuration *CloudDatabaseConfiguration
if err := json.NewDecoder(resp.Body).Decode(&configuration); err != nil {
return nil, err
}
return configuration, nil
}
// Action with a configurations to node.
func (cfg *cloudDatabaseConfigurations) Action(ctx context.Context, nodeID string, cfgID string, iar *CloudDatabaseAction) (*CloudDatabaseMessageResponse, error) {
req, err := cfg.client.NewRequest(ctx, http.MethodPost, databaseServiceName, cfg.resourceActionPath(nodeID, cfgID), &iar)
if err != nil {
return nil, err
}
resp, err := cfg.client.Do(ctx, req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var dmr *CloudDatabaseMessageResponse
if err := json.NewDecoder(resp.Body).Decode(&dmr); err != nil {
return nil, err
}
return dmr, nil
}
// Attach with a configurations to node.
func (cfg *cloudDatabaseConfigurations) Attach(ctx context.Context, nodeID string, cfgID string, all bool) (*CloudDatabaseMessageResponse, error) {
var iar = CloudDatabaseConfigAction{Action: attach}
req, err := cfg.client.NewRequest(ctx, http.MethodPost, databaseServiceName, cfg.resourceActionPath(nodeID, cfgID), &iar)
if err != nil {
return nil, err
}
resp, err := cfg.client.Do(ctx, req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var dmr *CloudDatabaseMessageResponse
if err := json.NewDecoder(resp.Body).Decode(&dmr); err != nil {
return nil, err
}
return dmr, nil
}
// Detach with a configurations to node.
func (cfg *cloudDatabaseConfigurations) Detach(ctx context.Context, nodeID string, cfgID string, all bool) (*CloudDatabaseMessageResponse, error) {
var iar = CloudDatabaseAction{Action: detach, ActionAll: all}
req, err := cfg.client.NewRequest(ctx, http.MethodPost, databaseServiceName, cfg.resourceActionPath(nodeID, cfgID), &iar)
if err != nil {
return nil, err
}
resp, err := cfg.client.Do(ctx, req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var dmr *CloudDatabaseMessageResponse
if err := json.NewDecoder(resp.Body).Decode(&dmr); err != nil {
return nil, err
}
return dmr, nil
}
// Update a configurations.
func (cfg *cloudDatabaseConfigurations) Update(ctx context.Context, cfgID string, cu *CloudDatabaseConfigurationUpdate) (*CloudDatabaseMessageResponse, error) {
req, err := cfg.client.NewRequest(ctx, http.MethodPut, databaseServiceName, cfg.resourcePath(cfgID), &cu)
if err != nil {
return nil, err
}
resp, err := cfg.client.Do(ctx, req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var dmr *CloudDatabaseMessageResponse
if err := json.NewDecoder(resp.Body).Decode(&dmr); err != nil {
return nil, err
}
return dmr, nil
}
// Delete a configurations.
func (cfg *cloudDatabaseConfigurations) Delete(ctx context.Context, cfgID string) (*CloudDatabaseMessageResponse, error) {
req, err := cfg.client.NewRequest(ctx, http.MethodDelete, databaseServiceName, cfg.resourcePath(cfgID), nil)
if err != nil {
return nil, err
}
resp, err := cfg.client.Do(ctx, req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var dmr *CloudDatabaseMessageResponse
if err := json.NewDecoder(resp.Body).Decode(&dmr); err != nil {
return nil, err
}
return dmr, nil
}