ksyun-sdk-node 1.5.9 → 1.5.10

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.
@@ -407,7 +407,8 @@ module.exports = class Client extends BaseClient {
407
407
  AssociatedModelId: "Filter",
408
408
  Status: "Filter",
409
409
  Namekeyword: "String",
410
- DefaultKey: "Boolean"
410
+ DefaultKey: "Boolean",
411
+ KeyId: "Filter"
411
412
  }
412
413
  },
413
414
  QueryTokenData: {
@@ -430,7 +431,8 @@ module.exports = class Client extends BaseClient {
430
431
  GroupBy: "String",
431
432
  ReasoningType: "String",
432
433
  Marker: "Int",
433
- IsGlobalServer: "Boolean"
434
+ IsGlobalServer: "Boolean",
435
+ ModelName: "String"
434
436
  }
435
437
  },
436
438
  DisableApikeyStatus: {
@@ -940,13 +942,30 @@ module.exports = class Client extends BaseClient {
940
942
  Filter: "Array"
941
943
  }
942
944
  },
943
- StartInferenceEndpoint: {
945
+ EnableEndpointRateLimit: {
944
946
  url: "/",
945
947
  method: "POST",
946
948
  config: {
947
949
  query: {
948
950
  Version: "2024-06-12",
949
- Action: "StartInferenceEndpoint"
951
+ Action: "EnableEndpointRateLimit"
952
+ },
953
+ headers: {
954
+ "Content-Type": "application/json"
955
+ }
956
+ },
957
+ paramsType: {
958
+ EndpointId: "String",
959
+ RateLimit: "Object"
960
+ }
961
+ },
962
+ UpdateInferenceEndpoint: {
963
+ url: "/",
964
+ method: "POST",
965
+ config: {
966
+ query: {
967
+ Version: "2024-06-12",
968
+ Action: "UpdateInferenceEndpoint"
950
969
  },
951
970
  headers: {
952
971
  "Content-Type": "application/json"
@@ -960,6 +979,38 @@ module.exports = class Client extends BaseClient {
960
979
  EndpointId: "String"
961
980
  }
962
981
  },
982
+ StartInferenceEndpoint: {
983
+ url: "/",
984
+ method: "POST",
985
+ config: {
986
+ query: {
987
+ Version: "2024-06-12",
988
+ Action: "StartInferenceEndpoint"
989
+ },
990
+ headers: {
991
+ "Content-Type": "application/json"
992
+ }
993
+ },
994
+ paramsType: {
995
+ EndpointId: "String"
996
+ }
997
+ },
998
+ StopInferenceEndpoint: {
999
+ url: "/",
1000
+ method: "POST",
1001
+ config: {
1002
+ query: {
1003
+ Version: "2024-06-12",
1004
+ Action: "StopInferenceEndpoint"
1005
+ },
1006
+ headers: {
1007
+ "Content-Type": "application/json"
1008
+ }
1009
+ },
1010
+ paramsType: {
1011
+ EndpointId: "String"
1012
+ }
1013
+ },
963
1014
  DeleteInferenceEndpoint: {
964
1015
  url: "/",
965
1016
  method: "POST",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ksyun-sdk-node",
3
- "version": "1.5.9",
3
+ "version": "1.5.10",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -401,6 +401,7 @@ module.exports = class Client extends BaseClient {
401
401
  Status: "Filter",
402
402
  Namekeyword: "String",
403
403
  DefaultKey: "Boolean",
404
+ KeyId: "Filter",
404
405
  },
405
406
  },
406
407
  QueryTokenData: {
@@ -424,6 +425,7 @@ module.exports = class Client extends BaseClient {
424
425
  ReasoningType: "String",
425
426
  Marker: "Int",
426
427
  IsGlobalServer: "Boolean",
428
+ ModelName: "String",
427
429
  },
428
430
  },
429
431
  DisableApikeyStatus: {
@@ -933,13 +935,30 @@ module.exports = class Client extends BaseClient {
933
935
  Filter: "Array",
934
936
  },
935
937
  },
936
- StartInferenceEndpoint: {
938
+ EnableEndpointRateLimit: {
937
939
  url: "/",
938
940
  method: "POST",
939
941
  config: {
940
942
  query: {
941
943
  Version: "2024-06-12",
942
- Action: "StartInferenceEndpoint",
944
+ Action: "EnableEndpointRateLimit",
945
+ },
946
+ headers: {
947
+ "Content-Type": "application/json",
948
+ },
949
+ },
950
+ paramsType: {
951
+ EndpointId: "String",
952
+ RateLimit: "Object",
953
+ },
954
+ },
955
+ UpdateInferenceEndpoint: {
956
+ url: "/",
957
+ method: "POST",
958
+ config: {
959
+ query: {
960
+ Version: "2024-06-12",
961
+ Action: "UpdateInferenceEndpoint",
943
962
  },
944
963
  headers: {
945
964
  "Content-Type": "application/json",
@@ -953,6 +972,38 @@ module.exports = class Client extends BaseClient {
953
972
  EndpointId: "String",
954
973
  },
955
974
  },
975
+ StartInferenceEndpoint: {
976
+ url: "/",
977
+ method: "POST",
978
+ config: {
979
+ query: {
980
+ Version: "2024-06-12",
981
+ Action: "StartInferenceEndpoint",
982
+ },
983
+ headers: {
984
+ "Content-Type": "application/json",
985
+ },
986
+ },
987
+ paramsType: {
988
+ EndpointId: "String",
989
+ },
990
+ },
991
+ StopInferenceEndpoint: {
992
+ url: "/",
993
+ method: "POST",
994
+ config: {
995
+ query: {
996
+ Version: "2024-06-12",
997
+ Action: "StopInferenceEndpoint",
998
+ },
999
+ headers: {
1000
+ "Content-Type": "application/json",
1001
+ },
1002
+ },
1003
+ paramsType: {
1004
+ EndpointId: "String",
1005
+ },
1006
+ },
956
1007
  DeleteInferenceEndpoint: {
957
1008
  url: "/",
958
1009
  method: "POST",