-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathSolidFireService.go
282 lines (243 loc) · 7.92 KB
/
SolidFireService.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
//
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
//
package cloudstack
import (
"encoding/json"
"net/url"
)
type SolidFireServiceIface interface {
GetSolidFireAccountId(p *GetSolidFireAccountIdParams) (*GetSolidFireAccountIdResponse, error)
NewGetSolidFireAccountIdParams(accountid string, storageid string) *GetSolidFireAccountIdParams
GetSolidFireVolumeAccessGroupIds(p *GetSolidFireVolumeAccessGroupIdsParams) (*GetSolidFireVolumeAccessGroupIdsResponse, error)
NewGetSolidFireVolumeAccessGroupIdsParams(clusterid string, storageid string) *GetSolidFireVolumeAccessGroupIdsParams
GetSolidFireVolumeSize(p *GetSolidFireVolumeSizeParams) (*GetSolidFireVolumeSizeResponse, error)
NewGetSolidFireVolumeSizeParams(volumeid string) *GetSolidFireVolumeSizeParams
}
type GetSolidFireAccountIdParams struct {
p map[string]interface{}
}
func (p *GetSolidFireAccountIdParams) toURLValues() url.Values {
u := url.Values{}
if p.p == nil {
return u
}
if v, found := p.p["accountid"]; found {
u.Set("accountid", v.(string))
}
if v, found := p.p["storageid"]; found {
u.Set("storageid", v.(string))
}
return u
}
func (p *GetSolidFireAccountIdParams) SetAccountid(v string) {
if p.p == nil {
p.p = make(map[string]interface{})
}
p.p["accountid"] = v
}
func (p *GetSolidFireAccountIdParams) ResetAccountid() {
if p.p != nil && p.p["accountid"] != nil {
delete(p.p, "accountid")
}
}
func (p *GetSolidFireAccountIdParams) GetAccountid() (string, bool) {
if p.p == nil {
p.p = make(map[string]interface{})
}
value, ok := p.p["accountid"].(string)
return value, ok
}
func (p *GetSolidFireAccountIdParams) SetStorageid(v string) {
if p.p == nil {
p.p = make(map[string]interface{})
}
p.p["storageid"] = v
}
func (p *GetSolidFireAccountIdParams) ResetStorageid() {
if p.p != nil && p.p["storageid"] != nil {
delete(p.p, "storageid")
}
}
func (p *GetSolidFireAccountIdParams) GetStorageid() (string, bool) {
if p.p == nil {
p.p = make(map[string]interface{})
}
value, ok := p.p["storageid"].(string)
return value, ok
}
// You should always use this function to get a new GetSolidFireAccountIdParams instance,
// as then you are sure you have configured all required params
func (s *SolidFireService) NewGetSolidFireAccountIdParams(accountid string, storageid string) *GetSolidFireAccountIdParams {
p := &GetSolidFireAccountIdParams{}
p.p = make(map[string]interface{})
p.p["accountid"] = accountid
p.p["storageid"] = storageid
return p
}
// Get SolidFire Account ID
func (s *SolidFireService) GetSolidFireAccountId(p *GetSolidFireAccountIdParams) (*GetSolidFireAccountIdResponse, error) {
resp, err := s.cs.newRequest("getSolidFireAccountId", p.toURLValues())
if err != nil {
return nil, err
}
var r GetSolidFireAccountIdResponse
if err := json.Unmarshal(resp, &r); err != nil {
return nil, err
}
return &r, nil
}
type GetSolidFireAccountIdResponse struct {
JobID string `json:"jobid"`
Jobstatus int `json:"jobstatus"`
SolidFireAccountId int64 `json:"solidFireAccountId"`
}
type GetSolidFireVolumeAccessGroupIdsParams struct {
p map[string]interface{}
}
func (p *GetSolidFireVolumeAccessGroupIdsParams) toURLValues() url.Values {
u := url.Values{}
if p.p == nil {
return u
}
if v, found := p.p["clusterid"]; found {
u.Set("clusterid", v.(string))
}
if v, found := p.p["storageid"]; found {
u.Set("storageid", v.(string))
}
return u
}
func (p *GetSolidFireVolumeAccessGroupIdsParams) SetClusterid(v string) {
if p.p == nil {
p.p = make(map[string]interface{})
}
p.p["clusterid"] = v
}
func (p *GetSolidFireVolumeAccessGroupIdsParams) ResetClusterid() {
if p.p != nil && p.p["clusterid"] != nil {
delete(p.p, "clusterid")
}
}
func (p *GetSolidFireVolumeAccessGroupIdsParams) GetClusterid() (string, bool) {
if p.p == nil {
p.p = make(map[string]interface{})
}
value, ok := p.p["clusterid"].(string)
return value, ok
}
func (p *GetSolidFireVolumeAccessGroupIdsParams) SetStorageid(v string) {
if p.p == nil {
p.p = make(map[string]interface{})
}
p.p["storageid"] = v
}
func (p *GetSolidFireVolumeAccessGroupIdsParams) ResetStorageid() {
if p.p != nil && p.p["storageid"] != nil {
delete(p.p, "storageid")
}
}
func (p *GetSolidFireVolumeAccessGroupIdsParams) GetStorageid() (string, bool) {
if p.p == nil {
p.p = make(map[string]interface{})
}
value, ok := p.p["storageid"].(string)
return value, ok
}
// You should always use this function to get a new GetSolidFireVolumeAccessGroupIdsParams instance,
// as then you are sure you have configured all required params
func (s *SolidFireService) NewGetSolidFireVolumeAccessGroupIdsParams(clusterid string, storageid string) *GetSolidFireVolumeAccessGroupIdsParams {
p := &GetSolidFireVolumeAccessGroupIdsParams{}
p.p = make(map[string]interface{})
p.p["clusterid"] = clusterid
p.p["storageid"] = storageid
return p
}
// Get the SF Volume Access Group IDs
func (s *SolidFireService) GetSolidFireVolumeAccessGroupIds(p *GetSolidFireVolumeAccessGroupIdsParams) (*GetSolidFireVolumeAccessGroupIdsResponse, error) {
resp, err := s.cs.newRequest("getSolidFireVolumeAccessGroupIds", p.toURLValues())
if err != nil {
return nil, err
}
var r GetSolidFireVolumeAccessGroupIdsResponse
if err := json.Unmarshal(resp, &r); err != nil {
return nil, err
}
return &r, nil
}
type GetSolidFireVolumeAccessGroupIdsResponse struct {
JobID string `json:"jobid"`
Jobstatus int `json:"jobstatus"`
SolidFireVolumeAccessGroupIds []int64 `json:"solidFireVolumeAccessGroupIds"`
}
type GetSolidFireVolumeSizeParams struct {
p map[string]interface{}
}
func (p *GetSolidFireVolumeSizeParams) toURLValues() url.Values {
u := url.Values{}
if p.p == nil {
return u
}
if v, found := p.p["volumeid"]; found {
u.Set("volumeid", v.(string))
}
return u
}
func (p *GetSolidFireVolumeSizeParams) SetVolumeid(v string) {
if p.p == nil {
p.p = make(map[string]interface{})
}
p.p["volumeid"] = v
}
func (p *GetSolidFireVolumeSizeParams) ResetVolumeid() {
if p.p != nil && p.p["volumeid"] != nil {
delete(p.p, "volumeid")
}
}
func (p *GetSolidFireVolumeSizeParams) GetVolumeid() (string, bool) {
if p.p == nil {
p.p = make(map[string]interface{})
}
value, ok := p.p["volumeid"].(string)
return value, ok
}
// You should always use this function to get a new GetSolidFireVolumeSizeParams instance,
// as then you are sure you have configured all required params
func (s *SolidFireService) NewGetSolidFireVolumeSizeParams(volumeid string) *GetSolidFireVolumeSizeParams {
p := &GetSolidFireVolumeSizeParams{}
p.p = make(map[string]interface{})
p.p["volumeid"] = volumeid
return p
}
// Get the SF volume size including Hypervisor Snapshot Reserve
func (s *SolidFireService) GetSolidFireVolumeSize(p *GetSolidFireVolumeSizeParams) (*GetSolidFireVolumeSizeResponse, error) {
resp, err := s.cs.newRequest("getSolidFireVolumeSize", p.toURLValues())
if err != nil {
return nil, err
}
var r GetSolidFireVolumeSizeResponse
if err := json.Unmarshal(resp, &r); err != nil {
return nil, err
}
return &r, nil
}
type GetSolidFireVolumeSizeResponse struct {
JobID string `json:"jobid"`
Jobstatus int `json:"jobstatus"`
SolidFireVolumeSize int64 `json:"solidFireVolumeSize"`
}