tencentcloud-sdk-nodejs 4.1.230 → 4.1.231

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 (28) hide show
  1. package/es/common/sdk_version.js +1 -1
  2. package/es/services/cfw/v20190904/cfw_client.js +3 -0
  3. package/es/services/csip/v20221121/csip_client.js +8 -2
  4. package/es/services/mna/v20210119/mna_client.js +3 -0
  5. package/es/services/tcb/v20180608/tcb_client.js +11 -2
  6. package/package.json +1 -1
  7. package/tencentcloud/common/sdk_version.d.ts +1 -1
  8. package/tencentcloud/common/sdk_version.js +1 -1
  9. package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +5 -1
  10. package/tencentcloud/services/cfw/v20190904/cfw_client.js +6 -0
  11. package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +84 -0
  12. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +5 -22
  13. package/tencentcloud/services/csip/v20221121/csip_client.d.ts +11 -3
  14. package/tencentcloud/services/csip/v20221121/csip_client.js +15 -3
  15. package/tencentcloud/services/csip/v20221121/csip_models.d.ts +357 -61
  16. package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +12 -17
  17. package/tencentcloud/services/emr/v20190103/emr_models.d.ts +44 -28
  18. package/tencentcloud/services/ims/v20201229/ims_models.d.ts +8 -4
  19. package/tencentcloud/services/lke/v20231130/lke_models.d.ts +4 -0
  20. package/tencentcloud/services/mna/v20210119/mna_client.d.ts +5 -1
  21. package/tencentcloud/services/mna/v20210119/mna_client.js +6 -0
  22. package/tencentcloud/services/mna/v20210119/mna_models.d.ts +65 -24
  23. package/tencentcloud/services/mps/v20190612/mps_models.d.ts +21 -31
  24. package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +15 -3
  25. package/tencentcloud/services/tcb/v20180608/tcb_client.js +21 -3
  26. package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +155 -63
  27. package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +21 -0
  28. package/tencentcloud/services/tione/v20211111/tione_models.d.ts +1 -0
@@ -197,6 +197,15 @@ export interface CheckTcbServiceResponse {
197
197
  */
198
198
  RequestId?: string;
199
199
  }
200
+ /**
201
+ * ReleaseEnv返回参数结构体
202
+ */
203
+ export interface ReleaseEnvResponse {
204
+ /**
205
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
206
+ */
207
+ RequestId?: string;
208
+ }
200
209
  /**
201
210
  * 可以为每种语言配置一个字符串。比如:name,中文展示为:名字,英文展示为 name,韩文展示为:이름
202
211
  */
@@ -507,6 +516,20 @@ export interface DescribeEnvsRequest {
507
516
  */
508
517
  Offset?: number;
509
518
  }
519
+ /**
520
+ * ModifyUser返回参数结构体
521
+ */
522
+ export interface ModifyUserResponse {
523
+ /**
524
+ * 修改用户返回值
525
+ 注意:此字段可能返回 null,表示取不到有效值。
526
+ */
527
+ Data?: ModifyUserResp;
528
+ /**
529
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
530
+ */
531
+ RequestId?: string;
532
+ }
510
533
  /**
511
534
  * 删除tcb用户返回值
512
535
  */
@@ -653,14 +676,17 @@ export interface BanConfig {
653
676
  CountryBlackList?: Array<string>;
654
677
  }
655
678
  /**
656
- * ModifyUser返回参数结构体
679
+ * AllocateEnv返回参数结构体
657
680
  */
658
- export interface ModifyUserResponse {
681
+ export interface AllocateEnvResponse {
659
682
  /**
660
- * 修改用户返回值
661
- 注意:此字段可能返回 null,表示取不到有效值。
683
+ * <p>环境ID</p>
662
684
  */
663
- Data?: ModifyUserResp;
685
+ EnvId?: string;
686
+ /**
687
+ * <p>回显 客户平台的应用标识,如果没有则不传</p>
688
+ */
689
+ ExternalAppId?: string;
664
690
  /**
665
691
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
666
692
  */
@@ -1665,6 +1691,19 @@ export interface KVPair {
1665
1691
  */
1666
1692
  Value: string;
1667
1693
  }
1694
+ /**
1695
+ * AllocateEnv请求参数结构体
1696
+ */
1697
+ export interface AllocateEnvRequest {
1698
+ /**
1699
+ * <p>分配请求ID,会按这个值做幂等</p><p>入参限制:长度不超过64</p>
1700
+ */
1701
+ AllocateId: string;
1702
+ /**
1703
+ * <p>客户平台的应用标识,如果没有则不传</p>
1704
+ */
1705
+ ExternalAppId?: string;
1706
+ }
1668
1707
  /**
1669
1708
  * 函数的信息
1670
1709
  */
@@ -3340,13 +3379,35 @@ export interface HTTPServiceQPSPerClient {
3340
3379
  LimitValue?: number;
3341
3380
  }
3342
3381
  /**
3343
- * DescribeAIModels请求参数结构体
3382
+ * AssumeRoleForAllocatedEnv返回参数结构体
3344
3383
  */
3345
- export interface DescribeAIModelsRequest {
3384
+ export interface AssumeRoleForAllocatedEnvResponse {
3346
3385
  /**
3347
- * 环境id
3386
+ * <p>SecretId</p>
3348
3387
  */
3349
- EnvId: string;
3388
+ SecretId?: string;
3389
+ /**
3390
+ * <p>SecretKey</p>
3391
+ */
3392
+ SecretKey?: string;
3393
+ /**
3394
+ * <p>Token值</p>
3395
+ 注意:此字段可能返回 null,表示取不到有效值。
3396
+ */
3397
+ Token?: string;
3398
+ /**
3399
+ * <p>过期时间戳</p>
3400
+ 注意:此字段可能返回 null,表示取不到有效值。
3401
+ */
3402
+ ExpiredTime?: number;
3403
+ /**
3404
+ * <p>是否从缓存中加载。标明该值是否实时从sts服务获取,还是从缓存中获取。调用方可不关心</p>
3405
+ */
3406
+ IsCache?: boolean;
3407
+ /**
3408
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3409
+ */
3410
+ RequestId?: string;
3350
3411
  }
3351
3412
  /**
3352
3413
  * 登录短信验证码发送配置。用于管理登录时使用的短信验证码发送的通道相关设置,目前提供云开发默认短信包和客户自定义短信包,推荐使用云开发默认短信包。
@@ -3603,6 +3664,19 @@ export interface DestroyMySQLResult {
3603
3664
  */
3604
3665
  TaskName?: string;
3605
3666
  }
3667
+ /**
3668
+ * ReleaseEnv请求参数结构体
3669
+ */
3670
+ export interface ReleaseEnvRequest {
3671
+ /**
3672
+ * <p>环境ID</p>
3673
+ */
3674
+ EnvId?: string;
3675
+ /**
3676
+ * <p>分配请求ID</p>
3677
+ */
3678
+ AllocateId?: string;
3679
+ }
3606
3680
  /**
3607
3681
  * CreateMySQL请求参数结构体
3608
3682
  */
@@ -3784,17 +3858,53 @@ export interface HTTPServiceRouteQPSPolicy {
3784
3858
  QPSPerClient?: HTTPServiceQPSPerClient;
3785
3859
  }
3786
3860
  /**
3787
- * DescribeDatabaseACL请求参数结构体
3861
+ * CreateUser请求参数结构体
3788
3862
  */
3789
- export interface DescribeDatabaseACLRequest {
3863
+ export interface CreateUserRequest {
3790
3864
  /**
3791
- * 环境ID
3865
+ * 环境id
3792
3866
  */
3793
3867
  EnvId: string;
3794
3868
  /**
3795
- * 集合名称
3869
+ * 用户名,用户名规则:1. 长度1-64字符 2. 只能包含大小写英文字母、数字和符号 . _ - 3. 只能以字母或数字开头 4. 不能重复
3796
3870
  */
3797
- CollectionName: string;
3871
+ Name: string;
3872
+ /**
3873
+ * 用户ID,最多64字符,如不传则系统自动生成
3874
+ */
3875
+ Uid?: string;
3876
+ /**
3877
+ * 用户类型:internalUser-内部用户、externalUser-外部用户,默认internalUser(内部用户)
3878
+ */
3879
+ Type?: string;
3880
+ /**
3881
+ * 密码,传入Uid时密码可不传。密码规则:1. 长度8-32字符(推荐12位以上) 2. 不能以特殊字符开头 3. 至少包含以下四项中的三项:小写字母a-z、大写字母A-Z、数字0-9、特殊字符()!@#$%^&*\|?><_-
3882
+ */
3883
+ Password?: string;
3884
+ /**
3885
+ * 用户状态:ACTIVE(激活)、BLOCKED(冻结),默认激活
3886
+ */
3887
+ UserStatus?: string;
3888
+ /**
3889
+ * 用户昵称,长度2-64字符
3890
+ */
3891
+ NickName?: string;
3892
+ /**
3893
+ * 手机号,不能重复
3894
+ */
3895
+ Phone?: string;
3896
+ /**
3897
+ * 邮箱地址,不能重复
3898
+ */
3899
+ Email?: string;
3900
+ /**
3901
+ * 头像链接,可访问的公网URL
3902
+ */
3903
+ AvatarUrl?: string;
3904
+ /**
3905
+ * 用户描述,最多200字符
3906
+ */
3907
+ Description?: string;
3798
3908
  }
3799
3909
  /**
3800
3910
  * CreateApiKey返回参数结构体
@@ -3884,6 +3994,15 @@ export interface TableInfo {
3884
3994
  */
3885
3995
  IndexSize?: number;
3886
3996
  }
3997
+ /**
3998
+ * AssumeRoleForAllocatedEnv请求参数结构体
3999
+ */
4000
+ export interface AssumeRoleForAllocatedEnvRequest {
4001
+ /**
4002
+ * <p>环境ID</p>
4003
+ */
4004
+ EnvId: string;
4005
+ }
3887
4006
  /**
3888
4007
  * CreateAIModel请求参数结构体
3889
4008
  */
@@ -4892,6 +5011,15 @@ export interface DescribeVmSpecResponse {
4892
5011
  */
4893
5012
  RequestId?: string;
4894
5013
  }
5014
+ /**
5015
+ * DescribeAIModels请求参数结构体
5016
+ */
5017
+ export interface DescribeAIModelsRequest {
5018
+ /**
5019
+ * 环境id
5020
+ */
5021
+ EnvId: string;
5022
+ }
4895
5023
  /**
4896
5024
  * 多语言文字,在 Locale 中 展示的 Message
4897
5025
  */
@@ -4930,55 +5058,6 @@ export interface WxGatewayCustomConfig {
4930
5058
  */
4931
5059
  IsAcceptHttpOne?: boolean;
4932
5060
  }
4933
- /**
4934
- * CreateUser请求参数结构体
4935
- */
4936
- export interface CreateUserRequest {
4937
- /**
4938
- * 环境id
4939
- */
4940
- EnvId: string;
4941
- /**
4942
- * 用户名,用户名规则:1. 长度1-64字符 2. 只能包含大小写英文字母、数字和符号 . _ - 3. 只能以字母或数字开头 4. 不能重复
4943
- */
4944
- Name: string;
4945
- /**
4946
- * 用户ID,最多64字符,如不传则系统自动生成
4947
- */
4948
- Uid?: string;
4949
- /**
4950
- * 用户类型:internalUser-内部用户、externalUser-外部用户,默认internalUser(内部用户)
4951
- */
4952
- Type?: string;
4953
- /**
4954
- * 密码,传入Uid时密码可不传。密码规则:1. 长度8-32字符(推荐12位以上) 2. 不能以特殊字符开头 3. 至少包含以下四项中的三项:小写字母a-z、大写字母A-Z、数字0-9、特殊字符()!@#$%^&*\|?><_-
4955
- */
4956
- Password?: string;
4957
- /**
4958
- * 用户状态:ACTIVE(激活)、BLOCKED(冻结),默认激活
4959
- */
4960
- UserStatus?: string;
4961
- /**
4962
- * 用户昵称,长度2-64字符
4963
- */
4964
- NickName?: string;
4965
- /**
4966
- * 手机号,不能重复
4967
- */
4968
- Phone?: string;
4969
- /**
4970
- * 邮箱地址,不能重复
4971
- */
4972
- Email?: string;
4973
- /**
4974
- * 头像链接,可访问的公网URL
4975
- */
4976
- AvatarUrl?: string;
4977
- /**
4978
- * 用户描述,最多200字符
4979
- */
4980
- Description?: string;
4981
- }
4982
5061
  /**
4983
5062
  * DescribeTable返回参数结构体
4984
5063
  */
@@ -4996,6 +5075,19 @@ export interface DescribeTableResponse {
4996
5075
  */
4997
5076
  RequestId?: string;
4998
5077
  }
5078
+ /**
5079
+ * DescribeDatabaseACL请求参数结构体
5080
+ */
5081
+ export interface DescribeDatabaseACLRequest {
5082
+ /**
5083
+ * 环境ID
5084
+ */
5085
+ EnvId: string;
5086
+ /**
5087
+ * 集合名称
5088
+ */
5089
+ CollectionName: string;
5090
+ }
4999
5091
  /**
5000
5092
  * ExecutePGSql请求参数结构体
5001
5093
  */
@@ -8947,6 +8947,10 @@ export interface RabbitMQVirtualHostInfo {
8947
8947
  * 修改时间时间戳
8948
8948
  */
8949
8949
  ModifyTs?: number;
8950
+ /**
8951
+ * 基础配额信息
8952
+ */
8953
+ Quota?: RabbitMQVHostBaseQuota;
8950
8954
  }
8951
8955
  /**
8952
8956
  * ModifyRocketMQRole返回参数结构体
@@ -10099,6 +10103,23 @@ export interface DescribeBindVpcsRequest {
10099
10103
  */
10100
10104
  ClusterId?: string;
10101
10105
  }
10106
+ /**
10107
+ * RabbitMQ 虚拟主机基础配额信息
10108
+ */
10109
+ export interface RabbitMQVHostBaseQuota {
10110
+ /**
10111
+ * 单个 vhost 下允许的最大连接数
10112
+ */
10113
+ MaxConnectionPerVhost?: number;
10114
+ /**
10115
+ * 单个 vhost 下允许的最大交换机数
10116
+ */
10117
+ MaxExchangePerVhost?: number;
10118
+ /**
10119
+ * 单个 vhost 下允许的最大队列数
10120
+ */
10121
+ MaxQueuePerVhost?: number;
10122
+ }
10102
10123
  /**
10103
10124
  * 主题关键信息
10104
10125
  */
@@ -4513,6 +4513,7 @@ export interface Workspace {
4513
4513
  CreateTime?: string;
4514
4514
  /**
4515
4515
  * <p>绑定的资源组信息</p>
4516
+ * @deprecated
4516
4517
  */
4517
4518
  ResourceGroups?: Array<ResourceGroupInWorkspace>;
4518
4519
  /**