tencentcloud-sdk-nodejs-teo 4.1.210 → 4.1.213

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-teo",
3
- "version": "4.1.210",
3
+ "version": "4.1.213",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -22,7 +22,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
22
22
  */
23
23
  CreateDnsRecord(req: CreateDnsRecordRequest, cb?: (error: string, rep: CreateDnsRecordResponse) => void): Promise<CreateDnsRecordResponse>;
24
24
  /**
25
- * 导出站点配置接口,本接口支持用户根据需要的配置项进行配置导出,导出的配置用于导入站点配置接口(ImportZoneConfig)进行配置导入。该功能仅支持标准版和企业版套餐站点使用。
25
+ * 导出站点配置接口,本接口支持用户根据需要的配置项进行配置导出,导出的配置用于导入站点配置接口(ImportZoneConfig)进行配置导入。
26
26
  */
27
27
  ExportZoneConfig(req: ExportZoneConfigRequest, cb?: (error: string, rep: ExportZoneConfigResponse) => void): Promise<ExportZoneConfigResponse>;
28
28
  /**
@@ -48,7 +48,7 @@ class Client extends TencentCloudCommon.AbstractClient {
48
48
  return this.request("CreateDnsRecord", req, cb);
49
49
  }
50
50
  /**
51
- * 导出站点配置接口,本接口支持用户根据需要的配置项进行配置导出,导出的配置用于导入站点配置接口(ImportZoneConfig)进行配置导入。该功能仅支持标准版和企业版套餐站点使用。
51
+ * 导出站点配置接口,本接口支持用户根据需要的配置项进行配置导出,导出的配置用于导入站点配置接口(ImportZoneConfig)进行配置导入。
52
52
  */
53
53
  async ExportZoneConfig(req, cb) {
54
54
  return this.request("ExportZoneConfig", req, cb);
@@ -3945,7 +3945,7 @@ export interface RateLimitTemplate {
3945
3945
  */
3946
3946
  export interface ConfigGroupWorkModeInfo {
3947
3947
  /**
3948
- * 配置组类型,可选项如下:<li>l7_acceleration: 七层加速配置组;</li><li>edge_functions: 边缘函数配置组。</li>
3948
+ * 配置组类型,可选项如下:<li>l7_acceleration: 七层加速配置组;</li><li>edge_functions: 边缘函数配置组。</li><li>web_security: Web 防护配置组。</li>
3949
3949
  */
3950
3950
  ConfigGroupType: string;
3951
3951
  /**
@@ -13114,8 +13114,7 @@ export interface ExportZoneConfigRequest {
13114
13114
  */
13115
13115
  ZoneId: string;
13116
13116
  /**
13117
- * 导出配置项的类型列表,不填表示导出所有类型的配置,当前支持的取值有:<li>L7AccelerationConfig:表示导出七层加速配置,对应控制台「站点加速-全局加速配置」和「站点加速-规则引擎」。</li>
13118
- 需注意:后续支持导出的类型会随着迭代增加,导出所有类型时需要注意导出文件大小,建议使用时指定需要导出的配置类型,以便控制请求响应包负载大小。
13117
+ * 导出配置项的类型列表,不填表示导出所有类型的配置,当前支持的取值有:<li>L7AccelerationConfig:表示导出七层加速配置,对应控制台「站点加速-全局加速配置」和「站点加速-规则引擎」。</li><li>WebSecurity:表示导出 Web 防护配置。</li> 需注意:后续支持导出的类型会随着迭代增加,导出所有类型时需要注意导出文件大小,建议使用时指定需要导出的配置类型,以便控制请求响应包负载大小。
13119
13118
  */
13120
13119
  Types?: Array<string>;
13121
13120
  }