tencentcloud-sdk-nodejs-gaap 4.1.19 → 4.1.20
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
|
@@ -384,7 +384,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
384
384
|
*/
|
|
385
385
|
DescribeProxyStatistics(req: DescribeProxyStatisticsRequest, cb?: (error: string, rep: DescribeProxyStatisticsResponse) => void): Promise<DescribeProxyStatisticsResponse>;
|
|
386
386
|
/**
|
|
387
|
-
*
|
|
387
|
+
* 查询指定域名的错误响应
|
|
388
388
|
*/
|
|
389
389
|
DescribeDomainErrorPageInfo(req: DescribeDomainErrorPageInfoRequest, cb?: (error: string, rep: DescribeDomainErrorPageInfoResponse) => void): Promise<DescribeDomainErrorPageInfoResponse>;
|
|
390
390
|
/**
|
|
@@ -590,7 +590,7 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
590
590
|
return this.request("DescribeProxyStatistics", req, cb);
|
|
591
591
|
}
|
|
592
592
|
/**
|
|
593
|
-
*
|
|
593
|
+
* 查询指定域名的错误响应
|
|
594
594
|
*/
|
|
595
595
|
async DescribeDomainErrorPageInfo(req, cb) {
|
|
596
596
|
return this.request("DescribeDomainErrorPageInfo", req, cb);
|
|
@@ -569,14 +569,12 @@ export interface BindListenerRealServersResponse {
|
|
|
569
569
|
export interface DescribeCustomHeaderResponse {
|
|
570
570
|
/**
|
|
571
571
|
* 规则id
|
|
572
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
573
572
|
*/
|
|
574
|
-
RuleId
|
|
573
|
+
RuleId?: string;
|
|
575
574
|
/**
|
|
576
575
|
* 自定义header列表
|
|
577
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
578
576
|
*/
|
|
579
|
-
Headers
|
|
577
|
+
Headers?: Array<HttpHeaderParam>;
|
|
580
578
|
/**
|
|
581
579
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
582
580
|
*/
|
|
@@ -1455,7 +1453,6 @@ export interface DescribeTaskStatusResponse {
|
|
|
1455
1453
|
Status?: string;
|
|
1456
1454
|
/**
|
|
1457
1455
|
* 任务ID
|
|
1458
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1459
1456
|
*/
|
|
1460
1457
|
TaskId?: string;
|
|
1461
1458
|
/**
|
|
@@ -1701,9 +1698,8 @@ export interface DescribeAuthSignatureResponse {
|
|
|
1701
1698
|
export interface DescribeDomainErrorPageInfoByIdsResponse {
|
|
1702
1699
|
/**
|
|
1703
1700
|
* 定制错误响应配置集
|
|
1704
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1705
1701
|
*/
|
|
1706
|
-
ErrorPageSet
|
|
1702
|
+
ErrorPageSet?: Array<DomainErrorPageInfo>;
|
|
1707
1703
|
/**
|
|
1708
1704
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1709
1705
|
*/
|
|
@@ -2155,12 +2151,11 @@ export interface DescribeProxyGroupListResponse {
|
|
|
2155
2151
|
/**
|
|
2156
2152
|
* 通道组总数。
|
|
2157
2153
|
*/
|
|
2158
|
-
TotalCount
|
|
2154
|
+
TotalCount?: number;
|
|
2159
2155
|
/**
|
|
2160
2156
|
* 通道组列表。
|
|
2161
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2162
2157
|
*/
|
|
2163
|
-
ProxyGroupList
|
|
2158
|
+
ProxyGroupList?: Array<ProxyGroupInfo>;
|
|
2164
2159
|
/**
|
|
2165
2160
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2166
2161
|
*/
|
|
@@ -2733,9 +2728,8 @@ export interface Certificate {
|
|
|
2733
2728
|
export interface DescribeDomainErrorPageInfoResponse {
|
|
2734
2729
|
/**
|
|
2735
2730
|
* 定制错误响应配置集
|
|
2736
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2737
2731
|
*/
|
|
2738
|
-
ErrorPageSet
|
|
2732
|
+
ErrorPageSet?: Array<DomainErrorPageInfo>;
|
|
2739
2733
|
/**
|
|
2740
2734
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2741
2735
|
*/
|
|
@@ -3380,7 +3374,6 @@ export interface SecurityPolicyRuleIn {
|
|
|
3380
3374
|
export interface DescribeBlackHeaderResponse {
|
|
3381
3375
|
/**
|
|
3382
3376
|
* 禁用的自定义header列表
|
|
3383
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3384
3377
|
*/
|
|
3385
3378
|
BlackHeaders?: Array<string>;
|
|
3386
3379
|
/**
|
|
@@ -3691,12 +3684,10 @@ export interface InquiryPriceCreateProxyResponse {
|
|
|
3691
3684
|
DiscountFlowUnitPrice?: number;
|
|
3692
3685
|
/**
|
|
3693
3686
|
* 精品BGP的带宽费用价格,单位: 元/Mbps/天
|
|
3694
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3695
3687
|
*/
|
|
3696
3688
|
Cn2BandwidthPrice?: number;
|
|
3697
3689
|
/**
|
|
3698
3690
|
* 精品BGP的折后带宽费用价格,单位: 元/Mbps/天
|
|
3699
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
3700
3691
|
*/
|
|
3701
3692
|
Cn2BandwidthPriceWithDiscount?: number;
|
|
3702
3693
|
/**
|
|
@@ -4787,7 +4778,7 @@ export interface ModifyProxiesAttributeResponse {
|
|
|
4787
4778
|
*/
|
|
4788
4779
|
export interface DescribeDomainErrorPageInfoByIdsRequest {
|
|
4789
4780
|
/**
|
|
4790
|
-
* 定制错误ID
|
|
4781
|
+
* 定制错误ID列表,最多支持10个
|
|
4791
4782
|
*/
|
|
4792
4783
|
ErrorPageIds: Array<string>;
|
|
4793
4784
|
}
|