tencentcloud-sdk-nodejs-teo 4.1.309 → 4.1.310

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.
@@ -1,6 +1,6 @@
1
- import { v20220901 } from "./v20220901";
2
1
  import { v20220106 } from "./v20220106";
2
+ import { v20220901 } from "./v20220901";
3
3
  export const teo = {
4
- v20220901: v20220901,
5
4
  v20220106: v20220106,
5
+ v20220901: v20220901,
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-teo",
3
- "version": "4.1.309",
3
+ "version": "4.1.310",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -1,10 +1,10 @@
1
1
  export declare const teo: {
2
- v20220901: {
3
- Client: typeof import("./v20220901/teo_client").Client;
4
- Models: typeof import("./v20220901/teo_models");
5
- };
6
2
  v20220106: {
7
3
  Client: typeof import("./v20220106/teo_client").Client;
8
4
  Models: typeof import("./v20220106/teo_models");
9
5
  };
6
+ v20220901: {
7
+ Client: typeof import("./v20220901/teo_client").Client;
8
+ Models: typeof import("./v20220901/teo_models");
9
+ };
10
10
  };
@@ -1,9 +1,9 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.teo = void 0;
4
- const v20220901_1 = require("./v20220901");
5
4
  const v20220106_1 = require("./v20220106");
5
+ const v20220901_1 = require("./v20220901");
6
6
  exports.teo = {
7
- v20220901: v20220901_1.v20220901,
8
7
  v20220106: v20220106_1.v20220106,
8
+ v20220901: v20220901_1.v20220901,
9
9
  };
@@ -464,7 +464,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
464
464
  */
465
465
  DeleteL4ProxyRules(req: DeleteL4ProxyRulesRequest, cb?: (error: string, rep: DeleteL4ProxyRulesResponse) => void): Promise<DeleteL4ProxyRulesResponse>;
466
466
  /**
467
- * 创建自定义错误页面。
467
+ * 创建自定义响应页面。
468
468
  */
469
469
  CreateCustomizeErrorPage(req: CreateCustomizeErrorPageRequest, cb?: (error: string, rep: CreateCustomizeErrorPageResponse) => void): Promise<CreateCustomizeErrorPageResponse>;
470
470
  /**
@@ -943,7 +943,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
943
943
  */
944
944
  CreateMultiPathGatewaySecretKey(req: CreateMultiPathGatewaySecretKeyRequest, cb?: (error: string, rep: CreateMultiPathGatewaySecretKeyResponse) => void): Promise<CreateMultiPathGatewaySecretKeyResponse>;
945
945
  /**
946
- * 修改自定义错误页面。
946
+ * 修改自定义响应页面。
947
947
  */
948
948
  ModifyCustomErrorPage(req: ModifyCustomErrorPageRequest, cb?: (error: string, rep: ModifyCustomErrorPageResponse) => void): Promise<ModifyCustomErrorPageResponse>;
949
949
  /**
@@ -696,7 +696,7 @@ class Client extends TencentCloudCommon.AbstractClient {
696
696
  return this.request("DeleteL4ProxyRules", req, cb);
697
697
  }
698
698
  /**
699
- * 创建自定义错误页面。
699
+ * 创建自定义响应页面。
700
700
  */
701
701
  async CreateCustomizeErrorPage(req, cb) {
702
702
  return this.request("CreateCustomizeErrorPage", req, cb);
@@ -1393,7 +1393,7 @@ class Client extends TencentCloudCommon.AbstractClient {
1393
1393
  return this.request("CreateMultiPathGatewaySecretKey", req, cb);
1394
1394
  }
1395
1395
  /**
1396
- * 修改自定义错误页面。
1396
+ * 修改自定义响应页面。
1397
1397
  */
1398
1398
  async ModifyCustomErrorPage(req, cb) {
1399
1399
  return this.request("ModifyCustomErrorPage", req, cb);
@@ -8209,27 +8209,27 @@ export interface TimingDataItem {
8209
8209
  */
8210
8210
  export interface ModifyCustomErrorPageRequest {
8211
8211
  /**
8212
- * 自定义错误页面 ID
8212
+ * <p>自定义响应页面 ID。</p>
8213
8213
  */
8214
8214
  PageId: string;
8215
8215
  /**
8216
- * 站点 ID
8216
+ * <p>站点 ID。</p>
8217
8217
  */
8218
8218
  ZoneId: string;
8219
8219
  /**
8220
- * 自定义错误页名称,名称为2 - 60个字符。
8220
+ * <p>自定义响应页面名称,名称为 2 - 60 个字符。</p>
8221
8221
  */
8222
8222
  Name?: string;
8223
8223
  /**
8224
- * 自定义错误页描述,描述内容不超过60个字符。
8224
+ * <p>自定义响应页面描述,描述内容不超过 60 个字符。</p>
8225
8225
  */
8226
8226
  Description?: string;
8227
8227
  /**
8228
- * 自定义错误页面类型,取值有:<li>text/html</li><li>application/json。</li><li>plain/text。</li><li>text/xml。</li>
8228
+ * <p>自定义响应页面类型,取值有:</p><ul><li>text/html</li><li>application/json</li><li>plain/text</li><li>text/xml</li><li>text/css</li><li>text/javascript</li><li>application/javascript</li><li>text/markdown</li></ul>
8229
8229
  */
8230
8230
  ContentType?: string;
8231
8231
  /**
8232
- * 自定义错误页面内容。内容不超过 2KB。
8232
+ * <p>自定义响应页面内容。内容不超过 16KB。</p>
8233
8233
  */
8234
8234
  Content?: string;
8235
8235
  }
@@ -15766,7 +15766,7 @@ export interface ContentIdentifier {
15766
15766
  */
15767
15767
  export interface CreateCustomizeErrorPageResponse {
15768
15768
  /**
15769
- * 页面 ID
15769
+ * <p>自定义响应页面 ID。</p>
15770
15770
  */
15771
15771
  PageId?: string;
15772
15772
  /**
@@ -16619,23 +16619,23 @@ export interface ModifyFunctionRulePriorityResponse {
16619
16619
  */
16620
16620
  export interface CreateCustomizeErrorPageRequest {
16621
16621
  /**
16622
- * 站点 ID
16622
+ * <p>站点 ID。</p>
16623
16623
  */
16624
16624
  ZoneId: string;
16625
16625
  /**
16626
- * 自定义错误页名称,名称为 2-30 个字符。
16626
+ * <p>自定义响应页面名称,名称为 2-30 个字符。</p>
16627
16627
  */
16628
16628
  Name: string;
16629
16629
  /**
16630
- * 自定义错误页面类型,取值有:<li>text/html</li><li>application/json;</li><li>text/plain;</li><li>text/xml。</li>
16630
+ * <p>自定义响应页面类型,取值有:</p><ul><li>text/html</li><li>application/json</li><li>plain/text</li><li>text/xml</li><li>text/css</li><li>text/javascript</li><li>application/javascript</li><li>text/markdown</li></ul>
16631
16631
  */
16632
16632
  ContentType: string;
16633
16633
  /**
16634
- * 自定义错误页面描述,描述不超过 60 个字符。
16634
+ * <p>自定义响应页面描述,描述不超过 60 个字符。</p>
16635
16635
  */
16636
16636
  Description?: string;
16637
16637
  /**
16638
- * 自定义错误页面内容,内容不超过 2KB。
16638
+ * <p>自定义响应页面内容,内容不超过 16KB。</p>
16639
16639
  */
16640
16640
  Content?: string;
16641
16641
  }