tencentcloud-sdk-nodejs-teo 4.0.367 → 4.0.370
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/CHANGELOG.md +438 -0
- package/SERVICE_CHANGELOG.md +388 -57
- package/package.json +1 -1
- package/products.md +25 -25
- package/src/services/teo/v20220106/teo_client.ts +4 -3
- package/src/services/teo/v20220106/teo_models.ts +135 -108
- package/tencentcloud/services/teo/v20220106/teo_client.d.ts +1 -1
- package/tencentcloud/services/teo/v20220106/teo_models.d.ts +114 -91
|
@@ -802,6 +802,10 @@ export interface ModifyZoneSettingRequest {
|
|
|
802
802
|
* 客户端IP回源请求头配置
|
|
803
803
|
*/
|
|
804
804
|
ClientIpHeader?: ClientIp;
|
|
805
|
+
/**
|
|
806
|
+
* 缓存预刷新配置
|
|
807
|
+
*/
|
|
808
|
+
CachePrefresh?: CachePrefresh;
|
|
805
809
|
}
|
|
806
810
|
/**
|
|
807
811
|
* ddos特征过滤
|
|
@@ -1554,7 +1558,7 @@ export interface L7OfflineLog {
|
|
|
1554
1558
|
*/
|
|
1555
1559
|
LogTime: number;
|
|
1556
1560
|
/**
|
|
1557
|
-
*
|
|
1561
|
+
* 子域名
|
|
1558
1562
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1559
1563
|
*/
|
|
1560
1564
|
Domain: string;
|
|
@@ -1891,19 +1895,6 @@ export interface DescribeCnameStatusResponse {
|
|
|
1891
1895
|
*/
|
|
1892
1896
|
RequestId?: string;
|
|
1893
1897
|
}
|
|
1894
|
-
/**
|
|
1895
|
-
* DeleteDnsRecords返回参数结构体
|
|
1896
|
-
*/
|
|
1897
|
-
export interface DeleteDnsRecordsResponse {
|
|
1898
|
-
/**
|
|
1899
|
-
* 记录 ID
|
|
1900
|
-
*/
|
|
1901
|
-
Ids: Array<string>;
|
|
1902
|
-
/**
|
|
1903
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1904
|
-
*/
|
|
1905
|
-
RequestId?: string;
|
|
1906
|
-
}
|
|
1907
1898
|
/**
|
|
1908
1899
|
* DescribeLoadBalancing请求参数结构体
|
|
1909
1900
|
*/
|
|
@@ -3443,11 +3434,11 @@ export interface DownloadL7LogsRequest {
|
|
|
3443
3434
|
*/
|
|
3444
3435
|
PageNo: number;
|
|
3445
3436
|
/**
|
|
3446
|
-
*
|
|
3437
|
+
* 站点名集合
|
|
3447
3438
|
*/
|
|
3448
3439
|
Zones?: Array<string>;
|
|
3449
3440
|
/**
|
|
3450
|
-
*
|
|
3441
|
+
* 子域名集合
|
|
3451
3442
|
*/
|
|
3452
3443
|
Domains?: Array<string>;
|
|
3453
3444
|
}
|
|
@@ -3758,6 +3749,20 @@ export interface DescribeDefaultCertificatesResponse {
|
|
|
3758
3749
|
*/
|
|
3759
3750
|
RequestId?: string;
|
|
3760
3751
|
}
|
|
3752
|
+
/**
|
|
3753
|
+
* 缓存预刷新
|
|
3754
|
+
*/
|
|
3755
|
+
export interface CachePrefresh {
|
|
3756
|
+
/**
|
|
3757
|
+
* 缓存预刷新配置开关
|
|
3758
|
+
*/
|
|
3759
|
+
Switch: string;
|
|
3760
|
+
/**
|
|
3761
|
+
* 缓存预刷新百分比:1-99
|
|
3762
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3763
|
+
*/
|
|
3764
|
+
Percent?: number;
|
|
3765
|
+
}
|
|
3761
3766
|
/**
|
|
3762
3767
|
* DescribeTimingL7AnalysisData返回参数结构体
|
|
3763
3768
|
*/
|
|
@@ -4025,6 +4030,19 @@ export interface ModifyApplicationProxyRuleStatusRequest {
|
|
|
4025
4030
|
*/
|
|
4026
4031
|
Status: string;
|
|
4027
4032
|
}
|
|
4033
|
+
/**
|
|
4034
|
+
* ModifyLoadBalancing返回参数结构体
|
|
4035
|
+
*/
|
|
4036
|
+
export interface ModifyLoadBalancingResponse {
|
|
4037
|
+
/**
|
|
4038
|
+
* 负载均衡ID
|
|
4039
|
+
*/
|
|
4040
|
+
LoadBalancingId: string;
|
|
4041
|
+
/**
|
|
4042
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4043
|
+
*/
|
|
4044
|
+
RequestId?: string;
|
|
4045
|
+
}
|
|
4028
4046
|
/**
|
|
4029
4047
|
* Web拦截事件
|
|
4030
4048
|
*/
|
|
@@ -5556,6 +5574,11 @@ export interface DescribeZoneSettingResponse {
|
|
|
5556
5574
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5557
5575
|
*/
|
|
5558
5576
|
ClientIpHeader: ClientIp;
|
|
5577
|
+
/**
|
|
5578
|
+
* 缓存预刷新配置
|
|
5579
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5580
|
+
*/
|
|
5581
|
+
CachePrefresh: CachePrefresh;
|
|
5559
5582
|
/**
|
|
5560
5583
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
5561
5584
|
*/
|
|
@@ -6204,80 +6227,13 @@ export interface CreatePurgeTaskRequest {
|
|
|
6204
6227
|
EncodeUrl?: boolean;
|
|
6205
6228
|
}
|
|
6206
6229
|
/**
|
|
6207
|
-
*
|
|
6230
|
+
* DeleteDnsRecords返回参数结构体
|
|
6208
6231
|
*/
|
|
6209
|
-
export interface
|
|
6210
|
-
/**
|
|
6211
|
-
* 实例ID
|
|
6212
|
-
*/
|
|
6213
|
-
ProxyId: string;
|
|
6214
|
-
/**
|
|
6215
|
-
* 实例名称
|
|
6216
|
-
*/
|
|
6217
|
-
ProxyName: string;
|
|
6218
|
-
/**
|
|
6219
|
-
* 调度模式:
|
|
6220
|
-
ip表示Anycast IP
|
|
6221
|
-
domain表示CNAME
|
|
6222
|
-
*/
|
|
6223
|
-
PlatType: string;
|
|
6224
|
-
/**
|
|
6225
|
-
* 0关闭安全,1开启安全
|
|
6226
|
-
*/
|
|
6227
|
-
SecurityType: number;
|
|
6228
|
-
/**
|
|
6229
|
-
* 0关闭加速,1开启加速
|
|
6230
|
-
*/
|
|
6231
|
-
AccelerateType: number;
|
|
6232
|
-
/**
|
|
6233
|
-
* 字段已经移至Rule.ForwardClientIp
|
|
6234
|
-
*/
|
|
6235
|
-
ForwardClientIp: string;
|
|
6236
|
-
/**
|
|
6237
|
-
* 字段已经移至Rule.SessionPersist
|
|
6238
|
-
*/
|
|
6239
|
-
SessionPersist: boolean;
|
|
6240
|
-
/**
|
|
6241
|
-
* 规则列表
|
|
6242
|
-
*/
|
|
6243
|
-
Rule: Array<ApplicationProxyRule>;
|
|
6244
|
-
/**
|
|
6245
|
-
* 状态:
|
|
6246
|
-
online:启用
|
|
6247
|
-
offline:停用
|
|
6248
|
-
progress:部署中
|
|
6249
|
-
*/
|
|
6250
|
-
Status: string;
|
|
6251
|
-
/**
|
|
6252
|
-
* 调度信息
|
|
6253
|
-
*/
|
|
6254
|
-
ScheduleValue: Array<string>;
|
|
6255
|
-
/**
|
|
6256
|
-
* 更新时间
|
|
6257
|
-
*/
|
|
6258
|
-
UpdateTime: string;
|
|
6259
|
-
/**
|
|
6260
|
-
* 站点ID
|
|
6261
|
-
*/
|
|
6262
|
-
ZoneId: string;
|
|
6263
|
-
/**
|
|
6264
|
-
* 站点名称
|
|
6265
|
-
*/
|
|
6266
|
-
ZoneName: string;
|
|
6267
|
-
/**
|
|
6268
|
-
* 会话保持时间
|
|
6269
|
-
*/
|
|
6270
|
-
SessionPersistTime: number;
|
|
6271
|
-
/**
|
|
6272
|
-
* 服务类型
|
|
6273
|
-
hostname:子域名
|
|
6274
|
-
instance:实例
|
|
6275
|
-
*/
|
|
6276
|
-
ProxyType: string;
|
|
6232
|
+
export interface DeleteDnsRecordsResponse {
|
|
6277
6233
|
/**
|
|
6278
|
-
*
|
|
6234
|
+
* 记录 ID
|
|
6279
6235
|
*/
|
|
6280
|
-
|
|
6236
|
+
Ids: Array<string>;
|
|
6281
6237
|
/**
|
|
6282
6238
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6283
6239
|
*/
|
|
@@ -6670,13 +6626,80 @@ export interface ModifyZoneCnameSpeedUpRequest {
|
|
|
6670
6626
|
Status: string;
|
|
6671
6627
|
}
|
|
6672
6628
|
/**
|
|
6673
|
-
*
|
|
6629
|
+
* DescribeApplicationProxyDetail返回参数结构体
|
|
6674
6630
|
*/
|
|
6675
|
-
export interface
|
|
6631
|
+
export interface DescribeApplicationProxyDetailResponse {
|
|
6676
6632
|
/**
|
|
6677
|
-
*
|
|
6633
|
+
* 实例ID
|
|
6678
6634
|
*/
|
|
6679
|
-
|
|
6635
|
+
ProxyId: string;
|
|
6636
|
+
/**
|
|
6637
|
+
* 实例名称
|
|
6638
|
+
*/
|
|
6639
|
+
ProxyName: string;
|
|
6640
|
+
/**
|
|
6641
|
+
* 调度模式:
|
|
6642
|
+
ip表示Anycast IP
|
|
6643
|
+
domain表示CNAME
|
|
6644
|
+
*/
|
|
6645
|
+
PlatType: string;
|
|
6646
|
+
/**
|
|
6647
|
+
* 0关闭安全,1开启安全
|
|
6648
|
+
*/
|
|
6649
|
+
SecurityType: number;
|
|
6650
|
+
/**
|
|
6651
|
+
* 0关闭加速,1开启加速
|
|
6652
|
+
*/
|
|
6653
|
+
AccelerateType: number;
|
|
6654
|
+
/**
|
|
6655
|
+
* 字段已经移至Rule.ForwardClientIp
|
|
6656
|
+
*/
|
|
6657
|
+
ForwardClientIp: string;
|
|
6658
|
+
/**
|
|
6659
|
+
* 字段已经移至Rule.SessionPersist
|
|
6660
|
+
*/
|
|
6661
|
+
SessionPersist: boolean;
|
|
6662
|
+
/**
|
|
6663
|
+
* 规则列表
|
|
6664
|
+
*/
|
|
6665
|
+
Rule: Array<ApplicationProxyRule>;
|
|
6666
|
+
/**
|
|
6667
|
+
* 状态:
|
|
6668
|
+
online:启用
|
|
6669
|
+
offline:停用
|
|
6670
|
+
progress:部署中
|
|
6671
|
+
*/
|
|
6672
|
+
Status: string;
|
|
6673
|
+
/**
|
|
6674
|
+
* 调度信息
|
|
6675
|
+
*/
|
|
6676
|
+
ScheduleValue: Array<string>;
|
|
6677
|
+
/**
|
|
6678
|
+
* 更新时间
|
|
6679
|
+
*/
|
|
6680
|
+
UpdateTime: string;
|
|
6681
|
+
/**
|
|
6682
|
+
* 站点ID
|
|
6683
|
+
*/
|
|
6684
|
+
ZoneId: string;
|
|
6685
|
+
/**
|
|
6686
|
+
* 站点名称
|
|
6687
|
+
*/
|
|
6688
|
+
ZoneName: string;
|
|
6689
|
+
/**
|
|
6690
|
+
* 会话保持时间
|
|
6691
|
+
*/
|
|
6692
|
+
SessionPersistTime: number;
|
|
6693
|
+
/**
|
|
6694
|
+
* 服务类型
|
|
6695
|
+
hostname:子域名
|
|
6696
|
+
instance:实例
|
|
6697
|
+
*/
|
|
6698
|
+
ProxyType: string;
|
|
6699
|
+
/**
|
|
6700
|
+
* 七层实例ID
|
|
6701
|
+
*/
|
|
6702
|
+
HostId: string;
|
|
6680
6703
|
/**
|
|
6681
6704
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
6682
6705
|
*/
|