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,426 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "kce.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: "kce",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ CreatePrometheusInstance: {
20
+ url: "/",
21
+ method: "GET",
22
+ config: {
23
+ query: {
24
+ Version: "2023-03-06",
25
+ Action: "CreatePrometheusInstance",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/x-www-form-urlencoded",
29
+ },
30
+ },
31
+ paramsType: {
32
+ InstanceName: "String",
33
+ ChargeType: "String",
34
+ DataRetentionTime: "Int",
35
+ },
36
+ },
37
+ DescribePrometheusInstance: {
38
+ url: "/",
39
+ method: "GET",
40
+ config: {
41
+ query: {
42
+ Version: "2023-03-06",
43
+ Action: "DescribePrometheusInstance",
44
+ },
45
+ headers: {
46
+ "Content-Type": "application/x-www-form-urlencoded",
47
+ },
48
+ },
49
+ paramsType: {
50
+ InstanceId: "Filter",
51
+ Marker: "Int",
52
+ MaxResults: "Int",
53
+ Search: "String",
54
+ },
55
+ },
56
+ UpdatePrometheusInstance: {
57
+ url: "/",
58
+ method: "GET",
59
+ config: {
60
+ query: {
61
+ Version: "2023-03-06",
62
+ Action: "UpdatePrometheusInstance",
63
+ },
64
+ headers: {
65
+ "Content-Type": "application/x-www-form-urlencoded",
66
+ },
67
+ },
68
+ paramsType: {
69
+ InstanceId: "String",
70
+ InstanceName: "String",
71
+ DataRetentionTime: "Int",
72
+ },
73
+ },
74
+ DeletePrometheusInstance: {
75
+ url: "/",
76
+ method: "GET",
77
+ config: {
78
+ query: {
79
+ Version: "2023-03-06",
80
+ Action: "DeletePrometheusInstance",
81
+ },
82
+ headers: {
83
+ "Content-Type": "application/x-www-form-urlencoded",
84
+ },
85
+ },
86
+ paramsType: {
87
+ InstanceId: "String",
88
+ },
89
+ },
90
+ EnableGrafana: {
91
+ url: "/",
92
+ method: "GET",
93
+ config: {
94
+ query: {
95
+ Version: "2023-03-06",
96
+ Action: "EnableGrafana",
97
+ },
98
+ headers: {
99
+ "Content-Type": "application/x-www-form-urlencoded",
100
+ },
101
+ },
102
+ paramsType: {
103
+ InstanceId: "String",
104
+ EnableGrafana: "Boolean",
105
+ Password: "String",
106
+ },
107
+ },
108
+ UpdateGrafanaPassword: {
109
+ url: "/",
110
+ method: "GET",
111
+ config: {
112
+ query: {
113
+ Version: "2023-03-06",
114
+ Action: "UpdateGrafanaPassword",
115
+ },
116
+ headers: {
117
+ "Content-Type": "application/x-www-form-urlencoded",
118
+ },
119
+ },
120
+ paramsType: {
121
+ InstanceId: "String",
122
+ Password: "String",
123
+ },
124
+ },
125
+ EnableGrafanaInternet: {
126
+ url: "/",
127
+ method: "GET",
128
+ config: {
129
+ query: {
130
+ Version: "2023-03-06",
131
+ Action: "EnableGrafanaInternet",
132
+ },
133
+ headers: {
134
+ "Content-Type": "application/x-www-form-urlencoded",
135
+ },
136
+ },
137
+ paramsType: {
138
+ InstanceId: "String",
139
+ EnableInternet: "Boolean",
140
+ },
141
+ },
142
+ DescribeGrafanaWhiteList: {
143
+ url: "/",
144
+ method: "GET",
145
+ config: {
146
+ query: {
147
+ Version: "2023-03-06",
148
+ Action: "DescribeGrafanaWhiteList",
149
+ },
150
+ headers: {
151
+ "Content-Type": "application/x-www-form-urlencoded",
152
+ },
153
+ },
154
+ paramsType: {
155
+ InstanceId: "String",
156
+ },
157
+ },
158
+ UpdateGrafanaWhiteList: {
159
+ url: "/",
160
+ method: "GET",
161
+ config: {
162
+ query: {
163
+ Version: "2023-03-06",
164
+ Action: "UpdateGrafanaWhiteList",
165
+ },
166
+ headers: {
167
+ "Content-Type": "application/x-www-form-urlencoded",
168
+ },
169
+ },
170
+ paramsType: {
171
+ InstanceId: "String",
172
+ WhiteList: "Filter",
173
+ },
174
+ },
175
+ AssociateCluster: {
176
+ url: "/",
177
+ method: "GET",
178
+ config: {
179
+ query: {
180
+ Version: "2023-03-06",
181
+ Action: "AssociateCluster",
182
+ },
183
+ headers: {
184
+ "Content-Type": "application/x-www-form-urlencoded",
185
+ },
186
+ },
187
+ paramsType: {
188
+ InstanceId: "String",
189
+ ClusterId: "String",
190
+ },
191
+ },
192
+ DisassociateCluster: {
193
+ url: "/",
194
+ method: "GET",
195
+ config: {
196
+ query: {
197
+ Version: "2023-03-06",
198
+ Action: "DisassociateCluster",
199
+ },
200
+ headers: {
201
+ "Content-Type": "application/x-www-form-urlencoded",
202
+ },
203
+ },
204
+ paramsType: {
205
+ InstanceId: "String",
206
+ ClusterId: "String",
207
+ },
208
+ },
209
+ DescribeAssociateClusterList: {
210
+ url: "/",
211
+ method: "GET",
212
+ config: {
213
+ query: {
214
+ Version: "2023-03-06",
215
+ Action: "DescribeAssociateClusterList",
216
+ },
217
+ headers: {
218
+ "Content-Type": "application/x-www-form-urlencoded",
219
+ },
220
+ },
221
+ paramsType: {
222
+ InstanceId: "String",
223
+ Marker: "Int",
224
+ MaxResults: "Int",
225
+ ClusterId: "Filter",
226
+ },
227
+ },
228
+ DescribeMonitorList: {
229
+ url: "/",
230
+ method: "GET",
231
+ config: {
232
+ query: {
233
+ Version: "2023-03-06",
234
+ Action: "DescribeMonitorList",
235
+ },
236
+ headers: {
237
+ "Content-Type": "application/x-www-form-urlencoded",
238
+ },
239
+ },
240
+ paramsType: {
241
+ InstanceId: "String",
242
+ ClusterId: "String",
243
+ MonitorSource: "String",
244
+ Marker: "Int",
245
+ MaxResults: "Int",
246
+ },
247
+ },
248
+ DescribeMonitorCollectionConfig: {
249
+ url: "/",
250
+ method: "GET",
251
+ config: {
252
+ query: {
253
+ Version: "2023-03-06",
254
+ Action: "DescribeMonitorCollectionConfig",
255
+ },
256
+ headers: {
257
+ "Content-Type": "application/x-www-form-urlencoded",
258
+ },
259
+ },
260
+ paramsType: {
261
+ InstanceId: "String",
262
+ ClusterId: "String",
263
+ MonitorName: "String",
264
+ Type: "String",
265
+ },
266
+ },
267
+ UpdateMonitorCollectionConfig: {
268
+ url: "/",
269
+ method: "GET",
270
+ config: {
271
+ query: {
272
+ Version: "2023-03-06",
273
+ Action: "UpdateMonitorCollectionConfig",
274
+ },
275
+ headers: {
276
+ "Content-Type": "application/x-www-form-urlencoded",
277
+ },
278
+ },
279
+ paramsType: {
280
+ InstanceId: "String",
281
+ ClusterId: "String",
282
+ MonitorName: "String",
283
+ Type: "String",
284
+ ConfigYaml: "String",
285
+ },
286
+ },
287
+ DescribeMonitorMetricsList: {
288
+ url: "/",
289
+ method: "GET",
290
+ config: {
291
+ query: {
292
+ Version: "2023-03-06",
293
+ Action: "DescribeMonitorMetricsList",
294
+ },
295
+ headers: {
296
+ "Content-Type": "application/x-www-form-urlencoded",
297
+ },
298
+ },
299
+ paramsType: {
300
+ InstanceId: "String",
301
+ ClusterId: "String",
302
+ MonitorName: "String",
303
+ Type: "String",
304
+ IsCollect: "Boolean",
305
+ Marker: "Int",
306
+ MaxResults: "Int",
307
+ },
308
+ },
309
+ DescribeTargetsList: {
310
+ url: "/",
311
+ method: "GET",
312
+ config: {
313
+ query: {
314
+ Version: "2023-03-06",
315
+ Action: "DescribeTargetsList",
316
+ },
317
+ headers: {
318
+ "Content-Type": "application/x-www-form-urlencoded",
319
+ },
320
+ },
321
+ paramsType: {
322
+ InstanceId: "String",
323
+ ClusterId: "String",
324
+ MonitorName: "String",
325
+ Type: "String",
326
+ Marker: "Int",
327
+ MaxResults: "Int",
328
+ },
329
+ },
330
+ DescribeAgentStatus: {
331
+ url: "/",
332
+ method: "GET",
333
+ config: {
334
+ query: {
335
+ Version: "2023-03-06",
336
+ Action: "DescribeAgentStatus",
337
+ },
338
+ headers: {
339
+ "Content-Type": "application/x-www-form-urlencoded",
340
+ },
341
+ },
342
+ paramsType: {
343
+ InstanceId: "String",
344
+ ClusterId: "String",
345
+ },
346
+ },
347
+ CreateMonitorCollectionConfig: {
348
+ url: "/",
349
+ method: "GET",
350
+ config: {
351
+ query: {
352
+ Version: "2023-03-06",
353
+ Action: "CreateMonitorCollectionConfig",
354
+ },
355
+ headers: {
356
+ "Content-Type": "application/x-www-form-urlencoded",
357
+ },
358
+ },
359
+ paramsType: {
360
+ InstanceId: "String",
361
+ ClusterId: "String",
362
+ Type: "String",
363
+ ConfigYaml: "String",
364
+ },
365
+ },
366
+ DeleteMonitorCollectionConfig: {
367
+ url: "/",
368
+ method: "GET",
369
+ config: {
370
+ query: {
371
+ Version: "2023-03-06",
372
+ Action: "DeleteMonitorCollectionConfig",
373
+ },
374
+ headers: {
375
+ "Content-Type": "application/x-www-form-urlencoded",
376
+ },
377
+ },
378
+ paramsType: {
379
+ InstanceId: "String",
380
+ ClusterId: "String",
381
+ MonitorName: "String",
382
+ Type: "String",
383
+ },
384
+ },
385
+ EnableMetrics: {
386
+ url: "/",
387
+ method: "GET",
388
+ config: {
389
+ query: {
390
+ Version: "2023-03-06",
391
+ Action: "EnableMetrics",
392
+ },
393
+ headers: {
394
+ "Content-Type": "application/x-www-form-urlencoded",
395
+ },
396
+ },
397
+ paramsType: {
398
+ InstanceId: "String",
399
+ ClusterId: "String",
400
+ MonitorName: "String",
401
+ Type: "String",
402
+ MetricsName: "Filter",
403
+ },
404
+ },
405
+ DropMetrics: {
406
+ url: "/",
407
+ method: "GET",
408
+ config: {
409
+ query: {
410
+ Version: "2023-03-06",
411
+ Action: "DropMetrics",
412
+ },
413
+ headers: {
414
+ "Content-Type": "application/x-www-form-urlencoded",
415
+ },
416
+ },
417
+ paramsType: {
418
+ InstanceId: "String",
419
+ ClusterId: "String",
420
+ MonitorName: "String",
421
+ Type: "String",
422
+ MetricsName: "Filter",
423
+ },
424
+ },
425
+ };
426
+ };
@@ -0,0 +1,57 @@
1
+ const BaseClient = require("../../../base/BaseClient.js");
2
+
3
+ module.exports = class Client extends BaseClient {
4
+ _baseConfig = {
5
+ protocol: "http://",
6
+ endpoint: "kce.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: "kce",
15
+ },
16
+ },
17
+ };
18
+ _apiList = {
19
+ DescribeCluster: {
20
+ url: "/",
21
+ method: "GET",
22
+ config: {
23
+ query: {
24
+ Version: "2023-11-15",
25
+ Action: "DescribeCluster",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/x-www-form-urlencoded",
29
+ },
30
+ },
31
+ paramsType: {
32
+ ClusterId: "String",
33
+ Marker: "Int",
34
+ MaxResults: "Int",
35
+ Search: "String",
36
+ Filter: "Filter",
37
+ },
38
+ },
39
+ UpdateClusterDelProtection: {
40
+ url: "/",
41
+ method: "GET",
42
+ config: {
43
+ query: {
44
+ Version: "2023-11-15",
45
+ Action: "UpdateClusterDelProtection",
46
+ },
47
+ headers: {
48
+ "Content-Type": "application/x-www-form-urlencoded",
49
+ },
50
+ },
51
+ paramsType: {
52
+ ClusterId: "String",
53
+ EnableDelProtection: "Boolean",
54
+ },
55
+ },
56
+ };
57
+ };