ksyun-sdk-node 1.5.38 → 1.5.41

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.
@@ -673,7 +673,8 @@ module.exports = class Client extends BaseClient {
673
673
  Status: "Filter",
674
674
  Namekeyword: "String",
675
675
  DefaultKey: "Boolean",
676
- KeyId: "Filter"
676
+ KeyId: "Filter",
677
+ ExcludeTypes: "Filter"
677
678
  }
678
679
  },
679
680
  QueryTokenData: {
@@ -1253,6 +1254,23 @@ module.exports = class Client extends BaseClient {
1253
1254
  Filter: "Filter"
1254
1255
  }
1255
1256
  },
1257
+ EnableKpfsComponent: {
1258
+ url: "/",
1259
+ method: "POST",
1260
+ config: {
1261
+ query: {
1262
+ Version: "2024-06-12",
1263
+ Action: "EnableKpfsComponent"
1264
+ },
1265
+ headers: {
1266
+ "Content-Type": "application/json"
1267
+ }
1268
+ },
1269
+ paramsType: {
1270
+ ResourcePoolId: "String",
1271
+ FileSystemId: "String"
1272
+ }
1273
+ },
1256
1274
  CreateInferenceEndpoint: {
1257
1275
  url: "/",
1258
1276
  method: "POST",
@@ -1450,6 +1468,171 @@ module.exports = class Client extends BaseClient {
1450
1468
  PageSize: "Int",
1451
1469
  Filter: "Filter"
1452
1470
  }
1471
+ },
1472
+ CreateQueue: {
1473
+ url: "/",
1474
+ method: "POST",
1475
+ config: {
1476
+ query: {
1477
+ Version: "2024-06-12",
1478
+ Action: "CreateQueue"
1479
+ },
1480
+ headers: {
1481
+ "Content-Type": "application/json"
1482
+ }
1483
+ },
1484
+ paramsType: {
1485
+ ResourcePoolId: "String",
1486
+ QueueName: "String",
1487
+ Capability: "Object",
1488
+ AllowBorrowing: "Boolean",
1489
+ Description: "String",
1490
+ AccessList: "Array",
1491
+ WorkloadType: "Array"
1492
+ }
1493
+ },
1494
+ ModifyQueue: {
1495
+ url: "/",
1496
+ method: "POST",
1497
+ config: {
1498
+ query: {
1499
+ Version: "2024-06-12",
1500
+ Action: "ModifyQueue"
1501
+ },
1502
+ headers: {
1503
+ "Content-Type": "application/json"
1504
+ }
1505
+ },
1506
+ paramsType: {
1507
+ QueueId: "String",
1508
+ Capability: "Object",
1509
+ AllowBorrowing: "Boolean",
1510
+ Description: "String",
1511
+ AccessList: "Array",
1512
+ WorkloadType: "Array"
1513
+ }
1514
+ },
1515
+ DeleteQueue: {
1516
+ url: "/",
1517
+ method: "GET",
1518
+ config: {
1519
+ query: {
1520
+ Version: "2024-06-12",
1521
+ Action: "DeleteQueue"
1522
+ },
1523
+ headers: {
1524
+ "Content-Type": "application/x-www-form-urlencoded"
1525
+ }
1526
+ },
1527
+ paramsType: {
1528
+ QueueId: "String"
1529
+ }
1530
+ },
1531
+ AddQueueAccessUser: {
1532
+ url: "/",
1533
+ method: "GET",
1534
+ config: {
1535
+ query: {
1536
+ Version: "2024-06-12",
1537
+ Action: "AddQueueAccessUser"
1538
+ },
1539
+ headers: {
1540
+ "Content-Type": "application/x-www-form-urlencoded"
1541
+ }
1542
+ },
1543
+ paramsType: {
1544
+ QueueId: "String",
1545
+ SubAccountId: "String",
1546
+ Permission: "String"
1547
+ }
1548
+ },
1549
+ RemoveQueueAccessUser: {
1550
+ url: "/",
1551
+ method: "GET",
1552
+ config: {
1553
+ query: {
1554
+ Version: "2024-06-12",
1555
+ Action: "RemoveQueueAccessUser"
1556
+ },
1557
+ headers: {
1558
+ "Content-Type": "application/x-www-form-urlencoded"
1559
+ }
1560
+ },
1561
+ paramsType: {
1562
+ QueueId: "String",
1563
+ SubAccountId: "String"
1564
+ }
1565
+ },
1566
+ DescribeModelTypes: {
1567
+ url: "/",
1568
+ method: "GET",
1569
+ config: {
1570
+ query: {
1571
+ Version: "2024-06-12",
1572
+ Action: "DescribeModelTypes"
1573
+ },
1574
+ headers: {
1575
+ "Content-Type": "application/x-www-form-urlencoded"
1576
+ }
1577
+ },
1578
+ paramsType: {}
1579
+ },
1580
+ EnableEndpointQuotaLimit: {
1581
+ url: "/",
1582
+ method: "GET",
1583
+ config: {
1584
+ query: {
1585
+ Version: "2024-06-12",
1586
+ Action: "EnableEndpointQuotaLimit"
1587
+ },
1588
+ headers: {
1589
+ "Content-Type": "application/json"
1590
+ }
1591
+ },
1592
+ paramsType: {
1593
+ EndpointId: "String",
1594
+ QuotaLimitCycle: "String",
1595
+ CustomCycle: "Int",
1596
+ QuotaLimitAmount: "Long"
1597
+ }
1598
+ },
1599
+ DisableEndpointQuotaLimit: {
1600
+ url: "/",
1601
+ method: "GET",
1602
+ config: {
1603
+ query: {
1604
+ Version: "2024-06-12",
1605
+ Action: "DisableEndpointQuotaLimit"
1606
+ },
1607
+ headers: {
1608
+ "Content-Type": "application/json"
1609
+ }
1610
+ },
1611
+ paramsType: {
1612
+ EndpointId: "String",
1613
+ QuotaLimitCycle: "String",
1614
+ CustomCycle: "String",
1615
+ QuotaLimitAmount: "String"
1616
+ }
1617
+ },
1618
+ GetQueueMember: {
1619
+ url: "/",
1620
+ method: "GET",
1621
+ config: {
1622
+ query: {
1623
+ Version: "2024-06-12",
1624
+ Action: "GetQueueMember"
1625
+ },
1626
+ headers: {
1627
+ "Content-Type": "application/x-www-form-urlencoded"
1628
+ }
1629
+ },
1630
+ paramsType: {
1631
+ QueueId: "String",
1632
+ SubAccountId: "String",
1633
+ Page: "Int",
1634
+ PageSize: "Int"
1635
+ }
1453
1636
  }
1454
1637
  });
1455
1638
  }
@@ -346,6 +346,279 @@ module.exports = class Client extends BaseClient {
346
346
  ReturnCitations: "Boolean",
347
347
  Limit: "Int"
348
348
  }
349
+ },
350
+ CreateMemoryCollection: {
351
+ url: "/",
352
+ method: "GET",
353
+ config: {
354
+ query: {
355
+ Version: "2025-11-14",
356
+ Action: "CreateMemoryCollection"
357
+ },
358
+ headers: {
359
+ "Content-Type": "application/json"
360
+ }
361
+ },
362
+ paramsType: {
363
+ Name: "String",
364
+ Description: "String"
365
+ }
366
+ },
367
+ GetMemoryCollection: {
368
+ url: "/",
369
+ method: "GET",
370
+ config: {
371
+ query: {
372
+ Version: "2025-11-14",
373
+ Action: "GetMemoryCollection"
374
+ },
375
+ headers: {
376
+ "Content-Type": "application/json"
377
+ }
378
+ },
379
+ paramsType: {
380
+ MemoryCollectionId: "String"
381
+ }
382
+ },
383
+ ListMemoryCollections: {
384
+ url: "/",
385
+ method: "GET",
386
+ config: {
387
+ query: {
388
+ Version: "2025-11-14",
389
+ Action: "ListMemoryCollections"
390
+ },
391
+ headers: {
392
+ "Content-Type": "application/json"
393
+ }
394
+ },
395
+ paramsType: {
396
+ CreateTimeAfter: "Long",
397
+ CreateTimeBefore: "Long",
398
+ UpdateTimeAfter: "Long",
399
+ UpdateTimeBefore: "Long",
400
+ MemoryCollectionId: "String",
401
+ Name: "String",
402
+ NameKeyword: "String",
403
+ Status: "String",
404
+ Marker: "Long",
405
+ MaxResults: "Long"
406
+ }
407
+ },
408
+ DeleteMemoryCollection: {
409
+ url: "/",
410
+ method: "GET",
411
+ config: {
412
+ query: {
413
+ Version: "2025-11-14",
414
+ Action: "DeleteMemoryCollection"
415
+ },
416
+ headers: {
417
+ "Content-Type": "application/json"
418
+ }
419
+ },
420
+ paramsType: {
421
+ MemoryCollectionId: "String"
422
+ }
423
+ },
424
+ GetMemoryBaseService: {
425
+ url: "/",
426
+ method: "GET",
427
+ config: {
428
+ query: {
429
+ Version: "2025-11-14",
430
+ Action: "GetMemoryBaseService"
431
+ },
432
+ headers: {
433
+ "Content-Type": "application/json"
434
+ }
435
+ },
436
+ paramsType: {}
437
+ },
438
+ ActivateMemoryBaseService: {
439
+ url: "/",
440
+ method: "POST",
441
+ config: {
442
+ query: {
443
+ Version: "2025-11-14",
444
+ Action: "ActivateMemoryBaseService"
445
+ },
446
+ headers: {
447
+ "Content-Type": "application/json"
448
+ }
449
+ },
450
+ paramsType: {}
451
+ },
452
+ UpdateMemoryCollection: {
453
+ url: "/",
454
+ method: "GET",
455
+ config: {
456
+ query: {
457
+ Version: "2025-11-14",
458
+ Action: "UpdateMemoryCollection"
459
+ },
460
+ headers: {
461
+ "Content-Type": "application/json"
462
+ }
463
+ },
464
+ paramsType: {
465
+ MemoryCollectionId: "String",
466
+ Description: "String",
467
+ Name: "String"
468
+ }
469
+ },
470
+ DeleteMcpServer: {
471
+ url: "/",
472
+ method: "POST",
473
+ config: {
474
+ query: {
475
+ Version: "2025-11-14",
476
+ Action: "DeleteMcpServer"
477
+ },
478
+ headers: {
479
+ "Content-Type": "application/json"
480
+ }
481
+ },
482
+ paramsType: {
483
+ McpServerId: "String"
484
+ }
485
+ },
486
+ ModifyMcpServer: {
487
+ url: "/",
488
+ method: "POST",
489
+ config: {
490
+ query: {
491
+ Version: "2025-11-14",
492
+ Action: "ModifyMcpServer"
493
+ },
494
+ headers: {
495
+ "Content-Type": "application/json"
496
+ }
497
+ },
498
+ paramsType: {
499
+ McpServerId: "String",
500
+ McpServerName: "String",
501
+ Description: "String",
502
+ Introduction: "String",
503
+ OutboundAuthFieldValue: "String",
504
+ HttpApiConfig: "String",
505
+ HttpApiConfigUpdateType: "String"
506
+ }
507
+ },
508
+ CreateMcpServer: {
509
+ url: "/",
510
+ method: "POST",
511
+ config: {
512
+ query: {
513
+ Version: "2025-11-14",
514
+ Action: "CreateMcpServer"
515
+ },
516
+ headers: {
517
+ "Content-Type": "application/json"
518
+ }
519
+ },
520
+ paramsType: {
521
+ McpServerName: "String",
522
+ McpServerNameEn: "String",
523
+ Description: "String",
524
+ Introduction: "String",
525
+ ServiceProtocol: "String",
526
+ BackendServiceUrl: "String",
527
+ AllowCustomAuth: "Boolean",
528
+ ServiceCustomHeaders: "String",
529
+ OutboundAuthLocation: "String",
530
+ OutboundAuthFieldName: "String",
531
+ OutboundAuthFieldValue: "String",
532
+ McpRuntimeConfig: "Object",
533
+ HttpApiConfig: "String",
534
+ McpType: "String"
535
+ }
536
+ },
537
+ DescribeMcpServers: {
538
+ url: "/",
539
+ method: "GET",
540
+ config: {
541
+ query: {
542
+ Version: "2025-11-14",
543
+ Action: "DescribeMcpServers"
544
+ },
545
+ headers: {
546
+ "Content-Type": "application/x-www-form-urlencoded"
547
+ }
548
+ },
549
+ paramsType: {
550
+ McpServerIds: "Array",
551
+ NameKeyword: "String",
552
+ Region: "String"
553
+ }
554
+ },
555
+ DescribeMcpOfficialServers: {
556
+ url: "/",
557
+ method: "GET",
558
+ config: {
559
+ query: {
560
+ Version: "2025-11-14",
561
+ Action: "DescribeMcpOfficialServers"
562
+ },
563
+ headers: {
564
+ "Content-Type": "application/x-www-form-urlencoded"
565
+ }
566
+ },
567
+ paramsType: {
568
+ McpServerIds: "Array",
569
+ NameKeyword: "String",
570
+ Region: "String"
571
+ }
572
+ },
573
+ DeactivateMcpOfficialServer: {
574
+ url: "/",
575
+ method: "POST",
576
+ config: {
577
+ query: {
578
+ Version: "2025-11-14",
579
+ Action: "DeactivateMcpOfficialServer"
580
+ },
581
+ headers: {
582
+ "Content-Type": "application/json"
583
+ }
584
+ },
585
+ paramsType: {
586
+ McpServerId: "String"
587
+ }
588
+ },
589
+ ActivateMcpOfficialServer: {
590
+ url: "/",
591
+ method: "POST",
592
+ config: {
593
+ query: {
594
+ Version: "2025-11-14",
595
+ Action: "ActivateMcpOfficialServer"
596
+ },
597
+ headers: {
598
+ "Content-Type": "application/json"
599
+ }
600
+ },
601
+ paramsType: {
602
+ McpServerId: "String",
603
+ AuthFieldValue: "String"
604
+ }
605
+ },
606
+ DescribeMcpSquares: {
607
+ url: "/",
608
+ method: "GET",
609
+ config: {
610
+ query: {
611
+ Version: "2025-11-14",
612
+ Action: "DescribeMcpSquares"
613
+ },
614
+ headers: {
615
+ "Content-Type": "application/x-www-form-urlencoded"
616
+ }
617
+ },
618
+ paramsType: {
619
+ McpServerIds: "Array",
620
+ NameKeyword: "String"
621
+ }
349
622
  }
350
623
  });
351
624
  }
@@ -691,7 +691,7 @@ module.exports = class Client extends BaseClient {
691
691
  },
692
692
  SetCertificate: {
693
693
  url: "/",
694
- method: "GET",
694
+ method: "POST",
695
695
  config: {
696
696
  query: {
697
697
  Version: "V3",
@@ -710,7 +710,7 @@ module.exports = class Client extends BaseClient {
710
710
  },
711
711
  RemoveCertificates: {
712
712
  url: "/",
713
- method: "GET",
713
+ method: "POST",
714
714
  config: {
715
715
  query: {
716
716
  Version: "V3",
@@ -61,7 +61,8 @@ module.exports = class Client extends BaseClient {
61
61
  FileSystemId: "String",
62
62
  StartTime: "String",
63
63
  EndTime: "String",
64
- Interval: "String"
64
+ Interval: "String",
65
+ DirPath: "String"
65
66
  }
66
67
  },
67
68
  GetInodeCount: {
@@ -80,7 +81,8 @@ module.exports = class Client extends BaseClient {
80
81
  FileSystemId: "String",
81
82
  StartTime: "String",
82
83
  EndTime: "String",
83
- Interval: "String"
84
+ Interval: "String",
85
+ DirPath: "String"
84
86
  }
85
87
  },
86
88
  GetCapacityAvailable: {
@@ -308,7 +310,10 @@ module.exports = class Client extends BaseClient {
308
310
  ClusterName: "String",
309
311
  FileSystemName: "String",
310
312
  DirPath: "String",
311
- LogicalHardThreshold: "Long"
313
+ LogicalCapacityType: "String",
314
+ LogicalHardThreshold: "Long",
315
+ LogicalInodesType: "String",
316
+ LogicalHardInodes: "Long"
312
317
  }
313
318
  },
314
319
  CreateDirQuota: {
@@ -329,7 +334,10 @@ module.exports = class Client extends BaseClient {
329
334
  ClusterName: "String",
330
335
  FileSystemName: "String",
331
336
  DirPath: "String",
332
- LogicalHardThreshold: "Long"
337
+ LogicalCapacityType: "String",
338
+ LogicalHardThreshold: "Long",
339
+ LogicalInodesType: "String",
340
+ LogicalHardInodes: "Long"
333
341
  }
334
342
  },
335
343
  DescribeSubDirList: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ksyun-sdk-node",
3
- "version": "1.5.38",
3
+ "version": "1.5.41",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -667,6 +667,7 @@ module.exports = class Client extends BaseClient {
667
667
  Namekeyword: "String",
668
668
  DefaultKey: "Boolean",
669
669
  KeyId: "Filter",
670
+ ExcludeTypes: "Filter",
670
671
  },
671
672
  },
672
673
  QueryTokenData: {
@@ -1246,6 +1247,23 @@ module.exports = class Client extends BaseClient {
1246
1247
  Filter: "Filter",
1247
1248
  },
1248
1249
  },
1250
+ EnableKpfsComponent: {
1251
+ url: "/",
1252
+ method: "POST",
1253
+ config: {
1254
+ query: {
1255
+ Version: "2024-06-12",
1256
+ Action: "EnableKpfsComponent",
1257
+ },
1258
+ headers: {
1259
+ "Content-Type": "application/json",
1260
+ },
1261
+ },
1262
+ paramsType: {
1263
+ ResourcePoolId: "String",
1264
+ FileSystemId: "String",
1265
+ },
1266
+ },
1249
1267
  CreateInferenceEndpoint: {
1250
1268
  url: "/",
1251
1269
  method: "POST",
@@ -1444,5 +1462,170 @@ module.exports = class Client extends BaseClient {
1444
1462
  Filter: "Filter",
1445
1463
  },
1446
1464
  },
1465
+ CreateQueue: {
1466
+ url: "/",
1467
+ method: "POST",
1468
+ config: {
1469
+ query: {
1470
+ Version: "2024-06-12",
1471
+ Action: "CreateQueue",
1472
+ },
1473
+ headers: {
1474
+ "Content-Type": "application/json",
1475
+ },
1476
+ },
1477
+ paramsType: {
1478
+ ResourcePoolId: "String",
1479
+ QueueName: "String",
1480
+ Capability: "Object",
1481
+ AllowBorrowing: "Boolean",
1482
+ Description: "String",
1483
+ AccessList: "Array",
1484
+ WorkloadType: "Array",
1485
+ },
1486
+ },
1487
+ ModifyQueue: {
1488
+ url: "/",
1489
+ method: "POST",
1490
+ config: {
1491
+ query: {
1492
+ Version: "2024-06-12",
1493
+ Action: "ModifyQueue",
1494
+ },
1495
+ headers: {
1496
+ "Content-Type": "application/json",
1497
+ },
1498
+ },
1499
+ paramsType: {
1500
+ QueueId: "String",
1501
+ Capability: "Object",
1502
+ AllowBorrowing: "Boolean",
1503
+ Description: "String",
1504
+ AccessList: "Array",
1505
+ WorkloadType: "Array",
1506
+ },
1507
+ },
1508
+ DeleteQueue: {
1509
+ url: "/",
1510
+ method: "GET",
1511
+ config: {
1512
+ query: {
1513
+ Version: "2024-06-12",
1514
+ Action: "DeleteQueue",
1515
+ },
1516
+ headers: {
1517
+ "Content-Type": "application/x-www-form-urlencoded",
1518
+ },
1519
+ },
1520
+ paramsType: {
1521
+ QueueId: "String",
1522
+ },
1523
+ },
1524
+ AddQueueAccessUser: {
1525
+ url: "/",
1526
+ method: "GET",
1527
+ config: {
1528
+ query: {
1529
+ Version: "2024-06-12",
1530
+ Action: "AddQueueAccessUser",
1531
+ },
1532
+ headers: {
1533
+ "Content-Type": "application/x-www-form-urlencoded",
1534
+ },
1535
+ },
1536
+ paramsType: {
1537
+ QueueId: "String",
1538
+ SubAccountId: "String",
1539
+ Permission: "String",
1540
+ },
1541
+ },
1542
+ RemoveQueueAccessUser: {
1543
+ url: "/",
1544
+ method: "GET",
1545
+ config: {
1546
+ query: {
1547
+ Version: "2024-06-12",
1548
+ Action: "RemoveQueueAccessUser",
1549
+ },
1550
+ headers: {
1551
+ "Content-Type": "application/x-www-form-urlencoded",
1552
+ },
1553
+ },
1554
+ paramsType: {
1555
+ QueueId: "String",
1556
+ SubAccountId: "String",
1557
+ },
1558
+ },
1559
+ DescribeModelTypes: {
1560
+ url: "/",
1561
+ method: "GET",
1562
+ config: {
1563
+ query: {
1564
+ Version: "2024-06-12",
1565
+ Action: "DescribeModelTypes",
1566
+ },
1567
+ headers: {
1568
+ "Content-Type": "application/x-www-form-urlencoded",
1569
+ },
1570
+ },
1571
+ paramsType: {},
1572
+ },
1573
+ EnableEndpointQuotaLimit: {
1574
+ url: "/",
1575
+ method: "GET",
1576
+ config: {
1577
+ query: {
1578
+ Version: "2024-06-12",
1579
+ Action: "EnableEndpointQuotaLimit",
1580
+ },
1581
+ headers: {
1582
+ "Content-Type": "application/json",
1583
+ },
1584
+ },
1585
+ paramsType: {
1586
+ EndpointId: "String",
1587
+ QuotaLimitCycle: "String",
1588
+ CustomCycle: "Int",
1589
+ QuotaLimitAmount: "Long",
1590
+ },
1591
+ },
1592
+ DisableEndpointQuotaLimit: {
1593
+ url: "/",
1594
+ method: "GET",
1595
+ config: {
1596
+ query: {
1597
+ Version: "2024-06-12",
1598
+ Action: "DisableEndpointQuotaLimit",
1599
+ },
1600
+ headers: {
1601
+ "Content-Type": "application/json",
1602
+ },
1603
+ },
1604
+ paramsType: {
1605
+ EndpointId: "String",
1606
+ QuotaLimitCycle: "String",
1607
+ CustomCycle: "String",
1608
+ QuotaLimitAmount: "String",
1609
+ },
1610
+ },
1611
+ GetQueueMember: {
1612
+ url: "/",
1613
+ method: "GET",
1614
+ config: {
1615
+ query: {
1616
+ Version: "2024-06-12",
1617
+ Action: "GetQueueMember",
1618
+ },
1619
+ headers: {
1620
+ "Content-Type": "application/x-www-form-urlencoded",
1621
+ },
1622
+ },
1623
+ paramsType: {
1624
+ QueueId: "String",
1625
+ SubAccountId: "String",
1626
+ Page: "Int",
1627
+ PageSize: "Int",
1628
+ },
1629
+ },
1447
1630
  };
1448
1631
  };
@@ -340,5 +340,278 @@ module.exports = class Client extends BaseClient {
340
340
  Limit: "Int",
341
341
  },
342
342
  },
343
+ CreateMemoryCollection: {
344
+ url: "/",
345
+ method: "GET",
346
+ config: {
347
+ query: {
348
+ Version: "2025-11-14",
349
+ Action: "CreateMemoryCollection",
350
+ },
351
+ headers: {
352
+ "Content-Type": "application/json",
353
+ },
354
+ },
355
+ paramsType: {
356
+ Name: "String",
357
+ Description: "String",
358
+ },
359
+ },
360
+ GetMemoryCollection: {
361
+ url: "/",
362
+ method: "GET",
363
+ config: {
364
+ query: {
365
+ Version: "2025-11-14",
366
+ Action: "GetMemoryCollection",
367
+ },
368
+ headers: {
369
+ "Content-Type": "application/json",
370
+ },
371
+ },
372
+ paramsType: {
373
+ MemoryCollectionId: "String",
374
+ },
375
+ },
376
+ ListMemoryCollections: {
377
+ url: "/",
378
+ method: "GET",
379
+ config: {
380
+ query: {
381
+ Version: "2025-11-14",
382
+ Action: "ListMemoryCollections",
383
+ },
384
+ headers: {
385
+ "Content-Type": "application/json",
386
+ },
387
+ },
388
+ paramsType: {
389
+ CreateTimeAfter: "Long",
390
+ CreateTimeBefore: "Long",
391
+ UpdateTimeAfter: "Long",
392
+ UpdateTimeBefore: "Long",
393
+ MemoryCollectionId: "String",
394
+ Name: "String",
395
+ NameKeyword: "String",
396
+ Status: "String",
397
+ Marker: "Long",
398
+ MaxResults: "Long",
399
+ },
400
+ },
401
+ DeleteMemoryCollection: {
402
+ url: "/",
403
+ method: "GET",
404
+ config: {
405
+ query: {
406
+ Version: "2025-11-14",
407
+ Action: "DeleteMemoryCollection",
408
+ },
409
+ headers: {
410
+ "Content-Type": "application/json",
411
+ },
412
+ },
413
+ paramsType: {
414
+ MemoryCollectionId: "String",
415
+ },
416
+ },
417
+ GetMemoryBaseService: {
418
+ url: "/",
419
+ method: "GET",
420
+ config: {
421
+ query: {
422
+ Version: "2025-11-14",
423
+ Action: "GetMemoryBaseService",
424
+ },
425
+ headers: {
426
+ "Content-Type": "application/json",
427
+ },
428
+ },
429
+ paramsType: {},
430
+ },
431
+ ActivateMemoryBaseService: {
432
+ url: "/",
433
+ method: "POST",
434
+ config: {
435
+ query: {
436
+ Version: "2025-11-14",
437
+ Action: "ActivateMemoryBaseService",
438
+ },
439
+ headers: {
440
+ "Content-Type": "application/json",
441
+ },
442
+ },
443
+ paramsType: {},
444
+ },
445
+ UpdateMemoryCollection: {
446
+ url: "/",
447
+ method: "GET",
448
+ config: {
449
+ query: {
450
+ Version: "2025-11-14",
451
+ Action: "UpdateMemoryCollection",
452
+ },
453
+ headers: {
454
+ "Content-Type": "application/json",
455
+ },
456
+ },
457
+ paramsType: {
458
+ MemoryCollectionId: "String",
459
+ Description: "String",
460
+ Name: "String",
461
+ },
462
+ },
463
+ DeleteMcpServer: {
464
+ url: "/",
465
+ method: "POST",
466
+ config: {
467
+ query: {
468
+ Version: "2025-11-14",
469
+ Action: "DeleteMcpServer",
470
+ },
471
+ headers: {
472
+ "Content-Type": "application/json",
473
+ },
474
+ },
475
+ paramsType: {
476
+ McpServerId: "String",
477
+ },
478
+ },
479
+ ModifyMcpServer: {
480
+ url: "/",
481
+ method: "POST",
482
+ config: {
483
+ query: {
484
+ Version: "2025-11-14",
485
+ Action: "ModifyMcpServer",
486
+ },
487
+ headers: {
488
+ "Content-Type": "application/json",
489
+ },
490
+ },
491
+ paramsType: {
492
+ McpServerId: "String",
493
+ McpServerName: "String",
494
+ Description: "String",
495
+ Introduction: "String",
496
+ OutboundAuthFieldValue: "String",
497
+ HttpApiConfig: "String",
498
+ HttpApiConfigUpdateType: "String",
499
+ },
500
+ },
501
+ CreateMcpServer: {
502
+ url: "/",
503
+ method: "POST",
504
+ config: {
505
+ query: {
506
+ Version: "2025-11-14",
507
+ Action: "CreateMcpServer",
508
+ },
509
+ headers: {
510
+ "Content-Type": "application/json",
511
+ },
512
+ },
513
+ paramsType: {
514
+ McpServerName: "String",
515
+ McpServerNameEn: "String",
516
+ Description: "String",
517
+ Introduction: "String",
518
+ ServiceProtocol: "String",
519
+ BackendServiceUrl: "String",
520
+ AllowCustomAuth: "Boolean",
521
+ ServiceCustomHeaders: "String",
522
+ OutboundAuthLocation: "String",
523
+ OutboundAuthFieldName: "String",
524
+ OutboundAuthFieldValue: "String",
525
+ McpRuntimeConfig: "Object",
526
+ HttpApiConfig: "String",
527
+ McpType: "String",
528
+ },
529
+ },
530
+ DescribeMcpServers: {
531
+ url: "/",
532
+ method: "GET",
533
+ config: {
534
+ query: {
535
+ Version: "2025-11-14",
536
+ Action: "DescribeMcpServers",
537
+ },
538
+ headers: {
539
+ "Content-Type": "application/x-www-form-urlencoded",
540
+ },
541
+ },
542
+ paramsType: {
543
+ McpServerIds: "Array",
544
+ NameKeyword: "String",
545
+ Region: "String",
546
+ },
547
+ },
548
+ DescribeMcpOfficialServers: {
549
+ url: "/",
550
+ method: "GET",
551
+ config: {
552
+ query: {
553
+ Version: "2025-11-14",
554
+ Action: "DescribeMcpOfficialServers",
555
+ },
556
+ headers: {
557
+ "Content-Type": "application/x-www-form-urlencoded",
558
+ },
559
+ },
560
+ paramsType: {
561
+ McpServerIds: "Array",
562
+ NameKeyword: "String",
563
+ Region: "String",
564
+ },
565
+ },
566
+ DeactivateMcpOfficialServer: {
567
+ url: "/",
568
+ method: "POST",
569
+ config: {
570
+ query: {
571
+ Version: "2025-11-14",
572
+ Action: "DeactivateMcpOfficialServer",
573
+ },
574
+ headers: {
575
+ "Content-Type": "application/json",
576
+ },
577
+ },
578
+ paramsType: {
579
+ McpServerId: "String",
580
+ },
581
+ },
582
+ ActivateMcpOfficialServer: {
583
+ url: "/",
584
+ method: "POST",
585
+ config: {
586
+ query: {
587
+ Version: "2025-11-14",
588
+ Action: "ActivateMcpOfficialServer",
589
+ },
590
+ headers: {
591
+ "Content-Type": "application/json",
592
+ },
593
+ },
594
+ paramsType: {
595
+ McpServerId: "String",
596
+ AuthFieldValue: "String",
597
+ },
598
+ },
599
+ DescribeMcpSquares: {
600
+ url: "/",
601
+ method: "GET",
602
+ config: {
603
+ query: {
604
+ Version: "2025-11-14",
605
+ Action: "DescribeMcpSquares",
606
+ },
607
+ headers: {
608
+ "Content-Type": "application/x-www-form-urlencoded",
609
+ },
610
+ },
611
+ paramsType: {
612
+ McpServerIds: "Array",
613
+ NameKeyword: "String",
614
+ },
615
+ },
343
616
  };
344
617
  };
@@ -684,7 +684,7 @@ module.exports = class Client extends BaseClient {
684
684
  },
685
685
  SetCertificate: {
686
686
  url: "/",
687
- method: "GET",
687
+ method: "POST",
688
688
  config: {
689
689
  query: {
690
690
  Version: "V3",
@@ -703,7 +703,7 @@ module.exports = class Client extends BaseClient {
703
703
  },
704
704
  RemoveCertificates: {
705
705
  url: "/",
706
- method: "GET",
706
+ method: "POST",
707
707
  config: {
708
708
  query: {
709
709
  Version: "V3",
@@ -55,6 +55,7 @@ module.exports = class Client extends BaseClient {
55
55
  StartTime: "String",
56
56
  EndTime: "String",
57
57
  Interval: "String",
58
+ DirPath: "String",
58
59
  },
59
60
  },
60
61
  GetInodeCount: {
@@ -74,6 +75,7 @@ module.exports = class Client extends BaseClient {
74
75
  StartTime: "String",
75
76
  EndTime: "String",
76
77
  Interval: "String",
78
+ DirPath: "String",
77
79
  },
78
80
  },
79
81
  GetCapacityAvailable: {
@@ -301,7 +303,10 @@ module.exports = class Client extends BaseClient {
301
303
  ClusterName: "String",
302
304
  FileSystemName: "String",
303
305
  DirPath: "String",
306
+ LogicalCapacityType: "String",
304
307
  LogicalHardThreshold: "Long",
308
+ LogicalInodesType: "String",
309
+ LogicalHardInodes: "Long",
305
310
  },
306
311
  },
307
312
  CreateDirQuota: {
@@ -322,7 +327,10 @@ module.exports = class Client extends BaseClient {
322
327
  ClusterName: "String",
323
328
  FileSystemName: "String",
324
329
  DirPath: "String",
330
+ LogicalCapacityType: "String",
325
331
  LogicalHardThreshold: "Long",
332
+ LogicalInodesType: "String",
333
+ LogicalHardInodes: "Long",
326
334
  },
327
335
  },
328
336
  DescribeSubDirList: {