tencentcloud-sdk-nodejs 4.0.435 → 4.0.436
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 +102 -0
- package/SERVICE_CHANGELOG.md +148 -218
- package/package.json +1 -1
- package/products.md +6 -6
- package/src/common/sdk_version.ts +1 -1
- package/src/services/bma/v20210624/bma_client.ts +45 -8
- package/src/services/bma/v20210624/bma_models.ts +217 -37
- package/src/services/cpdp/v20190820/cpdp_models.ts +21 -0
- package/src/services/tag/v20180813/tag_models.ts +2 -2
- package/src/services/teo/v20220106/teo_client.ts +9 -3
- package/src/services/teo/v20220106/teo_models.ts +522 -250
- package/src/services/vpc/v20170312/vpc_client.ts +13 -0
- package/src/services/vpc/v20170312/vpc_models.ts +105 -0
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/bma/v20210624/bma_client.d.ts +15 -3
- package/tencentcloud/services/bma/v20210624/bma_client.js +21 -3
- package/tencentcloud/services/bma/v20210624/bma_models.d.ts +184 -33
- package/tencentcloud/services/cpdp/v20190820/cpdp_models.d.ts +19 -0
- package/tencentcloud/services/tag/v20180813/tag_models.d.ts +2 -2
- package/tencentcloud/services/teo/v20220106/teo_client.d.ts +1 -1
- package/tencentcloud/services/teo/v20220106/teo_models.d.ts +464 -218
- package/tencentcloud/services/vpc/v20170312/vpc_client.d.ts +5 -1
- package/tencentcloud/services/vpc/v20170312/vpc_client.js +6 -0
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +88 -0
- package/test/bma.v20210624.test.js +32 -2
- package/test/vpc.v20170312.test.js +10 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
export const sdkVersion = "4.0.
|
|
1
|
+
export const sdkVersion = "4.0.436"
|
|
@@ -19,13 +19,16 @@ import { AbstractClient } from "../../../common/abstract_client"
|
|
|
19
19
|
import { ClientConfig } from "../../../common/interface"
|
|
20
20
|
import {
|
|
21
21
|
ProtectURLInfo,
|
|
22
|
+
ModifyCRWhiteListRequest,
|
|
22
23
|
CreateCRUserVerifyRequest,
|
|
23
24
|
CreateBPFalseTicketResponse,
|
|
24
|
-
|
|
25
|
+
CreateCRRightFileRequest,
|
|
25
26
|
CreateCRRightResponse,
|
|
26
27
|
CreateCRWorkResponse,
|
|
27
28
|
CreateCRRightRequest,
|
|
28
29
|
CreateBPOfflineTicketResponse,
|
|
30
|
+
CreateCRTortRequest,
|
|
31
|
+
UpdateCRWorkRequest,
|
|
29
32
|
DescribeBPFakeURLsRequest,
|
|
30
33
|
ModifyCRBlockStatusResponse,
|
|
31
34
|
Monitor,
|
|
@@ -56,7 +59,9 @@ import {
|
|
|
56
59
|
CreateCRBlockResponse,
|
|
57
60
|
ModifyCRRightStatusRequest,
|
|
58
61
|
DescribeCRMonitorsRequest,
|
|
59
|
-
|
|
62
|
+
DescribeCRWorkInfoResponse,
|
|
63
|
+
CreateCRRightFileResponse,
|
|
64
|
+
ModifyCRWhiteListResponse,
|
|
60
65
|
FakeURLInfo,
|
|
61
66
|
CreateBPOfflineTicketRequest,
|
|
62
67
|
CreateCRUserVerifyResponse,
|
|
@@ -66,8 +71,10 @@ import {
|
|
|
66
71
|
ModifyBPOfflineAttachmentResponse,
|
|
67
72
|
CreateCRBlockRequest,
|
|
68
73
|
CreateBPFakeURLResponse,
|
|
74
|
+
CreateCRTortResponse,
|
|
69
75
|
CreateBPFalseTicketRequest,
|
|
70
76
|
ModifyCRMonitorResponse,
|
|
77
|
+
File,
|
|
71
78
|
DescribeBPProtectURLsRequest,
|
|
72
79
|
ModifyCRObtainStatusResponse,
|
|
73
80
|
CreateCRCompanyVerifyRequest,
|
|
@@ -202,6 +209,26 @@ export class Client extends AbstractClient {
|
|
|
202
209
|
return this.request("CreateBPFakeURL", req, cb)
|
|
203
210
|
}
|
|
204
211
|
|
|
212
|
+
/**
|
|
213
|
+
* 新增权属文件
|
|
214
|
+
*/
|
|
215
|
+
async CreateCRRightFile(
|
|
216
|
+
req: CreateCRRightFileRequest,
|
|
217
|
+
cb?: (error: string, rep: CreateCRRightFileResponse) => void
|
|
218
|
+
): Promise<CreateCRRightFileResponse> {
|
|
219
|
+
return this.request("CreateCRRightFile", req, cb)
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
/**
|
|
223
|
+
* 版权保护-白名单修改接口
|
|
224
|
+
*/
|
|
225
|
+
async ModifyCRWhiteList(
|
|
226
|
+
req: ModifyCRWhiteListRequest,
|
|
227
|
+
cb?: (error: string, rep: ModifyCRWhiteListResponse) => void
|
|
228
|
+
): Promise<ModifyCRWhiteListResponse> {
|
|
229
|
+
return this.request("ModifyCRWhiteList", req, cb)
|
|
230
|
+
}
|
|
231
|
+
|
|
205
232
|
/**
|
|
206
233
|
* 版权保护-拦截申请接口
|
|
207
234
|
*/
|
|
@@ -242,6 +269,16 @@ export class Client extends AbstractClient {
|
|
|
242
269
|
return this.request("DescribeBPReportFakeURLs", req, cb)
|
|
243
270
|
}
|
|
244
271
|
|
|
272
|
+
/**
|
|
273
|
+
* 查询仿冒链接
|
|
274
|
+
*/
|
|
275
|
+
async DescribeBPFakeURLs(
|
|
276
|
+
req: DescribeBPFakeURLsRequest,
|
|
277
|
+
cb?: (error: string, rep: DescribeBPFakeURLsResponse) => void
|
|
278
|
+
): Promise<DescribeBPFakeURLsResponse> {
|
|
279
|
+
return this.request("DescribeBPFakeURLs", req, cb)
|
|
280
|
+
}
|
|
281
|
+
|
|
245
282
|
/**
|
|
246
283
|
* 查询作品基本信息
|
|
247
284
|
*/
|
|
@@ -293,13 +330,13 @@ export class Client extends AbstractClient {
|
|
|
293
330
|
}
|
|
294
331
|
|
|
295
332
|
/**
|
|
296
|
-
*
|
|
333
|
+
* 举报侵权链接
|
|
297
334
|
*/
|
|
298
|
-
async
|
|
299
|
-
req:
|
|
300
|
-
cb?: (error: string, rep:
|
|
301
|
-
): Promise<
|
|
302
|
-
return this.request("
|
|
335
|
+
async CreateCRTort(
|
|
336
|
+
req: CreateCRTortRequest,
|
|
337
|
+
cb?: (error: string, rep: CreateCRTortResponse) => void
|
|
338
|
+
): Promise<CreateCRTortResponse> {
|
|
339
|
+
return this.request("CreateCRTort", req, cb)
|
|
303
340
|
}
|
|
304
341
|
|
|
305
342
|
/**
|
|
@@ -50,6 +50,46 @@ export interface ProtectURLInfo {
|
|
|
50
50
|
CreateTime: string
|
|
51
51
|
}
|
|
52
52
|
|
|
53
|
+
/**
|
|
54
|
+
* ModifyCRWhiteList请求参数结构体
|
|
55
|
+
*/
|
|
56
|
+
export interface ModifyCRWhiteListRequest {
|
|
57
|
+
/**
|
|
58
|
+
* 白名单ID
|
|
59
|
+
*/
|
|
60
|
+
WhiteListId?: number
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* 平台名称
|
|
64
|
+
*/
|
|
65
|
+
PlatForm?: string
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* 平台站点链接
|
|
69
|
+
*/
|
|
70
|
+
PlatUrl?: string
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* 作者ID
|
|
74
|
+
*/
|
|
75
|
+
AuthorId?: string
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* 作品ID
|
|
79
|
+
*/
|
|
80
|
+
WorksId?: number
|
|
81
|
+
|
|
82
|
+
/**
|
|
83
|
+
* xxx
|
|
84
|
+
*/
|
|
85
|
+
WorkId?: number
|
|
86
|
+
|
|
87
|
+
/**
|
|
88
|
+
* xxx
|
|
89
|
+
*/
|
|
90
|
+
WhiteSites?: string
|
|
91
|
+
}
|
|
92
|
+
|
|
53
93
|
/**
|
|
54
94
|
* CreateCRUserVerify请求参数结构体
|
|
55
95
|
*/
|
|
@@ -91,38 +131,18 @@ export interface CreateBPFalseTicketResponse {
|
|
|
91
131
|
}
|
|
92
132
|
|
|
93
133
|
/**
|
|
94
|
-
*
|
|
134
|
+
* CreateCRRightFile请求参数结构体
|
|
95
135
|
*/
|
|
96
|
-
export interface
|
|
97
|
-
/**
|
|
98
|
-
* x
|
|
99
|
-
*/
|
|
100
|
-
WorkName: string
|
|
101
|
-
|
|
136
|
+
export interface CreateCRRightFileRequest {
|
|
102
137
|
/**
|
|
103
|
-
*
|
|
104
|
-
*/
|
|
105
|
-
MonitorStatus: number
|
|
106
|
-
|
|
107
|
-
/**
|
|
108
|
-
* x
|
|
109
|
-
*/
|
|
110
|
-
AuthStatus: number
|
|
111
|
-
|
|
112
|
-
/**
|
|
113
|
-
* x
|
|
114
|
-
*/
|
|
115
|
-
CommStatus: number
|
|
116
|
-
|
|
117
|
-
/**
|
|
118
|
-
* x
|
|
138
|
+
* xxx
|
|
119
139
|
*/
|
|
120
|
-
|
|
140
|
+
WorkId: number
|
|
121
141
|
|
|
122
142
|
/**
|
|
123
|
-
*
|
|
143
|
+
* xxx
|
|
124
144
|
*/
|
|
125
|
-
|
|
145
|
+
FileList: Array<File>
|
|
126
146
|
}
|
|
127
147
|
|
|
128
148
|
/**
|
|
@@ -255,6 +275,56 @@ export interface CreateBPOfflineTicketResponse {
|
|
|
255
275
|
RequestId?: string
|
|
256
276
|
}
|
|
257
277
|
|
|
278
|
+
/**
|
|
279
|
+
* CreateCRTort请求参数结构体
|
|
280
|
+
*/
|
|
281
|
+
export interface CreateCRTortRequest {
|
|
282
|
+
/**
|
|
283
|
+
* xx
|
|
284
|
+
*/
|
|
285
|
+
WorkId: number
|
|
286
|
+
|
|
287
|
+
/**
|
|
288
|
+
* xx
|
|
289
|
+
*/
|
|
290
|
+
TortURL: string
|
|
291
|
+
|
|
292
|
+
/**
|
|
293
|
+
* xx
|
|
294
|
+
*/
|
|
295
|
+
TortPlat?: string
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* xx
|
|
299
|
+
*/
|
|
300
|
+
TortTitle?: string
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* UpdateCRWork请求参数结构体
|
|
305
|
+
*/
|
|
306
|
+
export interface UpdateCRWorkRequest {
|
|
307
|
+
/**
|
|
308
|
+
* xx
|
|
309
|
+
*/
|
|
310
|
+
WorkId: number
|
|
311
|
+
|
|
312
|
+
/**
|
|
313
|
+
* xx
|
|
314
|
+
*/
|
|
315
|
+
ContentType?: string
|
|
316
|
+
|
|
317
|
+
/**
|
|
318
|
+
* xx
|
|
319
|
+
*/
|
|
320
|
+
Content?: string
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* xx
|
|
324
|
+
*/
|
|
325
|
+
CertType?: string
|
|
326
|
+
}
|
|
327
|
+
|
|
258
328
|
/**
|
|
259
329
|
* DescribeBPFakeURLs请求参数结构体
|
|
260
330
|
*/
|
|
@@ -820,9 +890,14 @@ export interface ModifyCRMonitorRequest {
|
|
|
820
890
|
WorkId: number
|
|
821
891
|
|
|
822
892
|
/**
|
|
823
|
-
* 监测状态 1-开启监测 2-关闭监测
|
|
893
|
+
* 监测状态 1-开启监测 2-关闭监测
|
|
824
894
|
*/
|
|
825
895
|
MonitorStatus: string
|
|
896
|
+
|
|
897
|
+
/**
|
|
898
|
+
* 默认不停止,支持续期
|
|
899
|
+
*/
|
|
900
|
+
MonitorEnd?: string
|
|
826
901
|
}
|
|
827
902
|
|
|
828
903
|
/**
|
|
@@ -1106,28 +1181,63 @@ export interface DescribeCRMonitorsRequest {
|
|
|
1106
1181
|
}
|
|
1107
1182
|
|
|
1108
1183
|
/**
|
|
1109
|
-
*
|
|
1184
|
+
* DescribeCRWorkInfo返回参数结构体
|
|
1110
1185
|
*/
|
|
1111
|
-
export interface
|
|
1186
|
+
export interface DescribeCRWorkInfoResponse {
|
|
1112
1187
|
/**
|
|
1113
|
-
*
|
|
1188
|
+
* x
|
|
1114
1189
|
*/
|
|
1115
|
-
|
|
1190
|
+
WorkName: string
|
|
1116
1191
|
|
|
1117
1192
|
/**
|
|
1118
|
-
*
|
|
1193
|
+
* x
|
|
1119
1194
|
*/
|
|
1120
|
-
|
|
1195
|
+
MonitorStatus: number
|
|
1121
1196
|
|
|
1122
1197
|
/**
|
|
1123
|
-
*
|
|
1198
|
+
* x
|
|
1124
1199
|
*/
|
|
1125
|
-
|
|
1200
|
+
AuthStatus: number
|
|
1126
1201
|
|
|
1127
1202
|
/**
|
|
1128
|
-
*
|
|
1203
|
+
* x
|
|
1129
1204
|
*/
|
|
1130
|
-
|
|
1205
|
+
CommStatus: number
|
|
1206
|
+
|
|
1207
|
+
/**
|
|
1208
|
+
* x
|
|
1209
|
+
*/
|
|
1210
|
+
IsProducer: number
|
|
1211
|
+
|
|
1212
|
+
/**
|
|
1213
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1214
|
+
*/
|
|
1215
|
+
RequestId?: string
|
|
1216
|
+
}
|
|
1217
|
+
|
|
1218
|
+
/**
|
|
1219
|
+
* CreateCRRightFile返回参数结构体
|
|
1220
|
+
*/
|
|
1221
|
+
export interface CreateCRRightFileResponse {
|
|
1222
|
+
/**
|
|
1223
|
+
* xxx
|
|
1224
|
+
*/
|
|
1225
|
+
FileIds: Array<number>
|
|
1226
|
+
|
|
1227
|
+
/**
|
|
1228
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1229
|
+
*/
|
|
1230
|
+
RequestId?: string
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
/**
|
|
1234
|
+
* ModifyCRWhiteList返回参数结构体
|
|
1235
|
+
*/
|
|
1236
|
+
export interface ModifyCRWhiteListResponse {
|
|
1237
|
+
/**
|
|
1238
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1239
|
+
*/
|
|
1240
|
+
RequestId?: string
|
|
1131
1241
|
}
|
|
1132
1242
|
|
|
1133
1243
|
/**
|
|
@@ -1445,6 +1555,51 @@ export interface CreateBPFakeURLResponse {
|
|
|
1445
1555
|
RequestId?: string
|
|
1446
1556
|
}
|
|
1447
1557
|
|
|
1558
|
+
/**
|
|
1559
|
+
* CreateCRTort返回参数结构体
|
|
1560
|
+
*/
|
|
1561
|
+
export interface CreateCRTortResponse {
|
|
1562
|
+
/**
|
|
1563
|
+
* xx
|
|
1564
|
+
*/
|
|
1565
|
+
WorkId: number
|
|
1566
|
+
|
|
1567
|
+
/**
|
|
1568
|
+
* xx
|
|
1569
|
+
*/
|
|
1570
|
+
TortId: number
|
|
1571
|
+
|
|
1572
|
+
/**
|
|
1573
|
+
* xx
|
|
1574
|
+
*/
|
|
1575
|
+
TortTitle: string
|
|
1576
|
+
|
|
1577
|
+
/**
|
|
1578
|
+
* xx
|
|
1579
|
+
*/
|
|
1580
|
+
TortPlat: string
|
|
1581
|
+
|
|
1582
|
+
/**
|
|
1583
|
+
* xx
|
|
1584
|
+
*/
|
|
1585
|
+
TortURL: string
|
|
1586
|
+
|
|
1587
|
+
/**
|
|
1588
|
+
* xx
|
|
1589
|
+
*/
|
|
1590
|
+
TortDomain: string
|
|
1591
|
+
|
|
1592
|
+
/**
|
|
1593
|
+
* xx
|
|
1594
|
+
*/
|
|
1595
|
+
TortBodyName: string
|
|
1596
|
+
|
|
1597
|
+
/**
|
|
1598
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1599
|
+
*/
|
|
1600
|
+
RequestId?: string
|
|
1601
|
+
}
|
|
1602
|
+
|
|
1448
1603
|
/**
|
|
1449
1604
|
* CreateBPFalseTicket请求参数结构体
|
|
1450
1605
|
*/
|
|
@@ -1465,6 +1620,31 @@ export interface ModifyCRMonitorResponse {
|
|
|
1465
1620
|
RequestId?: string
|
|
1466
1621
|
}
|
|
1467
1622
|
|
|
1623
|
+
/**
|
|
1624
|
+
* 权属文件列表
|
|
1625
|
+
*/
|
|
1626
|
+
export interface File {
|
|
1627
|
+
/**
|
|
1628
|
+
* xxx
|
|
1629
|
+
*/
|
|
1630
|
+
FileUrl: string
|
|
1631
|
+
|
|
1632
|
+
/**
|
|
1633
|
+
* xxx
|
|
1634
|
+
*/
|
|
1635
|
+
FileType: number
|
|
1636
|
+
|
|
1637
|
+
/**
|
|
1638
|
+
* xxx
|
|
1639
|
+
*/
|
|
1640
|
+
ValidStartDate: string
|
|
1641
|
+
|
|
1642
|
+
/**
|
|
1643
|
+
* xxx
|
|
1644
|
+
*/
|
|
1645
|
+
ValidEndDate: string
|
|
1646
|
+
}
|
|
1647
|
+
|
|
1468
1648
|
/**
|
|
1469
1649
|
* DescribeBPProtectURLs请求参数结构体
|
|
1470
1650
|
*/
|
|
@@ -4237,6 +4237,8 @@ SUCCESS:支付成功
|
|
|
4237
4237
|
CLOSED:关单
|
|
4238
4238
|
PAY_FAIL:支付失败
|
|
4239
4239
|
REVOKE:退票
|
|
4240
|
+
PART_REFUND:部分退款
|
|
4241
|
+
FULL_REFUND:全部退款
|
|
4240
4242
|
*/
|
|
4241
4243
|
OrderStatus: string
|
|
4242
4244
|
|
|
@@ -8796,6 +8798,25 @@ development: 开发环境
|
|
|
8796
8798
|
* 公司信息
|
|
8797
8799
|
*/
|
|
8798
8800
|
OrganizationInfo?: OrganizationInfo
|
|
8801
|
+
|
|
8802
|
+
/**
|
|
8803
|
+
* 子商户证件类型
|
|
8804
|
+
1 - 身份证
|
|
8805
|
+
3 - 回乡证
|
|
8806
|
+
4 - 中国护照
|
|
8807
|
+
5 - 台胞证
|
|
8808
|
+
19 - 外国护照
|
|
8809
|
+
52 - 组织机构代码证
|
|
8810
|
+
68 - 营业执照
|
|
8811
|
+
73 - 统一社会信用代码
|
|
8812
|
+
*/
|
|
8813
|
+
SubMerchantIdType?: string
|
|
8814
|
+
|
|
8815
|
+
/**
|
|
8816
|
+
* 子商户证件号码
|
|
8817
|
+
<敏感信息>加密详见<a href="https://cloud.tencent.com/document/product/1122/48979" target="_blank">《商户端接口敏感信息加密说明》</a>
|
|
8818
|
+
*/
|
|
8819
|
+
SubMerchantIdCode?: string
|
|
8799
8820
|
}
|
|
8800
8821
|
|
|
8801
8822
|
/**
|
|
@@ -482,7 +482,7 @@ export interface DescribeProjectsResponse {
|
|
|
482
482
|
export interface UnTagResourcesRequest {
|
|
483
483
|
/**
|
|
484
484
|
* 资源六段式列表。腾讯云使用资源六段式描述一个资源。可参考[访问管理](https://cloud.tencent.com/document/product/598/67350)-概览-接口列表-资源六段式信息
|
|
485
|
-
例如:ResourceList.1 = qcs::${ServiceType}:${Region}
|
|
485
|
+
例如:ResourceList.1 = qcs::${ServiceType}:${Region}:uin/${Account}:${ResourcePrefix}/${ResourceId}。
|
|
486
486
|
N取值范围:0~9
|
|
487
487
|
*/
|
|
488
488
|
ResourceList: Array<string>
|
|
@@ -1401,7 +1401,7 @@ export interface DescribeResourcesByTagsRequest {
|
|
|
1401
1401
|
export interface TagResourcesRequest {
|
|
1402
1402
|
/**
|
|
1403
1403
|
* 资源六段式列表。腾讯云使用资源六段式描述一个资源。可参考[访问管理](https://cloud.tencent.com/document/product/598/67350)-概览-接口列表-资源六段式信息
|
|
1404
|
-
例如:ResourceList.1 = qcs::${ServiceType}:${Region}
|
|
1404
|
+
例如:ResourceList.1 = qcs::${ServiceType}:${Region}:uin/${Account}:${ResourcePrefix}/${ResourceId}。
|
|
1405
1405
|
N取值范围:0~9
|
|
1406
1406
|
*/
|
|
1407
1407
|
ResourceList: Array<string>
|
|
@@ -19,6 +19,7 @@ import { AbstractClient } from "../../../common/abstract_client"
|
|
|
19
19
|
import { ClientConfig } from "../../../common/interface"
|
|
20
20
|
import {
|
|
21
21
|
CreatePlanForZoneResponse,
|
|
22
|
+
DropPageDetail,
|
|
22
23
|
Compression,
|
|
23
24
|
WebLogData,
|
|
24
25
|
DeleteRulesRequest,
|
|
@@ -46,14 +47,15 @@ import {
|
|
|
46
47
|
CreateCustomErrorPageResponse,
|
|
47
48
|
CreateRuleResponse,
|
|
48
49
|
DescribeZoneSettingRequest,
|
|
49
|
-
|
|
50
|
+
ExceptUserRuleCondition,
|
|
51
|
+
ModifyZoneSettingRequest,
|
|
50
52
|
ModifyDnsRecordRequest,
|
|
51
53
|
DDoSAcl,
|
|
52
54
|
ModifySecurityPolicyRequest,
|
|
53
55
|
CreateApplicationProxyRulesRequest,
|
|
54
56
|
LoadBalancing,
|
|
55
57
|
ModifyDnssecRequest,
|
|
56
|
-
|
|
58
|
+
ModifyApplicationProxyResponse,
|
|
57
59
|
DdosPacketFilter,
|
|
58
60
|
CreateApplicationProxyResponse,
|
|
59
61
|
ImportDnsRecordsRequest,
|
|
@@ -62,6 +64,7 @@ import {
|
|
|
62
64
|
DescribeRulesResponse,
|
|
63
65
|
DescribeZoneDetailsResponse,
|
|
64
66
|
BotLog,
|
|
67
|
+
ExceptUserRuleScope,
|
|
65
68
|
Origin,
|
|
66
69
|
DescribeAvailablePlansRequest,
|
|
67
70
|
DescribeSecurityPolicyManagedRulesRequest,
|
|
@@ -211,6 +214,7 @@ import {
|
|
|
211
214
|
ModifyLoadBalancingResponse,
|
|
212
215
|
WebAttackEvent,
|
|
213
216
|
DescribeDDosAttackTopDataRequest,
|
|
217
|
+
ExceptUserRule,
|
|
214
218
|
CreateApplicationProxyRuleResponse,
|
|
215
219
|
DescribeDDosAttackDataRequest,
|
|
216
220
|
ModifyDnsRecordResponse,
|
|
@@ -236,7 +240,7 @@ import {
|
|
|
236
240
|
DescribeSecurityPolicyManagedRulesIdResponse,
|
|
237
241
|
WebEventData,
|
|
238
242
|
ApplicationProxy,
|
|
239
|
-
|
|
243
|
+
ExceptConfig,
|
|
240
244
|
DescribeDDoSPolicyResponse,
|
|
241
245
|
CacheKey,
|
|
242
246
|
ModifyOriginGroupRequest,
|
|
@@ -250,10 +254,12 @@ import {
|
|
|
250
254
|
DeleteOriginGroupResponse,
|
|
251
255
|
Header,
|
|
252
256
|
RuleAndConditions,
|
|
257
|
+
DropPageConfig,
|
|
253
258
|
DescribeDDosAttackSourceEventResponse,
|
|
254
259
|
DescribeZoneDetailsRequest,
|
|
255
260
|
DescribeDDoSPolicyRequest,
|
|
256
261
|
SecEntry,
|
|
262
|
+
ModifyZoneStatusRequest,
|
|
257
263
|
DescribeDDosMajorAttackEventRequest,
|
|
258
264
|
Quic,
|
|
259
265
|
CreateOriginGroupResponse,
|