tencentcloud-sdk-nodejs 4.1.137 → 4.1.139

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 (46) hide show
  1. package/es/common/sdk_version.js +1 -1
  2. package/es/services/ccc/v20200210/ccc_client.js +6 -0
  3. package/es/services/dnspod/v20210323/dnspod_client.js +6 -0
  4. package/es/services/es/v20180416/es_client.js +13 -4
  5. package/es/services/tcss/v20201101/tcss_client.js +3 -0
  6. package/es/services/teo/v20220901/teo_client.js +11 -5
  7. package/package.json +1 -1
  8. package/tencentcloud/common/sdk_version.d.ts +1 -1
  9. package/tencentcloud/common/sdk_version.js +1 -1
  10. package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +9 -1
  11. package/tencentcloud/services/ccc/v20200210/ccc_client.js +12 -0
  12. package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +131 -8
  13. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +2 -2
  14. package/tencentcloud/services/cfs/v20190719/cfs_client.d.ts +1 -1
  15. package/tencentcloud/services/cfs/v20190719/cfs_client.js +1 -1
  16. package/tencentcloud/services/cfs/v20190719/cfs_models.d.ts +81 -9
  17. package/tencentcloud/services/clb/v20180317/clb_models.d.ts +12 -0
  18. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +7 -3
  19. package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +29 -1
  20. package/tencentcloud/services/dnspod/v20210323/dnspod_client.d.ts +9 -3
  21. package/tencentcloud/services/dnspod/v20210323/dnspod_client.js +12 -2
  22. package/tencentcloud/services/dnspod/v20210323/dnspod_models.d.ts +114 -62
  23. package/tencentcloud/services/es/v20180416/es_client.d.ts +17 -5
  24. package/tencentcloud/services/es/v20180416/es_client.js +24 -6
  25. package/tencentcloud/services/es/v20180416/es_models.d.ts +224 -0
  26. package/tencentcloud/services/ess/v20201111/ess_client.d.ts +9 -7
  27. package/tencentcloud/services/ess/v20201111/ess_client.js +9 -7
  28. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +2 -2
  29. package/tencentcloud/services/gme/v20180711/gme_client.d.ts +2 -2
  30. package/tencentcloud/services/gme/v20180711/gme_models.d.ts +103 -13
  31. package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +1 -0
  32. package/tencentcloud/services/lighthouse/v20200324/lighthouse_models.d.ts +38 -14
  33. package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +2 -0
  34. package/tencentcloud/services/redis/v20180412/redis_models.d.ts +8 -0
  35. package/tencentcloud/services/tat/v20201028/tat_models.d.ts +4 -0
  36. package/tencentcloud/services/tcss/v20201101/tcss_client.d.ts +5 -1
  37. package/tencentcloud/services/tcss/v20201101/tcss_client.js +6 -0
  38. package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +18 -0
  39. package/tencentcloud/services/teo/v20220901/teo_client.d.ts +26 -7
  40. package/tencentcloud/services/teo/v20220901/teo_client.js +32 -9
  41. package/tencentcloud/services/teo/v20220901/teo_models.d.ts +157 -85
  42. package/tencentcloud/services/thpc/v20230321/thpc_models.d.ts +1 -1
  43. package/tencentcloud/services/tione/v20211111/tione_models.d.ts +7 -2
  44. package/tencentcloud/services/tke/v20180525/tke_models.d.ts +89 -30
  45. package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +46 -1
  46. package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +3 -3
@@ -443,6 +443,23 @@ export interface OriginDetail {
443
443
  */
444
444
  VodBucketId?: string;
445
445
  }
446
+ /**
447
+ * DescribeSecurityClientAttester返回参数结构体
448
+ */
449
+ export interface DescribeSecurityClientAttesterResponse {
450
+ /**
451
+ * 认证选项总数量。
452
+ */
453
+ TotalCount?: number;
454
+ /**
455
+ * 认证选项列表。
456
+ */
457
+ ClientAttesters?: Array<ClientAttester>;
458
+ /**
459
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
460
+ */
461
+ RequestId?: string;
462
+ }
446
463
  /**
447
464
  * 多通道网关示例实例与回源 IP 网段的绑定关系,以及回源 IP 网段详情。
448
465
  */
@@ -1468,25 +1485,21 @@ export interface CreateMultiPathGatewaySecretKeyResponse {
1468
1485
  RequestId?: string;
1469
1486
  }
1470
1487
  /**
1471
- * DescribeSecurityIPGroupContent请求参数结构体
1488
+ * DescribeAccelerationDomains返回参数结构体
1472
1489
  */
1473
- export interface DescribeSecurityIPGroupContentRequest {
1474
- /**
1475
- * 站点 ID。
1476
- */
1477
- ZoneId: string;
1490
+ export interface DescribeAccelerationDomainsResponse {
1478
1491
  /**
1479
- * IP 组 ID。
1492
+ * 符合查询条件的加速域名个数。
1480
1493
  */
1481
- GroupId: number;
1494
+ TotalCount?: number;
1482
1495
  /**
1483
- * 分页查询限制数目。默认值:2000,最大值:100000。
1496
+ * 符合查询条件的所有加速域名的信息。
1484
1497
  */
1485
- Limit?: number;
1498
+ AccelerationDomains?: Array<AccelerationDomain>;
1486
1499
  /**
1487
- * 分页查询偏移量。默认值:0
1500
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId
1488
1501
  */
1489
- Offset?: number;
1502
+ RequestId?: string;
1490
1503
  }
1491
1504
  /**
1492
1505
  * 功能总开关
@@ -1516,6 +1529,23 @@ export interface IdentifyZoneResponse {
1516
1529
  */
1517
1530
  RequestId?: string;
1518
1531
  }
1532
+ /**
1533
+ * DescribeSecurityAPIService请求参数结构体
1534
+ */
1535
+ export interface DescribeSecurityAPIServiceRequest {
1536
+ /**
1537
+ * 站点 ID。
1538
+ */
1539
+ ZoneId: string;
1540
+ /**
1541
+ * 分页查询限制数目。默认值:20,最大值:100。
1542
+ */
1543
+ Limit?: number;
1544
+ /**
1545
+ * 分页查询偏移量。默认值:0。
1546
+ */
1547
+ Offset?: number;
1548
+ }
1519
1549
  /**
1520
1550
  * 回源请求参数查询字符串配置。
1521
1551
  */
@@ -3033,21 +3063,41 @@ export interface CustomField {
3033
3063
  Enabled?: boolean;
3034
3064
  }
3035
3065
  /**
3036
- * DescribeSecurityAPIService请求参数结构体
3066
+ * Bot 规则,下列规则ID可参考接口 DescribeBotManagedRules返回的ID信息
3037
3067
  */
3038
- export interface DescribeSecurityAPIServiceRequest {
3068
+ export interface BotManagedRule {
3039
3069
  /**
3040
- * 站点 ID。
3070
+ * 触发规则后的处置方式,取值有:
3071
+ <li>drop:拦截;</li>
3072
+ <li>trans:放行;</li>
3073
+ <li>alg:Javascript挑战;</li>
3074
+ <li>monitor:观察。</li>
3041
3075
  */
3042
- ZoneId: string;
3076
+ Action: string;
3043
3077
  /**
3044
- * 分页查询限制数目。默认值:20,最大值:100。
3078
+ * 本规则的ID。仅出参使用。
3045
3079
  */
3046
- Limit?: number;
3080
+ RuleID?: number;
3047
3081
  /**
3048
- * 分页查询偏移量。默认值:0。
3082
+ * 放行的规则ID。默认所有规则不配置放行。
3049
3083
  */
3050
- Offset?: number;
3084
+ TransManagedIds?: Array<number | bigint>;
3085
+ /**
3086
+ * JS挑战的规则ID。默认所有规则不配置JS挑战。
3087
+ */
3088
+ AlgManagedIds?: Array<number | bigint>;
3089
+ /**
3090
+ * 数字验证码的规则ID。默认所有规则不配置数字验证码。
3091
+ */
3092
+ CapManagedIds?: Array<number | bigint>;
3093
+ /**
3094
+ * 观察的规则ID。默认所有规则不配置观察。
3095
+ */
3096
+ MonManagedIds?: Array<number | bigint>;
3097
+ /**
3098
+ * 拦截的规则ID。默认所有规则不配置拦截。
3099
+ */
3100
+ DropManagedIds?: Array<number | bigint>;
3051
3101
  }
3052
3102
  /**
3053
3103
  * Bot 浏览器校验规则(原主动特征识别规则)的 Action。
@@ -3098,41 +3148,21 @@ export interface RangeOriginPullParameters {
3098
3148
  Switch?: string;
3099
3149
  }
3100
3150
  /**
3101
- * Bot 规则,下列规则ID可参考接口 DescribeBotManagedRules返回的ID信息
3151
+ * ApplyFreeCertificate返回参数结构体
3102
3152
  */
3103
- export interface BotManagedRule {
3104
- /**
3105
- * 触发规则后的处置方式,取值有:
3106
- <li>drop:拦截;</li>
3107
- <li>trans:放行;</li>
3108
- <li>alg:Javascript挑战;</li>
3109
- <li>monitor:观察。</li>
3110
- */
3111
- Action: string;
3112
- /**
3113
- * 本规则的ID。仅出参使用。
3114
- */
3115
- RuleID?: number;
3116
- /**
3117
- * 放行的规则ID。默认所有规则不配置放行。
3118
- */
3119
- TransManagedIds?: Array<number | bigint>;
3120
- /**
3121
- * JS挑战的规则ID。默认所有规则不配置JS挑战。
3122
- */
3123
- AlgManagedIds?: Array<number | bigint>;
3153
+ export interface ApplyFreeCertificateResponse {
3124
3154
  /**
3125
- * 数字验证码的规则ID。默认所有规则不配置数字验证码。
3155
+ * 当 VerificationMethod 为 dns_challenge 时,域名申请免费证书的相关验证信息。
3126
3156
  */
3127
- CapManagedIds?: Array<number | bigint>;
3157
+ DnsVerification?: DnsVerification;
3128
3158
  /**
3129
- * 观察的规则ID。默认所有规则不配置观察。
3159
+ * 当 VerificationMethod 为 http_challenge 时,域名申请免费证书的相关验证信息。
3130
3160
  */
3131
- MonManagedIds?: Array<number | bigint>;
3161
+ FileVerification?: FileVerification;
3132
3162
  /**
3133
- * 拦截的规则ID。默认所有规则不配置拦截。
3163
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3134
3164
  */
3135
- DropManagedIds?: Array<number | bigint>;
3165
+ RequestId?: string;
3136
3166
  }
3137
3167
  /**
3138
3168
  * 当前生效的回源 IP 网段。
@@ -8432,6 +8462,19 @@ export interface ModifyHostsCertificateRequest {
8432
8462
  */
8433
8463
  UpstreamCertInfo?: UpstreamCertInfo;
8434
8464
  }
8465
+ /**
8466
+ * ModifyOriginACL请求参数结构体
8467
+ */
8468
+ export interface ModifyOriginACLRequest {
8469
+ /**
8470
+ * 站点 ID。
8471
+ */
8472
+ ZoneId: string;
8473
+ /**
8474
+ * 需要启用/关闭特定回源 IP 网段回源的实例。
8475
+ */
8476
+ OriginACLEntities?: Array<OriginACLEntity>;
8477
+ }
8435
8478
  /**
8436
8479
  * ModifyOriginGroup返回参数结构体
8437
8480
  */
@@ -8721,21 +8764,25 @@ export interface ReturnCustomPageActionParameters {
8721
8764
  ErrorPageId: string;
8722
8765
  }
8723
8766
  /**
8724
- * DescribeAccelerationDomains返回参数结构体
8767
+ * DescribeSecurityIPGroupContent请求参数结构体
8725
8768
  */
8726
- export interface DescribeAccelerationDomainsResponse {
8769
+ export interface DescribeSecurityIPGroupContentRequest {
8727
8770
  /**
8728
- * 符合查询条件的加速域名个数。
8771
+ * 站点 ID。
8729
8772
  */
8730
- TotalCount?: number;
8773
+ ZoneId: string;
8731
8774
  /**
8732
- * 符合查询条件的所有加速域名的信息。
8775
+ * IP 组 ID。
8733
8776
  */
8734
- AccelerationDomains?: Array<AccelerationDomain>;
8777
+ GroupId: number;
8735
8778
  /**
8736
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId
8779
+ * 分页查询限制数目。默认值:2000,最大值:100000
8737
8780
  */
8738
- RequestId?: string;
8781
+ Limit?: number;
8782
+ /**
8783
+ * 分页查询偏移量。默认值:0。
8784
+ */
8785
+ Offset?: number;
8739
8786
  }
8740
8787
  /**
8741
8788
  * BindZoneToPlan返回参数结构体
@@ -9809,17 +9856,26 @@ export interface ModifySecurityClientAttesterResponse {
9809
9856
  RequestId?: string;
9810
9857
  }
9811
9858
  /**
9812
- * ModifyOriginACL请求参数结构体
9859
+ * CheckFreeCertificateVerification返回参数结构体
9813
9860
  */
9814
- export interface ModifyOriginACLRequest {
9861
+ export interface CheckFreeCertificateVerificationResponse {
9815
9862
  /**
9816
- * 站点 ID。
9863
+ * 免费证书申请成功时,该证书颁发给的域名。
9864
+ 注意:一个域名只允许申请一本免费证书, 如果已经有泛域名申请了免费证书的情况下,其子域名会匹配使用该泛域名证书。
9817
9865
  */
9818
- ZoneId: string;
9866
+ CommonName?: string;
9819
9867
  /**
9820
- * 需要启用/关闭特定回源 IP 网段回源的实例。
9868
+ * 免费证书申请成功时,该证书使用的签名算法,当前仅支持 RSA 2048。
9821
9869
  */
9822
- OriginACLEntities?: Array<OriginACLEntity>;
9870
+ SignatureAlgorithm?: string;
9871
+ /**
9872
+ * 免费证书申请成功时,该证书的过期时间。时间为世界标准时间(UTC), 遵循 ISO 8601 标准的日期和时间格式。
9873
+ */
9874
+ ExpireTime?: string;
9875
+ /**
9876
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9877
+ */
9878
+ RequestId?: string;
9823
9879
  }
9824
9880
  /**
9825
9881
  * 慢速攻击的首段包配置。
@@ -9963,19 +10019,6 @@ export interface JustInTimeTranscodeTemplate {
9963
10019
  */
9964
10020
  UpdateTime?: string;
9965
10021
  }
9966
- /**
9967
- * DeleteSecurityAPIService请求参数结构体
9968
- */
9969
- export interface DeleteSecurityAPIServiceRequest {
9970
- /**
9971
- * 站点 ID。
9972
- */
9973
- ZoneId: string;
9974
- /**
9975
- * API 服务 ID 列表。
9976
- */
9977
- APIServiceIds?: Array<string>;
9978
- }
9979
10022
  /**
9980
10023
  * 验证码认证实例信息。
9981
10024
  */
@@ -10768,21 +10811,17 @@ export interface UpstreamFollowRedirectParameters {
10768
10811
  MaxTimes?: number;
10769
10812
  }
10770
10813
  /**
10771
- * DescribeSecurityClientAttester返回参数结构体
10814
+ * DeleteSecurityAPIService请求参数结构体
10772
10815
  */
10773
- export interface DescribeSecurityClientAttesterResponse {
10774
- /**
10775
- * 认证选项总数量。
10776
- */
10777
- TotalCount?: number;
10816
+ export interface DeleteSecurityAPIServiceRequest {
10778
10817
  /**
10779
- * 认证选项列表。
10818
+ * 站点 ID。
10780
10819
  */
10781
- ClientAttesters?: Array<ClientAttester>;
10820
+ ZoneId: string;
10782
10821
  /**
10783
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10822
+ * API 服务 ID 列表。
10784
10823
  */
10785
- RequestId?: string;
10824
+ APIServiceIds?: Array<string>;
10786
10825
  }
10787
10826
  /**
10788
10827
  * 应用代理实例
@@ -13501,6 +13540,26 @@ export interface DescribeMultiPathGatewayOriginACLRequest {
13501
13540
  */
13502
13541
  GatewayId: string;
13503
13542
  }
13543
+ /**
13544
+ * ApplyFreeCertificate请求参数结构体
13545
+ */
13546
+ export interface ApplyFreeCertificateRequest {
13547
+ /**
13548
+ * 站点ID。
13549
+ */
13550
+ ZoneId: string;
13551
+ /**
13552
+ * 申请免费证书的目标域名。
13553
+ */
13554
+ Domain: string;
13555
+ /**
13556
+ * 申请免费证书时验证方式,详细验证方式说明参考[免费证书申请方式说明文档](https://cloud.tencent.com/document/product/1552/90437) ,相关取值有:
13557
+ <li>http_challenge:HTTP 访问文件验证方式,通过 HTTP 访问域名指定 URL 获取文件信息以完成免费证书申请验证;</li>
13558
+ <li>dns_challenge:DNS 委派验证方式,通过添加指定的主机记录解析指向 EdgeOne 以完成免费证书申请验证。</li>
13559
+ 注意:在触发本接口后,你需要根据返回的验证信息,完成验证内容配置。配置完成后,还需要通过<a href = 'https://tcloud4api.woa.com/document/product/1657/927938?!preview&!document=1'>检查免费证书申请结果</a>接口进行验证,验证通过后,即可申请成功。在免费证书申请成功后,你可以调用<a href = 'https://cloud.tencent.com/document/product/1552/80764'>配置域名证书</a>接口为当前域名部署免费证书。
13560
+ */
13561
+ VerificationMethod: string;
13562
+ }
13504
13563
  /**
13505
13564
  * 状态码缓存 TTL 配置参数。
13506
13565
  */
@@ -14941,6 +15000,19 @@ export interface CheckCnameStatusRequest {
14941
15000
  */
14942
15001
  RecordNames: Array<string>;
14943
15002
  }
15003
+ /**
15004
+ * CheckFreeCertificateVerification请求参数结构体
15005
+ */
15006
+ export interface CheckFreeCertificateVerificationRequest {
15007
+ /**
15008
+ * 站点 ID。
15009
+ */
15010
+ ZoneId: string;
15011
+ /**
15012
+ * 加速域名,该域名为[申请免费证书](https://tcloud4api.woa.com/document/product/1657/927654?!preview&!document=1)时使用的域名。
15013
+ */
15014
+ Domain: string;
15015
+ }
14944
15016
  /**
14945
15017
  * 检测长度限制配置条件。
14946
15018
  */
@@ -2114,7 +2114,7 @@ export interface CreateWorkspacesRequest {
2114
2114
  */
2115
2115
  SpaceName?: string;
2116
2116
  /**
2117
- * 工作空间登陆设置
2117
+ * 工作空间登录设置
2118
2118
  */
2119
2119
  LoginSettings?: LoginSettings;
2120
2120
  /**
@@ -190,7 +190,7 @@ export interface CreateModelServiceRequest {
190
190
  */
191
191
  Sidecar?: SidecarSpec;
192
192
  /**
193
- * 数据盘批量挂载配置,当前仅支持CFS,仅针对“模型来源-资源组缓存”。
193
+ * 数据盘批量挂载配置,当前仅支持CFS,仅针对“模型来源-腾讯云存储、模型来源-腾讯云容器镜像、模型来源-资源组、模型来源-数据源”。
194
194
  */
195
195
  VolumeMounts?: Array<VolumeMount>;
196
196
  }
@@ -1545,7 +1545,7 @@ export interface ModifyModelServiceRequest {
1545
1545
  */
1546
1546
  ResourceGroupId?: string;
1547
1547
  /**
1548
- * 数据盘批量挂载配置,当前仅支持CFS,仅针对“模型来源-资源组缓存”。
1548
+ * 数据盘批量挂载配置,当前仅支持CFS,仅针对“模型来源-腾讯云存储、模型来源-腾讯云容器镜像、模型来源-资源组、模型来源-数据源”。
1549
1549
  */
1550
1550
  VolumeMounts?: Array<VolumeMount>;
1551
1551
  }
@@ -4169,6 +4169,11 @@ export interface ResourceInfo {
4169
4169
  * 创建或更新时无需填写,仅展示需要关注。详细的GPU使用信息。
4170
4170
  */
4171
4171
  RealGpuDetailSet?: Array<GpuDetail>;
4172
+ /**
4173
+ * 是否开启rdma
4174
+ 注意:此字段可能返回 null,表示取不到有效值。
4175
+ */
4176
+ EnableRDMA?: boolean;
4172
4177
  }
4173
4178
  /**
4174
4179
  * 资源信息