ksyun-sdk-node 1.5.15 → 1.5.17

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.
@@ -23,6 +23,88 @@ module.exports = class Client extends BaseClient {
23
23
  }
24
24
  });
25
25
  _defineProperty(this, "_apiList", {
26
+ CreateStorageConfig: {
27
+ url: "/",
28
+ method: "POST",
29
+ config: {
30
+ query: {
31
+ Version: "2024-06-12",
32
+ Action: "CreateStorageConfig"
33
+ },
34
+ headers: {
35
+ "Content-Type": "application/json"
36
+ }
37
+ },
38
+ paramsType: {
39
+ StorageConfigName: "String",
40
+ Description: "String",
41
+ Type: "String",
42
+ MountPath: "String",
43
+ KpfsInfo: "Object",
44
+ Ks3Info: "Object",
45
+ Users: "Array",
46
+ Ak: "String",
47
+ Sk: "String"
48
+ }
49
+ },
50
+ ModifyStorageConfig: {
51
+ url: "/",
52
+ method: "GET",
53
+ config: {
54
+ query: {
55
+ Version: "2024-06-12",
56
+ Action: "ModifyStorageConfig"
57
+ },
58
+ headers: {
59
+ "Content-Type": "application/json"
60
+ }
61
+ },
62
+ paramsType: {
63
+ StorageConfigId: "String",
64
+ StorageConfigName: "String",
65
+ Description: "String",
66
+ MountPath: "String",
67
+ Ks3Info: "Object",
68
+ Users: "Array",
69
+ Ak: "String",
70
+ Sk: "String"
71
+ }
72
+ },
73
+ DescribeStorageConfigs: {
74
+ url: "/",
75
+ method: "GET",
76
+ config: {
77
+ query: {
78
+ Version: "2024-06-12",
79
+ Action: "DescribeStorageConfigs"
80
+ },
81
+ headers: {
82
+ "Content-Type": "application/x-www-form-urlencoded"
83
+ }
84
+ },
85
+ paramsType: {
86
+ StorageConfigId: "Filter",
87
+ Filter: "Filter",
88
+ PageSize: "Int",
89
+ Page: "Int"
90
+ }
91
+ },
92
+ DeleteStorageConfig: {
93
+ url: "/",
94
+ method: "GET",
95
+ config: {
96
+ query: {
97
+ Version: "2024-06-12",
98
+ Action: "DeleteStorageConfig"
99
+ },
100
+ headers: {
101
+ "Content-Type": "application/x-www-form-urlencoded"
102
+ }
103
+ },
104
+ paramsType: {
105
+ StorageConfigId: "String"
106
+ }
107
+ },
26
108
  SaveNotebookImage: {
27
109
  url: "/",
28
110
  method: "POST",
@@ -122,9 +204,8 @@ module.exports = class Client extends BaseClient {
122
204
  paramsType: {
123
205
  NotebookId: "Filter",
124
206
  Name: "String",
125
- Marker: "Int",
126
- MaxResults: "Int",
127
- State: "String",
207
+ Page: "Int",
208
+ PageSize: "Int",
128
209
  Filter: "Filter",
129
210
  QueueId: "String"
130
211
  }
@@ -176,7 +257,7 @@ module.exports = class Client extends BaseClient {
176
257
  Action: "CreateImage"
177
258
  },
178
259
  headers: {
179
- "Content-Type": "application/x-www-form-urlencoded"
260
+ "Content-Type": "application/json"
180
261
  }
181
262
  },
182
263
  paramsType: {
@@ -260,7 +341,7 @@ module.exports = class Client extends BaseClient {
260
341
  Action: "StopNotebook"
261
342
  },
262
343
  headers: {
263
- "Content-Type": "application/json"
344
+ "Content-Type": "application/x-www-form-urlencoded"
264
345
  }
265
346
  },
266
347
  paramsType: {
@@ -300,22 +381,6 @@ module.exports = class Client extends BaseClient {
300
381
  ExpirationMinute: "String"
301
382
  }
302
383
  },
303
- DescribeNotebookEvents: {
304
- url: "/",
305
- method: "GET",
306
- config: {
307
- query: {
308
- Version: "2024-06-12",
309
- Action: "DescribeNotebookEvents"
310
- },
311
- headers: {
312
- "Content-Type": "application/x-www-form-urlencoded"
313
- }
314
- },
315
- paramsType: {
316
- NotebookId: "String"
317
- }
318
- },
319
384
  DescribeNotebookLog: {
320
385
  url: "/",
321
386
  method: "GET",
@@ -328,7 +393,11 @@ module.exports = class Client extends BaseClient {
328
393
  "Content-Type": "application/x-www-form-urlencoded"
329
394
  }
330
395
  },
331
- paramsType: {}
396
+ paramsType: {
397
+ NotebookId: "String",
398
+ SinceSeconds: "Int",
399
+ TailLines: "String"
400
+ }
332
401
  },
333
402
  StopNotebookSavingImage: {
334
403
  url: "/",
@@ -495,30 +564,6 @@ module.exports = class Client extends BaseClient {
495
564
  KeyId: "Filter"
496
565
  }
497
566
  },
498
- QueryTokenData: {
499
- url: "/",
500
- method: "GET",
501
- config: {
502
- query: {
503
- Version: "2024-06-12",
504
- Action: "QueryTokenData"
505
- },
506
- headers: {
507
- "Content-Type": "application/x-www-form-urlencoded"
508
- }
509
- },
510
- paramsType: {
511
- StartTimestamp: "Long",
512
- EndTimestamp: "Long",
513
- MaxResults: "Int",
514
- Keyword: "String",
515
- GroupBy: "String",
516
- ReasoningType: "String",
517
- Marker: "Int",
518
- IsGlobalServer: "Boolean",
519
- ModelName: "String"
520
- }
521
- },
522
567
  DisableApikeyStatus: {
523
568
  url: "/",
524
569
  method: "POST",
@@ -1127,6 +1172,26 @@ module.exports = class Client extends BaseClient {
1127
1172
  EndpointId: "String"
1128
1173
  }
1129
1174
  },
1175
+ DescribeResourcePoolInstanceTasks: {
1176
+ url: "/",
1177
+ method: "GET",
1178
+ config: {
1179
+ query: {
1180
+ Version: "2024-06-12",
1181
+ Action: "DescribeResourcePoolInstanceTasks"
1182
+ },
1183
+ headers: {
1184
+ "Content-Type": "application/x-www-form-urlencoded"
1185
+ }
1186
+ },
1187
+ paramsType: {
1188
+ ResourcePoolId: "String",
1189
+ InstanceId: "String",
1190
+ TaskType: "String",
1191
+ PageSize: "Int",
1192
+ Page: "Int"
1193
+ }
1194
+ },
1130
1195
  SetKcrPersonalToken: {
1131
1196
  url: "/",
1132
1197
  method: "POST",
@@ -1143,6 +1208,25 @@ module.exports = class Client extends BaseClient {
1143
1208
  UserName: "String",
1144
1209
  Password: "String"
1145
1210
  }
1211
+ },
1212
+ DescribeQueues: {
1213
+ url: "/",
1214
+ method: "GET",
1215
+ config: {
1216
+ query: {
1217
+ Version: "2024-06-12",
1218
+ Action: "DescribeQueues"
1219
+ },
1220
+ headers: {
1221
+ "Content-Type": "application/x-www-form-urlencoded"
1222
+ }
1223
+ },
1224
+ paramsType: {
1225
+ QueueId: "Filter",
1226
+ Page: "Int",
1227
+ PageSize: "Int",
1228
+ Filter: "Filter"
1229
+ }
1146
1230
  }
1147
1231
  });
1148
1232
  }
@@ -70,6 +70,194 @@ module.exports = class Client extends BaseClient {
70
70
  Page: "Int",
71
71
  TrainJobName: "String"
72
72
  }
73
+ },
74
+ ModifyModelAccess: {
75
+ url: "/",
76
+ method: "POST",
77
+ config: {
78
+ query: {
79
+ Version: "2025-12-12",
80
+ Action: "ModifyModelAccess"
81
+ },
82
+ headers: {
83
+ "Content-Type": "application/json"
84
+ }
85
+ },
86
+ paramsType: {
87
+ ModelId: "String",
88
+ Users: "Array"
89
+ }
90
+ },
91
+ CreateModelAndVersion: {
92
+ url: "/",
93
+ method: "POST",
94
+ config: {
95
+ query: {
96
+ Version: "2025-12-12",
97
+ Action: "CreateModelAndVersion"
98
+ },
99
+ headers: {
100
+ "Content-Type": "application/json"
101
+ }
102
+ },
103
+ paramsType: {
104
+ ModelName: "String",
105
+ ModelDescription: "String",
106
+ ModelVersionName: "String",
107
+ ModelVersionDescription: "String",
108
+ SourceType: "String",
109
+ StorageConfigId: "String",
110
+ Format: "String",
111
+ Framework: "String",
112
+ Users: "Array"
113
+ }
114
+ },
115
+ ModifyModel: {
116
+ url: "/",
117
+ method: "GET",
118
+ config: {
119
+ query: {
120
+ Version: "2025-12-12",
121
+ Action: "ModifyModel"
122
+ },
123
+ headers: {
124
+ "Content-Type": "application/x-www-form-urlencoded"
125
+ }
126
+ },
127
+ paramsType: {
128
+ ModelId: "String",
129
+ ModelName: "String",
130
+ ModelDescription: "String"
131
+ }
132
+ },
133
+ DescribeModels: {
134
+ url: "/",
135
+ method: "GET",
136
+ config: {
137
+ query: {
138
+ Version: "2025-12-12",
139
+ Action: "DescribeModels"
140
+ },
141
+ headers: {
142
+ "Content-Type": "application/x-www-form-urlencoded"
143
+ }
144
+ },
145
+ paramsType: {
146
+ "ModelId.N": "Array",
147
+ ModelName: "String",
148
+ Page: "Int",
149
+ PageSize: "Int"
150
+ }
151
+ },
152
+ DeleteModel: {
153
+ url: "/",
154
+ method: "GET",
155
+ config: {
156
+ query: {
157
+ Version: "2025-12-12",
158
+ Action: "DeleteModel"
159
+ },
160
+ headers: {
161
+ "Content-Type": "application/x-www-form-urlencoded"
162
+ }
163
+ },
164
+ paramsType: {
165
+ ModelId: "String"
166
+ }
167
+ },
168
+ CreateModelVersion: {
169
+ url: "/",
170
+ method: "POST",
171
+ config: {
172
+ query: {
173
+ Version: "2025-12-12",
174
+ Action: "CreateModelVersion"
175
+ },
176
+ headers: {
177
+ "Content-Type": "application/json"
178
+ }
179
+ },
180
+ paramsType: {
181
+ ModelId: "String",
182
+ ModelVersionName: "String",
183
+ ModelVersionDescription: "String",
184
+ SourceType: "String",
185
+ StorageConfigId: "String",
186
+ Format: "String",
187
+ Framework: "String"
188
+ }
189
+ },
190
+ DeleteModelVersion: {
191
+ url: "/",
192
+ method: "GET",
193
+ config: {
194
+ query: {
195
+ Version: "2025-12-12",
196
+ Action: "DeleteModelVersion"
197
+ },
198
+ headers: {
199
+ "Content-Type": "application/x-www-form-urlencoded"
200
+ }
201
+ },
202
+ paramsType: {
203
+ ModelVersionId: "String"
204
+ }
205
+ },
206
+ ModifyModelVersion: {
207
+ url: "/",
208
+ method: "POST",
209
+ config: {
210
+ query: {
211
+ Version: "2025-12-12",
212
+ Action: "ModifyModelVersion"
213
+ },
214
+ headers: {
215
+ "Content-Type": "application/json"
216
+ }
217
+ },
218
+ paramsType: {
219
+ ModelVersionId: "String",
220
+ ModelVersionName: "String",
221
+ ModelVersionDescription: "String",
222
+ Format: "String",
223
+ Framework: "String",
224
+ SourceType: "String",
225
+ StorageConfigId: "String"
226
+ }
227
+ },
228
+ DescribeModelVersions: {
229
+ url: "/",
230
+ method: "GET",
231
+ config: {
232
+ query: {
233
+ Version: "2025-12-12",
234
+ Action: "DescribeModelVersions"
235
+ },
236
+ headers: {
237
+ "Content-Type": "application/x-www-form-urlencoded"
238
+ }
239
+ },
240
+ paramsType: {
241
+ "ModelVersionId.N": "Array",
242
+ ModelVersionName: "String",
243
+ ModelId: "String",
244
+ Page: "Int",
245
+ PageSize: "Int"
246
+ }
247
+ },
248
+ DescribeFormatAndFrameworks: {
249
+ url: "/",
250
+ method: "GET",
251
+ config: {
252
+ query: {
253
+ Version: "2025-12-12",
254
+ Action: "DescribeFormatAndFrameworks"
255
+ },
256
+ headers: {
257
+ "Content-Type": "application/x-www-form-urlencoded"
258
+ }
259
+ },
260
+ paramsType: {}
73
261
  }
74
262
  });
75
263
  }
@@ -37,11 +37,13 @@ module.exports = class Client extends BaseClient {
37
37
  },
38
38
  paramsType: {
39
39
  HostType: "String",
40
+ GroupSubType: "String",
40
41
  AvailabilityZone: "String",
41
42
  Raid: "String",
42
43
  RaidId: "String",
43
44
  ImageId: "String",
44
45
  NetworkInterfaceMode: "String",
46
+ BondAttribute: "String",
45
47
  SubnetId: "String",
46
48
  PrivateIpAddress: "String",
47
49
  keyId: "String",
@@ -73,7 +75,6 @@ module.exports = class Client extends BaseClient {
73
75
  NvmeDataFileType: "String",
74
76
  NvmeDataDiskCatalogue: "String",
75
77
  NvmeDataDiskCatalogueSuffix: "String",
76
- BondAttribute: "String",
77
78
  ContainerAgent: "String",
78
79
  KesAgent: "String",
79
80
  KmrAgent: "String",
@@ -98,8 +99,7 @@ module.exports = class Client extends BaseClient {
98
99
  StorageRoceNetworkInterfaceMode: "String",
99
100
  RoceCluster: "String",
100
101
  SRoceCluster: "String",
101
- UserDefinedData: "String",
102
- GroupSubType: "String"
102
+ UserDefinedData: "String"
103
103
  }
104
104
  },
105
105
  StartEpc: {
@@ -1186,6 +1186,7 @@ module.exports = class Client extends BaseClient {
1186
1186
  },
1187
1187
  paramsType: {
1188
1188
  HostType: "String",
1189
+ GroupSubType: "String",
1189
1190
  AvailabilityZone: "String",
1190
1191
  Raid: "String",
1191
1192
  RaidId: "String",
@@ -1241,8 +1242,7 @@ module.exports = class Client extends BaseClient {
1241
1242
  DataDiskMount: "String",
1242
1243
  StorageRoceNetworkCardName: "String",
1243
1244
  SRoceCluster: "String",
1244
- RoceCluster: "String",
1245
- GroupSubType: "String"
1245
+ RoceCluster: "String"
1246
1246
  }
1247
1247
  },
1248
1248
  DescribeUseHotStandbyRecords: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ksyun-sdk-node",
3
- "version": "1.5.15",
3
+ "version": "1.5.17",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -16,6 +16,88 @@ module.exports = class Client extends BaseClient {
16
16
  },
17
17
  };
18
18
  _apiList = {
19
+ CreateStorageConfig: {
20
+ url: "/",
21
+ method: "POST",
22
+ config: {
23
+ query: {
24
+ Version: "2024-06-12",
25
+ Action: "CreateStorageConfig",
26
+ },
27
+ headers: {
28
+ "Content-Type": "application/json",
29
+ },
30
+ },
31
+ paramsType: {
32
+ StorageConfigName: "String",
33
+ Description: "String",
34
+ Type: "String",
35
+ MountPath: "String",
36
+ KpfsInfo: "Object",
37
+ Ks3Info: "Object",
38
+ Users: "Array",
39
+ Ak: "String",
40
+ Sk: "String",
41
+ },
42
+ },
43
+ ModifyStorageConfig: {
44
+ url: "/",
45
+ method: "GET",
46
+ config: {
47
+ query: {
48
+ Version: "2024-06-12",
49
+ Action: "ModifyStorageConfig",
50
+ },
51
+ headers: {
52
+ "Content-Type": "application/json",
53
+ },
54
+ },
55
+ paramsType: {
56
+ StorageConfigId: "String",
57
+ StorageConfigName: "String",
58
+ Description: "String",
59
+ MountPath: "String",
60
+ Ks3Info: "Object",
61
+ Users: "Array",
62
+ Ak: "String",
63
+ Sk: "String",
64
+ },
65
+ },
66
+ DescribeStorageConfigs: {
67
+ url: "/",
68
+ method: "GET",
69
+ config: {
70
+ query: {
71
+ Version: "2024-06-12",
72
+ Action: "DescribeStorageConfigs",
73
+ },
74
+ headers: {
75
+ "Content-Type": "application/x-www-form-urlencoded",
76
+ },
77
+ },
78
+ paramsType: {
79
+ StorageConfigId: "Filter",
80
+ Filter: "Filter",
81
+ PageSize: "Int",
82
+ Page: "Int",
83
+ },
84
+ },
85
+ DeleteStorageConfig: {
86
+ url: "/",
87
+ method: "GET",
88
+ config: {
89
+ query: {
90
+ Version: "2024-06-12",
91
+ Action: "DeleteStorageConfig",
92
+ },
93
+ headers: {
94
+ "Content-Type": "application/x-www-form-urlencoded",
95
+ },
96
+ },
97
+ paramsType: {
98
+ StorageConfigId: "String",
99
+ },
100
+ },
19
101
  SaveNotebookImage: {
20
102
  url: "/",
21
103
  method: "POST",
@@ -115,9 +197,8 @@ module.exports = class Client extends BaseClient {
115
197
  paramsType: {
116
198
  NotebookId: "Filter",
117
199
  Name: "String",
118
- Marker: "Int",
119
- MaxResults: "Int",
120
- State: "String",
200
+ Page: "Int",
201
+ PageSize: "Int",
121
202
  Filter: "Filter",
122
203
  QueueId: "String",
123
204
  },
@@ -169,7 +250,7 @@ module.exports = class Client extends BaseClient {
169
250
  Action: "CreateImage",
170
251
  },
171
252
  headers: {
172
- "Content-Type": "application/x-www-form-urlencoded",
253
+ "Content-Type": "application/json",
173
254
  },
174
255
  },
175
256
  paramsType: {
@@ -253,7 +334,7 @@ module.exports = class Client extends BaseClient {
253
334
  Action: "StopNotebook",
254
335
  },
255
336
  headers: {
256
- "Content-Type": "application/json",
337
+ "Content-Type": "application/x-www-form-urlencoded",
257
338
  },
258
339
  },
259
340
  paramsType: {
@@ -293,13 +374,13 @@ module.exports = class Client extends BaseClient {
293
374
  ExpirationMinute: "String",
294
375
  },
295
376
  },
296
- DescribeNotebookEvents: {
377
+ DescribeNotebookLog: {
297
378
  url: "/",
298
379
  method: "GET",
299
380
  config: {
300
381
  query: {
301
382
  Version: "2024-06-12",
302
- Action: "DescribeNotebookEvents",
383
+ Action: "DescribeNotebookLog",
303
384
  },
304
385
  headers: {
305
386
  "Content-Type": "application/x-www-form-urlencoded",
@@ -307,22 +388,10 @@ module.exports = class Client extends BaseClient {
307
388
  },
308
389
  paramsType: {
309
390
  NotebookId: "String",
391
+ SinceSeconds: "Int",
392
+ TailLines: "String",
310
393
  },
311
394
  },
312
- DescribeNotebookLog: {
313
- url: "/",
314
- method: "GET",
315
- config: {
316
- query: {
317
- Version: "2024-06-12",
318
- Action: "DescribeNotebookLog",
319
- },
320
- headers: {
321
- "Content-Type": "application/x-www-form-urlencoded",
322
- },
323
- },
324
- paramsType: {},
325
- },
326
395
  StopNotebookSavingImage: {
327
396
  url: "/",
328
397
  method: "GET",
@@ -488,30 +557,6 @@ module.exports = class Client extends BaseClient {
488
557
  KeyId: "Filter",
489
558
  },
490
559
  },
491
- QueryTokenData: {
492
- url: "/",
493
- method: "GET",
494
- config: {
495
- query: {
496
- Version: "2024-06-12",
497
- Action: "QueryTokenData",
498
- },
499
- headers: {
500
- "Content-Type": "application/x-www-form-urlencoded",
501
- },
502
- },
503
- paramsType: {
504
- StartTimestamp: "Long",
505
- EndTimestamp: "Long",
506
- MaxResults: "Int",
507
- Keyword: "String",
508
- GroupBy: "String",
509
- ReasoningType: "String",
510
- Marker: "Int",
511
- IsGlobalServer: "Boolean",
512
- ModelName: "String",
513
- },
514
- },
515
560
  DisableApikeyStatus: {
516
561
  url: "/",
517
562
  method: "POST",
@@ -1120,6 +1165,26 @@ module.exports = class Client extends BaseClient {
1120
1165
  EndpointId: "String",
1121
1166
  },
1122
1167
  },
1168
+ DescribeResourcePoolInstanceTasks: {
1169
+ url: "/",
1170
+ method: "GET",
1171
+ config: {
1172
+ query: {
1173
+ Version: "2024-06-12",
1174
+ Action: "DescribeResourcePoolInstanceTasks",
1175
+ },
1176
+ headers: {
1177
+ "Content-Type": "application/x-www-form-urlencoded",
1178
+ },
1179
+ },
1180
+ paramsType: {
1181
+ ResourcePoolId: "String",
1182
+ InstanceId: "String",
1183
+ TaskType: "String",
1184
+ PageSize: "Int",
1185
+ Page: "Int",
1186
+ },
1187
+ },
1123
1188
  SetKcrPersonalToken: {
1124
1189
  url: "/",
1125
1190
  method: "POST",
@@ -1137,5 +1202,24 @@ module.exports = class Client extends BaseClient {
1137
1202
  Password: "String",
1138
1203
  },
1139
1204
  },
1205
+ DescribeQueues: {
1206
+ url: "/",
1207
+ method: "GET",
1208
+ config: {
1209
+ query: {
1210
+ Version: "2024-06-12",
1211
+ Action: "DescribeQueues",
1212
+ },
1213
+ headers: {
1214
+ "Content-Type": "application/x-www-form-urlencoded",
1215
+ },
1216
+ },
1217
+ paramsType: {
1218
+ QueueId: "Filter",
1219
+ Page: "Int",
1220
+ PageSize: "Int",
1221
+ Filter: "Filter",
1222
+ },
1223
+ },
1140
1224
  };
1141
1225
  };
@@ -64,5 +64,193 @@ module.exports = class Client extends BaseClient {
64
64
  TrainJobName: "String",
65
65
  },
66
66
  },
67
+ ModifyModelAccess: {
68
+ url: "/",
69
+ method: "POST",
70
+ config: {
71
+ query: {
72
+ Version: "2025-12-12",
73
+ Action: "ModifyModelAccess",
74
+ },
75
+ headers: {
76
+ "Content-Type": "application/json",
77
+ },
78
+ },
79
+ paramsType: {
80
+ ModelId: "String",
81
+ Users: "Array",
82
+ },
83
+ },
84
+ CreateModelAndVersion: {
85
+ url: "/",
86
+ method: "POST",
87
+ config: {
88
+ query: {
89
+ Version: "2025-12-12",
90
+ Action: "CreateModelAndVersion",
91
+ },
92
+ headers: {
93
+ "Content-Type": "application/json",
94
+ },
95
+ },
96
+ paramsType: {
97
+ ModelName: "String",
98
+ ModelDescription: "String",
99
+ ModelVersionName: "String",
100
+ ModelVersionDescription: "String",
101
+ SourceType: "String",
102
+ StorageConfigId: "String",
103
+ Format: "String",
104
+ Framework: "String",
105
+ Users: "Array",
106
+ },
107
+ },
108
+ ModifyModel: {
109
+ url: "/",
110
+ method: "GET",
111
+ config: {
112
+ query: {
113
+ Version: "2025-12-12",
114
+ Action: "ModifyModel",
115
+ },
116
+ headers: {
117
+ "Content-Type": "application/x-www-form-urlencoded",
118
+ },
119
+ },
120
+ paramsType: {
121
+ ModelId: "String",
122
+ ModelName: "String",
123
+ ModelDescription: "String",
124
+ },
125
+ },
126
+ DescribeModels: {
127
+ url: "/",
128
+ method: "GET",
129
+ config: {
130
+ query: {
131
+ Version: "2025-12-12",
132
+ Action: "DescribeModels",
133
+ },
134
+ headers: {
135
+ "Content-Type": "application/x-www-form-urlencoded",
136
+ },
137
+ },
138
+ paramsType: {
139
+ "ModelId.N": "Array",
140
+ ModelName: "String",
141
+ Page: "Int",
142
+ PageSize: "Int",
143
+ },
144
+ },
145
+ DeleteModel: {
146
+ url: "/",
147
+ method: "GET",
148
+ config: {
149
+ query: {
150
+ Version: "2025-12-12",
151
+ Action: "DeleteModel",
152
+ },
153
+ headers: {
154
+ "Content-Type": "application/x-www-form-urlencoded",
155
+ },
156
+ },
157
+ paramsType: {
158
+ ModelId: "String",
159
+ },
160
+ },
161
+ CreateModelVersion: {
162
+ url: "/",
163
+ method: "POST",
164
+ config: {
165
+ query: {
166
+ Version: "2025-12-12",
167
+ Action: "CreateModelVersion",
168
+ },
169
+ headers: {
170
+ "Content-Type": "application/json",
171
+ },
172
+ },
173
+ paramsType: {
174
+ ModelId: "String",
175
+ ModelVersionName: "String",
176
+ ModelVersionDescription: "String",
177
+ SourceType: "String",
178
+ StorageConfigId: "String",
179
+ Format: "String",
180
+ Framework: "String",
181
+ },
182
+ },
183
+ DeleteModelVersion: {
184
+ url: "/",
185
+ method: "GET",
186
+ config: {
187
+ query: {
188
+ Version: "2025-12-12",
189
+ Action: "DeleteModelVersion",
190
+ },
191
+ headers: {
192
+ "Content-Type": "application/x-www-form-urlencoded",
193
+ },
194
+ },
195
+ paramsType: {
196
+ ModelVersionId: "String",
197
+ },
198
+ },
199
+ ModifyModelVersion: {
200
+ url: "/",
201
+ method: "POST",
202
+ config: {
203
+ query: {
204
+ Version: "2025-12-12",
205
+ Action: "ModifyModelVersion",
206
+ },
207
+ headers: {
208
+ "Content-Type": "application/json",
209
+ },
210
+ },
211
+ paramsType: {
212
+ ModelVersionId: "String",
213
+ ModelVersionName: "String",
214
+ ModelVersionDescription: "String",
215
+ Format: "String",
216
+ Framework: "String",
217
+ SourceType: "String",
218
+ StorageConfigId: "String",
219
+ },
220
+ },
221
+ DescribeModelVersions: {
222
+ url: "/",
223
+ method: "GET",
224
+ config: {
225
+ query: {
226
+ Version: "2025-12-12",
227
+ Action: "DescribeModelVersions",
228
+ },
229
+ headers: {
230
+ "Content-Type": "application/x-www-form-urlencoded",
231
+ },
232
+ },
233
+ paramsType: {
234
+ "ModelVersionId.N": "Array",
235
+ ModelVersionName: "String",
236
+ ModelId: "String",
237
+ Page: "Int",
238
+ PageSize: "Int",
239
+ },
240
+ },
241
+ DescribeFormatAndFrameworks: {
242
+ url: "/",
243
+ method: "GET",
244
+ config: {
245
+ query: {
246
+ Version: "2025-12-12",
247
+ Action: "DescribeFormatAndFrameworks",
248
+ },
249
+ headers: {
250
+ "Content-Type": "application/x-www-form-urlencoded",
251
+ },
252
+ },
253
+ paramsType: {},
254
+ },
67
255
  };
68
256
  };
@@ -30,11 +30,13 @@ module.exports = class Client extends BaseClient {
30
30
  },
31
31
  paramsType: {
32
32
  HostType: "String",
33
+ GroupSubType: "String",
33
34
  AvailabilityZone: "String",
34
35
  Raid: "String",
35
36
  RaidId: "String",
36
37
  ImageId: "String",
37
38
  NetworkInterfaceMode: "String",
39
+ BondAttribute: "String",
38
40
  SubnetId: "String",
39
41
  PrivateIpAddress: "String",
40
42
  keyId: "String",
@@ -66,7 +68,6 @@ module.exports = class Client extends BaseClient {
66
68
  NvmeDataFileType: "String",
67
69
  NvmeDataDiskCatalogue: "String",
68
70
  NvmeDataDiskCatalogueSuffix: "String",
69
- BondAttribute: "String",
70
71
  ContainerAgent: "String",
71
72
  KesAgent: "String",
72
73
  KmrAgent: "String",
@@ -92,7 +93,6 @@ module.exports = class Client extends BaseClient {
92
93
  RoceCluster: "String",
93
94
  SRoceCluster: "String",
94
95
  UserDefinedData: "String",
95
- GroupSubType: "String",
96
96
  },
97
97
  },
98
98
  StartEpc: {
@@ -1179,6 +1179,7 @@ module.exports = class Client extends BaseClient {
1179
1179
  },
1180
1180
  paramsType: {
1181
1181
  HostType: "String",
1182
+ GroupSubType: "String",
1182
1183
  AvailabilityZone: "String",
1183
1184
  Raid: "String",
1184
1185
  RaidId: "String",
@@ -1235,7 +1236,6 @@ module.exports = class Client extends BaseClient {
1235
1236
  StorageRoceNetworkCardName: "String",
1236
1237
  SRoceCluster: "String",
1237
1238
  RoceCluster: "String",
1238
- GroupSubType: "String",
1239
1239
  },
1240
1240
  },
1241
1241
  DescribeUseHotStandbyRecords: {