tencentcloud-sdk-nodejs 4.0.636 → 4.0.637

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.
Files changed (51) hide show
  1. package/CHANGELOG.md +232 -0
  2. package/SERVICE_CHANGELOG.md +330 -107
  3. package/package.json +1 -1
  4. package/products.md +15 -15
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/dasb/v20191018/dasb_models.ts +17 -13
  7. package/src/services/dbbrain/v20210527/dbbrain_client.ts +13 -1
  8. package/src/services/dbbrain/v20210527/dbbrain_models.ts +48 -11
  9. package/src/services/ecm/v20190719/ecm_client.ts +4 -3
  10. package/src/services/ecm/v20190719/ecm_models.ts +123 -77
  11. package/src/services/essbasic/v20210526/essbasic_models.ts +42 -37
  12. package/src/services/gaap/v20180529/gaap_models.ts +35 -35
  13. package/src/services/pts/v20210728/pts_models.ts +2 -2
  14. package/src/services/tcr/v20190924/tcr_client.ts +62 -13
  15. package/src/services/tcr/v20190924/tcr_models.ts +352 -134
  16. package/src/services/thpc/v20230321/thpc_models.ts +1 -1
  17. package/src/services/tke/v20180525/tke_models.ts +16 -4
  18. package/src/services/vod/v20180717/vod_client.ts +2 -2
  19. package/src/services/vod/v20180717/vod_models.ts +18 -18
  20. package/src/services/vpc/v20170312/vpc_client.ts +3 -2
  21. package/src/services/vpc/v20170312/vpc_models.ts +22 -18
  22. package/src/services/wedata/v20210820/wedata_client.ts +16 -2
  23. package/src/services/wedata/v20210820/wedata_models.ts +210 -12
  24. package/tencentcloud/common/sdk_version.d.ts +1 -1
  25. package/tencentcloud/common/sdk_version.js +1 -1
  26. package/tencentcloud/services/dasb/v20191018/dasb_models.d.ts +17 -13
  27. package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.d.ts +5 -1
  28. package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.js +6 -0
  29. package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +46 -11
  30. package/tencentcloud/services/ecm/v20190719/ecm_client.d.ts +1 -1
  31. package/tencentcloud/services/ecm/v20190719/ecm_models.d.ts +121 -76
  32. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +42 -37
  33. package/tencentcloud/services/gaap/v20180529/gaap_models.d.ts +35 -35
  34. package/tencentcloud/services/pts/v20210728/pts_models.d.ts +2 -2
  35. package/tencentcloud/services/tcr/v20190924/tcr_client.d.ts +17 -1
  36. package/tencentcloud/services/tcr/v20190924/tcr_client.js +24 -0
  37. package/tencentcloud/services/tcr/v20190924/tcr_models.d.ts +341 -132
  38. package/tencentcloud/services/thpc/v20230321/thpc_models.d.ts +1 -1
  39. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +16 -4
  40. package/tencentcloud/services/vod/v20180717/vod_client.d.ts +2 -2
  41. package/tencentcloud/services/vod/v20180717/vod_client.js +2 -2
  42. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +18 -18
  43. package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +3 -2
  44. package/tencentcloud/services/vpc/v20170312/vpc_client.js +3 -2
  45. package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +22 -18
  46. package/tencentcloud/services/wedata/v20210820/wedata_client.d.ts +5 -1
  47. package/tencentcloud/services/wedata/v20210820/wedata_client.js +6 -0
  48. package/tencentcloud/services/wedata/v20210820/wedata_models.d.ts +206 -12
  49. package/test/dbbrain.v20210527.test.js +10 -0
  50. package/test/tcr.v20190924.test.js +40 -0
  51. package/test/wedata.v20210820.test.js +10 -0
@@ -60,22 +60,17 @@ export interface WebhookTarget {
60
60
  Headers?: Array<Header>;
61
61
  }
62
62
  /**
63
- * DescribeReplicationInstances返回参数结构体
63
+ * DeleteSignaturePolicy请求参数结构体
64
64
  */
65
- export interface DescribeReplicationInstancesResponse {
66
- /**
67
- * 总实例个数
68
- */
69
- TotalCount: number;
65
+ export interface DeleteSignaturePolicyRequest {
70
66
  /**
71
- * 同步实例列表
72
- 注意:此字段可能返回 null,表示取不到有效值。
67
+ * 实例ID
73
68
  */
74
- ReplicationRegistries: Array<ReplicationRegistry>;
69
+ RegistryId: string;
75
70
  /**
76
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
71
+ * 命名空间的名称
77
72
  */
78
- RequestId?: string;
73
+ NamespaceName: string;
79
74
  }
80
75
  /**
81
76
  * DescribeReplicationInstanceCreateTasks返回参数结构体
@@ -242,6 +237,24 @@ export interface DescribeNamespacesResponse {
242
237
  */
243
238
  RequestId?: string;
244
239
  }
240
+ /**
241
+ * DescribeInstanceCustomizedDomain返回参数结构体
242
+ */
243
+ export interface DescribeInstanceCustomizedDomainResponse {
244
+ /**
245
+ * 域名信息列表
246
+ 注意:此字段可能返回 null,表示取不到有效值。
247
+ */
248
+ DomainInfoList: Array<CustomizedDomainInfo>;
249
+ /**
250
+ * 总个数
251
+ */
252
+ TotalCount: number;
253
+ /**
254
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
255
+ */
256
+ RequestId?: string;
257
+ }
245
258
  /**
246
259
  * 触发器日志
247
260
  */
@@ -366,25 +379,35 @@ export interface DeleteInstanceTokenRequest {
366
379
  TokenId: string;
367
380
  }
368
381
  /**
369
- * Tag列表的返回值
382
+ * 任务详情
370
383
  */
371
- export interface TagInfoResp {
384
+ export interface TaskDetail {
372
385
  /**
373
- * Tag的总数
386
+ * 任务
374
387
  */
375
- TagCount: number;
388
+ TaskName: string;
376
389
  /**
377
- * TagInfo列表
390
+ * 任务UUID
378
391
  */
379
- TagInfo: Array<TagInfo>;
392
+ TaskUUID: string;
380
393
  /**
381
- * Server
394
+ * 任务状态
382
395
  */
383
- Server: string;
396
+ TaskStatus: string;
384
397
  /**
385
- * 仓库名称
398
+ * 任务的状态信息
399
+ 注意:此字段可能返回 null,表示取不到有效值。
386
400
  */
387
- RepoName: string;
401
+ TaskMessage: string;
402
+ /**
403
+ * 任务开始时间
404
+ */
405
+ CreatedTime: string;
406
+ /**
407
+ * 任务结束时间
408
+ 注意:此字段可能返回 null,表示取不到有效值。
409
+ */
410
+ FinishedTime: string;
388
411
  }
389
412
  /**
390
413
  * ModifyRepository请求参数结构体
@@ -842,34 +865,37 @@ export interface Region {
842
865
  Id: number;
843
866
  }
844
867
  /**
845
- * 命名空间信息
868
+ * ModifyServiceAccount请求参数结构体
846
869
  */
847
- export interface NamespaceInfo {
870
+ export interface ModifyServiceAccountRequest {
848
871
  /**
849
- * 命名空间
872
+ * 实例Id
850
873
  */
851
- Namespace: string;
874
+ RegistryId: string;
852
875
  /**
853
- * 创建时间
876
+ * 服务级账号名
854
877
  */
855
- CreationTime: string;
878
+ Name: string;
856
879
  /**
857
- * 命名空间下仓库数量
880
+ * 服务级账号描述
858
881
  */
859
- RepoCount: number;
860
- }
861
- /**
862
- * CreateImageAccelerationService返回参数结构体
863
- */
864
- export interface CreateImageAccelerationServiceResponse {
882
+ Description?: string;
865
883
  /**
866
- * 实例Id
884
+ * 有效期(单位:天),从当前时间开始计算,优先级高于ExpiresAt
867
885
  */
868
- RegistryId?: string;
886
+ Duration?: number;
869
887
  /**
870
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
888
+ * 过期时间(时间戳,单位:毫秒)
871
889
  */
872
- RequestId?: string;
890
+ ExpiresAt?: number;
891
+ /**
892
+ * 是否禁用服务级账号
893
+ */
894
+ Disable?: boolean;
895
+ /**
896
+ * 策略列表
897
+ */
898
+ Permissions?: Array<Permission>;
873
899
  }
874
900
  /**
875
901
  * CreateMultipleSecurityPolicy返回参数结构体
@@ -963,6 +989,52 @@ export interface DescribeChartDownloadInfoResponse {
963
989
  */
964
990
  RequestId?: string;
965
991
  }
992
+ /**
993
+ * 命名空间信息
994
+ */
995
+ export interface NamespaceInfo {
996
+ /**
997
+ * 命名空间
998
+ */
999
+ Namespace: string;
1000
+ /**
1001
+ * 创建时间
1002
+ */
1003
+ CreationTime: string;
1004
+ /**
1005
+ * 命名空间下仓库数量
1006
+ */
1007
+ RepoCount: number;
1008
+ }
1009
+ /**
1010
+ * DescribeServiceAccounts请求参数结构体
1011
+ */
1012
+ export interface DescribeServiceAccountsRequest {
1013
+ /**
1014
+ * 实例Id
1015
+ */
1016
+ RegistryId: string;
1017
+ /**
1018
+ * 列出所有服务级账号
1019
+ */
1020
+ All?: boolean;
1021
+ /**
1022
+ * 是否填充策略
1023
+ */
1024
+ EmbedPermission?: boolean;
1025
+ /**
1026
+ * 过滤条件
1027
+ */
1028
+ Filters?: Array<Filter>;
1029
+ /**
1030
+ * 偏移量,默认0
1031
+ */
1032
+ Offset?: number;
1033
+ /**
1034
+ * 最大输出条数,默认20,最大为100(超出最大值,调整到最大值)
1035
+ */
1036
+ Limit?: number;
1037
+ }
966
1038
  /**
967
1039
  * DescribeExternalEndpointStatus请求参数结构体
968
1040
  */
@@ -1077,6 +1149,20 @@ export interface ManageReplicationRequest {
1077
1149
  */
1078
1150
  PeerReplicationOption?: PeerReplicationOption;
1079
1151
  }
1152
+ /**
1153
+ * DescribeInstanceStatus返回参数结构体
1154
+ */
1155
+ export interface DescribeInstanceStatusResponse {
1156
+ /**
1157
+ * 实例的状态列表
1158
+ 注意:此字段可能返回 null,表示取不到有效值。
1159
+ */
1160
+ RegistryStatusSet?: Array<RegistryStatus>;
1161
+ /**
1162
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1163
+ */
1164
+ RequestId?: string;
1165
+ }
1080
1166
  /**
1081
1167
  * DeleteWebhookTrigger返回参数结构体
1082
1168
  */
@@ -1416,18 +1502,21 @@ export interface DescribeImageLifecyclePersonalResponse {
1416
1502
  RequestId?: string;
1417
1503
  }
1418
1504
  /**
1419
- * DescribeInstanceStatus返回参数结构体
1505
+ * DeleteReplicationInstance请求参数结构体
1420
1506
  */
1421
- export interface DescribeInstanceStatusResponse {
1507
+ export interface DeleteReplicationInstanceRequest {
1422
1508
  /**
1423
- * 实例的状态列表
1424
- 注意:此字段可能返回 null,表示取不到有效值。
1509
+ * 实例id
1425
1510
  */
1426
- RegistryStatusSet?: Array<RegistryStatus>;
1511
+ RegistryId: string;
1427
1512
  /**
1428
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1513
+ * 复制实例ID
1429
1514
  */
1430
- RequestId?: string;
1515
+ ReplicationRegistryId: string;
1516
+ /**
1517
+ * 复制实例地域Id
1518
+ */
1519
+ ReplicationRegionId: number;
1431
1520
  }
1432
1521
  /**
1433
1522
  * CreateImageAccelerationService请求参数结构体
@@ -1666,6 +1755,35 @@ export interface TcrImageInfo {
1666
1755
  */
1667
1756
  KmsSignature: string;
1668
1757
  }
1758
+ /**
1759
+ * 版本保留策略
1760
+ */
1761
+ export interface RetentionPolicy {
1762
+ /**
1763
+ * 版本保留策略Id
1764
+ */
1765
+ RetentionId: number;
1766
+ /**
1767
+ * 命名空间的名称
1768
+ */
1769
+ NamespaceName: string;
1770
+ /**
1771
+ * 规则列表
1772
+ */
1773
+ RetentionRuleList: Array<RetentionRule>;
1774
+ /**
1775
+ * 定期执行方式
1776
+ */
1777
+ CronSetting: string;
1778
+ /**
1779
+ * 是否启用规则
1780
+ */
1781
+ Disabled: boolean;
1782
+ /**
1783
+ * 基于当前时间根据cronSetting后下一次任务要执行的时间,仅做参考使用
1784
+ */
1785
+ NextExecutionTime: string;
1786
+ }
1669
1787
  /**
1670
1788
  * DescribeImageLifecycleGlobalPersonal返回参数结构体
1671
1789
  */
@@ -1757,21 +1875,17 @@ export interface ModifyWebhookTriggerRequest {
1757
1875
  Namespace: string;
1758
1876
  }
1759
1877
  /**
1760
- * DeleteReplicationInstance请求参数结构体
1878
+ * CreateImageAccelerationService返回参数结构体
1761
1879
  */
1762
- export interface DeleteReplicationInstanceRequest {
1763
- /**
1764
- * 实例id
1765
- */
1766
- RegistryId: string;
1880
+ export interface CreateImageAccelerationServiceResponse {
1767
1881
  /**
1768
- * 复制实例ID
1882
+ * 实例Id
1769
1883
  */
1770
- ReplicationRegistryId: string;
1884
+ RegistryId?: string;
1771
1885
  /**
1772
- * 复制实例地域Id
1886
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1773
1887
  */
1774
- ReplicationRegionId: number;
1888
+ RequestId?: string;
1775
1889
  }
1776
1890
  /**
1777
1891
  * DeleteNamespace返回参数结构体
@@ -1783,13 +1897,25 @@ export interface DeleteNamespaceResponse {
1783
1897
  RequestId?: string;
1784
1898
  }
1785
1899
  /**
1786
- * DeleteNamespacePersonal返回参数结构体
1900
+ * Tag列表的返回值
1787
1901
  */
1788
- export interface DeleteNamespacePersonalResponse {
1902
+ export interface TagInfoResp {
1789
1903
  /**
1790
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1904
+ * Tag的总数
1791
1905
  */
1792
- RequestId?: string;
1906
+ TagCount: number;
1907
+ /**
1908
+ * TagInfo列表
1909
+ */
1910
+ TagInfo: Array<TagInfo>;
1911
+ /**
1912
+ * Server
1913
+ */
1914
+ Server: string;
1915
+ /**
1916
+ * 仓库名称
1917
+ */
1918
+ RepoName: string;
1793
1919
  }
1794
1920
  /**
1795
1921
  * 仓库收藏
@@ -1923,6 +2049,15 @@ export interface CreateUserPersonalRequest {
1923
2049
  */
1924
2050
  Password: string;
1925
2051
  }
2052
+ /**
2053
+ * DeleteServiceAccount返回参数结构体
2054
+ */
2055
+ export interface DeleteServiceAccountResponse {
2056
+ /**
2057
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2058
+ */
2059
+ RequestId?: string;
2060
+ }
1926
2061
  /**
1927
2062
  * ValidateRepositoryExistPersonal返回参数结构体
1928
2063
  */
@@ -2582,22 +2717,17 @@ export interface CustomizedDomainInfo {
2582
2717
  Status: string;
2583
2718
  }
2584
2719
  /**
2585
- * DescribeInstanceCustomizedDomain返回参数结构体
2720
+ * DeleteServiceAccount请求参数结构体
2586
2721
  */
2587
- export interface DescribeInstanceCustomizedDomainResponse {
2722
+ export interface DeleteServiceAccountRequest {
2588
2723
  /**
2589
- * 域名信息列表
2590
- 注意:此字段可能返回 null,表示取不到有效值。
2591
- */
2592
- DomainInfoList: Array<CustomizedDomainInfo>;
2593
- /**
2594
- * 总个数
2724
+ * 实例Id
2595
2725
  */
2596
- TotalCount: number;
2726
+ RegistryId: string;
2597
2727
  /**
2598
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2728
+ * 服务级账号名
2599
2729
  */
2600
- RequestId?: string;
2730
+ Name: string;
2601
2731
  }
2602
2732
  /**
2603
2733
  * DescribeImageManifests请求参数结构体
@@ -2981,6 +3111,31 @@ export interface CreateNamespaceRequest {
2981
3111
  */
2982
3112
  CVEWhitelistItems?: Array<CVEWhitelistItem>;
2983
3113
  }
3114
+ /**
3115
+ * CreateServiceAccount返回参数结构体
3116
+ */
3117
+ export interface CreateServiceAccountResponse {
3118
+ /**
3119
+ * 服务级账号名(会自动加上前缀tcr$)
3120
+ */
3121
+ Name?: string;
3122
+ /**
3123
+ * 服务级账号密码,仅展示一次,请注意留存
3124
+ */
3125
+ Password?: string;
3126
+ /**
3127
+ * 服务级账号失效时间(时间戳)
3128
+ */
3129
+ ExpiresAt?: number;
3130
+ /**
3131
+ * 服务级账号创建时间
3132
+ */
3133
+ CreateTime?: string;
3134
+ /**
3135
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3136
+ */
3137
+ RequestId?: string;
3138
+ }
2984
3139
  /**
2985
3140
  * BatchDeleteRepositoryPersonal请求参数结构体
2986
3141
  */
@@ -3420,37 +3575,6 @@ export interface DescribeUserQuotaPersonalResponse {
3420
3575
  */
3421
3576
  RequestId?: string;
3422
3577
  }
3423
- /**
3424
- * 任务详情
3425
- */
3426
- export interface TaskDetail {
3427
- /**
3428
- * 任务
3429
- */
3430
- TaskName: string;
3431
- /**
3432
- * 任务UUID
3433
- */
3434
- TaskUUID: string;
3435
- /**
3436
- * 任务状态
3437
- */
3438
- TaskStatus: string;
3439
- /**
3440
- * 任务的状态信息
3441
- 注意:此字段可能返回 null,表示取不到有效值。
3442
- */
3443
- TaskMessage: string;
3444
- /**
3445
- * 任务开始时间
3446
- */
3447
- CreatedTime: string;
3448
- /**
3449
- * 任务结束时间
3450
- 注意:此字段可能返回 null,表示取不到有效值。
3451
- */
3452
- FinishedTime: string;
3453
- }
3454
3578
  /**
3455
3579
  * DescribeImagePersonal请求参数结构体
3456
3580
  */
@@ -3473,17 +3597,37 @@ export interface DescribeImagePersonalRequest {
3473
3597
  Tag?: string;
3474
3598
  }
3475
3599
  /**
3476
- * DeleteSignaturePolicy请求参数结构体
3600
+ * CreateServiceAccount请求参数结构体
3477
3601
  */
3478
- export interface DeleteSignaturePolicyRequest {
3602
+ export interface CreateServiceAccountRequest {
3479
3603
  /**
3480
- * 实例ID
3604
+ * 实例Id
3481
3605
  */
3482
3606
  RegistryId: string;
3483
3607
  /**
3484
- * 命名空间的名称
3608
+ * 服务级账号名
3485
3609
  */
3486
- NamespaceName: string;
3610
+ Name: string;
3611
+ /**
3612
+ * 策略列表
3613
+ */
3614
+ Permissions: Array<Permission>;
3615
+ /**
3616
+ * 服务级账号描述
3617
+ */
3618
+ Description?: string;
3619
+ /**
3620
+ * 有效期(单位:天),从当前时间开始计算,优先级高于ExpiresAt
3621
+ */
3622
+ Duration?: number;
3623
+ /**
3624
+ * 过期时间(时间戳,单位:毫秒)
3625
+ */
3626
+ ExpiresAt?: number;
3627
+ /**
3628
+ * 是否禁用服务级账号
3629
+ */
3630
+ Disable?: boolean;
3487
3631
  }
3488
3632
  /**
3489
3633
  * DescribeRepositoryFilterPersonal返回参数结构体
@@ -3568,9 +3712,9 @@ export interface DescribeNamespacePersonalResponse {
3568
3712
  RequestId?: string;
3569
3713
  }
3570
3714
  /**
3571
- * DeleteReplicationInstance返回参数结构体
3715
+ * DeleteNamespacePersonal返回参数结构体
3572
3716
  */
3573
- export interface DeleteReplicationInstanceResponse {
3717
+ export interface DeleteNamespacePersonalResponse {
3574
3718
  /**
3575
3719
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3576
3720
  */
@@ -3644,33 +3788,22 @@ export interface Header {
3644
3788
  Values: Array<string>;
3645
3789
  }
3646
3790
  /**
3647
- * 版本保留策略
3791
+ * DescribeReplicationInstances返回参数结构体
3648
3792
  */
3649
- export interface RetentionPolicy {
3650
- /**
3651
- * 版本保留策略Id
3652
- */
3653
- RetentionId: number;
3654
- /**
3655
- * 命名空间的名称
3656
- */
3657
- NamespaceName: string;
3658
- /**
3659
- * 规则列表
3660
- */
3661
- RetentionRuleList: Array<RetentionRule>;
3793
+ export interface DescribeReplicationInstancesResponse {
3662
3794
  /**
3663
- * 定期执行方式
3795
+ * 总实例个数
3664
3796
  */
3665
- CronSetting: string;
3797
+ TotalCount: number;
3666
3798
  /**
3667
- * 是否启用规则
3799
+ * 同步实例列表
3800
+ 注意:此字段可能返回 null,表示取不到有效值。
3668
3801
  */
3669
- Disabled: boolean;
3802
+ ReplicationRegistries: Array<ReplicationRegistry>;
3670
3803
  /**
3671
- * 基于当前时间根据cronSetting后下一次任务要执行的时间,仅做参考使用
3804
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3672
3805
  */
3673
- NextExecutionTime: string;
3806
+ RequestId?: string;
3674
3807
  }
3675
3808
  /**
3676
3809
  * CreateSecurityPolicy请求参数结构体
@@ -3985,6 +4118,15 @@ export interface DescribeRepositoryOwnerPersonalRequest {
3985
4118
  */
3986
4119
  RepoName?: string;
3987
4120
  }
4121
+ /**
4122
+ * DeleteReplicationInstance返回参数结构体
4123
+ */
4124
+ export interface DeleteReplicationInstanceResponse {
4125
+ /**
4126
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4127
+ */
4128
+ RequestId?: string;
4129
+ }
3988
4130
  /**
3989
4131
  * DescribeExternalEndpointStatus返回参数结构体
3990
4132
  */
@@ -4165,13 +4307,22 @@ export interface CreateInstanceTokenRequest {
4165
4307
  Desc?: string;
4166
4308
  }
4167
4309
  /**
4168
- * ModifyUserPasswordPersonal请求参数结构体
4310
+ * DescribeServiceAccounts返回参数结构体
4169
4311
  */
4170
- export interface ModifyUserPasswordPersonalRequest {
4312
+ export interface DescribeServiceAccountsResponse {
4171
4313
  /**
4172
- * 更新后的密码
4314
+ * 服务级账号列表
4315
+ 注意:此字段可能返回 null,表示取不到有效值。
4173
4316
  */
4174
- Password: string;
4317
+ ServiceAccounts?: Array<ServiceAccount>;
4318
+ /**
4319
+ * 自定义账户数量
4320
+ */
4321
+ TotalCount?: number;
4322
+ /**
4323
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4324
+ */
4325
+ RequestId?: string;
4175
4326
  }
4176
4327
  /**
4177
4328
  * CreateInstanceCustomizedDomain返回参数结构体
@@ -4531,6 +4682,46 @@ export interface DescribeTagRetentionRulesRequest {
4531
4682
  */
4532
4683
  Offset?: number;
4533
4684
  }
4685
+ /**
4686
+ * 服务级账号
4687
+ */
4688
+ export interface ServiceAccount {
4689
+ /**
4690
+ * 服务级账号名
4691
+ 注意:此字段可能返回 null,表示取不到有效值。
4692
+ */
4693
+ Name?: string;
4694
+ /**
4695
+ * 描述
4696
+ 注意:此字段可能返回 null,表示取不到有效值。
4697
+ */
4698
+ Description?: string;
4699
+ /**
4700
+ * 是否禁用
4701
+ 注意:此字段可能返回 null,表示取不到有效值。
4702
+ */
4703
+ Disable?: boolean;
4704
+ /**
4705
+ * 过期时间
4706
+ 注意:此字段可能返回 null,表示取不到有效值。
4707
+ */
4708
+ ExpiresAt?: number;
4709
+ /**
4710
+ * 创建时间
4711
+ 注意:此字段可能返回 null,表示取不到有效值。
4712
+ */
4713
+ CreateTime?: string;
4714
+ /**
4715
+ * 更新时间
4716
+ 注意:此字段可能返回 null,表示取不到有效值。
4717
+ */
4718
+ UpdateTime?: string;
4719
+ /**
4720
+ * 策略
4721
+ 注意:此字段可能返回 null,表示取不到有效值。
4722
+ */
4723
+ Permissions?: Array<Permission>;
4724
+ }
4534
4725
  /**
4535
4726
  * 用户配额返回值
4536
4727
  */
@@ -4662,6 +4853,15 @@ export interface CreateWebhookTriggerResponse {
4662
4853
  */
4663
4854
  RequestId?: string;
4664
4855
  }
4856
+ /**
4857
+ * ModifyServiceAccount返回参数结构体
4858
+ */
4859
+ export interface ModifyServiceAccountResponse {
4860
+ /**
4861
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4862
+ */
4863
+ RequestId?: string;
4864
+ }
4665
4865
  /**
4666
4866
  * CreateSignaturePolicy请求参数结构体
4667
4867
  */
@@ -4785,6 +4985,15 @@ export interface TcrInstanceToken {
4785
4985
  */
4786
4986
  ExpiredAt: number;
4787
4987
  }
4988
+ /**
4989
+ * ModifyUserPasswordPersonal请求参数结构体
4990
+ */
4991
+ export interface ModifyUserPasswordPersonalRequest {
4992
+ /**
4993
+ * 更新后的密码
4994
+ */
4995
+ Password: string;
4996
+ }
4788
4997
  /**
4789
4998
  * DeleteRepository请求参数结构体
4790
4999
  */
@@ -706,7 +706,7 @@ export interface Tag {
706
706
  */
707
707
  export interface LoginNode {
708
708
  /**
709
- * 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID:预付费,即包年包月<br><li>POSTPAID_BY_HOUR:按小时后付费<br>默认值:POSTPAID_BY_HOUR。
709
+ * 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID:预付费,即包年包月<br><li>POSTPAID_BY_HOUR:按小时后付费<br><li>SPOTPAID:竞价付费<br>默认值:POSTPAID_BY_HOUR。
710
710
  */
711
711
  InstanceChargeType?: string;
712
712
  /**