tencentcloud-sdk-nodejs-batch 4.1.2 → 4.1.4
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tencentcloud-sdk-nodejs-batch",
|
|
3
|
-
"version": "4.1.
|
|
3
|
+
"version": "4.1.4",
|
|
4
4
|
"description": "腾讯云 API NODEJS SDK",
|
|
5
5
|
"main": "./tencentcloud/index.js",
|
|
6
6
|
"module": "./es/index.js",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"build": "concurrently 'npm:build:cjs' 'npm:build:es'",
|
|
11
11
|
"build:cjs": "tsc -p tsconfig.json",
|
|
12
12
|
"build:es": "tsc -p tsconfig.es.json",
|
|
13
|
+
"build:slim": "node ./scripts/build_slim.js",
|
|
13
14
|
"prettier": "prettier --config prettier.config.js --write 'src/**/*.{tsx,ts,jsx,js,css,json,vue}'",
|
|
14
15
|
"clean": "rimraf tencentcloud es"
|
|
15
16
|
},
|
|
@@ -53,6 +54,7 @@
|
|
|
53
54
|
"babel-eslint": "^10.0.2",
|
|
54
55
|
"chai": "^4.2.0",
|
|
55
56
|
"concurrently": "^6.5.1",
|
|
57
|
+
"esbuild": "^0.25.0",
|
|
56
58
|
"eslint": "^6.8.0",
|
|
57
59
|
"eslint-plugin-react": "^7.17.0",
|
|
58
60
|
"mocha": "^8.4.0",
|
|
@@ -744,11 +744,11 @@ export interface Application {
|
|
|
744
744
|
*/
|
|
745
745
|
export interface EnvDataCpm {
|
|
746
746
|
/**
|
|
747
|
-
* 黑石可用区名称列表。如ap-guangzhou-bls-1
|
|
747
|
+
* 黑石可用区名称列表。如ap-guangzhou-bls-1。不是Batch可用区名称。目前仅支持一个可用区名称。
|
|
748
748
|
*/
|
|
749
749
|
Zones: Array<string>;
|
|
750
750
|
/**
|
|
751
|
-
* 购买的机型ID
|
|
751
|
+
* 购买的机型ID。
|
|
752
752
|
*/
|
|
753
753
|
InstanceTypes: Array<string>;
|
|
754
754
|
/**
|
|
@@ -760,7 +760,7 @@ export interface EnvDataCpm {
|
|
|
760
760
|
*/
|
|
761
761
|
TimeSpan: number;
|
|
762
762
|
/**
|
|
763
|
-
* RAID类型ID
|
|
763
|
+
* RAID类型ID。
|
|
764
764
|
*/
|
|
765
765
|
RaidId: number;
|
|
766
766
|
/**
|
|
@@ -812,7 +812,7 @@ export interface EnvDataCpm {
|
|
|
812
812
|
*/
|
|
813
813
|
ImageId?: string;
|
|
814
814
|
/**
|
|
815
|
-
* 系统盘根分区大小,单位为G,默认取值10G
|
|
815
|
+
* 系统盘根分区大小,单位为G,默认取值10G。
|
|
816
816
|
*/
|
|
817
817
|
SysRootSpace?: number;
|
|
818
818
|
/**
|