tencentcloud-sdk-nodejs-cam 4.1.1 → 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-cam",
|
|
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",
|
|
@@ -3234,42 +3234,42 @@ export interface AttachedUserPolicy {
|
|
|
3234
3234
|
/**
|
|
3235
3235
|
* 策略ID
|
|
3236
3236
|
*/
|
|
3237
|
-
PolicyId
|
|
3237
|
+
PolicyId?: string;
|
|
3238
3238
|
/**
|
|
3239
3239
|
* 策略名
|
|
3240
3240
|
*/
|
|
3241
|
-
PolicyName
|
|
3241
|
+
PolicyName?: string;
|
|
3242
3242
|
/**
|
|
3243
3243
|
* 策略描述
|
|
3244
3244
|
*/
|
|
3245
|
-
Description
|
|
3245
|
+
Description?: string;
|
|
3246
3246
|
/**
|
|
3247
3247
|
* 创建时间
|
|
3248
3248
|
*/
|
|
3249
|
-
AddTime
|
|
3249
|
+
AddTime?: string;
|
|
3250
3250
|
/**
|
|
3251
3251
|
* 策略类型(1表示自定义策略,2表示预设策略)
|
|
3252
3252
|
*/
|
|
3253
|
-
StrategyType
|
|
3253
|
+
StrategyType?: string;
|
|
3254
3254
|
/**
|
|
3255
3255
|
* 创建模式(1表示按产品或项目权限创建的策略,其他表示策略语法创建的策略)
|
|
3256
3256
|
*/
|
|
3257
|
-
CreateMode
|
|
3257
|
+
CreateMode?: string;
|
|
3258
3258
|
/**
|
|
3259
3259
|
* 随组关联信息
|
|
3260
3260
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3261
3261
|
*/
|
|
3262
|
-
Groups
|
|
3262
|
+
Groups?: Array<AttachedUserPolicyGroupInfo>;
|
|
3263
3263
|
/**
|
|
3264
3264
|
* 是否已下线(0:否 1:是)
|
|
3265
3265
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3266
3266
|
*/
|
|
3267
|
-
Deactived
|
|
3267
|
+
Deactived?: number;
|
|
3268
3268
|
/**
|
|
3269
3269
|
* 已下线的产品列表
|
|
3270
3270
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3271
3271
|
*/
|
|
3272
|
-
DeactivedDetail
|
|
3272
|
+
DeactivedDetail?: Array<string>;
|
|
3273
3273
|
}
|
|
3274
3274
|
/**
|
|
3275
3275
|
* DeleteServiceLinkedRole返回参数结构体
|