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