ksyun-sdk-node 1.4.9 → 1.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (108) hide show
  1. package/dist/service/Aicp/v20240612/index.js +24 -0
  2. package/dist/service/Bws/v20160304/index.js +3 -0
  3. package/dist/service/Cdn/v20250503/index.js +0 -333
  4. package/dist/service/Cdn/v3/index.js +600 -0
  5. package/dist/service/Cen/v20160304/index.js +147 -103
  6. package/dist/service/Clickhouse/v20210101/index.js +204 -19
  7. package/dist/service/Cloud_advisor/v20250610/index.js +81 -0
  8. package/dist/service/Dmp/v20240101/index.js +362 -0
  9. package/dist/service/Dts/v20180108/index.js +386 -0
  10. package/dist/service/Ebs/v20160304/index.js +197 -34
  11. package/dist/service/Eip/v20160304/index.js +79 -1
  12. package/dist/service/Influxdb/v20191010/index.js +504 -0
  13. package/dist/service/Kad/v20161122/index.js +32 -0
  14. package/dist/service/Kce/v20190806/index.js +234 -43
  15. package/dist/service/Kce/v20201231/index.js +2 -2
  16. package/dist/service/Kce/v20230101/index.js +193 -0
  17. package/dist/service/Kce/v20230306/index.js +434 -0
  18. package/dist/service/Kce/v20231115/index.js +65 -0
  19. package/dist/service/Kce2/v20230101/index.js +313 -0
  20. package/dist/service/Kci/v20200702/index.js +336 -0
  21. package/dist/service/Kcm/v20160304/index.js +113 -3
  22. package/dist/service/Kcrs/v20211109/index.js +88 -92
  23. package/dist/service/Kcs/v20160701/index.js +165 -23
  24. package/dist/service/Kcs/v20170401/index.js +1 -36
  25. package/dist/service/Kcs/v20240701/index.js +45 -0
  26. package/dist/service/Kead/v20200101/index.js +37 -8
  27. package/dist/service/Ked/v1/index.js +805 -0
  28. package/dist/service/Ket/v20170101/index.js +42 -0
  29. package/dist/service/Kfw/v20160304/index.js +59 -0
  30. package/dist/service/Kingpay/v1/index.js +44 -0
  31. package/dist/service/Knad/v20230323/index.js +333 -0
  32. package/dist/service/Kpfs/v20240930/index.js +181 -0
  33. package/dist/service/Krds/v20160701/index.js +505 -96
  34. package/dist/service/Krds/v20200825/index.js +48 -8
  35. package/dist/service/Milvus/v20231010/index.js +366 -0
  36. package/dist/service/Mongodb/v20170101/index.js +163 -13
  37. package/dist/service/Mongodb/v20250101/index.js +44 -0
  38. package/dist/service/Pdns/v20160304/index.js +636 -0
  39. package/dist/service/Postgresql/v20181225/index.js +950 -0
  40. package/dist/service/Rabbitmq/v20191017/index.js +107 -6
  41. package/dist/service/Relyt/v20240117/index.js +45 -0
  42. package/dist/service/Sks/v20151101/index.js +2 -1
  43. package/dist/service/Slb/v20160304/index.js +426 -53
  44. package/dist/service/Slb/v20250430/index.js +750 -0
  45. package/dist/service/Sqlserver/v20190425/index.js +872 -0
  46. package/dist/service/Sts/v20151101/index.js +19 -0
  47. package/dist/service/Tagv2/v20200901/index.js +42 -6
  48. package/dist/service/Ter/v20240415/index.js +114 -0
  49. package/dist/service/Tidb/v20210520/index.js +415 -21
  50. package/dist/service/Trade/v20250220/index.js +97 -0
  51. package/dist/service/Trade/v20250321/index.js +93 -0
  52. package/dist/service/Trade/v20250828/index.js +56 -0
  53. package/dist/service/Vpc/v20160304/index.js +32 -0
  54. package/dist/service/Waf/v20200707/index.js +188 -5
  55. package/package.json +1 -1
  56. package/src/service/Aicp/v20240612/index.js +24 -0
  57. package/src/service/Bws/v20160304/index.js +3 -0
  58. package/src/service/Cdn/{v20250503 → v3}/index.js +196 -0
  59. package/src/service/Cen/v20160304/index.js +144 -100
  60. package/src/service/Clickhouse/v20210101/index.js +203 -18
  61. package/src/service/Cloud_advisor/v20250610/index.js +73 -0
  62. package/src/service/Dmp/v20240101/index.js +354 -0
  63. package/src/service/Dts/v20180108/index.js +378 -0
  64. package/src/service/Ebs/v20160304/index.js +194 -31
  65. package/src/service/Eip/v20160304/index.js +79 -1
  66. package/src/service/Influxdb/v20191010/index.js +496 -0
  67. package/src/service/Kad/v20161122/index.js +32 -0
  68. package/src/service/Kce/v20190806/index.js +233 -42
  69. package/src/service/Kce/v20201231/index.js +2 -2
  70. package/src/service/Kce/v20230101/index.js +185 -0
  71. package/src/service/Kce/v20230306/index.js +426 -0
  72. package/src/service/Kce/v20231115/index.js +57 -0
  73. package/src/service/Kce2/v20230101/index.js +305 -0
  74. package/src/service/Kci/v20200702/index.js +328 -0
  75. package/src/service/Kcm/v20160304/index.js +110 -0
  76. package/src/service/Kcrs/v20211109/index.js +87 -91
  77. package/src/service/Kcs/v20160701/index.js +164 -22
  78. package/src/service/Kcs/v20170401/index.js +1 -36
  79. package/src/service/Kcs/v20240701/index.js +37 -0
  80. package/src/service/Kead/v20200101/index.js +37 -8
  81. package/src/service/Ked/v1/index.js +797 -0
  82. package/src/service/Ket/v20170101/index.js +42 -0
  83. package/src/service/Kfw/v20160304/index.js +51 -0
  84. package/src/service/Kingpay/v1/index.js +36 -0
  85. package/src/service/Knad/v20230323/index.js +325 -0
  86. package/src/service/Kpfs/v20240930/index.js +173 -0
  87. package/src/service/Krds/v20160701/index.js +502 -93
  88. package/src/service/Krds/v20200825/index.js +48 -8
  89. package/src/service/Milvus/v20231010/index.js +358 -0
  90. package/src/service/Mongodb/v20170101/index.js +162 -12
  91. package/src/service/Mongodb/v20250101/index.js +36 -0
  92. package/src/service/Pdns/v20160304/index.js +628 -0
  93. package/src/service/Postgresql/v20181225/index.js +942 -0
  94. package/src/service/Rabbitmq/v20191017/index.js +107 -6
  95. package/src/service/Relyt/v20240117/index.js +37 -0
  96. package/src/service/Sks/v20151101/index.js +1 -0
  97. package/src/service/Slb/v20160304/index.js +416 -43
  98. package/src/service/Slb/v20250430/index.js +742 -0
  99. package/src/service/Sqlserver/v20190425/index.js +864 -0
  100. package/src/service/Sts/v20151101/index.js +19 -0
  101. package/src/service/Tagv2/v20200901/index.js +42 -6
  102. package/src/service/Ter/v20240415/index.js +106 -0
  103. package/src/service/Tidb/v20210520/index.js +412 -18
  104. package/src/service/Trade/v20250220/index.js +89 -0
  105. package/src/service/Trade/v20250321/index.js +85 -0
  106. package/src/service/Trade/v20250828/index.js +48 -0
  107. package/src/service/Vpc/v20160304/index.js +32 -0
  108. package/src/service/Waf/v20200707/index.js +187 -4
@@ -0,0 +1,805 @@
1
+ "use strict";
2
+
3
+ function _defineProperty(e, r, t) { return (r = _toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
4
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == typeof i ? i : i + ""; }
5
+ function _toPrimitive(t, r) { if ("object" != typeof t || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != typeof i) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
6
+ const BaseClient = require("../../../base/BaseClient.js");
7
+ module.exports = class Client extends BaseClient {
8
+ constructor(...args) {
9
+ super(...args);
10
+ _defineProperty(this, "_baseConfig", {
11
+ protocol: "http://",
12
+ endpoint: "ked.api.ksyun.com",
13
+ config: {
14
+ timeout: 60,
15
+ //设置timeout
16
+ headers: {
17
+ Accept: "application/json"
18
+ },
19
+ credentials: {
20
+ region: "cn-shanghai-3",
21
+ service: "ked"
22
+ }
23
+ }
24
+ });
25
+ _defineProperty(this, "_apiList", {
26
+ CloudDeskreinstall: {
27
+ url: "/",
28
+ method: "PUT",
29
+ config: {
30
+ query: {
31
+ Version: "V1",
32
+ Action: "CloudDeskreinstall"
33
+ },
34
+ headers: {
35
+ "Content-Type": "application/json"
36
+ }
37
+ },
38
+ paramsType: {
39
+ instanceId: "String",
40
+ imageId: "String"
41
+ }
42
+ },
43
+ CloudDeskmanage: {
44
+ url: "/",
45
+ method: "POST",
46
+ config: {
47
+ query: {
48
+ Version: "V1",
49
+ Action: "CloudDeskmanage"
50
+ },
51
+ headers: {
52
+ "Content-Type": "application/json"
53
+ }
54
+ },
55
+ paramsType: {
56
+ instanceIds: "Array",
57
+ action1: "String"
58
+ }
59
+ },
60
+ CloudDeskedit: {
61
+ url: "/",
62
+ method: "PUT",
63
+ config: {
64
+ query: {
65
+ Version: "V1",
66
+ Action: "CloudDeskedit"
67
+ },
68
+ headers: {
69
+ "Content-Type": "application/json"
70
+ }
71
+ },
72
+ paramsType: {
73
+ instanceId: "String",
74
+ name: "String"
75
+ }
76
+ },
77
+ CloudDeskcreate: {
78
+ url: "/",
79
+ method: "POST",
80
+ config: {
81
+ query: {
82
+ Version: "V1",
83
+ Action: "CloudDeskcreate"
84
+ },
85
+ headers: {
86
+ "Content-Type": "application/json"
87
+ }
88
+ },
89
+ paramsType: {
90
+ instanceName: "String",
91
+ instanceType: "String",
92
+ imageId: "String",
93
+ edgeNodeId: "String",
94
+ systemDisk: "Int",
95
+ dataDisk: "Int",
96
+ billType: "Int",
97
+ duration: "Int",
98
+ securityGroupId: "String",
99
+ gpu: "String",
100
+ quantity: "Int",
101
+ uniqueSuffix: "Boolean"
102
+ }
103
+ },
104
+ CloudDesklist: {
105
+ url: "/",
106
+ method: "GET",
107
+ config: {
108
+ query: {
109
+ Version: "V1",
110
+ Action: "CloudDesklist"
111
+ },
112
+ headers: {
113
+ "Content-Type": "application/json"
114
+ }
115
+ },
116
+ paramsType: {
117
+ page: "Int",
118
+ size: "Int",
119
+ connected: "String",
120
+ labelIds: "String",
121
+ name: "String",
122
+ userName: "String"
123
+ }
124
+ },
125
+ Strategyruleedit: {
126
+ url: "/",
127
+ method: "POST",
128
+ config: {
129
+ query: {
130
+ Version: "V1",
131
+ Action: "Strategyruleedit"
132
+ },
133
+ headers: {
134
+ "Content-Type": "application/json"
135
+ }
136
+ },
137
+ paramsType: {
138
+ securityGroupId: "String",
139
+ policies: "Array"
140
+ }
141
+ },
142
+ Strategyrulecreate: {
143
+ url: "/",
144
+ method: "POST",
145
+ config: {
146
+ query: {
147
+ Version: "V1",
148
+ Action: "Strategyrulecreate"
149
+ },
150
+ headers: {
151
+ "Content-Type": "application/json"
152
+ }
153
+ },
154
+ paramsType: {
155
+ name: "String",
156
+ description: "String",
157
+ policies: "Array"
158
+ }
159
+ },
160
+ Strategyunbound: {
161
+ url: "/",
162
+ method: "PUT",
163
+ config: {
164
+ query: {
165
+ Version: "V1",
166
+ Action: "Strategyunbound"
167
+ },
168
+ headers: {
169
+ "Content-Type": "application/json"
170
+ }
171
+ },
172
+ paramsType: {
173
+ securityGroupId: "String",
174
+ instanceId: "String"
175
+ }
176
+ },
177
+ Strategybound: {
178
+ url: "/",
179
+ method: "PUT",
180
+ config: {
181
+ query: {
182
+ Version: "V1",
183
+ Action: "Strategybound"
184
+ },
185
+ headers: {
186
+ "Content-Type": "application/json"
187
+ }
188
+ },
189
+ paramsType: {
190
+ securityGroupId: "String",
191
+ instanceId: "String"
192
+ }
193
+ },
194
+ Strategydelete: {
195
+ url: "/",
196
+ method: "DELETE",
197
+ config: {
198
+ query: {
199
+ Version: "V1",
200
+ Action: "Strategydelete"
201
+ },
202
+ headers: {
203
+ "Content-Type": "application/json"
204
+ }
205
+ },
206
+ paramsType: {
207
+ id: "Array"
208
+ }
209
+ },
210
+ Strategyedit: {
211
+ url: "/",
212
+ method: "PUT",
213
+ config: {
214
+ query: {
215
+ Version: "V1",
216
+ Action: "Strategyedit"
217
+ },
218
+ headers: {
219
+ "Content-Type": "application/json"
220
+ }
221
+ },
222
+ paramsType: {
223
+ securityGroupId: "String",
224
+ name: "String",
225
+ description: "String"
226
+ }
227
+ },
228
+ Strategycreate: {
229
+ url: "/",
230
+ method: "POST",
231
+ config: {
232
+ query: {
233
+ Version: "V1",
234
+ Action: "Strategycreate"
235
+ },
236
+ headers: {
237
+ "Content-Type": "application/json"
238
+ }
239
+ },
240
+ paramsType: {
241
+ name: "String",
242
+ description: "String"
243
+ }
244
+ },
245
+ Strategylist: {
246
+ url: "/",
247
+ method: "GET",
248
+ config: {
249
+ query: {
250
+ Version: "V1",
251
+ Action: "Strategylist"
252
+ },
253
+ headers: {
254
+ "Content-Type": "application/json"
255
+ }
256
+ },
257
+ paramsType: {
258
+ size: "Int",
259
+ page: "Int",
260
+ name: "String"
261
+ }
262
+ },
263
+ Rolesdelete: {
264
+ url: "/",
265
+ method: "DELETE",
266
+ config: {
267
+ query: {
268
+ Version: "V1",
269
+ Action: "Rolesdelete"
270
+ },
271
+ headers: {
272
+ "Content-Type": "application/json"
273
+ }
274
+ },
275
+ paramsType: {
276
+ id: "Int"
277
+ }
278
+ },
279
+ Rolesedit: {
280
+ url: "/",
281
+ method: "PUT",
282
+ config: {
283
+ query: {
284
+ Version: "V1",
285
+ Action: "Rolesedit"
286
+ },
287
+ headers: {
288
+ "Content-Type": "application/json"
289
+ }
290
+ },
291
+ paramsType: {
292
+ id: "Int",
293
+ name: "String",
294
+ description: "String",
295
+ fileTransfer: "Int",
296
+ clipboard: "Int",
297
+ disk: "Int",
298
+ usb: "Int"
299
+ }
300
+ },
301
+ Rolescreate: {
302
+ url: "/",
303
+ method: "POST",
304
+ config: {
305
+ query: {
306
+ Version: "V1",
307
+ Action: "Rolescreate"
308
+ },
309
+ headers: {
310
+ "Content-Type": "application/json"
311
+ }
312
+ },
313
+ paramsType: {
314
+ name: "String",
315
+ description: "String",
316
+ fileTransfer: "Int",
317
+ clipboard: "Int",
318
+ disk: "Int",
319
+ usb: "Int"
320
+ }
321
+ },
322
+ Roleslist: {
323
+ url: "/",
324
+ method: "GET",
325
+ config: {
326
+ query: {
327
+ Version: "V1",
328
+ Action: "Roleslist"
329
+ },
330
+ headers: {
331
+ "Content-Type": "application/json"
332
+ }
333
+ },
334
+ paramsType: {
335
+ size: "Int",
336
+ page: "Int",
337
+ name: "String"
338
+ }
339
+ },
340
+ Imagedelete: {
341
+ url: "/",
342
+ method: "DELETE",
343
+ config: {
344
+ query: {
345
+ Version: "V1",
346
+ Action: "Imagedelete"
347
+ },
348
+ headers: {
349
+ "Content-Type": "application/json"
350
+ }
351
+ },
352
+ paramsType: {
353
+ imageId: "String"
354
+ }
355
+ },
356
+ Imageedit: {
357
+ url: "/",
358
+ method: "PUT",
359
+ config: {
360
+ query: {
361
+ Version: "V1",
362
+ Action: "Imageedit"
363
+ },
364
+ headers: {
365
+ "Content-Type": "application/json"
366
+ }
367
+ },
368
+ paramsType: {
369
+ id: "Int",
370
+ imageId: "String",
371
+ imageName: "String",
372
+ description: "String"
373
+ }
374
+ },
375
+ Imagecreate: {
376
+ url: "/",
377
+ method: "POST",
378
+ config: {
379
+ query: {
380
+ Version: "V1",
381
+ Action: "Imagecreate"
382
+ },
383
+ headers: {
384
+ "Content-Type": "application/json"
385
+ }
386
+ },
387
+ paramsType: {
388
+ imageName: "String",
389
+ description: "String",
390
+ instanceId: "String"
391
+ }
392
+ },
393
+ Imagelist: {
394
+ url: "/",
395
+ method: "GET",
396
+ config: {
397
+ query: {
398
+ Version: "V1",
399
+ Action: "Imagelist"
400
+ },
401
+ headers: {
402
+ "Content-Type": "application/json"
403
+ }
404
+ },
405
+ paramsType: {
406
+ size: "Int",
407
+ page: "Int",
408
+ name: "String"
409
+ }
410
+ },
411
+ StrategyrulebatchEdit: {
412
+ url: "/",
413
+ method: "DELETE",
414
+ config: {
415
+ query: {
416
+ Version: "V1",
417
+ Action: "StrategyrulebatchEdit"
418
+ },
419
+ headers: {
420
+ "Content-Type": "application/json"
421
+ }
422
+ },
423
+ paramsType: {
424
+ securityGroupIds: "Array"
425
+ }
426
+ },
427
+ Monitorregions: {
428
+ url: "/",
429
+ method: "GET",
430
+ config: {
431
+ query: {
432
+ Version: "V1",
433
+ Action: "Monitorregions"
434
+ },
435
+ headers: {
436
+ "Content-Type": "application/json"
437
+ }
438
+ },
439
+ paramsType: {}
440
+ },
441
+ Usersinstancebind: {
442
+ url: "/",
443
+ method: "POST",
444
+ config: {
445
+ query: {
446
+ Version: "V1",
447
+ Action: "Usersinstancebind"
448
+ },
449
+ headers: {
450
+ "Content-Type": "application/json"
451
+ }
452
+ },
453
+ paramsType: {
454
+ id: "Int",
455
+ instanceId: "String"
456
+ }
457
+ },
458
+ Userspasswordreset: {
459
+ url: "/",
460
+ method: "PUT",
461
+ config: {
462
+ query: {
463
+ Version: "V1",
464
+ Action: "Userspasswordreset"
465
+ },
466
+ headers: {
467
+ "Content-Type": "application/json"
468
+ }
469
+ },
470
+ paramsType: {
471
+ id: "Int",
472
+ password: "String"
473
+ }
474
+ },
475
+ Usersdelete: {
476
+ url: "/",
477
+ method: "DELETE",
478
+ config: {
479
+ query: {
480
+ Version: "V1",
481
+ Action: "Usersdelete"
482
+ },
483
+ headers: {
484
+ "Content-Type": "application/json"
485
+ }
486
+ },
487
+ paramsType: {
488
+ id: "Int"
489
+ }
490
+ },
491
+ Usersedit: {
492
+ url: "/",
493
+ method: "PUT",
494
+ config: {
495
+ query: {
496
+ Version: "V1",
497
+ Action: "Usersedit"
498
+ },
499
+ headers: {
500
+ "Content-Type": "application/json"
501
+ }
502
+ },
503
+ paramsType: {
504
+ id: "Int",
505
+ name: "String",
506
+ phoneOrEmail: "String",
507
+ nickName: "String",
508
+ status: "Int"
509
+ }
510
+ },
511
+ Userscreate: {
512
+ url: "/",
513
+ method: "POST",
514
+ config: {
515
+ query: {
516
+ Version: "V1",
517
+ Action: "Userscreate"
518
+ },
519
+ headers: {
520
+ "Content-Type": "application/json"
521
+ }
522
+ },
523
+ paramsType: {
524
+ name: "String",
525
+ password: "String",
526
+ phoneOrEmail: "String",
527
+ roleId: "Int"
528
+ }
529
+ },
530
+ Userslist: {
531
+ url: "/",
532
+ method: "GET",
533
+ config: {
534
+ query: {
535
+ Version: "V1",
536
+ Action: "Userslist"
537
+ },
538
+ headers: {
539
+ "Content-Type": "application/json"
540
+ }
541
+ },
542
+ paramsType: {
543
+ size: "Int",
544
+ page: "Int",
545
+ username: "String",
546
+ phone: "String",
547
+ email: "String"
548
+ }
549
+ },
550
+ CloudDeskgetDesktopUrl: {
551
+ url: "/",
552
+ method: "POST",
553
+ config: {
554
+ query: {
555
+ Version: "V1",
556
+ Action: "CloudDeskgetDesktopUrl"
557
+ },
558
+ headers: {
559
+ "Content-Type": "application/json"
560
+ }
561
+ },
562
+ paramsType: {
563
+ token: "String",
564
+ instanceId: "String"
565
+ }
566
+ },
567
+ QueryCloudDesksubmitShell: {
568
+ url: "/",
569
+ method: "POST",
570
+ config: {
571
+ query: {
572
+ Version: "V1",
573
+ Action: "QueryCloudDesksubmitShell"
574
+ },
575
+ headers: {
576
+ "Content-Type": "application/json"
577
+ }
578
+ },
579
+ paramsType: {
580
+ instanceIds: "Array",
581
+ name: "String",
582
+ shellContent: "String"
583
+ }
584
+ },
585
+ CreateCloudDeskgetToken: {
586
+ url: "/",
587
+ method: "POST",
588
+ config: {
589
+ query: {
590
+ Version: "V1",
591
+ Action: "CreateCloudDeskgetToken"
592
+ },
593
+ headers: {
594
+ "Content-Type": "application/json"
595
+ }
596
+ },
597
+ paramsType: {
598
+ username: "String",
599
+ password: "String"
600
+ }
601
+ },
602
+ QueryShellStatus: {
603
+ url: "/",
604
+ method: "GET",
605
+ config: {
606
+ query: {
607
+ Version: "V1",
608
+ Action: "QueryShellStatus"
609
+ },
610
+ headers: {
611
+ "Content-Type": "application/json"
612
+ }
613
+ },
614
+ paramsType: {
615
+ instanceIds: "String",
616
+ planId: "Int"
617
+ }
618
+ },
619
+ SetProxyIp: {
620
+ url: "/",
621
+ method: "POST",
622
+ config: {
623
+ query: {
624
+ Version: "V1",
625
+ Action: "SetProxyIp"
626
+ },
627
+ headers: {
628
+ "Content-Type": "application/json"
629
+ }
630
+ },
631
+ paramsType: {
632
+ instanceIds: "Array",
633
+ province: "String",
634
+ isp: "String",
635
+ city: "String"
636
+ }
637
+ },
638
+ GetProxyConfig: {
639
+ url: "/",
640
+ method: "GET",
641
+ config: {
642
+ query: {
643
+ Version: "V1",
644
+ Action: "GetProxyConfig"
645
+ },
646
+ headers: {
647
+ "Content-Type": "application/json"
648
+ }
649
+ },
650
+ paramsType: {
651
+ instanceId: "String"
652
+ }
653
+ },
654
+ QueryRuledetail: {
655
+ url: "/",
656
+ method: "GET",
657
+ config: {
658
+ query: {
659
+ Version: "V1",
660
+ Action: "QueryRuledetail"
661
+ },
662
+ headers: {
663
+ "Content-Type": "application/json"
664
+ }
665
+ },
666
+ paramsType: {
667
+ securityGroupId: "String"
668
+ }
669
+ },
670
+ QueryUsersinfo: {
671
+ url: "/",
672
+ method: "POST",
673
+ config: {
674
+ query: {
675
+ Version: "V1",
676
+ Action: "QueryUsersinfo"
677
+ },
678
+ headers: {
679
+ "Content-Type": "application/json"
680
+ }
681
+ },
682
+ paramsType: {
683
+ username: "String",
684
+ phone: "String",
685
+ email: "String"
686
+ }
687
+ },
688
+ GetDetail: {
689
+ url: "/",
690
+ method: "GET",
691
+ config: {
692
+ query: {
693
+ Version: "V1",
694
+ Action: "GetDetail"
695
+ },
696
+ headers: {
697
+ "Content-Type": "application/json"
698
+ }
699
+ },
700
+ paramsType: {
701
+ instanceId: "String"
702
+ }
703
+ },
704
+ ListLabel: {
705
+ url: "/",
706
+ method: "GET",
707
+ config: {
708
+ query: {
709
+ Version: "V1",
710
+ Action: "ListLabel"
711
+ },
712
+ headers: {
713
+ "Content-Type": "application/json"
714
+ }
715
+ },
716
+ paramsType: {
717
+ name: "String"
718
+ }
719
+ },
720
+ CancelInstanceLabel: {
721
+ url: "/",
722
+ method: "POST",
723
+ config: {
724
+ query: {
725
+ Version: "V1",
726
+ Action: "CancelInstanceLabel"
727
+ },
728
+ headers: {
729
+ "Content-Type": "application/json"
730
+ }
731
+ },
732
+ paramsType: {
733
+ labelId: "Array",
734
+ instanceId: "String"
735
+ }
736
+ },
737
+ UpdateInstanceLabel: {
738
+ url: "/",
739
+ method: "POST",
740
+ config: {
741
+ query: {
742
+ Version: "V1",
743
+ Action: "UpdateInstanceLabel"
744
+ },
745
+ headers: {
746
+ "Content-Type": "application/json"
747
+ }
748
+ },
749
+ paramsType: {
750
+ labelId: "Array",
751
+ instanceId: "String"
752
+ }
753
+ },
754
+ DeleteLabel: {
755
+ url: "/",
756
+ method: "POST",
757
+ config: {
758
+ query: {
759
+ Version: "V1",
760
+ Action: "DeleteLabel"
761
+ },
762
+ headers: {
763
+ "Content-Type": "application/json"
764
+ }
765
+ },
766
+ paramsType: {
767
+ id: "Array"
768
+ }
769
+ },
770
+ UpdateLabel: {
771
+ url: "/",
772
+ method: "POST",
773
+ config: {
774
+ query: {
775
+ Version: "V1",
776
+ Action: "UpdateLabel"
777
+ },
778
+ headers: {
779
+ "Content-Type": "application/json"
780
+ }
781
+ },
782
+ paramsType: {
783
+ id: "Int",
784
+ name: "String"
785
+ }
786
+ },
787
+ CreateLabel: {
788
+ url: "/",
789
+ method: "POST",
790
+ config: {
791
+ query: {
792
+ Version: "V1",
793
+ Action: "CreateLabel"
794
+ },
795
+ headers: {
796
+ "Content-Type": "application/json"
797
+ }
798
+ },
799
+ paramsType: {
800
+ name: "String"
801
+ }
802
+ }
803
+ });
804
+ }
805
+ };