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
@@ -32,7 +32,7 @@ module.exports = class Client extends BaseClient {
32
32
  Action: "CreateSecurityGroup"
33
33
  },
34
34
  headers: {
35
- "Content-Type": "application/json"
35
+ "Content-Type": "application/x-www-form-urlencoded"
36
36
  }
37
37
  },
38
38
  paramsType: {
@@ -57,7 +57,7 @@ module.exports = class Client extends BaseClient {
57
57
  }
58
58
  },
59
59
  paramsType: {
60
- "SecurityGroupId.N": "String",
60
+ SecurityGroupId: "Filter",
61
61
  SecurityGroupType: "String"
62
62
  }
63
63
  },
@@ -70,7 +70,7 @@ module.exports = class Client extends BaseClient {
70
70
  Action: "DeleteSecurityGroup"
71
71
  },
72
72
  headers: {
73
- "Content-Type": "application/json"
73
+ "Content-Type": "application/x-www-form-urlencoded"
74
74
  }
75
75
  },
76
76
  paramsType: {
@@ -86,7 +86,7 @@ module.exports = class Client extends BaseClient {
86
86
  Action: "ModifySecurityGroup"
87
87
  },
88
88
  headers: {
89
- "Content-Type": "application/json"
89
+ "Content-Type": "application/x-www-form-urlencoded"
90
90
  }
91
91
  },
92
92
  paramsType: {
@@ -104,7 +104,7 @@ module.exports = class Client extends BaseClient {
104
104
  Action: "CloneSecurityGroup"
105
105
  },
106
106
  headers: {
107
- "Content-Type": "application/json"
107
+ "Content-Type": "application/x-www-form-urlencoded"
108
108
  }
109
109
  },
110
110
  paramsType: {
@@ -122,7 +122,7 @@ module.exports = class Client extends BaseClient {
122
122
  Action: "ModifySecurityGroupRule"
123
123
  },
124
124
  headers: {
125
- "Content-Type": "application/json"
125
+ "Content-Type": "application/x-www-form-urlencoded"
126
126
  }
127
127
  },
128
128
  paramsType: {
@@ -142,12 +142,13 @@ module.exports = class Client extends BaseClient {
142
142
  Action: "SecurityGroupRelation"
143
143
  },
144
144
  headers: {
145
- "Content-Type": "application/json"
145
+ "Content-Type": "application/x-www-form-urlencoded"
146
146
  }
147
147
  },
148
148
  paramsType: {
149
149
  RelationAction: "String",
150
150
  SecurityGroupId: "String",
151
+ SecurityGroupIds: "String",
151
152
  DBInstanceIdentifier: "String"
152
153
  }
153
154
  },
@@ -160,7 +161,7 @@ module.exports = class Client extends BaseClient {
160
161
  Action: "ModifySecurityGroupRuleName"
161
162
  },
162
163
  headers: {
163
- "Content-Type": "application/json"
164
+ "Content-Type": "application/x-www-form-urlencoded"
164
165
  }
165
166
  },
166
167
  paramsType: {
@@ -168,6 +169,45 @@ module.exports = class Client extends BaseClient {
168
169
  SecurityGroupRuleId: "String",
169
170
  SecurityGroupRuleName: "String"
170
171
  }
172
+ },
173
+ CreateDBParameterGroup: {
174
+ url: "/",
175
+ method: "POST",
176
+ config: {
177
+ query: {
178
+ Version: "2020-08-25",
179
+ Action: "CreateDBParameterGroup"
180
+ },
181
+ headers: {
182
+ "Content-Type": "application/json"
183
+ }
184
+ },
185
+ paramsType: {
186
+ DBParameterGroupName: "String",
187
+ Engine: "String",
188
+ EngineVersion: "String",
189
+ Description: "String",
190
+ Parameters: "Object"
191
+ }
192
+ },
193
+ ModifyDBParameterGroup: {
194
+ url: "/",
195
+ method: "POST",
196
+ config: {
197
+ query: {
198
+ Version: "2020-08-25",
199
+ Action: "ModifyDBParameterGroup"
200
+ },
201
+ headers: {
202
+ "Content-Type": "application/json"
203
+ }
204
+ },
205
+ paramsType: {
206
+ DBParameterGroupId: "String",
207
+ DBParameterGroupName: "String",
208
+ Description: "String",
209
+ Parameters: "Object"
210
+ }
171
211
  }
172
212
  });
173
213
  }
@@ -0,0 +1,366 @@
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: "milvus.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: "milvus"
22
+ }
23
+ }
24
+ });
25
+ _defineProperty(this, "_apiList", {
26
+ DeleteSecurityRules: {
27
+ url: "/",
28
+ method: "DELETE",
29
+ config: {
30
+ query: {
31
+ Version: "2023-10-10",
32
+ Action: "DeleteSecurityRules"
33
+ },
34
+ headers: {
35
+ "Content-Type": "application/json"
36
+ }
37
+ },
38
+ paramsType: {
39
+ SecurityGroupId: "String",
40
+ RuleIds: "String"
41
+ }
42
+ },
43
+ CreateSecurityRules: {
44
+ url: "/",
45
+ method: "POST",
46
+ config: {
47
+ query: {
48
+ Version: "2023-10-10",
49
+ Action: "CreateSecurityRules"
50
+ },
51
+ headers: {
52
+ "Content-Type": "application/json"
53
+ }
54
+ },
55
+ paramsType: {
56
+ SecurityGroupId: "String",
57
+ Rules: "Filter"
58
+ }
59
+ },
60
+ UnbindSecurityGroupInstances: {
61
+ url: "/",
62
+ method: "DELETE",
63
+ config: {
64
+ query: {
65
+ Version: "2023-10-10",
66
+ Action: "UnbindSecurityGroupInstances"
67
+ },
68
+ headers: {
69
+ "Content-Type": "application/json"
70
+ }
71
+ },
72
+ paramsType: {
73
+ SecurityGroupId: "String",
74
+ InstancesIds: "String"
75
+ }
76
+ },
77
+ BindSecurityGroupInstances: {
78
+ url: "/",
79
+ method: "POST",
80
+ config: {
81
+ query: {
82
+ Version: "2023-10-10",
83
+ Action: "BindSecurityGroupInstances"
84
+ },
85
+ headers: {
86
+ "Content-Type": "application/json"
87
+ }
88
+ },
89
+ paramsType: {
90
+ SecurityGroupId: "String",
91
+ InstancesIds: "String"
92
+ }
93
+ },
94
+ DeleteSecurityGroup: {
95
+ url: "/",
96
+ method: "DELETE",
97
+ config: {
98
+ query: {
99
+ Version: "2023-10-10",
100
+ Action: "DeleteSecurityGroup"
101
+ },
102
+ headers: {
103
+ "Content-Type": "application/json"
104
+ }
105
+ },
106
+ paramsType: {
107
+ SecurityGroupIds: "String"
108
+ }
109
+ },
110
+ DescribeSecurityGroup: {
111
+ url: "/",
112
+ method: "GET",
113
+ config: {
114
+ query: {
115
+ Version: "2023-10-10",
116
+ Action: "DescribeSecurityGroup"
117
+ },
118
+ headers: {
119
+ "Content-Type": "application/json"
120
+ }
121
+ },
122
+ paramsType: {
123
+ SecurityGroupId: "String"
124
+ }
125
+ },
126
+ CreateSecurityGroup: {
127
+ url: "/",
128
+ method: "POST",
129
+ config: {
130
+ query: {
131
+ Version: "2023-10-10",
132
+ Action: "CreateSecurityGroup"
133
+ },
134
+ headers: {
135
+ "Content-Type": "application/json"
136
+ }
137
+ },
138
+ paramsType: {
139
+ Name: "String",
140
+ IpVersion: "String",
141
+ Detail: "String",
142
+ Rules: "Filter"
143
+ }
144
+ },
145
+ ListSecurityGroup: {
146
+ url: "/",
147
+ method: "GET",
148
+ config: {
149
+ query: {
150
+ Version: "2023-10-10",
151
+ Action: "ListSecurityGroup"
152
+ },
153
+ headers: {
154
+ "Content-Type": "application/json"
155
+ }
156
+ },
157
+ paramsType: {
158
+ Offset: "Int",
159
+ Limit: "Int"
160
+ }
161
+ },
162
+ DeleteInstance: {
163
+ url: "/",
164
+ method: "GET",
165
+ config: {
166
+ query: {
167
+ Version: "2023-10-10",
168
+ Action: "DeleteInstance"
169
+ },
170
+ headers: {
171
+ "Content-Type": "application/json"
172
+ }
173
+ },
174
+ paramsType: {
175
+ InstanceIds: "String"
176
+ }
177
+ },
178
+ DescribeInstance: {
179
+ url: "/",
180
+ method: "GET",
181
+ config: {
182
+ query: {
183
+ Version: "2023-10-10",
184
+ Action: "DescribeInstance"
185
+ },
186
+ headers: {
187
+ "Content-Type": "application/json"
188
+ }
189
+ },
190
+ paramsType: {
191
+ InstanceId: "String"
192
+ }
193
+ },
194
+ ListInstance: {
195
+ url: "/",
196
+ method: "GET",
197
+ config: {
198
+ query: {
199
+ Version: "2023-10-10",
200
+ Action: "ListInstance"
201
+ },
202
+ headers: {
203
+ "Content-Type": "application/json"
204
+ }
205
+ },
206
+ paramsType: {
207
+ Offset: "String",
208
+ Limit: "String",
209
+ FuzzySearch: "String",
210
+ SecBindingStatus: "String"
211
+ }
212
+ },
213
+ CreateInstance: {
214
+ url: "/",
215
+ method: "POST",
216
+ config: {
217
+ query: {
218
+ Version: "2023-10-10",
219
+ Action: "CreateInstance"
220
+ },
221
+ headers: {
222
+ "Content-Type": "application/json"
223
+ }
224
+ },
225
+ paramsType: {
226
+ InstanceName: "String",
227
+ AdminPassword: "String",
228
+ SubnetId: "String",
229
+ VnetId: "String",
230
+ ProjectId: "String",
231
+ ProductType: "String",
232
+ DBInstanceType: "String",
233
+ Az: "Array",
234
+ Engine: "String",
235
+ EngineVersion: "String",
236
+ AdminUser: "String",
237
+ Cu: "String"
238
+ }
239
+ },
240
+ ReleaseDBInstanceEip: {
241
+ url: "/",
242
+ method: "GET",
243
+ config: {
244
+ query: {
245
+ Version: "2023-10-10",
246
+ Action: "ReleaseDBInstanceEip"
247
+ },
248
+ headers: {
249
+ "Content-Type": "application/json"
250
+ }
251
+ },
252
+ paramsType: {
253
+ InstanceId: "String"
254
+ }
255
+ },
256
+ AllocateDBInstanceEip: {
257
+ url: "/",
258
+ method: "GET",
259
+ config: {
260
+ query: {
261
+ Version: "2023-10-10",
262
+ Action: "AllocateDBInstanceEip"
263
+ },
264
+ headers: {
265
+ "Content-Type": "application/json"
266
+ }
267
+ },
268
+ paramsType: {
269
+ InstanceId: "String",
270
+ Port: "Int"
271
+ }
272
+ },
273
+ ListBackup: {
274
+ url: "/",
275
+ method: "GET",
276
+ config: {
277
+ query: {
278
+ Version: "2023-10-10",
279
+ Action: "ListBackup"
280
+ },
281
+ headers: {
282
+ "Content-Type": "application/json"
283
+ }
284
+ },
285
+ paramsType: {
286
+ InstanceId: "String",
287
+ BackupName: "String",
288
+ Offset: "Int",
289
+ Limit: "Int"
290
+ }
291
+ },
292
+ CreateBackup: {
293
+ url: "/",
294
+ method: "POST",
295
+ config: {
296
+ query: {
297
+ Version: "2023-10-10",
298
+ Action: "CreateBackup"
299
+ },
300
+ headers: {
301
+ "Content-Type": "application/json"
302
+ }
303
+ },
304
+ paramsType: {
305
+ InstanceId: "String",
306
+ BackupName: "String",
307
+ DBCollection: "Array"
308
+ }
309
+ },
310
+ DeleteBackup: {
311
+ url: "/",
312
+ method: "DELETE",
313
+ config: {
314
+ query: {
315
+ Version: "2023-10-10",
316
+ Action: "DeleteBackup"
317
+ },
318
+ headers: {
319
+ "Content-Type": "application/json"
320
+ }
321
+ },
322
+ paramsType: {
323
+ InstanceId: "String",
324
+ BackupIds: "String"
325
+ }
326
+ },
327
+ ListCollections: {
328
+ url: "/",
329
+ method: "GET",
330
+ config: {
331
+ query: {
332
+ Version: "2023-10-10",
333
+ Action: "ListCollections"
334
+ },
335
+ headers: {
336
+ "Content-Type": "application/json"
337
+ }
338
+ },
339
+ paramsType: {
340
+ InstanceId: "String",
341
+ Offset: "Int",
342
+ Limit: "Int"
343
+ }
344
+ },
345
+ UpdateInstanceTrialOrder: {
346
+ url: "/",
347
+ method: "GET",
348
+ config: {
349
+ query: {
350
+ Version: "2023-10-10",
351
+ Action: "UpdateInstanceTrialOrder"
352
+ },
353
+ headers: {
354
+ "Content-Type": "application/x-www-form-urlencoded"
355
+ }
356
+ },
357
+ paramsType: {
358
+ InstanceId: "String",
359
+ OperateType: "String",
360
+ Duration: "Int",
361
+ BillType: "Int"
362
+ }
363
+ }
364
+ });
365
+ }
366
+ };