tencentcloud-sdk-nodejs-cam 4.1.137 → 4.1.159

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.137",
3
+ "version": "4.1.159",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -663,7 +663,6 @@ export interface StrategyInfo {
663
663
  PolicyName?: string;
664
664
  /**
665
665
  * 策略创建时间。
666
- 注意:此字段可能返回 null,表示取不到有效值。
667
666
  */
668
667
  AddTime?: string;
669
668
  /**
@@ -723,6 +722,10 @@ export interface StrategyInfo {
723
722
  注意:此字段可能返回 null,表示取不到有效值。
724
723
  */
725
724
  UpdateTime?: string;
725
+ /**
726
+ * 标签列表
727
+ */
728
+ Tags?: Array<Tag>;
726
729
  }
727
730
  /**
728
731
  * DeleteRole返回参数结构体
@@ -1476,6 +1479,19 @@ export interface DetachRolePolicyRequest {
1476
1479
  */
1477
1480
  PolicyName?: string;
1478
1481
  }
1482
+ /**
1483
+ * 标签
1484
+ */
1485
+ export interface Tag {
1486
+ /**
1487
+ * 标签键
1488
+ */
1489
+ Key: string;
1490
+ /**
1491
+ * 标签值
1492
+ */
1493
+ Value: string;
1494
+ }
1479
1495
  /**
1480
1496
  * UntagRole返回参数结构体
1481
1497
  */
@@ -2740,6 +2756,10 @@ export interface CreatePolicyRequest {
2740
2756
  * 策略描述
2741
2757
  */
2742
2758
  Description?: string;
2759
+ /**
2760
+ * 策略关联的标签列表
2761
+ */
2762
+ Tags?: Array<Tag>;
2743
2763
  }
2744
2764
  /**
2745
2765
  * ListAttachedUserAllPolicies请求参数结构体
@@ -3351,6 +3371,10 @@ export interface GetPolicyResponse {
3351
3371
  * 是否是服务相关策略,0代表不是服务相关策略,1代表是服务相关策略。
3352
3372
  */
3353
3373
  IsServiceLinkedRolePolicy?: number;
3374
+ /**
3375
+ * 策略关联的标签列表
3376
+ */
3377
+ Tags?: Array<Tag>;
3354
3378
  /**
3355
3379
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3356
3380
  */