-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcustomize_envelope.go
385 lines (328 loc) · 10.5 KB
/
customize_envelope.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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
// Copyright 2022-2025 The sacloud/iaas-api-go Authors
//
// Licensed 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 iaas
import (
"encoding/json"
"github.com/sacloud/iaas-api-go/naked"
"github.com/sacloud/iaas-api-go/search"
)
// Note: sacloud/配下でのUnmarshalJSONの実装
//
// v2/internal/dslではAPIからの戻り値が以下のようにラップされていることを期待している
// {
// "<API名>": {},
// "is_ok": true
// }
//
// この形式に沿っていないAPIについてはレスポンスのエンベロープ(struct xxxResponseEnvelope)でUnmarshalJSONを実装する必要がある
// UnmarshalJSON APIからの戻り値でレスポンスボディ直下にデータを持つことへの対応
func (a *authStatusReadResponseEnvelope) UnmarshalJSON(data []byte) error {
type alias authStatusReadResponseEnvelope
var tmp alias
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
var nakedAuthStatus naked.AuthStatus
if err := json.Unmarshal(data, &nakedAuthStatus); err != nil {
return err
}
tmp.AuthStatus = &nakedAuthStatus
*a = authStatusReadResponseEnvelope(tmp)
return nil
}
func (b *billDetailsCSVResponseEnvelope) UnmarshalJSON(data []byte) error {
type alias billDetailsCSVResponseEnvelope
var tmp alias
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
var nakedBillDetailCSV naked.BillDetailCSV
if err := json.Unmarshal(data, &nakedBillDetailCSV); err != nil {
return err
}
tmp.CSV = &nakedBillDetailCSV
*b = billDetailsCSVResponseEnvelope(tmp)
return nil
}
// UnmarshalJSON APIからの戻り値でレスポンスボディ直下にデータを持つことへの対応
func (a *certificateAuthorityAddClientResponseEnvelope) UnmarshalJSON(data []byte) error {
type alias certificateAuthorityAddClientResponseEnvelope
// is_okなどの共通的な項目
var tmp alias
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
// ラッパーが省略されている、レスポンスボディの直下にある項目
var result naked.CertificateAuthorityAddClientOrServerResult
if err := json.Unmarshal(data, &result); err != nil {
return err
}
tmp.CertificateAuthority = &result
*a = certificateAuthorityAddClientResponseEnvelope(tmp)
return nil
}
// UnmarshalJSON APIからの戻り値でレスポンスボディ直下にデータを持つことへの対応
func (a *certificateAuthorityAddServerResponseEnvelope) UnmarshalJSON(data []byte) error {
type alias certificateAuthorityAddServerResponseEnvelope
// is_okなどの共通的な項目
var tmp alias
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
// ラッパーが省略されている、レスポンスボディの直下にある項目
var result naked.CertificateAuthorityAddClientOrServerResult
if err := json.Unmarshal(data, &result); err != nil {
return err
}
tmp.CertificateAuthority = &result
*a = certificateAuthorityAddServerResponseEnvelope(tmp)
return nil
}
func (m *mobileGatewaySetSIMRoutesRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias struct {
SIMRoutes []*naked.MobileGatewaySIMRoute `json:"sim_routes"`
}
tmp := &alias{
SIMRoutes: m.SIMRoutes,
}
if len(tmp.SIMRoutes) == 0 {
tmp.SIMRoutes = make([]*naked.MobileGatewaySIMRoute, 0)
}
return json.Marshal(tmp)
}
// UnmarshalJSON APIからの戻り値でレスポンスボディ直下にデータを持つことへの対応
func (s *serverGetVNCProxyResponseEnvelope) UnmarshalJSON(data []byte) error {
type alias serverGetVNCProxyResponseEnvelope
var tmp alias
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
var nakedVNCProxy naked.VNCProxyInfo
if err := json.Unmarshal(data, &nakedVNCProxy); err != nil {
return err
}
tmp.VNCProxyInfo = &nakedVNCProxy
*s = serverGetVNCProxyResponseEnvelope(tmp)
return nil
}
/*
* 検索時に固定パラメータを設定するための実装
*/
func (s autoBackupFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias autoBackupFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Provider.Class")] = "autobackup"
return json.Marshal(tmp)
}
func (s autoScaleFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias autoScaleFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Provider.Class")] = "autoscale"
return json.Marshal(tmp)
}
func (s certificateAuthorityFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias certificateAuthorityFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Provider.Class")] = "certificateauthority"
return json.Marshal(tmp)
}
func (s containerRegistryFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias containerRegistryFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Provider.Class")] = "containerregistry"
return json.Marshal(tmp)
}
func (s eSMEFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias eSMEFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Provider.Class")] = "esme"
return json.Marshal(tmp)
}
func (s dNSFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias dNSFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Provider.Class")] = "dns"
return json.Marshal(tmp)
}
func (s simpleMonitorFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias simpleMonitorFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Provider.Class")] = "simplemon"
return json.Marshal(tmp)
}
func (s gSLBFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias gSLBFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Provider.Class")] = "gslb"
return json.Marshal(tmp)
}
func (s proxyLBFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias proxyLBFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Provider.Class")] = "proxylb"
return json.Marshal(tmp)
}
func (s sIMFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias sIMFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Provider.Class")] = "sim"
return json.Marshal(tmp)
}
func (s localRouterFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias localRouterFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Provider.Class")] = "localrouter"
return json.Marshal(tmp)
}
func (s enhancedDBFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias enhancedDBFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Provider.Class")] = "enhanceddb"
return json.Marshal(tmp)
}
func (s databaseFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias databaseFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Class")] = "database"
return json.Marshal(tmp)
}
func (s loadBalancerFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias loadBalancerFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Class")] = "loadbalancer"
return json.Marshal(tmp)
}
func (s vPCRouterFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias vPCRouterFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Class")] = "vpcrouter"
return json.Marshal(tmp)
}
func (s nFSFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias nFSFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Class")] = "nfs"
return json.Marshal(tmp)
}
func (s mobileGatewayFindRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias mobileGatewayFindRequestEnvelope
tmp := alias(s)
if tmp.Filter == nil {
tmp.Filter = search.Filter{}
}
tmp.Filter[search.Key("Class")] = "mobilegateway"
return json.Marshal(tmp)
}
/*
* for Shared Archive
*/
func (s archiveShareRequestEnvelope) MarshalJSON() ([]byte, error) {
type alias archiveShareRequestEnvelope
tmp := alias(s)
tmp.Shared = true
return json.Marshal(tmp)
}
// UnmarshalJSON APIからの戻り値でレスポンスボディ直下にデータを持つことへの対応
func (s *archiveShareResponseEnvelope) UnmarshalJSON(data []byte) error {
type alias archiveShareResponseEnvelope
var tmp alias
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
var nakedData naked.ArchiveShareInfo
if err := json.Unmarshal(data, &nakedData); err != nil {
return err
}
tmp.ArchiveShareInfo = &nakedData
*s = archiveShareResponseEnvelope(tmp)
return nil
}
// UnmarshalJSON APIからの戻り値でレスポンスボディ直下にデータを持つことへの対応
func (a *vPCRouterLogsResponseEnvelope) UnmarshalJSON(data []byte) error {
type alias vPCRouterLogsResponseEnvelope
var tmp alias
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
var nakedLogs naked.VPCRouterLog
if err := json.Unmarshal(data, &nakedLogs); err != nil {
return err
}
tmp.VPCRouter = &nakedLogs
*a = vPCRouterLogsResponseEnvelope(tmp)
return nil
}
// UnmarshalJSON APIからの戻り値でレスポンスボディ直下にデータを持つことへの対応
func (a *vPCRouterPingResponseEnvelope) UnmarshalJSON(data []byte) error {
type alias vPCRouterPingResponseEnvelope
var tmp alias
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
var nakedResult naked.VPCRouterPingResult
if err := json.Unmarshal(data, &nakedResult); err != nil {
return err
}
tmp.VPCRouter = &nakedResult
*a = vPCRouterPingResponseEnvelope(tmp)
return nil
}