tencentcloud-sdk-nodejs-teo 4.0.352 → 4.0.355
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 +585 -0
- package/SERVICE_CHANGELOG.md +628 -40
- package/package.json +1 -1
- package/products.md +25 -24
- package/src/services/teo/v20220106/teo_client.ts +585 -18
- package/src/services/teo/v20220106/teo_models.ts +3872 -252
- package/tencentcloud/services/teo/v20220106/teo_client.d.ts +179 -3
- package/tencentcloud/services/teo/v20220106/teo_client.js +267 -3
- package/tencentcloud/services/teo/v20220106/teo_models.d.ts +3334 -241
|
@@ -15,20 +15,3584 @@
|
|
|
15
15
|
* under the License.
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
|
+
/**
|
|
19
|
+
* 智能压缩配置
|
|
20
|
+
*/
|
|
21
|
+
export interface Compression {
|
|
22
|
+
/**
|
|
23
|
+
* 智能压缩配置开关
|
|
24
|
+
on:开启
|
|
25
|
+
off:关闭
|
|
26
|
+
*/
|
|
27
|
+
Switch: string
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* 域名证书配置
|
|
32
|
+
*/
|
|
33
|
+
export interface HostCertSetting {
|
|
34
|
+
/**
|
|
35
|
+
* 域名
|
|
36
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
37
|
+
*/
|
|
38
|
+
Host: string
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* 服务端证书配置
|
|
42
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
43
|
+
*/
|
|
44
|
+
CertInfo: Array<ServerCertInfo>
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* ModifyDefaultCertificate请求参数结构体
|
|
49
|
+
*/
|
|
50
|
+
export interface ModifyDefaultCertificateRequest {
|
|
51
|
+
/**
|
|
52
|
+
* Zone ID
|
|
53
|
+
*/
|
|
54
|
+
ZoneId: string
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* 默认证书ID
|
|
58
|
+
*/
|
|
59
|
+
CertId?: string
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* 证书状态
|
|
63
|
+
deployed: 部署证书
|
|
64
|
+
disabled:禁用证书
|
|
65
|
+
失败状态下重新deployed即可重试失败
|
|
66
|
+
*/
|
|
67
|
+
Status?: string
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* DescribeZoneDetails返回参数结构体
|
|
72
|
+
*/
|
|
73
|
+
export interface DescribeZoneDetailsResponse {
|
|
74
|
+
/**
|
|
75
|
+
* 站点 ID
|
|
76
|
+
*/
|
|
77
|
+
Id: string
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* 站点名称
|
|
81
|
+
*/
|
|
82
|
+
Name: string
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* 用户当前使用的 NS 列表
|
|
86
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
87
|
+
*/
|
|
88
|
+
OriginalNameServers: Array<string>
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* 腾讯云分配给用户的 NS 列表
|
|
92
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
93
|
+
*/
|
|
94
|
+
NameServers: Array<string>
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* 站点状态
|
|
98
|
+
- active:NS 已切换
|
|
99
|
+
- pending:NS 未切换
|
|
100
|
+
- moved:NS 已切走
|
|
101
|
+
- deactivated:被封禁
|
|
102
|
+
*/
|
|
103
|
+
Status: string
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* 站点接入方式
|
|
107
|
+
- full:NS 接入
|
|
108
|
+
- partial:CNAME 接入
|
|
109
|
+
*/
|
|
110
|
+
Type: string
|
|
111
|
+
|
|
112
|
+
/**
|
|
113
|
+
* 站点是否关闭
|
|
114
|
+
*/
|
|
115
|
+
Paused: boolean
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* 站点创建时间
|
|
119
|
+
*/
|
|
120
|
+
CreatedOn: string
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* 站点修改时间
|
|
124
|
+
*/
|
|
125
|
+
ModifiedOn: string
|
|
126
|
+
|
|
127
|
+
/**
|
|
128
|
+
* 用户自定义 NS 信息
|
|
129
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
130
|
+
*/
|
|
131
|
+
VanityNameServers: VanityNameServers
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* 用户自定义 NS IP 信息
|
|
135
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
136
|
+
*/
|
|
137
|
+
VanityNameServersIps: Array<VanityNameServersIps>
|
|
138
|
+
|
|
139
|
+
/**
|
|
140
|
+
* 是否开启 CNAME 加速
|
|
141
|
+
- enabled:开启
|
|
142
|
+
- disabled:关闭
|
|
143
|
+
*/
|
|
144
|
+
CnameSpeedUp: string
|
|
145
|
+
|
|
146
|
+
/**
|
|
147
|
+
* cname切换验证状态
|
|
148
|
+
- finished 切换完成
|
|
149
|
+
- pending 切换验证中
|
|
150
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
151
|
+
*/
|
|
152
|
+
CnameStatus: string
|
|
153
|
+
|
|
154
|
+
/**
|
|
155
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
156
|
+
*/
|
|
157
|
+
RequestId?: string
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
/**
|
|
161
|
+
* DeleteApplicationProxy返回参数结构体
|
|
162
|
+
*/
|
|
163
|
+
export interface DeleteApplicationProxyResponse {
|
|
164
|
+
/**
|
|
165
|
+
* 代理ID
|
|
166
|
+
*/
|
|
167
|
+
ProxyId: string
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
171
|
+
*/
|
|
172
|
+
RequestId?: string
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
/**
|
|
176
|
+
* 域名 https 加速配置,默认为关闭状态
|
|
177
|
+
*/
|
|
178
|
+
export interface Https {
|
|
179
|
+
/**
|
|
180
|
+
* http2 配置开关
|
|
181
|
+
on:开启
|
|
182
|
+
off:关闭
|
|
183
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
184
|
+
*/
|
|
185
|
+
Http2?: string
|
|
186
|
+
|
|
187
|
+
/**
|
|
188
|
+
* OCSP 配置开关
|
|
189
|
+
on:开启
|
|
190
|
+
off:关闭
|
|
191
|
+
默认为关闭状态
|
|
192
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
193
|
+
*/
|
|
194
|
+
OcspStapling?: string
|
|
195
|
+
|
|
196
|
+
/**
|
|
197
|
+
* Tls版本设置,支持设置 TLSv1, TLSV1.1, TLSV1.2, TLSv1.3,修改时必须开启连续的版本
|
|
198
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
199
|
+
*/
|
|
200
|
+
TlsVersion?: Array<string>
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* HSTS 配置。
|
|
204
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
205
|
+
*/
|
|
206
|
+
Hsts?: Hsts
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
/**
|
|
210
|
+
* ScanDnsRecords返回参数结构体
|
|
211
|
+
*/
|
|
212
|
+
export interface ScanDnsRecordsResponse {
|
|
213
|
+
/**
|
|
214
|
+
* 扫描状态
|
|
215
|
+
- doing 扫描中
|
|
216
|
+
- done 扫描完成
|
|
217
|
+
*/
|
|
218
|
+
Status: string
|
|
219
|
+
|
|
220
|
+
/**
|
|
221
|
+
* 扫描后添加的记录数
|
|
222
|
+
*/
|
|
223
|
+
RecordsAdded: number
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
227
|
+
*/
|
|
228
|
+
RequestId?: string
|
|
229
|
+
}
|
|
230
|
+
|
|
231
|
+
/**
|
|
232
|
+
* 站点查询过滤条件
|
|
233
|
+
*/
|
|
234
|
+
export interface ZoneFilter {
|
|
235
|
+
/**
|
|
236
|
+
* 过滤字段名,支持的列表如下:
|
|
237
|
+
- name: 站点名。
|
|
238
|
+
- status: 站点状态
|
|
239
|
+
*/
|
|
240
|
+
Name: string
|
|
241
|
+
|
|
242
|
+
/**
|
|
243
|
+
* 过滤字段值
|
|
244
|
+
*/
|
|
245
|
+
Values: Array<string>
|
|
246
|
+
|
|
247
|
+
/**
|
|
248
|
+
* 是否启用模糊查询,仅支持过滤字段名为name。模糊查询时,Values长度最大为1
|
|
249
|
+
*/
|
|
250
|
+
Fuzzy?: boolean
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
/**
|
|
254
|
+
* ModifyLoadBalancingStatus返回参数结构体
|
|
255
|
+
*/
|
|
256
|
+
export interface ModifyLoadBalancingStatusResponse {
|
|
257
|
+
/**
|
|
258
|
+
* 负载均衡ID
|
|
259
|
+
*/
|
|
260
|
+
LoadBalancingId: string
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
264
|
+
*/
|
|
265
|
+
RequestId?: string
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
/**
|
|
269
|
+
* DescribePrefetchTasks返回参数结构体
|
|
270
|
+
*/
|
|
271
|
+
export interface DescribePrefetchTasksResponse {
|
|
272
|
+
/**
|
|
273
|
+
* 该查询条件总共条目数
|
|
274
|
+
*/
|
|
275
|
+
TotalCount: number
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* 任务结果列表
|
|
279
|
+
*/
|
|
280
|
+
Tasks: Array<Task>
|
|
281
|
+
|
|
282
|
+
/**
|
|
283
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
284
|
+
*/
|
|
285
|
+
RequestId?: string
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
/**
|
|
289
|
+
* DeleteApplicationProxy请求参数结构体
|
|
290
|
+
*/
|
|
291
|
+
export interface DeleteApplicationProxyRequest {
|
|
292
|
+
/**
|
|
293
|
+
* 站点ID
|
|
294
|
+
*/
|
|
295
|
+
ZoneId: string
|
|
296
|
+
|
|
297
|
+
/**
|
|
298
|
+
* 代理ID
|
|
299
|
+
*/
|
|
300
|
+
ProxyId: string
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* DescribeZoneSetting请求参数结构体
|
|
305
|
+
*/
|
|
306
|
+
export interface DescribeZoneSettingRequest {
|
|
307
|
+
/**
|
|
308
|
+
* 站点ID
|
|
309
|
+
*/
|
|
310
|
+
ZoneId: string
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
/**
|
|
314
|
+
* ModifyZoneStatus请求参数结构体
|
|
315
|
+
*/
|
|
316
|
+
export interface ModifyZoneStatusRequest {
|
|
317
|
+
/**
|
|
318
|
+
* 站点 ID
|
|
319
|
+
*/
|
|
320
|
+
Id: string
|
|
321
|
+
|
|
322
|
+
/**
|
|
323
|
+
* 站点状态
|
|
324
|
+
- false 开启站点
|
|
325
|
+
- true 关闭站点
|
|
326
|
+
*/
|
|
327
|
+
Paused: boolean
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
/**
|
|
331
|
+
* ModifyDnsRecord请求参数结构体
|
|
332
|
+
*/
|
|
333
|
+
export interface ModifyDnsRecordRequest {
|
|
334
|
+
/**
|
|
335
|
+
* 记录 ID
|
|
336
|
+
*/
|
|
337
|
+
Id: string
|
|
338
|
+
|
|
339
|
+
/**
|
|
340
|
+
* 站点 ID
|
|
341
|
+
*/
|
|
342
|
+
ZoneId: string
|
|
343
|
+
|
|
344
|
+
/**
|
|
345
|
+
* 记录类型
|
|
346
|
+
*/
|
|
347
|
+
Type?: string
|
|
348
|
+
|
|
349
|
+
/**
|
|
350
|
+
* 记录名称
|
|
351
|
+
*/
|
|
352
|
+
Name?: string
|
|
353
|
+
|
|
354
|
+
/**
|
|
355
|
+
* 记录内容
|
|
356
|
+
*/
|
|
357
|
+
Content?: string
|
|
358
|
+
|
|
359
|
+
/**
|
|
360
|
+
* 生存时间值
|
|
361
|
+
*/
|
|
362
|
+
Ttl?: number
|
|
363
|
+
|
|
364
|
+
/**
|
|
365
|
+
* 优先级
|
|
366
|
+
*/
|
|
367
|
+
Priority?: number
|
|
368
|
+
|
|
369
|
+
/**
|
|
370
|
+
* 代理模式
|
|
371
|
+
*/
|
|
372
|
+
Mode?: string
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
/**
|
|
376
|
+
* CreateApplicationProxyRules请求参数结构体
|
|
377
|
+
*/
|
|
378
|
+
export interface CreateApplicationProxyRulesRequest {
|
|
379
|
+
/**
|
|
380
|
+
* 站点ID
|
|
381
|
+
*/
|
|
382
|
+
ZoneId: string
|
|
383
|
+
|
|
384
|
+
/**
|
|
385
|
+
* 代理ID
|
|
386
|
+
*/
|
|
387
|
+
ProxyId: string
|
|
388
|
+
|
|
389
|
+
/**
|
|
390
|
+
* 规则列表
|
|
391
|
+
*/
|
|
392
|
+
Rule: Array<ApplicationProxyRule>
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
/**
|
|
396
|
+
* 负载均衡信息
|
|
397
|
+
*/
|
|
398
|
+
export interface LoadBalancing {
|
|
399
|
+
/**
|
|
400
|
+
* 负载均衡ID
|
|
401
|
+
*/
|
|
402
|
+
LoadBalancingId: string
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* 站点ID
|
|
406
|
+
*/
|
|
407
|
+
ZoneId: string
|
|
408
|
+
|
|
409
|
+
/**
|
|
410
|
+
* 子域名,填写@表示根域
|
|
411
|
+
*/
|
|
412
|
+
Host: string
|
|
413
|
+
|
|
414
|
+
/**
|
|
415
|
+
* 代理模式:
|
|
416
|
+
dns_only: 仅DNS
|
|
417
|
+
proxied: 开启代理
|
|
418
|
+
*/
|
|
419
|
+
Type: string
|
|
420
|
+
|
|
421
|
+
/**
|
|
422
|
+
* 当Type=dns_only表示DNS的TTL时间
|
|
423
|
+
*/
|
|
424
|
+
TTL: number
|
|
425
|
+
|
|
426
|
+
/**
|
|
427
|
+
* 使用的源站组ID
|
|
428
|
+
*/
|
|
429
|
+
OriginId: Array<string>
|
|
430
|
+
|
|
431
|
+
/**
|
|
432
|
+
* 使用的源站信息
|
|
433
|
+
*/
|
|
434
|
+
Origin: Array<OriginGroup>
|
|
435
|
+
|
|
436
|
+
/**
|
|
437
|
+
* 更新时间
|
|
438
|
+
*/
|
|
439
|
+
UpdateTime: string
|
|
440
|
+
|
|
441
|
+
/**
|
|
442
|
+
* 状态
|
|
443
|
+
*/
|
|
444
|
+
Status: string
|
|
445
|
+
|
|
446
|
+
/**
|
|
447
|
+
* 调度域名
|
|
448
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
449
|
+
*/
|
|
450
|
+
Cname: string
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
/**
|
|
454
|
+
* ModifyDnssec请求参数结构体
|
|
455
|
+
*/
|
|
456
|
+
export interface ModifyDnssecRequest {
|
|
457
|
+
/**
|
|
458
|
+
* 站点 ID
|
|
459
|
+
*/
|
|
460
|
+
Id: string
|
|
461
|
+
|
|
462
|
+
/**
|
|
463
|
+
* DNSSEC 状态
|
|
464
|
+
- enabled 开启
|
|
465
|
+
- disabled 关闭
|
|
466
|
+
*/
|
|
467
|
+
Status: string
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
/**
|
|
471
|
+
* ModifyZoneSetting请求参数结构体
|
|
472
|
+
*/
|
|
473
|
+
export interface ModifyZoneSettingRequest {
|
|
474
|
+
/**
|
|
475
|
+
* 待变更的站点ID
|
|
476
|
+
*/
|
|
477
|
+
ZoneId: string
|
|
478
|
+
|
|
479
|
+
/**
|
|
480
|
+
* 缓存过期时间配置
|
|
481
|
+
*/
|
|
482
|
+
Cache?: CacheConfig
|
|
483
|
+
|
|
484
|
+
/**
|
|
485
|
+
* 节点缓存键配置
|
|
486
|
+
*/
|
|
487
|
+
CacheKey?: CacheKey
|
|
488
|
+
|
|
489
|
+
/**
|
|
490
|
+
* 浏览器缓存配置
|
|
491
|
+
*/
|
|
492
|
+
MaxAge?: MaxAge
|
|
493
|
+
|
|
494
|
+
/**
|
|
495
|
+
* 离线缓存
|
|
496
|
+
*/
|
|
497
|
+
OfflineCache?: OfflineCache
|
|
498
|
+
|
|
499
|
+
/**
|
|
500
|
+
* Quic访问
|
|
501
|
+
*/
|
|
502
|
+
Quic?: Quic
|
|
503
|
+
|
|
504
|
+
/**
|
|
505
|
+
* POST请求传输配置
|
|
506
|
+
*/
|
|
507
|
+
PostMaxSize?: PostMaxSize
|
|
508
|
+
|
|
509
|
+
/**
|
|
510
|
+
* 智能压缩配置
|
|
511
|
+
*/
|
|
512
|
+
Compression?: Compression
|
|
513
|
+
|
|
514
|
+
/**
|
|
515
|
+
* http2回源配置
|
|
516
|
+
*/
|
|
517
|
+
UpstreamHttp2?: UpstreamHttp2
|
|
518
|
+
|
|
519
|
+
/**
|
|
520
|
+
* 访问协议强制https跳转配置
|
|
521
|
+
*/
|
|
522
|
+
ForceRedirect?: ForceRedirect
|
|
523
|
+
|
|
524
|
+
/**
|
|
525
|
+
* Https 加速配置
|
|
526
|
+
*/
|
|
527
|
+
Https?: Https
|
|
528
|
+
|
|
529
|
+
/**
|
|
530
|
+
* 源站配置
|
|
531
|
+
*/
|
|
532
|
+
Origin?: Origin
|
|
533
|
+
|
|
534
|
+
/**
|
|
535
|
+
* 智能加速配置
|
|
536
|
+
*/
|
|
537
|
+
SmartRouting?: SmartRouting
|
|
538
|
+
|
|
539
|
+
/**
|
|
540
|
+
* WebSocket配置
|
|
541
|
+
*/
|
|
542
|
+
WebSocket?: WebSocket
|
|
543
|
+
|
|
544
|
+
/**
|
|
545
|
+
* 客户端IP回源请求头配置
|
|
546
|
+
*/
|
|
547
|
+
ClientIpHeader?: ClientIp
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
/**
|
|
551
|
+
* DescribeApplicationProxyDetail请求参数结构体
|
|
552
|
+
*/
|
|
553
|
+
export interface DescribeApplicationProxyDetailRequest {
|
|
554
|
+
/**
|
|
555
|
+
* 站点ID
|
|
556
|
+
*/
|
|
557
|
+
ZoneId: string
|
|
558
|
+
|
|
559
|
+
/**
|
|
560
|
+
* 实例ID
|
|
561
|
+
*/
|
|
562
|
+
ProxyId: string
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
/**
|
|
566
|
+
* CreateApplicationProxy返回参数结构体
|
|
567
|
+
*/
|
|
568
|
+
export interface CreateApplicationProxyResponse {
|
|
569
|
+
/**
|
|
570
|
+
* 新增的四层代理应用ID
|
|
571
|
+
*/
|
|
572
|
+
ProxyId: string
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
576
|
+
*/
|
|
577
|
+
RequestId?: string
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
/**
|
|
581
|
+
* ImportDnsRecords请求参数结构体
|
|
582
|
+
*/
|
|
583
|
+
export interface ImportDnsRecordsRequest {
|
|
584
|
+
/**
|
|
585
|
+
* 站点 ID
|
|
586
|
+
*/
|
|
587
|
+
ZoneId: string
|
|
588
|
+
|
|
589
|
+
/**
|
|
590
|
+
* 文件内容
|
|
591
|
+
*/
|
|
592
|
+
File: string
|
|
593
|
+
}
|
|
594
|
+
|
|
595
|
+
/**
|
|
596
|
+
* 不缓存配置
|
|
597
|
+
*/
|
|
598
|
+
export interface CacheConfigNoCache {
|
|
599
|
+
/**
|
|
600
|
+
* 不缓存配置开关
|
|
601
|
+
on:开启
|
|
602
|
+
off:关闭
|
|
603
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
604
|
+
*/
|
|
605
|
+
Switch: string
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
/**
|
|
609
|
+
* 源站配置。
|
|
610
|
+
*/
|
|
611
|
+
export interface Origin {
|
|
612
|
+
/**
|
|
613
|
+
* 回源协议配置
|
|
614
|
+
http:强制 http 回源
|
|
615
|
+
follow:协议跟随回源
|
|
616
|
+
https:强制 https 回源,https 回源时仅支持源站 443 端口
|
|
617
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
618
|
+
*/
|
|
619
|
+
OriginPullProtocol?: string
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
/**
|
|
623
|
+
* 内容管理任务结果
|
|
624
|
+
*/
|
|
625
|
+
export interface Task {
|
|
626
|
+
/**
|
|
627
|
+
* 任务ID
|
|
628
|
+
*/
|
|
629
|
+
JobId: string
|
|
630
|
+
|
|
631
|
+
/**
|
|
632
|
+
* 状态
|
|
633
|
+
*/
|
|
634
|
+
Status: string
|
|
635
|
+
|
|
636
|
+
/**
|
|
637
|
+
* 资源
|
|
638
|
+
*/
|
|
639
|
+
Target: string
|
|
640
|
+
|
|
641
|
+
/**
|
|
642
|
+
* 任务类型
|
|
643
|
+
*/
|
|
644
|
+
Type: string
|
|
645
|
+
|
|
646
|
+
/**
|
|
647
|
+
* 任务创建时间
|
|
648
|
+
*/
|
|
649
|
+
CreateTime: string
|
|
650
|
+
|
|
651
|
+
/**
|
|
652
|
+
* 任务完成时间
|
|
653
|
+
*/
|
|
654
|
+
UpdateTime: string
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
/**
|
|
658
|
+
* 查询结果排序条件。
|
|
659
|
+
*/
|
|
660
|
+
export interface CertSort {
|
|
661
|
+
/**
|
|
662
|
+
* 排序字段,当前支持:
|
|
663
|
+
createTime,域名创建时间
|
|
664
|
+
certExpireTime,证书过期时间
|
|
665
|
+
certDeployTime, 证书部署时间
|
|
666
|
+
*/
|
|
667
|
+
Key: string
|
|
668
|
+
|
|
669
|
+
/**
|
|
670
|
+
* asc/desc,默认desc。
|
|
671
|
+
*/
|
|
672
|
+
Sequence?: string
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
/**
|
|
676
|
+
* DescribeHostsSetting返回参数结构体
|
|
677
|
+
*/
|
|
678
|
+
export interface DescribeHostsSettingResponse {
|
|
679
|
+
/**
|
|
680
|
+
* 域名列表
|
|
681
|
+
*/
|
|
682
|
+
Hosts: Array<DetailHost>
|
|
683
|
+
|
|
684
|
+
/**
|
|
685
|
+
* 域名数量
|
|
686
|
+
*/
|
|
687
|
+
TotalNumber: number
|
|
688
|
+
|
|
689
|
+
/**
|
|
690
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
691
|
+
*/
|
|
692
|
+
RequestId?: string
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
/**
|
|
696
|
+
* ModifyZone返回参数结构体
|
|
697
|
+
*/
|
|
698
|
+
export interface ModifyZoneResponse {
|
|
699
|
+
/**
|
|
700
|
+
* 站点 ID
|
|
701
|
+
*/
|
|
702
|
+
Id: string
|
|
703
|
+
|
|
704
|
+
/**
|
|
705
|
+
* 站点名称
|
|
706
|
+
*/
|
|
707
|
+
Name: string
|
|
708
|
+
|
|
709
|
+
/**
|
|
710
|
+
* 站点当前使用的 NS
|
|
711
|
+
*/
|
|
712
|
+
OriginalNameServers: Array<string>
|
|
713
|
+
|
|
714
|
+
/**
|
|
715
|
+
* 站点状态
|
|
716
|
+
- pending 未接入 NS
|
|
717
|
+
- active 已接入 NS
|
|
718
|
+
- moved NS 已切走
|
|
719
|
+
*/
|
|
720
|
+
Status: string
|
|
721
|
+
|
|
722
|
+
/**
|
|
723
|
+
* 站点接入方式
|
|
724
|
+
- full NS 接入
|
|
725
|
+
- partial CNAME 接入
|
|
726
|
+
*/
|
|
727
|
+
Type: string
|
|
728
|
+
|
|
729
|
+
/**
|
|
730
|
+
* 腾讯云分配的 NS 列表
|
|
731
|
+
*/
|
|
732
|
+
NameServers: Array<string>
|
|
733
|
+
|
|
734
|
+
/**
|
|
735
|
+
* 创建时间
|
|
736
|
+
*/
|
|
737
|
+
CreatedOn: string
|
|
738
|
+
|
|
739
|
+
/**
|
|
740
|
+
* 修改时间
|
|
741
|
+
*/
|
|
742
|
+
ModifiedOn: string
|
|
743
|
+
|
|
744
|
+
/**
|
|
745
|
+
* cname 接入状态
|
|
746
|
+
- finished 站点验证完成
|
|
747
|
+
- pending 站点验证中
|
|
748
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
749
|
+
*/
|
|
750
|
+
CnameStatus: string
|
|
751
|
+
|
|
752
|
+
/**
|
|
753
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
754
|
+
*/
|
|
755
|
+
RequestId?: string
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
/**
|
|
759
|
+
* ModifyZone请求参数结构体
|
|
760
|
+
*/
|
|
761
|
+
export interface ModifyZoneRequest {
|
|
762
|
+
/**
|
|
763
|
+
* 站点 ID,用于唯一标识站点信息
|
|
764
|
+
*/
|
|
765
|
+
Id: string
|
|
766
|
+
|
|
767
|
+
/**
|
|
768
|
+
* 站点接入方式
|
|
769
|
+
- full NS 接入
|
|
770
|
+
- partial CNAME 接入
|
|
771
|
+
*/
|
|
772
|
+
Type?: string
|
|
773
|
+
|
|
774
|
+
/**
|
|
775
|
+
* 自定义站点信息
|
|
776
|
+
*/
|
|
777
|
+
VanityNameServers?: VanityNameServers
|
|
778
|
+
}
|
|
779
|
+
|
|
780
|
+
/**
|
|
781
|
+
* DeleteZone返回参数结构体
|
|
782
|
+
*/
|
|
783
|
+
export interface DeleteZoneResponse {
|
|
784
|
+
/**
|
|
785
|
+
* 站点 ID
|
|
786
|
+
*/
|
|
787
|
+
Id: string
|
|
788
|
+
|
|
789
|
+
/**
|
|
790
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
791
|
+
*/
|
|
792
|
+
RequestId?: string
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
/**
|
|
796
|
+
* ReclaimZone返回参数结构体
|
|
797
|
+
*/
|
|
798
|
+
export interface ReclaimZoneResponse {
|
|
799
|
+
/**
|
|
800
|
+
* 站点名称
|
|
801
|
+
*/
|
|
802
|
+
Name: string
|
|
803
|
+
|
|
804
|
+
/**
|
|
805
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
806
|
+
*/
|
|
807
|
+
RequestId?: string
|
|
808
|
+
}
|
|
809
|
+
|
|
18
810
|
/**
|
|
19
811
|
* CreatePurgeTask返回参数结构体
|
|
20
812
|
*/
|
|
21
|
-
export interface CreatePurgeTaskResponse {
|
|
813
|
+
export interface CreatePurgeTaskResponse {
|
|
814
|
+
/**
|
|
815
|
+
* 任务ID
|
|
816
|
+
*/
|
|
817
|
+
JobId: string
|
|
818
|
+
|
|
819
|
+
/**
|
|
820
|
+
* 失败的任务列表及原因
|
|
821
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
822
|
+
*/
|
|
823
|
+
FailedList: Array<FailReason>
|
|
824
|
+
|
|
825
|
+
/**
|
|
826
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
827
|
+
*/
|
|
828
|
+
RequestId?: string
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
/**
|
|
832
|
+
* DeleteApplicationProxyRule返回参数结构体
|
|
833
|
+
*/
|
|
834
|
+
export interface DeleteApplicationProxyRuleResponse {
|
|
835
|
+
/**
|
|
836
|
+
* 规则ID
|
|
837
|
+
*/
|
|
838
|
+
RuleId: string
|
|
839
|
+
|
|
840
|
+
/**
|
|
841
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
842
|
+
*/
|
|
843
|
+
RequestId?: string
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
/**
|
|
847
|
+
* DescribeIdentification请求参数结构体
|
|
848
|
+
*/
|
|
849
|
+
export interface DescribeIdentificationRequest {
|
|
850
|
+
/**
|
|
851
|
+
* 站点名称
|
|
852
|
+
*/
|
|
853
|
+
Name: string
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
/**
|
|
857
|
+
* CreateDnsRecord请求参数结构体
|
|
858
|
+
*/
|
|
859
|
+
export interface CreateDnsRecordRequest {
|
|
860
|
+
/**
|
|
861
|
+
* 站点 ID
|
|
862
|
+
*/
|
|
863
|
+
ZoneId: string
|
|
864
|
+
|
|
865
|
+
/**
|
|
866
|
+
* 记录类型
|
|
867
|
+
*/
|
|
868
|
+
Type: string
|
|
869
|
+
|
|
870
|
+
/**
|
|
871
|
+
* 记录名
|
|
872
|
+
*/
|
|
873
|
+
Name: string
|
|
874
|
+
|
|
875
|
+
/**
|
|
876
|
+
* 记录内容
|
|
877
|
+
*/
|
|
878
|
+
Content: string
|
|
879
|
+
|
|
880
|
+
/**
|
|
881
|
+
* 代理模式,可选值:dns_only, cdn_only, secure_cdn
|
|
882
|
+
*/
|
|
883
|
+
Mode: string
|
|
884
|
+
|
|
885
|
+
/**
|
|
886
|
+
* 生存时间值
|
|
887
|
+
*/
|
|
888
|
+
Ttl?: number
|
|
889
|
+
|
|
890
|
+
/**
|
|
891
|
+
* 优先级
|
|
892
|
+
*/
|
|
893
|
+
Priority?: number
|
|
894
|
+
}
|
|
895
|
+
|
|
896
|
+
/**
|
|
897
|
+
* 离线日志详细信息
|
|
898
|
+
*/
|
|
899
|
+
export interface L7OfflineLog {
|
|
900
|
+
/**
|
|
901
|
+
* 日志打包开始时间
|
|
902
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
903
|
+
*/
|
|
904
|
+
LogTime: number
|
|
905
|
+
|
|
906
|
+
/**
|
|
907
|
+
* 站点名称
|
|
908
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
909
|
+
*/
|
|
910
|
+
Domain: string
|
|
911
|
+
|
|
912
|
+
/**
|
|
913
|
+
* 原始大小 单位byte
|
|
914
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
915
|
+
*/
|
|
916
|
+
Size: number
|
|
917
|
+
|
|
918
|
+
/**
|
|
919
|
+
* 下载地址
|
|
920
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
921
|
+
*/
|
|
922
|
+
Url: string
|
|
923
|
+
|
|
924
|
+
/**
|
|
925
|
+
* 日志数据包名
|
|
926
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
927
|
+
*/
|
|
928
|
+
LogPacketName: string
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
/**
|
|
932
|
+
* 应用代理规则
|
|
933
|
+
*/
|
|
934
|
+
export interface ApplicationProxyRule {
|
|
935
|
+
/**
|
|
936
|
+
* 协议,取值为TCP或者UDP
|
|
937
|
+
*/
|
|
938
|
+
Proto: string
|
|
939
|
+
|
|
940
|
+
/**
|
|
941
|
+
* 端口,支持格式:
|
|
942
|
+
80:80端口
|
|
943
|
+
81-90:81至90端口
|
|
944
|
+
*/
|
|
945
|
+
Port: Array<string>
|
|
946
|
+
|
|
947
|
+
/**
|
|
948
|
+
* 源站类型,取值:
|
|
949
|
+
custom:手动添加
|
|
950
|
+
origins:源站组
|
|
951
|
+
load_balancing:负载均衡
|
|
952
|
+
*/
|
|
953
|
+
OriginType: string
|
|
954
|
+
|
|
955
|
+
/**
|
|
956
|
+
* 源站信息:
|
|
957
|
+
当OriginType=custom时,表示多个:
|
|
958
|
+
IP:端口
|
|
959
|
+
域名:端口
|
|
960
|
+
当OriginType=origins时,包含一个元素,表示源站组ID
|
|
961
|
+
当OriginType=load_balancing时,包含一个元素,表示负载均衡ID
|
|
962
|
+
*/
|
|
963
|
+
OriginValue: Array<string>
|
|
964
|
+
|
|
965
|
+
/**
|
|
966
|
+
* 规则ID
|
|
967
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
968
|
+
*/
|
|
969
|
+
RuleId?: string
|
|
970
|
+
|
|
971
|
+
/**
|
|
972
|
+
* 状态:
|
|
973
|
+
online:启用
|
|
974
|
+
offline:停用
|
|
975
|
+
progress:部署中
|
|
976
|
+
stopping:停用中
|
|
977
|
+
fail:部署失败/停用失败
|
|
978
|
+
*/
|
|
979
|
+
Status?: string
|
|
980
|
+
|
|
981
|
+
/**
|
|
982
|
+
* 传递客户端IP,当Proto=TCP时,取值:
|
|
983
|
+
TOA:TOA
|
|
984
|
+
PPV1: Proxy Protocol传递,协议版本V1
|
|
985
|
+
PPV2: Proxy Protocol传递,协议版本V2
|
|
986
|
+
OFF:不传递
|
|
987
|
+
当Proto=UDP时,取值:
|
|
988
|
+
PPV2: Proxy Protocol传递,协议版本V2
|
|
989
|
+
OFF:不传递
|
|
990
|
+
*/
|
|
991
|
+
ForwardClientIp?: string
|
|
992
|
+
|
|
993
|
+
/**
|
|
994
|
+
* 是否开启会话保持
|
|
995
|
+
*/
|
|
996
|
+
SessionPersist?: boolean
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
/**
|
|
1000
|
+
* 智能加速配置
|
|
1001
|
+
*/
|
|
1002
|
+
export interface SmartRouting {
|
|
1003
|
+
/**
|
|
1004
|
+
* 智能加速配置开关
|
|
1005
|
+
on:开启
|
|
1006
|
+
off:关闭
|
|
1007
|
+
*/
|
|
1008
|
+
Switch: string
|
|
1009
|
+
}
|
|
1010
|
+
|
|
1011
|
+
/**
|
|
1012
|
+
* DescribeDnsData返回参数结构体
|
|
1013
|
+
*/
|
|
1014
|
+
export interface DescribeDnsDataResponse {
|
|
1015
|
+
/**
|
|
1016
|
+
* 统计曲线数据
|
|
1017
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1018
|
+
*/
|
|
1019
|
+
Data: Array<DataItem>
|
|
1020
|
+
|
|
1021
|
+
/**
|
|
1022
|
+
* 时间粒度
|
|
1023
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1024
|
+
*/
|
|
1025
|
+
Interval: string
|
|
1026
|
+
|
|
1027
|
+
/**
|
|
1028
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1029
|
+
*/
|
|
1030
|
+
RequestId?: string
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
/**
|
|
1034
|
+
* 站点信息
|
|
1035
|
+
*/
|
|
1036
|
+
export interface Zone {
|
|
1037
|
+
/**
|
|
1038
|
+
* 站点ID
|
|
1039
|
+
*/
|
|
1040
|
+
Id: string
|
|
1041
|
+
|
|
1042
|
+
/**
|
|
1043
|
+
* 站点名称
|
|
1044
|
+
*/
|
|
1045
|
+
Name: string
|
|
1046
|
+
|
|
1047
|
+
/**
|
|
1048
|
+
* 站点当前使用的 NS 列表
|
|
1049
|
+
*/
|
|
1050
|
+
OriginalNameServers: Array<string>
|
|
1051
|
+
|
|
1052
|
+
/**
|
|
1053
|
+
* 腾讯云分配的 NS 列表
|
|
1054
|
+
*/
|
|
1055
|
+
NameServers: Array<string>
|
|
1056
|
+
|
|
1057
|
+
/**
|
|
1058
|
+
* 站点状态
|
|
1059
|
+
- active:NS 已切换
|
|
1060
|
+
- pending:NS 未切换
|
|
1061
|
+
- moved:NS 已切走
|
|
1062
|
+
- deactivated:被封禁
|
|
1063
|
+
*/
|
|
1064
|
+
Status: string
|
|
1065
|
+
|
|
1066
|
+
/**
|
|
1067
|
+
* 站点接入方式
|
|
1068
|
+
- full:NS 接入
|
|
1069
|
+
- partial:CNAME 接入
|
|
1070
|
+
*/
|
|
1071
|
+
Type: string
|
|
1072
|
+
|
|
1073
|
+
/**
|
|
1074
|
+
* 站点是否关闭
|
|
1075
|
+
*/
|
|
1076
|
+
Paused: boolean
|
|
1077
|
+
|
|
1078
|
+
/**
|
|
1079
|
+
* 站点创建时间
|
|
1080
|
+
*/
|
|
1081
|
+
CreatedOn: string
|
|
1082
|
+
|
|
1083
|
+
/**
|
|
1084
|
+
* 站点修改时间
|
|
1085
|
+
*/
|
|
1086
|
+
ModifiedOn: string
|
|
1087
|
+
|
|
1088
|
+
/**
|
|
1089
|
+
* cname 接入状态
|
|
1090
|
+
- finished 站点已验证
|
|
1091
|
+
- pending 站点验证中
|
|
1092
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1093
|
+
*/
|
|
1094
|
+
CnameStatus: string
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
/**
|
|
1098
|
+
* ModifyApplicationProxyStatus请求参数结构体
|
|
1099
|
+
*/
|
|
1100
|
+
export interface ModifyApplicationProxyStatusRequest {
|
|
1101
|
+
/**
|
|
1102
|
+
* 站点ID
|
|
1103
|
+
*/
|
|
1104
|
+
ZoneId: string
|
|
1105
|
+
|
|
1106
|
+
/**
|
|
1107
|
+
* 四层代理ID
|
|
1108
|
+
*/
|
|
1109
|
+
ProxyId: string
|
|
1110
|
+
|
|
1111
|
+
/**
|
|
1112
|
+
* 状态
|
|
1113
|
+
offline: 停用
|
|
1114
|
+
online: 启用
|
|
1115
|
+
*/
|
|
1116
|
+
Status: string
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
/**
|
|
1120
|
+
* 缓存时间设置
|
|
1121
|
+
*/
|
|
1122
|
+
export interface CacheConfigCache {
|
|
1123
|
+
/**
|
|
1124
|
+
* 缓存配置开关
|
|
1125
|
+
on:开启
|
|
1126
|
+
off:关闭
|
|
1127
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1128
|
+
*/
|
|
1129
|
+
Switch: string
|
|
1130
|
+
|
|
1131
|
+
/**
|
|
1132
|
+
* 缓存过期时间设置
|
|
1133
|
+
单位为秒,最大可设置为 365 天
|
|
1134
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1135
|
+
*/
|
|
1136
|
+
CacheTime?: number
|
|
1137
|
+
|
|
1138
|
+
/**
|
|
1139
|
+
* 是否开启强制缓存
|
|
1140
|
+
开启:on
|
|
1141
|
+
关闭:off
|
|
1142
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1143
|
+
*/
|
|
1144
|
+
IgnoreCacheControl?: string
|
|
1145
|
+
}
|
|
1146
|
+
|
|
1147
|
+
/**
|
|
1148
|
+
* 证书查询过滤条件
|
|
1149
|
+
*/
|
|
1150
|
+
export interface CertFilter {
|
|
1151
|
+
/**
|
|
1152
|
+
* 过滤字段名,支持的列表如下:
|
|
1153
|
+
- host:域名。
|
|
1154
|
+
- certId: 证书ID
|
|
1155
|
+
- certAlias: 证书备用名
|
|
1156
|
+
- certType: default: 默认证书, upload: 上传证书, managed:腾讯云证书
|
|
1157
|
+
*/
|
|
1158
|
+
Name: string
|
|
1159
|
+
|
|
1160
|
+
/**
|
|
1161
|
+
* 过滤字段值
|
|
1162
|
+
*/
|
|
1163
|
+
Values: Array<string>
|
|
1164
|
+
|
|
1165
|
+
/**
|
|
1166
|
+
* 是否启用模糊查询,仅支持过滤字段名host。
|
|
1167
|
+
模糊查询时,Value长度最大为1。
|
|
1168
|
+
*/
|
|
1169
|
+
Fuzzy?: boolean
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
/**
|
|
1173
|
+
* ModifyLoadBalancingStatus请求参数结构体
|
|
1174
|
+
*/
|
|
1175
|
+
export interface ModifyLoadBalancingStatusRequest {
|
|
1176
|
+
/**
|
|
1177
|
+
* 站点ID
|
|
1178
|
+
*/
|
|
1179
|
+
ZoneId: string
|
|
1180
|
+
|
|
1181
|
+
/**
|
|
1182
|
+
* 负载均衡ID
|
|
1183
|
+
*/
|
|
1184
|
+
LoadBalancingId: string
|
|
1185
|
+
|
|
1186
|
+
/**
|
|
1187
|
+
* 状态
|
|
1188
|
+
online: 启用
|
|
1189
|
+
offline: 停用
|
|
1190
|
+
*/
|
|
1191
|
+
Status: string
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
/**
|
|
1195
|
+
* Quic配置项
|
|
1196
|
+
*/
|
|
1197
|
+
export interface Quic {
|
|
1198
|
+
/**
|
|
1199
|
+
* 是否启动Quic配置
|
|
1200
|
+
*/
|
|
1201
|
+
Switch: string
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1204
|
+
/**
|
|
1205
|
+
* DescribeCnameStatus返回参数结构体
|
|
1206
|
+
*/
|
|
1207
|
+
export interface DescribeCnameStatusResponse {
|
|
1208
|
+
/**
|
|
1209
|
+
* 状态列表
|
|
1210
|
+
*/
|
|
1211
|
+
Status: Array<CnameStatus>
|
|
1212
|
+
|
|
1213
|
+
/**
|
|
1214
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1215
|
+
*/
|
|
1216
|
+
RequestId?: string
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
/**
|
|
1220
|
+
* DescribeLoadBalancing请求参数结构体
|
|
1221
|
+
*/
|
|
1222
|
+
export interface DescribeLoadBalancingRequest {
|
|
1223
|
+
/**
|
|
1224
|
+
* 站点ID
|
|
1225
|
+
*/
|
|
1226
|
+
ZoneId: string
|
|
1227
|
+
|
|
1228
|
+
/**
|
|
1229
|
+
* 分页参数Offset
|
|
1230
|
+
*/
|
|
1231
|
+
Offset: number
|
|
1232
|
+
|
|
1233
|
+
/**
|
|
1234
|
+
* 分页参数Limit
|
|
1235
|
+
*/
|
|
1236
|
+
Limit: number
|
|
1237
|
+
|
|
1238
|
+
/**
|
|
1239
|
+
* 过滤参数Host
|
|
1240
|
+
*/
|
|
1241
|
+
Host?: string
|
|
1242
|
+
|
|
1243
|
+
/**
|
|
1244
|
+
* 过滤参数Host是否支持模糊匹配
|
|
1245
|
+
*/
|
|
1246
|
+
Fuzzy?: boolean
|
|
1247
|
+
}
|
|
1248
|
+
|
|
1249
|
+
/**
|
|
1250
|
+
* ModifyApplicationProxyRule请求参数结构体
|
|
1251
|
+
*/
|
|
1252
|
+
export interface ModifyApplicationProxyRuleRequest {
|
|
1253
|
+
/**
|
|
1254
|
+
* 站点ID
|
|
1255
|
+
*/
|
|
1256
|
+
ZoneId: string
|
|
1257
|
+
|
|
1258
|
+
/**
|
|
1259
|
+
* 代理ID
|
|
1260
|
+
*/
|
|
1261
|
+
ProxyId: string
|
|
1262
|
+
|
|
1263
|
+
/**
|
|
1264
|
+
* 规则ID
|
|
1265
|
+
*/
|
|
1266
|
+
RuleId: string
|
|
1267
|
+
|
|
1268
|
+
/**
|
|
1269
|
+
* 协议,取值为TCP或者UDP
|
|
1270
|
+
*/
|
|
1271
|
+
Proto: string
|
|
1272
|
+
|
|
1273
|
+
/**
|
|
1274
|
+
* 端口,支持格式:
|
|
1275
|
+
80:80端口
|
|
1276
|
+
81-90:81至90端口
|
|
1277
|
+
*/
|
|
1278
|
+
Port: Array<string>
|
|
1279
|
+
|
|
1280
|
+
/**
|
|
1281
|
+
* 源站类型,取值:
|
|
1282
|
+
custom:手动添加
|
|
1283
|
+
origins:源站组
|
|
1284
|
+
load_balancing:负载均衡
|
|
1285
|
+
*/
|
|
1286
|
+
OriginType: string
|
|
1287
|
+
|
|
1288
|
+
/**
|
|
1289
|
+
* 源站信息:
|
|
1290
|
+
当OriginType=custom时,表示多个:
|
|
1291
|
+
IP:端口
|
|
1292
|
+
域名:端口
|
|
1293
|
+
当OriginType=origins时,包含一个元素,表示源站组ID
|
|
1294
|
+
当OriginType=load_balancing时,包含一个元素,表示负载均衡ID
|
|
1295
|
+
*/
|
|
1296
|
+
OriginValue: Array<string>
|
|
1297
|
+
|
|
1298
|
+
/**
|
|
1299
|
+
* 传递客户端IP,当Proto=TCP时,取值:
|
|
1300
|
+
TOA:TOA
|
|
1301
|
+
PPV1: Proxy Protocol传递,协议版本V1
|
|
1302
|
+
PPV2: Proxy Protocol传递,协议版本V2
|
|
1303
|
+
OFF:不传递
|
|
1304
|
+
当Proto=UDP时,取值:
|
|
1305
|
+
PPV2: Proxy Protocol传递,协议版本V2
|
|
1306
|
+
OFF:不传递
|
|
1307
|
+
*/
|
|
1308
|
+
ForwardClientIp?: string
|
|
1309
|
+
|
|
1310
|
+
/**
|
|
1311
|
+
* 是否开启会话保持
|
|
1312
|
+
*/
|
|
1313
|
+
SessionPersist?: boolean
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
/**
|
|
1317
|
+
* CNAME 状态
|
|
1318
|
+
*/
|
|
1319
|
+
export interface CnameStatus {
|
|
1320
|
+
/**
|
|
1321
|
+
* 记录名称
|
|
1322
|
+
*/
|
|
1323
|
+
Name: string
|
|
1324
|
+
|
|
1325
|
+
/**
|
|
1326
|
+
* CNAME 地址
|
|
1327
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1328
|
+
*/
|
|
1329
|
+
Cname: string
|
|
1330
|
+
|
|
1331
|
+
/**
|
|
1332
|
+
* 状态
|
|
1333
|
+
生效:active
|
|
1334
|
+
不生效:moved
|
|
1335
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1336
|
+
*/
|
|
1337
|
+
Status: string
|
|
1338
|
+
}
|
|
1339
|
+
|
|
1340
|
+
/**
|
|
1341
|
+
* ModifyZoneSetting返回参数结构体
|
|
1342
|
+
*/
|
|
1343
|
+
export interface ModifyZoneSettingResponse {
|
|
1344
|
+
/**
|
|
1345
|
+
* 站点ID
|
|
1346
|
+
*/
|
|
1347
|
+
ZoneId: string
|
|
1348
|
+
|
|
1349
|
+
/**
|
|
1350
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1351
|
+
*/
|
|
1352
|
+
RequestId?: string
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
/**
|
|
1356
|
+
* DownloadL7Logs返回参数结构体
|
|
1357
|
+
*/
|
|
1358
|
+
export interface DownloadL7LogsResponse {
|
|
1359
|
+
/**
|
|
1360
|
+
* 七层离线日志data
|
|
1361
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1362
|
+
*/
|
|
1363
|
+
Data: Array<L7OfflineLog>
|
|
1364
|
+
|
|
1365
|
+
/**
|
|
1366
|
+
* 页面大小
|
|
1367
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1368
|
+
*/
|
|
1369
|
+
PageSize: number
|
|
1370
|
+
|
|
1371
|
+
/**
|
|
1372
|
+
* 页号
|
|
1373
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1374
|
+
*/
|
|
1375
|
+
PageNo: number
|
|
1376
|
+
|
|
1377
|
+
/**
|
|
1378
|
+
* 总页数
|
|
1379
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1380
|
+
*/
|
|
1381
|
+
Pages: number
|
|
1382
|
+
|
|
1383
|
+
/**
|
|
1384
|
+
* 总条数
|
|
1385
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1386
|
+
*/
|
|
1387
|
+
TotalSize: number
|
|
1388
|
+
|
|
1389
|
+
/**
|
|
1390
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1391
|
+
*/
|
|
1392
|
+
RequestId?: string
|
|
1393
|
+
}
|
|
1394
|
+
|
|
1395
|
+
/**
|
|
1396
|
+
* CreateDnsRecord返回参数结构体
|
|
1397
|
+
*/
|
|
1398
|
+
export interface CreateDnsRecordResponse {
|
|
1399
|
+
/**
|
|
1400
|
+
* 记录 ID
|
|
1401
|
+
*/
|
|
1402
|
+
Id: string
|
|
1403
|
+
|
|
1404
|
+
/**
|
|
1405
|
+
* 记录类型
|
|
1406
|
+
*/
|
|
1407
|
+
Type: string
|
|
1408
|
+
|
|
1409
|
+
/**
|
|
1410
|
+
* 记录名称
|
|
1411
|
+
*/
|
|
1412
|
+
Name: string
|
|
1413
|
+
|
|
1414
|
+
/**
|
|
1415
|
+
* 记录内容
|
|
1416
|
+
*/
|
|
1417
|
+
Content: string
|
|
1418
|
+
|
|
1419
|
+
/**
|
|
1420
|
+
* 生存时间值
|
|
1421
|
+
*/
|
|
1422
|
+
Ttl: number
|
|
1423
|
+
|
|
1424
|
+
/**
|
|
1425
|
+
* 优先级
|
|
1426
|
+
*/
|
|
1427
|
+
Priority: number
|
|
1428
|
+
|
|
1429
|
+
/**
|
|
1430
|
+
* 代理模式
|
|
1431
|
+
*/
|
|
1432
|
+
Mode: string
|
|
1433
|
+
|
|
1434
|
+
/**
|
|
1435
|
+
* 解析状态
|
|
1436
|
+
active: 生效
|
|
1437
|
+
pending: 不生效
|
|
1438
|
+
*/
|
|
1439
|
+
Status: string
|
|
1440
|
+
|
|
1441
|
+
/**
|
|
1442
|
+
* 已锁定
|
|
1443
|
+
*/
|
|
1444
|
+
Locked: boolean
|
|
1445
|
+
|
|
1446
|
+
/**
|
|
1447
|
+
* 创建时间
|
|
1448
|
+
*/
|
|
1449
|
+
CreatedOn: string
|
|
1450
|
+
|
|
1451
|
+
/**
|
|
1452
|
+
* 修改时间
|
|
1453
|
+
*/
|
|
1454
|
+
ModifiedOn: string
|
|
1455
|
+
|
|
1456
|
+
/**
|
|
1457
|
+
* 站点 ID
|
|
1458
|
+
*/
|
|
1459
|
+
ZoneId: string
|
|
1460
|
+
|
|
1461
|
+
/**
|
|
1462
|
+
* 站点名称
|
|
1463
|
+
*/
|
|
1464
|
+
ZoneName: string
|
|
1465
|
+
|
|
1466
|
+
/**
|
|
1467
|
+
* CNAME 地址
|
|
1468
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1469
|
+
*/
|
|
1470
|
+
Cname: string
|
|
1471
|
+
|
|
1472
|
+
/**
|
|
1473
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1474
|
+
*/
|
|
1475
|
+
RequestId?: string
|
|
1476
|
+
}
|
|
1477
|
+
|
|
1478
|
+
/**
|
|
1479
|
+
* https 服务端证书配置
|
|
1480
|
+
*/
|
|
1481
|
+
export interface ServerCertInfo {
|
|
1482
|
+
/**
|
|
1483
|
+
* 服务器证书 ID, 默认证书ID, 或在 SSL 证书管理进行证书托管时自动生成
|
|
1484
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1485
|
+
*/
|
|
1486
|
+
CertId: string
|
|
1487
|
+
|
|
1488
|
+
/**
|
|
1489
|
+
* 证书备注名
|
|
1490
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1491
|
+
*/
|
|
1492
|
+
Alias?: string
|
|
1493
|
+
|
|
1494
|
+
/**
|
|
1495
|
+
* 证书类型:
|
|
1496
|
+
default: 默认证书
|
|
1497
|
+
upload:用户上传
|
|
1498
|
+
managed:腾讯云托管
|
|
1499
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1500
|
+
*/
|
|
1501
|
+
Type?: string
|
|
1502
|
+
|
|
1503
|
+
/**
|
|
1504
|
+
* 证书过期时间
|
|
1505
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1506
|
+
*/
|
|
1507
|
+
ExpireTime?: string
|
|
1508
|
+
|
|
1509
|
+
/**
|
|
1510
|
+
* 证书部署时间
|
|
1511
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1512
|
+
*/
|
|
1513
|
+
DeployTime?: string
|
|
1514
|
+
|
|
1515
|
+
/**
|
|
1516
|
+
* 部署状态:
|
|
1517
|
+
processing: 部署中
|
|
1518
|
+
deployed: 已部署
|
|
1519
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1520
|
+
*/
|
|
1521
|
+
Status?: string
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
/**
|
|
1525
|
+
* DescribeZones请求参数结构体
|
|
1526
|
+
*/
|
|
1527
|
+
export interface DescribeZonesRequest {
|
|
1528
|
+
/**
|
|
1529
|
+
* 分页参数,页偏移
|
|
1530
|
+
*/
|
|
1531
|
+
Offset?: number
|
|
1532
|
+
|
|
1533
|
+
/**
|
|
1534
|
+
* 分页参数,每页返回的站点个数
|
|
1535
|
+
*/
|
|
1536
|
+
Limit?: number
|
|
1537
|
+
|
|
1538
|
+
/**
|
|
1539
|
+
* 查询条件过滤器,复杂类型
|
|
1540
|
+
*/
|
|
1541
|
+
Filters?: Array<ZoneFilter>
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
/**
|
|
1545
|
+
* 源站组记录
|
|
1546
|
+
*/
|
|
1547
|
+
export interface OriginRecord {
|
|
1548
|
+
/**
|
|
1549
|
+
* 记录值
|
|
1550
|
+
*/
|
|
1551
|
+
Record: string
|
|
1552
|
+
|
|
1553
|
+
/**
|
|
1554
|
+
* 当源站配置类型Type=area时,表示区域
|
|
1555
|
+
当源站类型Type=area时,为空表示默认区域
|
|
1556
|
+
*/
|
|
1557
|
+
Area: Array<string>
|
|
1558
|
+
|
|
1559
|
+
/**
|
|
1560
|
+
* 当源站配置类型Type=weight时,表示权重
|
|
1561
|
+
*/
|
|
1562
|
+
Weight: number
|
|
1563
|
+
|
|
1564
|
+
/**
|
|
1565
|
+
* 端口
|
|
1566
|
+
*/
|
|
1567
|
+
Port: number
|
|
1568
|
+
|
|
1569
|
+
/**
|
|
1570
|
+
* 记录ID
|
|
1571
|
+
*/
|
|
1572
|
+
RecordId?: string
|
|
1573
|
+
|
|
1574
|
+
/**
|
|
1575
|
+
* 是否私有鉴权
|
|
1576
|
+
当源站类型OriginType=third_part时有效
|
|
1577
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1578
|
+
*/
|
|
1579
|
+
Private?: boolean
|
|
1580
|
+
|
|
1581
|
+
/**
|
|
1582
|
+
* 私有鉴权参数
|
|
1583
|
+
当源站类型Private=true时有效
|
|
1584
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1585
|
+
*/
|
|
1586
|
+
PrivateParameter?: Array<OriginRecordPrivateParameter>
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
/**
|
|
1590
|
+
* CreatePrefetchTask请求参数结构体
|
|
1591
|
+
*/
|
|
1592
|
+
export interface CreatePrefetchTaskRequest {
|
|
1593
|
+
/**
|
|
1594
|
+
* Zone ID
|
|
1595
|
+
*/
|
|
1596
|
+
ZoneId: string
|
|
1597
|
+
|
|
1598
|
+
/**
|
|
1599
|
+
* 要预热的资源列表,每个元素格式类似如下:
|
|
1600
|
+
http://www.example.com/example.txt
|
|
1601
|
+
*/
|
|
1602
|
+
Targets?: Array<string>
|
|
1603
|
+
|
|
1604
|
+
/**
|
|
1605
|
+
* 是否对url进行encode
|
|
1606
|
+
若内容含有非 ASCII 字符集的字符,请开启此开关,编码转换(编码规则遵循 RFC3986)
|
|
1607
|
+
*/
|
|
1608
|
+
EncodeUrl?: boolean
|
|
1609
|
+
|
|
1610
|
+
/**
|
|
1611
|
+
* 附带的http头部信息
|
|
1612
|
+
*/
|
|
1613
|
+
Headers?: Array<Header>
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
/**
|
|
1617
|
+
* DeleteApplicationProxyRule请求参数结构体
|
|
1618
|
+
*/
|
|
1619
|
+
export interface DeleteApplicationProxyRuleRequest {
|
|
1620
|
+
/**
|
|
1621
|
+
* 站点ID
|
|
1622
|
+
*/
|
|
1623
|
+
ZoneId: string
|
|
1624
|
+
|
|
1625
|
+
/**
|
|
1626
|
+
* 代理ID
|
|
1627
|
+
*/
|
|
1628
|
+
ProxyId: string
|
|
1629
|
+
|
|
1630
|
+
/**
|
|
1631
|
+
* 规则ID
|
|
1632
|
+
*/
|
|
1633
|
+
RuleId: string
|
|
1634
|
+
}
|
|
1635
|
+
|
|
1636
|
+
/**
|
|
1637
|
+
* 缓存遵循源站配置
|
|
1638
|
+
*/
|
|
1639
|
+
export interface CacheConfigFollowOrigin {
|
|
1640
|
+
/**
|
|
1641
|
+
* 遵循源站配置开关
|
|
1642
|
+
on:开启
|
|
1643
|
+
off:关闭
|
|
1644
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1645
|
+
*/
|
|
1646
|
+
Switch: string
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
/**
|
|
1650
|
+
* 自定义 nameservers
|
|
1651
|
+
*/
|
|
1652
|
+
export interface VanityNameServers {
|
|
1653
|
+
/**
|
|
1654
|
+
* 自定义 ns 开关
|
|
1655
|
+
- on 开启
|
|
1656
|
+
- off 关闭
|
|
1657
|
+
*/
|
|
1658
|
+
Switch: string
|
|
1659
|
+
|
|
1660
|
+
/**
|
|
1661
|
+
* 自定义 ns 列表
|
|
1662
|
+
*/
|
|
1663
|
+
Servers?: Array<string>
|
|
1664
|
+
}
|
|
1665
|
+
|
|
1666
|
+
/**
|
|
1667
|
+
* DescribeApplicationProxy返回参数结构体
|
|
1668
|
+
*/
|
|
1669
|
+
export interface DescribeApplicationProxyResponse {
|
|
1670
|
+
/**
|
|
1671
|
+
* 数据列表
|
|
1672
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1673
|
+
*/
|
|
1674
|
+
Data: Array<ApplicationProxy>
|
|
1675
|
+
|
|
1676
|
+
/**
|
|
1677
|
+
* 记录总数
|
|
1678
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1679
|
+
*/
|
|
1680
|
+
TotalCount: number
|
|
1681
|
+
|
|
1682
|
+
/**
|
|
1683
|
+
* 当ZoneId不为空时,表示当前站点允许创建的实例数量
|
|
1684
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1685
|
+
*/
|
|
1686
|
+
Quota: number
|
|
1687
|
+
|
|
1688
|
+
/**
|
|
1689
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1690
|
+
*/
|
|
1691
|
+
RequestId?: string
|
|
1692
|
+
}
|
|
1693
|
+
|
|
1694
|
+
/**
|
|
1695
|
+
* CreateLoadBalancing返回参数结构体
|
|
1696
|
+
*/
|
|
1697
|
+
export interface CreateLoadBalancingResponse {
|
|
1698
|
+
/**
|
|
1699
|
+
* 负载均衡ID
|
|
1700
|
+
*/
|
|
1701
|
+
LoadBalancingId: string
|
|
1702
|
+
|
|
1703
|
+
/**
|
|
1704
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1705
|
+
*/
|
|
1706
|
+
RequestId?: string
|
|
1707
|
+
}
|
|
1708
|
+
|
|
1709
|
+
/**
|
|
1710
|
+
* IdentifyZone返回参数结构体
|
|
1711
|
+
*/
|
|
1712
|
+
export interface IdentifyZoneResponse {
|
|
1713
|
+
/**
|
|
1714
|
+
* 站点名称
|
|
1715
|
+
*/
|
|
1716
|
+
Name: string
|
|
1717
|
+
|
|
1718
|
+
/**
|
|
1719
|
+
* 子域
|
|
1720
|
+
*/
|
|
1721
|
+
Subdomain: string
|
|
1722
|
+
|
|
1723
|
+
/**
|
|
1724
|
+
* 记录类型
|
|
1725
|
+
*/
|
|
1726
|
+
RecordType: string
|
|
1727
|
+
|
|
1728
|
+
/**
|
|
1729
|
+
* 记录值
|
|
1730
|
+
*/
|
|
1731
|
+
RecordValue: string
|
|
1732
|
+
|
|
1733
|
+
/**
|
|
1734
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1735
|
+
*/
|
|
1736
|
+
RequestId?: string
|
|
1737
|
+
}
|
|
1738
|
+
|
|
1739
|
+
/**
|
|
1740
|
+
* WebSocket配置
|
|
1741
|
+
*/
|
|
1742
|
+
export interface WebSocket {
|
|
1743
|
+
/**
|
|
1744
|
+
* WebSocket 超时配置开关, 开关为off时,平台仍支持WebSocket连接,此时超时时间默认为15秒,若需要调整超时时间,将开关置为on.
|
|
1745
|
+
*/
|
|
1746
|
+
Switch: string
|
|
1747
|
+
|
|
1748
|
+
/**
|
|
1749
|
+
* 设置超时时间,单位为秒,最大超时时间120秒。
|
|
1750
|
+
*/
|
|
1751
|
+
Timeout?: number
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
/**
|
|
1755
|
+
* 统计曲线数据项
|
|
1756
|
+
*/
|
|
1757
|
+
export interface DataItem {
|
|
1758
|
+
/**
|
|
1759
|
+
* 时间
|
|
1760
|
+
*/
|
|
1761
|
+
Time: string
|
|
1762
|
+
|
|
1763
|
+
/**
|
|
1764
|
+
* 数值
|
|
1765
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1766
|
+
*/
|
|
1767
|
+
Value: number
|
|
1768
|
+
}
|
|
1769
|
+
|
|
1770
|
+
/**
|
|
1771
|
+
* ModifyLoadBalancing请求参数结构体
|
|
1772
|
+
*/
|
|
1773
|
+
export interface ModifyLoadBalancingRequest {
|
|
1774
|
+
/**
|
|
1775
|
+
* 站点ID
|
|
1776
|
+
*/
|
|
1777
|
+
ZoneId: string
|
|
1778
|
+
|
|
1779
|
+
/**
|
|
1780
|
+
* 负载均衡ID
|
|
1781
|
+
*/
|
|
1782
|
+
LoadBalancingId: string
|
|
1783
|
+
|
|
1784
|
+
/**
|
|
1785
|
+
* 代理模式:
|
|
1786
|
+
dns_only: 仅DNS
|
|
1787
|
+
proxied: 开启代理
|
|
1788
|
+
*/
|
|
1789
|
+
Type: string
|
|
1790
|
+
|
|
1791
|
+
/**
|
|
1792
|
+
* 使用的源站组ID
|
|
1793
|
+
*/
|
|
1794
|
+
OriginId: Array<string>
|
|
1795
|
+
|
|
1796
|
+
/**
|
|
1797
|
+
* 当Type=dns_only表示DNS的TTL时间
|
|
1798
|
+
*/
|
|
1799
|
+
TTL?: number
|
|
1800
|
+
}
|
|
1801
|
+
|
|
1802
|
+
/**
|
|
1803
|
+
* CreateLoadBalancing请求参数结构体
|
|
1804
|
+
*/
|
|
1805
|
+
export interface CreateLoadBalancingRequest {
|
|
1806
|
+
/**
|
|
1807
|
+
* 站点ID
|
|
1808
|
+
*/
|
|
1809
|
+
ZoneId: string
|
|
1810
|
+
|
|
1811
|
+
/**
|
|
1812
|
+
* 子域名,填写@表示根域
|
|
1813
|
+
*/
|
|
1814
|
+
Host: string
|
|
1815
|
+
|
|
1816
|
+
/**
|
|
1817
|
+
* 代理模式:
|
|
1818
|
+
dns_only: 仅DNS
|
|
1819
|
+
proxied: 开启代理
|
|
1820
|
+
*/
|
|
1821
|
+
Type: string
|
|
1822
|
+
|
|
1823
|
+
/**
|
|
1824
|
+
* 使用的源站组ID
|
|
1825
|
+
*/
|
|
1826
|
+
OriginId: Array<string>
|
|
1827
|
+
|
|
1828
|
+
/**
|
|
1829
|
+
* 当Type=dns_only表示DNS的TTL时间
|
|
1830
|
+
*/
|
|
1831
|
+
TTL?: number
|
|
1832
|
+
}
|
|
1833
|
+
|
|
1834
|
+
/**
|
|
1835
|
+
* DescribeDnssec请求参数结构体
|
|
1836
|
+
*/
|
|
1837
|
+
export interface DescribeDnssecRequest {
|
|
1838
|
+
/**
|
|
1839
|
+
* 站点 ID
|
|
1840
|
+
*/
|
|
1841
|
+
Id: string
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
/**
|
|
1845
|
+
* DescribeLoadBalancingDetail返回参数结构体
|
|
1846
|
+
*/
|
|
1847
|
+
export interface DescribeLoadBalancingDetailResponse {
|
|
1848
|
+
/**
|
|
1849
|
+
* 负载均衡ID
|
|
1850
|
+
*/
|
|
1851
|
+
LoadBalancingId: string
|
|
1852
|
+
|
|
1853
|
+
/**
|
|
1854
|
+
* 站点ID
|
|
1855
|
+
*/
|
|
1856
|
+
ZoneId: string
|
|
1857
|
+
|
|
1858
|
+
/**
|
|
1859
|
+
* 子域名,填写@表示根域
|
|
1860
|
+
*/
|
|
1861
|
+
Host: string
|
|
1862
|
+
|
|
1863
|
+
/**
|
|
1864
|
+
* 代理模式:
|
|
1865
|
+
dns_only: 仅DNS
|
|
1866
|
+
proxied: 开启代理
|
|
1867
|
+
*/
|
|
1868
|
+
Type: string
|
|
1869
|
+
|
|
1870
|
+
/**
|
|
1871
|
+
* 当Type=dns_only表示DNS的TTL时间
|
|
1872
|
+
*/
|
|
1873
|
+
TTL: number
|
|
1874
|
+
|
|
1875
|
+
/**
|
|
1876
|
+
* 使用的源站组ID
|
|
1877
|
+
*/
|
|
1878
|
+
OriginId: Array<string>
|
|
1879
|
+
|
|
1880
|
+
/**
|
|
1881
|
+
* 使用的源站信息
|
|
1882
|
+
*/
|
|
1883
|
+
Origin: Array<OriginGroup>
|
|
1884
|
+
|
|
1885
|
+
/**
|
|
1886
|
+
* 更新时间
|
|
1887
|
+
*/
|
|
1888
|
+
UpdateTime: string
|
|
1889
|
+
|
|
1890
|
+
/**
|
|
1891
|
+
* 状态
|
|
1892
|
+
*/
|
|
1893
|
+
Status: string
|
|
1894
|
+
|
|
1895
|
+
/**
|
|
1896
|
+
* 调度域名
|
|
1897
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1898
|
+
*/
|
|
1899
|
+
Cname: string
|
|
1900
|
+
|
|
1901
|
+
/**
|
|
1902
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1903
|
+
*/
|
|
1904
|
+
RequestId?: string
|
|
1905
|
+
}
|
|
1906
|
+
|
|
1907
|
+
/**
|
|
1908
|
+
* DescribePrefetchTasks请求参数结构体
|
|
1909
|
+
*/
|
|
1910
|
+
export interface DescribePrefetchTasksRequest {
|
|
1911
|
+
/**
|
|
1912
|
+
* 任务ID
|
|
1913
|
+
*/
|
|
1914
|
+
JobId?: string
|
|
1915
|
+
|
|
1916
|
+
/**
|
|
1917
|
+
* 查询起始时间
|
|
1918
|
+
*/
|
|
1919
|
+
StartTime?: string
|
|
1920
|
+
|
|
1921
|
+
/**
|
|
1922
|
+
* 查询结束时间
|
|
1923
|
+
*/
|
|
1924
|
+
EndTime?: string
|
|
1925
|
+
|
|
1926
|
+
/**
|
|
1927
|
+
* 查询起始偏移量
|
|
1928
|
+
*/
|
|
1929
|
+
Offset?: number
|
|
1930
|
+
|
|
1931
|
+
/**
|
|
1932
|
+
* 查询最大返回的结果条数
|
|
1933
|
+
*/
|
|
1934
|
+
Limit?: number
|
|
1935
|
+
|
|
1936
|
+
/**
|
|
1937
|
+
* 查询的状态
|
|
1938
|
+
允许的值为:processing、success、failed、timeout、invalid
|
|
1939
|
+
*/
|
|
1940
|
+
Statuses?: Array<string>
|
|
1941
|
+
|
|
1942
|
+
/**
|
|
1943
|
+
* zone id
|
|
1944
|
+
*/
|
|
1945
|
+
ZoneId?: string
|
|
1946
|
+
|
|
1947
|
+
/**
|
|
1948
|
+
* 查询的域名列表
|
|
1949
|
+
*/
|
|
1950
|
+
Domains?: Array<string>
|
|
1951
|
+
|
|
1952
|
+
/**
|
|
1953
|
+
* 查询的资源
|
|
1954
|
+
*/
|
|
1955
|
+
Target?: string
|
|
1956
|
+
}
|
|
1957
|
+
|
|
1958
|
+
/**
|
|
1959
|
+
* DNS 记录
|
|
1960
|
+
*/
|
|
1961
|
+
export interface DnsRecord {
|
|
1962
|
+
/**
|
|
1963
|
+
* 记录 ID
|
|
1964
|
+
*/
|
|
1965
|
+
Id: string
|
|
1966
|
+
|
|
1967
|
+
/**
|
|
1968
|
+
* 记录类型
|
|
1969
|
+
*/
|
|
1970
|
+
Type: string
|
|
1971
|
+
|
|
1972
|
+
/**
|
|
1973
|
+
* 主机记录
|
|
1974
|
+
*/
|
|
1975
|
+
Name: string
|
|
1976
|
+
|
|
1977
|
+
/**
|
|
1978
|
+
* 记录值
|
|
1979
|
+
*/
|
|
1980
|
+
Content: string
|
|
1981
|
+
|
|
1982
|
+
/**
|
|
1983
|
+
* 代理模式
|
|
1984
|
+
*/
|
|
1985
|
+
Mode: string
|
|
1986
|
+
|
|
1987
|
+
/**
|
|
1988
|
+
* TTL 值
|
|
1989
|
+
*/
|
|
1990
|
+
Ttl: number
|
|
1991
|
+
|
|
1992
|
+
/**
|
|
1993
|
+
* 优先级
|
|
1994
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1995
|
+
*/
|
|
1996
|
+
Priority: number
|
|
1997
|
+
|
|
1998
|
+
/**
|
|
1999
|
+
* 创建时间
|
|
2000
|
+
*/
|
|
2001
|
+
CreatedOn: string
|
|
2002
|
+
|
|
2003
|
+
/**
|
|
2004
|
+
* 修改时间
|
|
2005
|
+
*/
|
|
2006
|
+
ModifiedOn: string
|
|
2007
|
+
|
|
2008
|
+
/**
|
|
2009
|
+
* 域名锁
|
|
2010
|
+
*/
|
|
2011
|
+
Locked: boolean
|
|
2012
|
+
|
|
2013
|
+
/**
|
|
2014
|
+
* 站点 ID
|
|
2015
|
+
*/
|
|
2016
|
+
ZoneId: string
|
|
2017
|
+
|
|
2018
|
+
/**
|
|
2019
|
+
* 站点名称
|
|
2020
|
+
*/
|
|
2021
|
+
ZoneName: string
|
|
2022
|
+
|
|
2023
|
+
/**
|
|
2024
|
+
* 解析状态
|
|
2025
|
+
active: 生效
|
|
2026
|
+
pending: 不生效
|
|
2027
|
+
*/
|
|
2028
|
+
Status: string
|
|
2029
|
+
|
|
2030
|
+
/**
|
|
2031
|
+
* CNAME 地址
|
|
2032
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2033
|
+
*/
|
|
2034
|
+
Cname: string
|
|
2035
|
+
|
|
2036
|
+
/**
|
|
2037
|
+
* 域名是否开启了lb,四层,安全
|
|
2038
|
+
- lb 负载均衡
|
|
2039
|
+
- security 安全
|
|
2040
|
+
- l4 四层
|
|
2041
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2042
|
+
*/
|
|
2043
|
+
DomainStatus: Array<string>
|
|
2044
|
+
}
|
|
2045
|
+
|
|
2046
|
+
/**
|
|
2047
|
+
* DescribeDnsRecords请求参数结构体
|
|
2048
|
+
*/
|
|
2049
|
+
export interface DescribeDnsRecordsRequest {
|
|
2050
|
+
/**
|
|
2051
|
+
* 查询条件过滤器
|
|
2052
|
+
*/
|
|
2053
|
+
Filters?: Array<DnsRecordFilter>
|
|
2054
|
+
|
|
2055
|
+
/**
|
|
2056
|
+
* 排序
|
|
2057
|
+
*/
|
|
2058
|
+
Order?: string
|
|
2059
|
+
|
|
2060
|
+
/**
|
|
2061
|
+
* 可选值 asc, desc
|
|
2062
|
+
*/
|
|
2063
|
+
Direction?: string
|
|
2064
|
+
|
|
2065
|
+
/**
|
|
2066
|
+
* 可选值 all, any
|
|
2067
|
+
*/
|
|
2068
|
+
Match?: string
|
|
2069
|
+
|
|
2070
|
+
/**
|
|
2071
|
+
* 分页查询限制数目,默认为 100,最大可设置为 1000
|
|
2072
|
+
*/
|
|
2073
|
+
Limit?: number
|
|
2074
|
+
|
|
2075
|
+
/**
|
|
2076
|
+
* 分页查询偏移量,默认为 0
|
|
2077
|
+
*/
|
|
2078
|
+
Offset?: number
|
|
2079
|
+
|
|
2080
|
+
/**
|
|
2081
|
+
* 站点 ID
|
|
2082
|
+
*/
|
|
2083
|
+
ZoneId?: string
|
|
2084
|
+
}
|
|
2085
|
+
|
|
2086
|
+
/**
|
|
2087
|
+
* CreatePrefetchTask返回参数结构体
|
|
2088
|
+
*/
|
|
2089
|
+
export interface CreatePrefetchTaskResponse {
|
|
2090
|
+
/**
|
|
2091
|
+
* 任务ID
|
|
2092
|
+
*/
|
|
2093
|
+
JobId: string
|
|
2094
|
+
|
|
2095
|
+
/**
|
|
2096
|
+
* 失败的任务列表
|
|
2097
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2098
|
+
*/
|
|
2099
|
+
FailedList: Array<FailReason>
|
|
2100
|
+
|
|
2101
|
+
/**
|
|
2102
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2103
|
+
*/
|
|
2104
|
+
RequestId?: string
|
|
2105
|
+
}
|
|
2106
|
+
|
|
2107
|
+
/**
|
|
2108
|
+
* DescribeDefaultCertificates请求参数结构体
|
|
2109
|
+
*/
|
|
2110
|
+
export interface DescribeDefaultCertificatesRequest {
|
|
2111
|
+
/**
|
|
2112
|
+
* Zone ID
|
|
2113
|
+
*/
|
|
2114
|
+
ZoneId: string
|
|
2115
|
+
}
|
|
2116
|
+
|
|
2117
|
+
/**
|
|
2118
|
+
* ModifyApplicationProxyRule返回参数结构体
|
|
2119
|
+
*/
|
|
2120
|
+
export interface ModifyApplicationProxyRuleResponse {
|
|
2121
|
+
/**
|
|
2122
|
+
* 规则ID
|
|
2123
|
+
*/
|
|
2124
|
+
RuleId: string
|
|
2125
|
+
|
|
2126
|
+
/**
|
|
2127
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2128
|
+
*/
|
|
2129
|
+
RequestId?: string
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
/**
|
|
2133
|
+
* 失败原因
|
|
2134
|
+
*/
|
|
2135
|
+
export interface FailReason {
|
|
2136
|
+
/**
|
|
2137
|
+
* 失败原因
|
|
2138
|
+
*/
|
|
2139
|
+
Reason: string
|
|
2140
|
+
|
|
2141
|
+
/**
|
|
2142
|
+
* 处理失败的资源列表。
|
|
2143
|
+
该列表元素来源于输入参数中的Targets,因此格式和入参中的Targets保持一致
|
|
2144
|
+
*/
|
|
2145
|
+
Targets: Array<string>
|
|
2146
|
+
}
|
|
2147
|
+
|
|
2148
|
+
/**
|
|
2149
|
+
* CreateZone请求参数结构体
|
|
2150
|
+
*/
|
|
2151
|
+
export interface CreateZoneRequest {
|
|
2152
|
+
/**
|
|
2153
|
+
* 站点名字
|
|
2154
|
+
*/
|
|
2155
|
+
Name: string
|
|
2156
|
+
|
|
2157
|
+
/**
|
|
2158
|
+
* 接入方式,默认full
|
|
2159
|
+
- full NS接入
|
|
2160
|
+
- partial CNAME接入
|
|
2161
|
+
*/
|
|
2162
|
+
Type?: string
|
|
2163
|
+
|
|
2164
|
+
/**
|
|
2165
|
+
* 是否跳过站点历史解析记录扫描
|
|
2166
|
+
*/
|
|
2167
|
+
JumpStart?: boolean
|
|
2168
|
+
}
|
|
2169
|
+
|
|
2170
|
+
/**
|
|
2171
|
+
* 源站记录私有鉴权参数
|
|
2172
|
+
*/
|
|
2173
|
+
export interface OriginRecordPrivateParameter {
|
|
2174
|
+
/**
|
|
2175
|
+
* 私有鉴权参数名称:
|
|
2176
|
+
"AccessKeyId":Access Key ID
|
|
2177
|
+
"SecretAccessKey":Secret Access Key
|
|
2178
|
+
*/
|
|
2179
|
+
Name: string
|
|
2180
|
+
|
|
2181
|
+
/**
|
|
2182
|
+
* 私有鉴权参数数值
|
|
2183
|
+
*/
|
|
2184
|
+
Value: string
|
|
2185
|
+
}
|
|
2186
|
+
|
|
2187
|
+
/**
|
|
2188
|
+
* CheckCertificate返回参数结构体
|
|
2189
|
+
*/
|
|
2190
|
+
export interface CheckCertificateResponse {
|
|
2191
|
+
/**
|
|
2192
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2193
|
+
*/
|
|
2194
|
+
RequestId?: string
|
|
2195
|
+
}
|
|
2196
|
+
|
|
2197
|
+
/**
|
|
2198
|
+
* DescribePurgeTasks返回参数结构体
|
|
2199
|
+
*/
|
|
2200
|
+
export interface DescribePurgeTasksResponse {
|
|
2201
|
+
/**
|
|
2202
|
+
* 该查询条件总共条目数
|
|
2203
|
+
*/
|
|
2204
|
+
TotalCount: number
|
|
2205
|
+
|
|
2206
|
+
/**
|
|
2207
|
+
* 任务结果列表
|
|
2208
|
+
*/
|
|
2209
|
+
Tasks: Array<Task>
|
|
2210
|
+
|
|
2211
|
+
/**
|
|
2212
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2213
|
+
*/
|
|
2214
|
+
RequestId?: string
|
|
2215
|
+
}
|
|
2216
|
+
|
|
2217
|
+
/**
|
|
2218
|
+
* DownloadL7Logs请求参数结构体
|
|
2219
|
+
*/
|
|
2220
|
+
export interface DownloadL7LogsRequest {
|
|
2221
|
+
/**
|
|
2222
|
+
* 起始时间(需严格按照RFC3339标准传参)
|
|
2223
|
+
*/
|
|
2224
|
+
StartTime: string
|
|
2225
|
+
|
|
2226
|
+
/**
|
|
2227
|
+
* 结束时间(需严格按照RFC3339标准传参)
|
|
2228
|
+
*/
|
|
2229
|
+
EndTime: string
|
|
2230
|
+
|
|
2231
|
+
/**
|
|
2232
|
+
* 每页展示条数
|
|
2233
|
+
*/
|
|
2234
|
+
PageSize: number
|
|
2235
|
+
|
|
2236
|
+
/**
|
|
2237
|
+
* 当前页
|
|
2238
|
+
*/
|
|
2239
|
+
PageNo: number
|
|
2240
|
+
|
|
2241
|
+
/**
|
|
2242
|
+
* 站点集合
|
|
2243
|
+
*/
|
|
2244
|
+
Zones?: Array<string>
|
|
2245
|
+
|
|
2246
|
+
/**
|
|
2247
|
+
* 域名集合
|
|
2248
|
+
*/
|
|
2249
|
+
Domains?: Array<string>
|
|
2250
|
+
}
|
|
2251
|
+
|
|
2252
|
+
/**
|
|
2253
|
+
* DeleteLoadBalancing返回参数结构体
|
|
2254
|
+
*/
|
|
2255
|
+
export interface DeleteLoadBalancingResponse {
|
|
2256
|
+
/**
|
|
2257
|
+
* 负载均衡ID
|
|
2258
|
+
*/
|
|
2259
|
+
LoadBalancingId: string
|
|
2260
|
+
|
|
2261
|
+
/**
|
|
2262
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2263
|
+
*/
|
|
2264
|
+
RequestId?: string
|
|
2265
|
+
}
|
|
2266
|
+
|
|
2267
|
+
/**
|
|
2268
|
+
* CheckCertificate请求参数结构体
|
|
2269
|
+
*/
|
|
2270
|
+
export interface CheckCertificateRequest {
|
|
2271
|
+
/**
|
|
2272
|
+
* 证书
|
|
2273
|
+
*/
|
|
2274
|
+
Certificate: string
|
|
2275
|
+
|
|
2276
|
+
/**
|
|
2277
|
+
* 私钥
|
|
2278
|
+
*/
|
|
2279
|
+
PrivateKey: string
|
|
2280
|
+
}
|
|
2281
|
+
|
|
2282
|
+
/**
|
|
2283
|
+
* CreateApplicationProxyRule请求参数结构体
|
|
2284
|
+
*/
|
|
2285
|
+
export interface CreateApplicationProxyRuleRequest {
|
|
2286
|
+
/**
|
|
2287
|
+
* 站点ID
|
|
2288
|
+
*/
|
|
2289
|
+
ZoneId: string
|
|
2290
|
+
|
|
2291
|
+
/**
|
|
2292
|
+
* 代理ID
|
|
2293
|
+
*/
|
|
2294
|
+
ProxyId: string
|
|
2295
|
+
|
|
2296
|
+
/**
|
|
2297
|
+
* 协议,取值为TCP或者UDP
|
|
2298
|
+
*/
|
|
2299
|
+
Proto: string
|
|
2300
|
+
|
|
2301
|
+
/**
|
|
2302
|
+
* 端口,支持格式:
|
|
2303
|
+
80:80端口
|
|
2304
|
+
81-90:81至90端口
|
|
2305
|
+
*/
|
|
2306
|
+
Port: Array<string>
|
|
2307
|
+
|
|
2308
|
+
/**
|
|
2309
|
+
* 源站类型,取值:
|
|
2310
|
+
custom:手动添加
|
|
2311
|
+
origins:源站组
|
|
2312
|
+
load_balancing:负载均衡
|
|
2313
|
+
*/
|
|
2314
|
+
OriginType: string
|
|
2315
|
+
|
|
2316
|
+
/**
|
|
2317
|
+
* 源站信息:
|
|
2318
|
+
当OriginType=custom时,表示多个:
|
|
2319
|
+
IP:端口
|
|
2320
|
+
域名:端口
|
|
2321
|
+
当OriginType=origins时,包含一个元素,表示源站组ID
|
|
2322
|
+
当OriginType=load_balancing时,包含一个元素,表示负载均衡ID
|
|
2323
|
+
*/
|
|
2324
|
+
OriginValue: Array<string>
|
|
2325
|
+
|
|
2326
|
+
/**
|
|
2327
|
+
* 传递客户端IP,当Proto=TCP时,取值:
|
|
2328
|
+
TOA:TOA
|
|
2329
|
+
PPV1: Proxy Protocol传递,协议版本V1
|
|
2330
|
+
PPV2: Proxy Protocol传递,协议版本V2
|
|
2331
|
+
OFF:不传递
|
|
2332
|
+
当Proto=UDP时,取值:
|
|
2333
|
+
PPV2: Proxy Protocol传递,协议版本V2
|
|
2334
|
+
OFF:不传递
|
|
2335
|
+
*/
|
|
2336
|
+
ForwardClientIp?: string
|
|
2337
|
+
|
|
2338
|
+
/**
|
|
2339
|
+
* 是否开启会话保持
|
|
2340
|
+
*/
|
|
2341
|
+
SessionPersist?: boolean
|
|
2342
|
+
}
|
|
2343
|
+
|
|
2344
|
+
/**
|
|
2345
|
+
* 访问协议强制https跳转配置
|
|
2346
|
+
*/
|
|
2347
|
+
export interface ForceRedirect {
|
|
2348
|
+
/**
|
|
2349
|
+
* 访问强制跳转配置开关
|
|
2350
|
+
on:开启
|
|
2351
|
+
off:关闭
|
|
2352
|
+
*/
|
|
2353
|
+
Switch: string
|
|
2354
|
+
|
|
2355
|
+
/**
|
|
2356
|
+
* 重定向状态码
|
|
2357
|
+
301
|
|
2358
|
+
302
|
|
2359
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2360
|
+
*/
|
|
2361
|
+
RedirectStatusCode?: number
|
|
2362
|
+
}
|
|
2363
|
+
|
|
2364
|
+
/**
|
|
2365
|
+
* ModifyApplicationProxy请求参数结构体
|
|
2366
|
+
*/
|
|
2367
|
+
export interface ModifyApplicationProxyRequest {
|
|
2368
|
+
/**
|
|
2369
|
+
* 站点ID
|
|
2370
|
+
*/
|
|
2371
|
+
ZoneId: string
|
|
2372
|
+
|
|
2373
|
+
/**
|
|
2374
|
+
* 四层代理ID
|
|
2375
|
+
*/
|
|
2376
|
+
ProxyId: string
|
|
2377
|
+
|
|
2378
|
+
/**
|
|
2379
|
+
* 四层代理名称
|
|
2380
|
+
*/
|
|
2381
|
+
ProxyName: string
|
|
2382
|
+
|
|
2383
|
+
/**
|
|
2384
|
+
* 参数已经废弃
|
|
2385
|
+
*/
|
|
2386
|
+
ForwardClientIp: string
|
|
2387
|
+
|
|
2388
|
+
/**
|
|
2389
|
+
* 参数已经废弃
|
|
2390
|
+
*/
|
|
2391
|
+
SessionPersist: boolean
|
|
2392
|
+
|
|
2393
|
+
/**
|
|
2394
|
+
* 会话保持时间,取值范围:30-3600,单位:秒
|
|
2395
|
+
*/
|
|
2396
|
+
SessionPersistTime?: number
|
|
2397
|
+
|
|
2398
|
+
/**
|
|
2399
|
+
* 服务类型
|
|
2400
|
+
hostname:子域名
|
|
2401
|
+
instance:实例
|
|
2402
|
+
*/
|
|
2403
|
+
ProxyType?: string
|
|
2404
|
+
}
|
|
2405
|
+
|
|
2406
|
+
/**
|
|
2407
|
+
* ModifyApplicationProxyStatus返回参数结构体
|
|
2408
|
+
*/
|
|
2409
|
+
export interface ModifyApplicationProxyStatusResponse {
|
|
2410
|
+
/**
|
|
2411
|
+
* 四层代理ID
|
|
2412
|
+
*/
|
|
2413
|
+
ProxyId: string
|
|
2414
|
+
|
|
2415
|
+
/**
|
|
2416
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2417
|
+
*/
|
|
2418
|
+
RequestId?: string
|
|
2419
|
+
}
|
|
2420
|
+
|
|
2421
|
+
/**
|
|
2422
|
+
* 域名配置信息
|
|
2423
|
+
*/
|
|
2424
|
+
export interface DetailHost {
|
|
2425
|
+
/**
|
|
2426
|
+
* 腾讯云账号ID
|
|
2427
|
+
*/
|
|
2428
|
+
AppId: number
|
|
2429
|
+
|
|
2430
|
+
/**
|
|
2431
|
+
* 站点ID
|
|
2432
|
+
*/
|
|
2433
|
+
ZoneId: string
|
|
2434
|
+
|
|
2435
|
+
/**
|
|
2436
|
+
* 加速服务状态
|
|
2437
|
+
process:部署中
|
|
2438
|
+
online:已启动
|
|
2439
|
+
offline:已关闭
|
|
2440
|
+
*/
|
|
2441
|
+
Status: string
|
|
2442
|
+
|
|
2443
|
+
/**
|
|
2444
|
+
* 域名
|
|
2445
|
+
*/
|
|
2446
|
+
Host: string
|
|
2447
|
+
}
|
|
2448
|
+
|
|
2449
|
+
/**
|
|
2450
|
+
* DescribeDnsRecords返回参数结构体
|
|
2451
|
+
*/
|
|
2452
|
+
export interface DescribeDnsRecordsResponse {
|
|
2453
|
+
/**
|
|
2454
|
+
* 总数,用于分页查询
|
|
2455
|
+
*/
|
|
2456
|
+
TotalCount: number
|
|
2457
|
+
|
|
2458
|
+
/**
|
|
2459
|
+
* DNS 记录列表
|
|
2460
|
+
*/
|
|
2461
|
+
Records: Array<DnsRecord>
|
|
2462
|
+
|
|
2463
|
+
/**
|
|
2464
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2465
|
+
*/
|
|
2466
|
+
RequestId?: string
|
|
2467
|
+
}
|
|
2468
|
+
|
|
2469
|
+
/**
|
|
2470
|
+
* DescribeApplicationProxyDetail返回参数结构体
|
|
2471
|
+
*/
|
|
2472
|
+
export interface DescribeApplicationProxyDetailResponse {
|
|
2473
|
+
/**
|
|
2474
|
+
* 实例ID
|
|
2475
|
+
*/
|
|
2476
|
+
ProxyId: string
|
|
2477
|
+
|
|
2478
|
+
/**
|
|
2479
|
+
* 实例名称
|
|
2480
|
+
*/
|
|
2481
|
+
ProxyName: string
|
|
2482
|
+
|
|
2483
|
+
/**
|
|
2484
|
+
* 调度模式:
|
|
2485
|
+
ip表示Anycast IP
|
|
2486
|
+
domain表示CNAME
|
|
2487
|
+
*/
|
|
2488
|
+
PlatType: string
|
|
2489
|
+
|
|
2490
|
+
/**
|
|
2491
|
+
* 0关闭安全,1开启安全
|
|
2492
|
+
*/
|
|
2493
|
+
SecurityType: number
|
|
2494
|
+
|
|
2495
|
+
/**
|
|
2496
|
+
* 0关闭加速,1开启加速
|
|
2497
|
+
*/
|
|
2498
|
+
AccelerateType: number
|
|
2499
|
+
|
|
2500
|
+
/**
|
|
2501
|
+
* 字段已经移至Rule.ForwardClientIp
|
|
2502
|
+
*/
|
|
2503
|
+
ForwardClientIp: string
|
|
2504
|
+
|
|
2505
|
+
/**
|
|
2506
|
+
* 字段已经移至Rule.SessionPersist
|
|
2507
|
+
*/
|
|
2508
|
+
SessionPersist: boolean
|
|
2509
|
+
|
|
2510
|
+
/**
|
|
2511
|
+
* 规则列表
|
|
2512
|
+
*/
|
|
2513
|
+
Rule: Array<ApplicationProxyRule>
|
|
2514
|
+
|
|
2515
|
+
/**
|
|
2516
|
+
* 状态:
|
|
2517
|
+
online:启用
|
|
2518
|
+
offline:停用
|
|
2519
|
+
progress:部署中
|
|
2520
|
+
*/
|
|
2521
|
+
Status: string
|
|
2522
|
+
|
|
2523
|
+
/**
|
|
2524
|
+
* 调度信息
|
|
2525
|
+
*/
|
|
2526
|
+
ScheduleValue: Array<string>
|
|
2527
|
+
|
|
2528
|
+
/**
|
|
2529
|
+
* 更新时间
|
|
2530
|
+
*/
|
|
2531
|
+
UpdateTime: string
|
|
2532
|
+
|
|
2533
|
+
/**
|
|
2534
|
+
* 站点ID
|
|
2535
|
+
*/
|
|
2536
|
+
ZoneId: string
|
|
2537
|
+
|
|
2538
|
+
/**
|
|
2539
|
+
* 站点名称
|
|
2540
|
+
*/
|
|
2541
|
+
ZoneName: string
|
|
2542
|
+
|
|
2543
|
+
/**
|
|
2544
|
+
* 会话保持时间
|
|
2545
|
+
*/
|
|
2546
|
+
SessionPersistTime: number
|
|
2547
|
+
|
|
2548
|
+
/**
|
|
2549
|
+
* 服务类型
|
|
2550
|
+
hostname:子域名
|
|
2551
|
+
instance:实例
|
|
2552
|
+
*/
|
|
2553
|
+
ProxyType: string
|
|
2554
|
+
|
|
2555
|
+
/**
|
|
2556
|
+
* 七层实例ID
|
|
2557
|
+
*/
|
|
2558
|
+
HostId: string
|
|
2559
|
+
|
|
2560
|
+
/**
|
|
2561
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2562
|
+
*/
|
|
2563
|
+
RequestId?: string
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
/**
|
|
2567
|
+
* ModifyZoneCnameSpeedUp请求参数结构体
|
|
2568
|
+
*/
|
|
2569
|
+
export interface ModifyZoneCnameSpeedUpRequest {
|
|
2570
|
+
/**
|
|
2571
|
+
* 站点 ID
|
|
2572
|
+
*/
|
|
2573
|
+
Id: string
|
|
2574
|
+
|
|
2575
|
+
/**
|
|
2576
|
+
* CNAME 加速状态
|
|
2577
|
+
- enabled 开启
|
|
2578
|
+
- disabled 关闭
|
|
2579
|
+
*/
|
|
2580
|
+
Status: string
|
|
2581
|
+
}
|
|
2582
|
+
|
|
2583
|
+
/**
|
|
2584
|
+
* DescribeHostsCertificate请求参数结构体
|
|
2585
|
+
*/
|
|
2586
|
+
export interface DescribeHostsCertificateRequest {
|
|
2587
|
+
/**
|
|
2588
|
+
* Zone ID
|
|
2589
|
+
*/
|
|
2590
|
+
ZoneId: string
|
|
2591
|
+
|
|
2592
|
+
/**
|
|
2593
|
+
* 分页查询偏移量,默认为 0
|
|
2594
|
+
*/
|
|
2595
|
+
Offset?: number
|
|
2596
|
+
|
|
2597
|
+
/**
|
|
2598
|
+
* 分页查询限制数目,默认为 100,最大可设置为 1000
|
|
2599
|
+
*/
|
|
2600
|
+
Limit?: number
|
|
2601
|
+
|
|
2602
|
+
/**
|
|
2603
|
+
* 查询条件过滤器
|
|
2604
|
+
*/
|
|
2605
|
+
Filters?: Array<CertFilter>
|
|
2606
|
+
|
|
2607
|
+
/**
|
|
2608
|
+
* 排序方式
|
|
2609
|
+
*/
|
|
2610
|
+
Sort?: CertSort
|
|
2611
|
+
}
|
|
2612
|
+
|
|
2613
|
+
/**
|
|
2614
|
+
* Hsts配置
|
|
2615
|
+
*/
|
|
2616
|
+
export interface Hsts {
|
|
2617
|
+
/**
|
|
2618
|
+
* 是否开启,on或off。
|
|
2619
|
+
*/
|
|
2620
|
+
Switch: string
|
|
2621
|
+
|
|
2622
|
+
/**
|
|
2623
|
+
* MaxAge数值。
|
|
2624
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2625
|
+
*/
|
|
2626
|
+
MaxAge?: number
|
|
2627
|
+
|
|
2628
|
+
/**
|
|
2629
|
+
* 是否包含子域名,on或off。
|
|
2630
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2631
|
+
*/
|
|
2632
|
+
IncludeSubDomains?: string
|
|
2633
|
+
|
|
2634
|
+
/**
|
|
2635
|
+
* 是否预加载,on或off。
|
|
2636
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2637
|
+
*/
|
|
2638
|
+
Preload?: string
|
|
2639
|
+
}
|
|
2640
|
+
|
|
2641
|
+
/**
|
|
2642
|
+
* ModifyHostsCertificate返回参数结构体
|
|
2643
|
+
*/
|
|
2644
|
+
export interface ModifyHostsCertificateResponse {
|
|
2645
|
+
/**
|
|
2646
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2647
|
+
*/
|
|
2648
|
+
RequestId?: string
|
|
2649
|
+
}
|
|
2650
|
+
|
|
2651
|
+
/**
|
|
2652
|
+
* ModifyLoadBalancing返回参数结构体
|
|
2653
|
+
*/
|
|
2654
|
+
export interface ModifyLoadBalancingResponse {
|
|
2655
|
+
/**
|
|
2656
|
+
* 负载均衡ID
|
|
2657
|
+
*/
|
|
2658
|
+
LoadBalancingId: string
|
|
2659
|
+
|
|
2660
|
+
/**
|
|
2661
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2662
|
+
*/
|
|
2663
|
+
RequestId?: string
|
|
2664
|
+
}
|
|
2665
|
+
|
|
2666
|
+
/**
|
|
2667
|
+
* CreateApplicationProxyRule返回参数结构体
|
|
2668
|
+
*/
|
|
2669
|
+
export interface CreateApplicationProxyRuleResponse {
|
|
2670
|
+
/**
|
|
2671
|
+
* 规则ID
|
|
2672
|
+
*/
|
|
2673
|
+
RuleId: string
|
|
2674
|
+
|
|
2675
|
+
/**
|
|
2676
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2677
|
+
*/
|
|
2678
|
+
RequestId?: string
|
|
2679
|
+
}
|
|
2680
|
+
|
|
2681
|
+
/**
|
|
2682
|
+
* ModifyDnsRecord返回参数结构体
|
|
2683
|
+
*/
|
|
2684
|
+
export interface ModifyDnsRecordResponse {
|
|
2685
|
+
/**
|
|
2686
|
+
* 记录 ID
|
|
2687
|
+
*/
|
|
2688
|
+
Id: string
|
|
2689
|
+
|
|
2690
|
+
/**
|
|
2691
|
+
* 记录类型
|
|
2692
|
+
*/
|
|
2693
|
+
Type: string
|
|
2694
|
+
|
|
2695
|
+
/**
|
|
2696
|
+
* 记录名称
|
|
2697
|
+
*/
|
|
2698
|
+
Name: string
|
|
2699
|
+
|
|
2700
|
+
/**
|
|
2701
|
+
* 记录内容
|
|
2702
|
+
*/
|
|
2703
|
+
Content: string
|
|
2704
|
+
|
|
2705
|
+
/**
|
|
2706
|
+
* 生存时间值
|
|
2707
|
+
*/
|
|
2708
|
+
Ttl: number
|
|
2709
|
+
|
|
2710
|
+
/**
|
|
2711
|
+
* 优先级
|
|
2712
|
+
*/
|
|
2713
|
+
Priority: number
|
|
2714
|
+
|
|
2715
|
+
/**
|
|
2716
|
+
* 代理模式
|
|
2717
|
+
*/
|
|
2718
|
+
Mode: string
|
|
2719
|
+
|
|
2720
|
+
/**
|
|
2721
|
+
* 解析状态
|
|
2722
|
+
*/
|
|
2723
|
+
Status: string
|
|
2724
|
+
|
|
2725
|
+
/**
|
|
2726
|
+
* CNAME 地址
|
|
2727
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2728
|
+
*/
|
|
2729
|
+
Cname: string
|
|
2730
|
+
|
|
2731
|
+
/**
|
|
2732
|
+
* 锁定状态
|
|
2733
|
+
*/
|
|
2734
|
+
Locked: boolean
|
|
2735
|
+
|
|
2736
|
+
/**
|
|
2737
|
+
* 创建时间
|
|
2738
|
+
*/
|
|
2739
|
+
CreatedOn: string
|
|
2740
|
+
|
|
2741
|
+
/**
|
|
2742
|
+
* 修改时间
|
|
2743
|
+
*/
|
|
2744
|
+
ModifiedOn: string
|
|
2745
|
+
|
|
2746
|
+
/**
|
|
2747
|
+
* 站点 ID
|
|
2748
|
+
*/
|
|
2749
|
+
ZoneId: string
|
|
2750
|
+
|
|
2751
|
+
/**
|
|
2752
|
+
* 站点名称
|
|
2753
|
+
*/
|
|
2754
|
+
ZoneName: string
|
|
2755
|
+
|
|
2756
|
+
/**
|
|
2757
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2758
|
+
*/
|
|
2759
|
+
RequestId?: string
|
|
2760
|
+
}
|
|
2761
|
+
|
|
2762
|
+
/**
|
|
2763
|
+
* CreateApplicationProxy请求参数结构体
|
|
2764
|
+
*/
|
|
2765
|
+
export interface CreateApplicationProxyRequest {
|
|
2766
|
+
/**
|
|
2767
|
+
* 站点ID
|
|
2768
|
+
*/
|
|
2769
|
+
ZoneId: string
|
|
2770
|
+
|
|
2771
|
+
/**
|
|
2772
|
+
* 站点名称
|
|
2773
|
+
*/
|
|
2774
|
+
ZoneName: string
|
|
2775
|
+
|
|
2776
|
+
/**
|
|
2777
|
+
* 四层代理名称
|
|
2778
|
+
*/
|
|
2779
|
+
ProxyName: string
|
|
2780
|
+
|
|
2781
|
+
/**
|
|
2782
|
+
* 调度模式:
|
|
2783
|
+
ip表示Anycast IP
|
|
2784
|
+
domain表示CNAME
|
|
2785
|
+
*/
|
|
2786
|
+
PlatType: string
|
|
2787
|
+
|
|
2788
|
+
/**
|
|
2789
|
+
* 0关闭安全,1开启安全
|
|
2790
|
+
*/
|
|
2791
|
+
SecurityType: number
|
|
2792
|
+
|
|
2793
|
+
/**
|
|
2794
|
+
* 0关闭加速,1开启加速
|
|
2795
|
+
*/
|
|
2796
|
+
AccelerateType: number
|
|
2797
|
+
|
|
2798
|
+
/**
|
|
2799
|
+
* 字段已经移至Rule.ForwardClientIp
|
|
2800
|
+
*/
|
|
2801
|
+
ForwardClientIp: string
|
|
2802
|
+
|
|
2803
|
+
/**
|
|
2804
|
+
* 字段已经移至Rule.SessionPersist
|
|
2805
|
+
*/
|
|
2806
|
+
SessionPersist: boolean
|
|
2807
|
+
|
|
2808
|
+
/**
|
|
2809
|
+
* 规则详细信息
|
|
2810
|
+
*/
|
|
2811
|
+
Rule: Array<ApplicationProxyRule>
|
|
2812
|
+
|
|
2813
|
+
/**
|
|
2814
|
+
* 会话保持时间,取值范围:30-3600,单位:秒
|
|
2815
|
+
*/
|
|
2816
|
+
SessionPersistTime?: number
|
|
2817
|
+
|
|
2818
|
+
/**
|
|
2819
|
+
* 服务类型
|
|
2820
|
+
hostname:子域名
|
|
2821
|
+
instance:实例
|
|
2822
|
+
*/
|
|
2823
|
+
ProxyType?: string
|
|
2824
|
+
}
|
|
2825
|
+
|
|
2826
|
+
/**
|
|
2827
|
+
* POST请求上传文件流式传输最大限制
|
|
2828
|
+
*/
|
|
2829
|
+
export interface PostMaxSize {
|
|
2830
|
+
/**
|
|
2831
|
+
* 是调整POST请求限制,平台默认为32MB。
|
|
2832
|
+
关闭:off,
|
|
2833
|
+
开启:on。
|
|
2834
|
+
*/
|
|
2835
|
+
Switch: string
|
|
2836
|
+
|
|
2837
|
+
/**
|
|
2838
|
+
* 最大限制,取值在1MB和500MB之间。单位字节
|
|
2839
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2840
|
+
*/
|
|
2841
|
+
MaxSize?: number
|
|
2842
|
+
}
|
|
2843
|
+
|
|
2844
|
+
/**
|
|
2845
|
+
* DescribeCnameStatus请求参数结构体
|
|
2846
|
+
*/
|
|
2847
|
+
export interface DescribeCnameStatusRequest {
|
|
2848
|
+
/**
|
|
2849
|
+
* 站点 ID
|
|
2850
|
+
*/
|
|
2851
|
+
ZoneId: string
|
|
2852
|
+
|
|
2853
|
+
/**
|
|
2854
|
+
* 域名列表
|
|
2855
|
+
*/
|
|
2856
|
+
Names: Array<string>
|
|
2857
|
+
}
|
|
2858
|
+
|
|
2859
|
+
/**
|
|
2860
|
+
* DescribeDnssec返回参数结构体
|
|
2861
|
+
*/
|
|
2862
|
+
export interface DescribeDnssecResponse {
|
|
2863
|
+
/**
|
|
2864
|
+
* 站点 ID
|
|
2865
|
+
*/
|
|
2866
|
+
Id: string
|
|
2867
|
+
|
|
2868
|
+
/**
|
|
2869
|
+
* 站点名称
|
|
2870
|
+
*/
|
|
2871
|
+
Name: string
|
|
2872
|
+
|
|
2873
|
+
/**
|
|
2874
|
+
* DNSSEC 状态
|
|
2875
|
+
- enabled 开启
|
|
2876
|
+
- disabled 关闭
|
|
2877
|
+
*/
|
|
2878
|
+
Status: string
|
|
2879
|
+
|
|
2880
|
+
/**
|
|
2881
|
+
* DNSSEC 相关信息
|
|
2882
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2883
|
+
*/
|
|
2884
|
+
Dnssec: DnssecInfo
|
|
2885
|
+
|
|
2886
|
+
/**
|
|
2887
|
+
* 修改时间
|
|
2888
|
+
*/
|
|
2889
|
+
ModifiedOn: string
|
|
2890
|
+
|
|
2891
|
+
/**
|
|
2892
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2893
|
+
*/
|
|
2894
|
+
RequestId?: string
|
|
2895
|
+
}
|
|
2896
|
+
|
|
2897
|
+
/**
|
|
2898
|
+
* CreateZone返回参数结构体
|
|
2899
|
+
*/
|
|
2900
|
+
export interface CreateZoneResponse {
|
|
2901
|
+
/**
|
|
2902
|
+
* 站点ID
|
|
2903
|
+
*/
|
|
2904
|
+
Id: string
|
|
2905
|
+
|
|
2906
|
+
/**
|
|
2907
|
+
* 站点名称
|
|
2908
|
+
*/
|
|
2909
|
+
Name: string
|
|
2910
|
+
|
|
2911
|
+
/**
|
|
2912
|
+
* 站点接入方式
|
|
2913
|
+
*/
|
|
2914
|
+
Type: string
|
|
2915
|
+
|
|
2916
|
+
/**
|
|
2917
|
+
* 站点状态
|
|
2918
|
+
- pending 未切换NS
|
|
2919
|
+
- active NS 已切换到分配的 NS
|
|
2920
|
+
- moved NS 从腾讯云切走
|
|
2921
|
+
*/
|
|
2922
|
+
Status: string
|
|
2923
|
+
|
|
2924
|
+
/**
|
|
2925
|
+
* 当前使用的 NS 列表
|
|
2926
|
+
*/
|
|
2927
|
+
OriginalNameServers: Array<string>
|
|
2928
|
+
|
|
2929
|
+
/**
|
|
2930
|
+
* 给用户分配的 NS 列表
|
|
2931
|
+
*/
|
|
2932
|
+
NameServers: Array<string>
|
|
2933
|
+
|
|
2934
|
+
/**
|
|
2935
|
+
* 站点创建时间
|
|
2936
|
+
*/
|
|
2937
|
+
CreatedOn: string
|
|
2938
|
+
|
|
2939
|
+
/**
|
|
2940
|
+
* 站点更新时间
|
|
2941
|
+
*/
|
|
2942
|
+
ModifiedOn: string
|
|
2943
|
+
|
|
2944
|
+
/**
|
|
2945
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2946
|
+
*/
|
|
2947
|
+
RequestId?: string
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2950
|
+
/**
|
|
2951
|
+
* Dns数据曲线过滤参数
|
|
2952
|
+
*/
|
|
2953
|
+
export interface DnsDataFilter {
|
|
2954
|
+
/**
|
|
2955
|
+
* 参数名称,取值范围:
|
|
2956
|
+
zone:站点名
|
|
2957
|
+
host:域名
|
|
2958
|
+
type:dns解析类型
|
|
2959
|
+
code:dns返回状态码
|
|
2960
|
+
area:解析服务器所在区域
|
|
2961
|
+
*/
|
|
2962
|
+
Name: string
|
|
2963
|
+
|
|
2964
|
+
/**
|
|
2965
|
+
* 参数值
|
|
2966
|
+
当Name=area时,Value取值范围:
|
|
2967
|
+
亚洲:Asia
|
|
2968
|
+
欧洲:Europe
|
|
2969
|
+
非洲:Africa
|
|
2970
|
+
大洋洲:Oceania
|
|
2971
|
+
美洲:Americas
|
|
2972
|
+
|
|
2973
|
+
当Name=code时,Value取值范围:
|
|
2974
|
+
NoError:成功的响应
|
|
2975
|
+
NXDomain:只在权威域名服务器的响应消息中有效,标示请求中请求的域不存在
|
|
2976
|
+
NotImp:域名服务器不支持请求的类型
|
|
2977
|
+
Refused:域名服务器因为策略的原因拒绝执行请求的操作
|
|
2978
|
+
*/
|
|
2979
|
+
Value?: string
|
|
2980
|
+
|
|
2981
|
+
/**
|
|
2982
|
+
* 参数值
|
|
2983
|
+
当Name=area时,Value取值范围:
|
|
2984
|
+
亚洲:Asia
|
|
2985
|
+
欧洲:Europe
|
|
2986
|
+
非洲:Africa
|
|
2987
|
+
大洋洲:Oceania
|
|
2988
|
+
美洲:Americas
|
|
2989
|
+
|
|
2990
|
+
当Name=code时,Value取值范围:
|
|
2991
|
+
NoError:成功的响应
|
|
2992
|
+
NXDomain:只在权威域名服务器的响应消息中有效,标示请求中请求的域不存在
|
|
2993
|
+
NotImp:域名服务器不支持请求的类型
|
|
2994
|
+
Refused:域名服务器因为策略的原因拒绝执行请求的操作
|
|
2995
|
+
*/
|
|
2996
|
+
Values?: Array<string>
|
|
2997
|
+
}
|
|
2998
|
+
|
|
2999
|
+
/**
|
|
3000
|
+
* DeleteLoadBalancing请求参数结构体
|
|
3001
|
+
*/
|
|
3002
|
+
export interface DeleteLoadBalancingRequest {
|
|
3003
|
+
/**
|
|
3004
|
+
* 站点ID
|
|
3005
|
+
*/
|
|
3006
|
+
ZoneId: string
|
|
3007
|
+
|
|
3008
|
+
/**
|
|
3009
|
+
* 负载均衡ID
|
|
3010
|
+
*/
|
|
3011
|
+
LoadBalancingId: string
|
|
3012
|
+
}
|
|
3013
|
+
|
|
3014
|
+
/**
|
|
3015
|
+
* 应用代理实例
|
|
3016
|
+
*/
|
|
3017
|
+
export interface ApplicationProxy {
|
|
3018
|
+
/**
|
|
3019
|
+
* 实例ID
|
|
3020
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3021
|
+
*/
|
|
3022
|
+
ProxyId?: string
|
|
3023
|
+
|
|
3024
|
+
/**
|
|
3025
|
+
* 实例名称
|
|
3026
|
+
*/
|
|
3027
|
+
ProxyName: string
|
|
3028
|
+
|
|
3029
|
+
/**
|
|
3030
|
+
* 调度模式:
|
|
3031
|
+
ip表示Anycast IP
|
|
3032
|
+
domain表示CNAME
|
|
3033
|
+
*/
|
|
3034
|
+
PlatType: string
|
|
3035
|
+
|
|
3036
|
+
/**
|
|
3037
|
+
* 0关闭安全,1开启安全
|
|
3038
|
+
*/
|
|
3039
|
+
SecurityType: number
|
|
3040
|
+
|
|
3041
|
+
/**
|
|
3042
|
+
* 0关闭加速,1开启加速
|
|
3043
|
+
*/
|
|
3044
|
+
AccelerateType: number
|
|
3045
|
+
|
|
3046
|
+
/**
|
|
3047
|
+
* 字段已经移至Rule.ForwardClientIp
|
|
3048
|
+
*/
|
|
3049
|
+
ForwardClientIp: string
|
|
3050
|
+
|
|
3051
|
+
/**
|
|
3052
|
+
* 字段已经移至Rule.SessionPersist
|
|
3053
|
+
*/
|
|
3054
|
+
SessionPersist: boolean
|
|
3055
|
+
|
|
3056
|
+
/**
|
|
3057
|
+
* 规则列表
|
|
3058
|
+
*/
|
|
3059
|
+
Rule: Array<ApplicationProxyRule>
|
|
3060
|
+
|
|
3061
|
+
/**
|
|
3062
|
+
* 状态:
|
|
3063
|
+
online:启用
|
|
3064
|
+
offline:停用
|
|
3065
|
+
progress:部署中
|
|
3066
|
+
stopping:停用中
|
|
3067
|
+
fail:部署失败/停用失败
|
|
3068
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3069
|
+
*/
|
|
3070
|
+
Status: string
|
|
3071
|
+
|
|
3072
|
+
/**
|
|
3073
|
+
* 调度信息
|
|
3074
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3075
|
+
*/
|
|
3076
|
+
ScheduleValue: Array<string>
|
|
3077
|
+
|
|
3078
|
+
/**
|
|
3079
|
+
* 更新时间
|
|
3080
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3081
|
+
*/
|
|
3082
|
+
UpdateTime: string
|
|
3083
|
+
|
|
3084
|
+
/**
|
|
3085
|
+
* 站点ID
|
|
3086
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3087
|
+
*/
|
|
3088
|
+
ZoneId: string
|
|
3089
|
+
|
|
3090
|
+
/**
|
|
3091
|
+
* 站点名称
|
|
3092
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3093
|
+
*/
|
|
3094
|
+
ZoneName: string
|
|
3095
|
+
|
|
3096
|
+
/**
|
|
3097
|
+
* 会话保持时间
|
|
3098
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3099
|
+
*/
|
|
3100
|
+
SessionPersistTime: number
|
|
3101
|
+
|
|
3102
|
+
/**
|
|
3103
|
+
* 服务类型
|
|
3104
|
+
hostname:子域名
|
|
3105
|
+
instance:实例
|
|
3106
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3107
|
+
*/
|
|
3108
|
+
ProxyType: string
|
|
3109
|
+
|
|
3110
|
+
/**
|
|
3111
|
+
* 七层实例ID
|
|
3112
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3113
|
+
*/
|
|
3114
|
+
HostId: string
|
|
3115
|
+
}
|
|
3116
|
+
|
|
3117
|
+
/**
|
|
3118
|
+
* ModifyApplicationProxy返回参数结构体
|
|
3119
|
+
*/
|
|
3120
|
+
export interface ModifyApplicationProxyResponse {
|
|
3121
|
+
/**
|
|
3122
|
+
* 四层代理ID
|
|
3123
|
+
*/
|
|
3124
|
+
ProxyId: string
|
|
3125
|
+
|
|
3126
|
+
/**
|
|
3127
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3128
|
+
*/
|
|
3129
|
+
RequestId?: string
|
|
3130
|
+
}
|
|
3131
|
+
|
|
3132
|
+
/**
|
|
3133
|
+
* 缓存键配置
|
|
3134
|
+
*/
|
|
3135
|
+
export interface CacheKey {
|
|
3136
|
+
/**
|
|
3137
|
+
* 是否开启全路径缓存
|
|
3138
|
+
on:开启全路径缓存(即关闭参数忽略)
|
|
3139
|
+
off:关闭全路径缓存(即开启参数忽略)
|
|
3140
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3141
|
+
*/
|
|
3142
|
+
FullUrlCache?: string
|
|
3143
|
+
|
|
3144
|
+
/**
|
|
3145
|
+
* 是否忽略大小写缓存
|
|
3146
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3147
|
+
*/
|
|
3148
|
+
IgnoreCase?: string
|
|
3149
|
+
|
|
3150
|
+
/**
|
|
3151
|
+
* CacheKey中包含请求参数
|
|
3152
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3153
|
+
*/
|
|
3154
|
+
QueryString?: QueryString
|
|
3155
|
+
}
|
|
3156
|
+
|
|
3157
|
+
/**
|
|
3158
|
+
* ModifyApplicationProxyRuleStatus返回参数结构体
|
|
3159
|
+
*/
|
|
3160
|
+
export interface ModifyApplicationProxyRuleStatusResponse {
|
|
3161
|
+
/**
|
|
3162
|
+
* 规则ID
|
|
3163
|
+
*/
|
|
3164
|
+
RuleId: string
|
|
3165
|
+
|
|
3166
|
+
/**
|
|
3167
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3168
|
+
*/
|
|
3169
|
+
RequestId?: string
|
|
3170
|
+
}
|
|
3171
|
+
|
|
3172
|
+
/**
|
|
3173
|
+
* DescribeZones返回参数结构体
|
|
3174
|
+
*/
|
|
3175
|
+
export interface DescribeZonesResponse {
|
|
3176
|
+
/**
|
|
3177
|
+
* 符合条件的站点数
|
|
3178
|
+
*/
|
|
3179
|
+
TotalCount: number
|
|
3180
|
+
|
|
3181
|
+
/**
|
|
3182
|
+
* 站点详细信息列表
|
|
3183
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3184
|
+
*/
|
|
3185
|
+
Zones: Array<Zone>
|
|
3186
|
+
|
|
3187
|
+
/**
|
|
3188
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3189
|
+
*/
|
|
3190
|
+
RequestId?: string
|
|
3191
|
+
}
|
|
3192
|
+
|
|
3193
|
+
/**
|
|
3194
|
+
* 刷新预热附带的头部信息
|
|
3195
|
+
*/
|
|
3196
|
+
export interface Header {
|
|
3197
|
+
/**
|
|
3198
|
+
* HTTP头部
|
|
3199
|
+
*/
|
|
3200
|
+
Name: string
|
|
3201
|
+
|
|
3202
|
+
/**
|
|
3203
|
+
* HTTP头部值
|
|
3204
|
+
*/
|
|
3205
|
+
Value: string
|
|
3206
|
+
}
|
|
3207
|
+
|
|
3208
|
+
/**
|
|
3209
|
+
* DescribeZoneDetails请求参数结构体
|
|
3210
|
+
*/
|
|
3211
|
+
export interface DescribeZoneDetailsRequest {
|
|
3212
|
+
/**
|
|
3213
|
+
* 站点 ID
|
|
3214
|
+
*/
|
|
3215
|
+
Id: string
|
|
3216
|
+
}
|
|
3217
|
+
|
|
3218
|
+
/**
|
|
3219
|
+
* DescribeDefaultCertificates返回参数结构体
|
|
3220
|
+
*/
|
|
3221
|
+
export interface DescribeDefaultCertificatesResponse {
|
|
3222
|
+
/**
|
|
3223
|
+
* 证书总数
|
|
3224
|
+
*/
|
|
3225
|
+
TotalCount: number
|
|
3226
|
+
|
|
3227
|
+
/**
|
|
3228
|
+
* 默认证书列表
|
|
3229
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3230
|
+
*/
|
|
3231
|
+
CertInfo: Array<DefaultServerCertInfo>
|
|
3232
|
+
|
|
3233
|
+
/**
|
|
3234
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3235
|
+
*/
|
|
3236
|
+
RequestId?: string
|
|
3237
|
+
}
|
|
3238
|
+
|
|
3239
|
+
/**
|
|
3240
|
+
* DescribeApplicationProxy请求参数结构体
|
|
3241
|
+
*/
|
|
3242
|
+
export interface DescribeApplicationProxyRequest {
|
|
3243
|
+
/**
|
|
3244
|
+
* 站点ID
|
|
3245
|
+
*/
|
|
3246
|
+
ZoneId?: string
|
|
3247
|
+
|
|
3248
|
+
/**
|
|
3249
|
+
* 分页参数Offset
|
|
3250
|
+
*/
|
|
3251
|
+
Offset?: number
|
|
3252
|
+
|
|
3253
|
+
/**
|
|
3254
|
+
* 分页参数Limit
|
|
3255
|
+
*/
|
|
3256
|
+
Limit?: number
|
|
3257
|
+
}
|
|
3258
|
+
|
|
3259
|
+
/**
|
|
3260
|
+
* ModifyApplicationProxyRuleStatus请求参数结构体
|
|
3261
|
+
*/
|
|
3262
|
+
export interface ModifyApplicationProxyRuleStatusRequest {
|
|
3263
|
+
/**
|
|
3264
|
+
* 站点ID
|
|
3265
|
+
*/
|
|
3266
|
+
ZoneId: string
|
|
3267
|
+
|
|
3268
|
+
/**
|
|
3269
|
+
* 四层代理ID
|
|
3270
|
+
*/
|
|
3271
|
+
ProxyId: string
|
|
3272
|
+
|
|
3273
|
+
/**
|
|
3274
|
+
* 规则ID
|
|
3275
|
+
*/
|
|
3276
|
+
RuleId: string
|
|
3277
|
+
|
|
3278
|
+
/**
|
|
3279
|
+
* 状态
|
|
3280
|
+
offline: 停用
|
|
3281
|
+
online: 启用
|
|
3282
|
+
*/
|
|
3283
|
+
Status: string
|
|
3284
|
+
}
|
|
3285
|
+
|
|
3286
|
+
/**
|
|
3287
|
+
* CacheKey中包含请求参数
|
|
3288
|
+
*/
|
|
3289
|
+
export interface QueryString {
|
|
3290
|
+
/**
|
|
3291
|
+
* on | off CacheKey是否由QueryString组成
|
|
3292
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3293
|
+
*/
|
|
3294
|
+
Switch: string
|
|
3295
|
+
|
|
3296
|
+
/**
|
|
3297
|
+
* includeCustom:使用部分url参数
|
|
3298
|
+
excludeCustom:排除部分url参数
|
|
3299
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3300
|
+
*/
|
|
3301
|
+
Action?: string
|
|
3302
|
+
|
|
3303
|
+
/**
|
|
3304
|
+
* 使用/排除的url参数数组
|
|
3305
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3306
|
+
*/
|
|
3307
|
+
Value?: Array<string>
|
|
3308
|
+
}
|
|
3309
|
+
|
|
3310
|
+
/**
|
|
3311
|
+
* ReclaimZone请求参数结构体
|
|
3312
|
+
*/
|
|
3313
|
+
export interface ReclaimZoneRequest {
|
|
3314
|
+
/**
|
|
3315
|
+
* 站点名称
|
|
3316
|
+
*/
|
|
3317
|
+
Name: string
|
|
3318
|
+
}
|
|
3319
|
+
|
|
3320
|
+
/**
|
|
3321
|
+
* DeleteZone请求参数结构体
|
|
3322
|
+
*/
|
|
3323
|
+
export interface DeleteZoneRequest {
|
|
3324
|
+
/**
|
|
3325
|
+
* 站点 ID
|
|
3326
|
+
*/
|
|
3327
|
+
Id: string
|
|
3328
|
+
}
|
|
3329
|
+
|
|
3330
|
+
/**
|
|
3331
|
+
* ModifyDefaultCertificate返回参数结构体
|
|
3332
|
+
*/
|
|
3333
|
+
export interface ModifyDefaultCertificateResponse {
|
|
3334
|
+
/**
|
|
3335
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3336
|
+
*/
|
|
3337
|
+
RequestId?: string
|
|
3338
|
+
}
|
|
3339
|
+
|
|
3340
|
+
/**
|
|
3341
|
+
* 客户端IP头部
|
|
3342
|
+
*/
|
|
3343
|
+
export interface ClientIp {
|
|
3344
|
+
/**
|
|
3345
|
+
* 客户端IP头部配置开关
|
|
3346
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3347
|
+
*/
|
|
3348
|
+
Switch: string
|
|
3349
|
+
|
|
3350
|
+
/**
|
|
3351
|
+
* 回源客户端IP请求头名称
|
|
3352
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3353
|
+
*/
|
|
3354
|
+
HeaderName?: string
|
|
3355
|
+
}
|
|
3356
|
+
|
|
3357
|
+
/**
|
|
3358
|
+
* DescribeHostsCertificate返回参数结构体
|
|
3359
|
+
*/
|
|
3360
|
+
export interface DescribeHostsCertificateResponse {
|
|
3361
|
+
/**
|
|
3362
|
+
* 总数,用于分页查询
|
|
3363
|
+
*/
|
|
3364
|
+
TotalCount: number
|
|
3365
|
+
|
|
3366
|
+
/**
|
|
3367
|
+
* 域名证书配置列表
|
|
3368
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3369
|
+
*/
|
|
3370
|
+
Hosts: Array<HostCertSetting>
|
|
3371
|
+
|
|
3372
|
+
/**
|
|
3373
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3374
|
+
*/
|
|
3375
|
+
RequestId?: string
|
|
3376
|
+
}
|
|
3377
|
+
|
|
3378
|
+
/**
|
|
3379
|
+
* DescribeZoneSetting返回参数结构体
|
|
3380
|
+
*/
|
|
3381
|
+
export interface DescribeZoneSettingResponse {
|
|
3382
|
+
/**
|
|
3383
|
+
* 缓存过期时间配置
|
|
3384
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3385
|
+
*/
|
|
3386
|
+
Cache: CacheConfig
|
|
3387
|
+
|
|
3388
|
+
/**
|
|
3389
|
+
* 节点缓存键配置
|
|
3390
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3391
|
+
*/
|
|
3392
|
+
CacheKey: CacheKey
|
|
3393
|
+
|
|
3394
|
+
/**
|
|
3395
|
+
* 浏览器缓存配置
|
|
3396
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3397
|
+
*/
|
|
3398
|
+
MaxAge: MaxAge
|
|
3399
|
+
|
|
3400
|
+
/**
|
|
3401
|
+
* 离线缓存
|
|
3402
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3403
|
+
*/
|
|
3404
|
+
OfflineCache: OfflineCache
|
|
3405
|
+
|
|
3406
|
+
/**
|
|
3407
|
+
* Quic访问
|
|
3408
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3409
|
+
*/
|
|
3410
|
+
Quic: Quic
|
|
3411
|
+
|
|
3412
|
+
/**
|
|
3413
|
+
* POST请求传输配置
|
|
3414
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3415
|
+
*/
|
|
3416
|
+
PostMaxSize: PostMaxSize
|
|
3417
|
+
|
|
3418
|
+
/**
|
|
3419
|
+
* 智能压缩配置
|
|
3420
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3421
|
+
*/
|
|
3422
|
+
Compression: Compression
|
|
3423
|
+
|
|
3424
|
+
/**
|
|
3425
|
+
* http2回源配置
|
|
3426
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3427
|
+
*/
|
|
3428
|
+
UpstreamHttp2: UpstreamHttp2
|
|
3429
|
+
|
|
3430
|
+
/**
|
|
3431
|
+
* 访问协议强制https跳转配置
|
|
3432
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3433
|
+
*/
|
|
3434
|
+
ForceRedirect: ForceRedirect
|
|
3435
|
+
|
|
3436
|
+
/**
|
|
3437
|
+
* Https 加速配置
|
|
3438
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3439
|
+
*/
|
|
3440
|
+
Https: Https
|
|
3441
|
+
|
|
3442
|
+
/**
|
|
3443
|
+
* 源站配置
|
|
3444
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3445
|
+
*/
|
|
3446
|
+
Origin: Origin
|
|
3447
|
+
|
|
3448
|
+
/**
|
|
3449
|
+
* 动态加速配置
|
|
3450
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3451
|
+
*/
|
|
3452
|
+
SmartRouting: SmartRouting
|
|
3453
|
+
|
|
3454
|
+
/**
|
|
3455
|
+
* 站点ID
|
|
3456
|
+
*/
|
|
3457
|
+
ZoneId: string
|
|
3458
|
+
|
|
3459
|
+
/**
|
|
3460
|
+
* 站点域名
|
|
3461
|
+
*/
|
|
3462
|
+
Zone: string
|
|
3463
|
+
|
|
3464
|
+
/**
|
|
3465
|
+
* WebSocket配置
|
|
3466
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3467
|
+
*/
|
|
3468
|
+
WebSocket: WebSocket
|
|
3469
|
+
|
|
3470
|
+
/**
|
|
3471
|
+
* 客户端IP回源请求头配置
|
|
3472
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3473
|
+
*/
|
|
3474
|
+
ClientIpHeader: ClientIp
|
|
3475
|
+
|
|
3476
|
+
/**
|
|
3477
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3478
|
+
*/
|
|
3479
|
+
RequestId?: string
|
|
3480
|
+
}
|
|
3481
|
+
|
|
3482
|
+
/**
|
|
3483
|
+
* DescribePurgeTasks请求参数结构体
|
|
3484
|
+
*/
|
|
3485
|
+
export interface DescribePurgeTasksRequest {
|
|
22
3486
|
/**
|
|
23
3487
|
* 任务ID
|
|
24
3488
|
*/
|
|
25
|
-
JobId
|
|
3489
|
+
JobId?: string
|
|
26
3490
|
|
|
27
3491
|
/**
|
|
28
|
-
|
|
3492
|
+
* 类型
|
|
3493
|
+
*/
|
|
3494
|
+
Type?: string
|
|
3495
|
+
|
|
3496
|
+
/**
|
|
3497
|
+
* 查询起始时间
|
|
3498
|
+
*/
|
|
3499
|
+
StartTime?: string
|
|
3500
|
+
|
|
3501
|
+
/**
|
|
3502
|
+
* 查询结束时间
|
|
3503
|
+
*/
|
|
3504
|
+
EndTime?: string
|
|
3505
|
+
|
|
3506
|
+
/**
|
|
3507
|
+
* 查询起始偏移量
|
|
3508
|
+
*/
|
|
3509
|
+
Offset?: number
|
|
3510
|
+
|
|
3511
|
+
/**
|
|
3512
|
+
* 查询最大返回的结果条数
|
|
3513
|
+
*/
|
|
3514
|
+
Limit?: number
|
|
3515
|
+
|
|
3516
|
+
/**
|
|
3517
|
+
* 查询的状态
|
|
3518
|
+
允许的值为:processing、success、failed、timeout、invalid
|
|
3519
|
+
*/
|
|
3520
|
+
Statuses?: Array<string>
|
|
3521
|
+
|
|
3522
|
+
/**
|
|
3523
|
+
* zone id
|
|
3524
|
+
*/
|
|
3525
|
+
ZoneId?: string
|
|
3526
|
+
|
|
3527
|
+
/**
|
|
3528
|
+
* 查询的域名列表
|
|
3529
|
+
*/
|
|
3530
|
+
Domains?: Array<string>
|
|
3531
|
+
|
|
3532
|
+
/**
|
|
3533
|
+
* 查询内容
|
|
3534
|
+
*/
|
|
3535
|
+
Target?: string
|
|
3536
|
+
}
|
|
3537
|
+
|
|
3538
|
+
/**
|
|
3539
|
+
* IdentifyZone请求参数结构体
|
|
3540
|
+
*/
|
|
3541
|
+
export interface IdentifyZoneRequest {
|
|
3542
|
+
/**
|
|
3543
|
+
* 站点名称
|
|
3544
|
+
*/
|
|
3545
|
+
Name: string
|
|
3546
|
+
}
|
|
3547
|
+
|
|
3548
|
+
/**
|
|
3549
|
+
* 缓存规则配置。
|
|
3550
|
+
*/
|
|
3551
|
+
export interface CacheConfig {
|
|
3552
|
+
/**
|
|
3553
|
+
* 缓存配置
|
|
29
3554
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
30
3555
|
*/
|
|
31
|
-
|
|
3556
|
+
Cache?: CacheConfigCache
|
|
3557
|
+
|
|
3558
|
+
/**
|
|
3559
|
+
* 不缓存配置
|
|
3560
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3561
|
+
*/
|
|
3562
|
+
NoCache?: CacheConfigNoCache
|
|
3563
|
+
|
|
3564
|
+
/**
|
|
3565
|
+
* 遵循源站配置
|
|
3566
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3567
|
+
*/
|
|
3568
|
+
FollowOrigin?: CacheConfigFollowOrigin
|
|
3569
|
+
}
|
|
3570
|
+
|
|
3571
|
+
/**
|
|
3572
|
+
* ModifyZoneCnameSpeedUp返回参数结构体
|
|
3573
|
+
*/
|
|
3574
|
+
export interface ModifyZoneCnameSpeedUpResponse {
|
|
3575
|
+
/**
|
|
3576
|
+
* 站点 ID
|
|
3577
|
+
*/
|
|
3578
|
+
Id: string
|
|
3579
|
+
|
|
3580
|
+
/**
|
|
3581
|
+
* 站点名称
|
|
3582
|
+
*/
|
|
3583
|
+
Name: string
|
|
3584
|
+
|
|
3585
|
+
/**
|
|
3586
|
+
* CNAME 加速状态
|
|
3587
|
+
- enabled 开启
|
|
3588
|
+
- disabled 关闭
|
|
3589
|
+
*/
|
|
3590
|
+
Status: string
|
|
3591
|
+
|
|
3592
|
+
/**
|
|
3593
|
+
* 更新时间
|
|
3594
|
+
*/
|
|
3595
|
+
ModifiedOn: string
|
|
32
3596
|
|
|
33
3597
|
/**
|
|
34
3598
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -37,38 +3601,118 @@ export interface CreatePurgeTaskResponse {
|
|
|
37
3601
|
}
|
|
38
3602
|
|
|
39
3603
|
/**
|
|
40
|
-
*
|
|
3604
|
+
* 浏览器缓存规则配置,用于设置 MaxAge 默认值,默认为关闭状态
|
|
41
3605
|
*/
|
|
42
|
-
export interface
|
|
3606
|
+
export interface MaxAge {
|
|
43
3607
|
/**
|
|
44
|
-
|
|
3608
|
+
* MaxAge 时间设置,单位秒,最大365天
|
|
3609
|
+
注意:时间为0,即不缓存。
|
|
3610
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3611
|
+
*/
|
|
3612
|
+
MaxAgeTime?: number
|
|
3613
|
+
|
|
3614
|
+
/**
|
|
3615
|
+
* 是否遵循源站,on或off,开启时忽略时间设置。
|
|
3616
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3617
|
+
*/
|
|
3618
|
+
FollowOrigin?: string
|
|
3619
|
+
}
|
|
3620
|
+
|
|
3621
|
+
/**
|
|
3622
|
+
* DeleteDnsRecords请求参数结构体
|
|
3623
|
+
*/
|
|
3624
|
+
export interface DeleteDnsRecordsRequest {
|
|
3625
|
+
/**
|
|
3626
|
+
* 站点 ID
|
|
45
3627
|
*/
|
|
46
|
-
|
|
3628
|
+
ZoneId: string
|
|
47
3629
|
|
|
48
3630
|
/**
|
|
49
|
-
*
|
|
3631
|
+
* 记录 ID
|
|
50
3632
|
*/
|
|
51
|
-
|
|
3633
|
+
Ids: Array<string>
|
|
3634
|
+
}
|
|
52
3635
|
|
|
3636
|
+
/**
|
|
3637
|
+
* ModifyHostsCertificate请求参数结构体
|
|
3638
|
+
*/
|
|
3639
|
+
export interface ModifyHostsCertificateRequest {
|
|
53
3640
|
/**
|
|
54
|
-
*
|
|
3641
|
+
* Zone ID
|
|
55
3642
|
*/
|
|
56
|
-
|
|
3643
|
+
ZoneId: string
|
|
57
3644
|
|
|
58
3645
|
/**
|
|
59
|
-
*
|
|
3646
|
+
* 本次变更的域名
|
|
60
3647
|
*/
|
|
61
|
-
|
|
3648
|
+
Hosts: Array<string>
|
|
62
3649
|
|
|
63
3650
|
/**
|
|
64
|
-
*
|
|
3651
|
+
* 证书信息, 只需要传入 CertId 即可, 如果为空, 则使用默认证书
|
|
65
3652
|
*/
|
|
66
|
-
|
|
3653
|
+
CertInfo?: Array<ServerCertInfo>
|
|
3654
|
+
}
|
|
3655
|
+
|
|
3656
|
+
/**
|
|
3657
|
+
* ModifyZoneStatus返回参数结构体
|
|
3658
|
+
*/
|
|
3659
|
+
export interface ModifyZoneStatusResponse {
|
|
3660
|
+
/**
|
|
3661
|
+
* 站点 ID
|
|
3662
|
+
*/
|
|
3663
|
+
Id: string
|
|
67
3664
|
|
|
68
3665
|
/**
|
|
69
|
-
*
|
|
3666
|
+
* 站点名称
|
|
70
3667
|
*/
|
|
71
|
-
|
|
3668
|
+
Name: string
|
|
3669
|
+
|
|
3670
|
+
/**
|
|
3671
|
+
* 站点状态
|
|
3672
|
+
- false 开启站点
|
|
3673
|
+
- true 关闭站点
|
|
3674
|
+
*/
|
|
3675
|
+
Paused: boolean
|
|
3676
|
+
|
|
3677
|
+
/**
|
|
3678
|
+
* 更新时间
|
|
3679
|
+
*/
|
|
3680
|
+
ModifiedOn: string
|
|
3681
|
+
|
|
3682
|
+
/**
|
|
3683
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3684
|
+
*/
|
|
3685
|
+
RequestId?: string
|
|
3686
|
+
}
|
|
3687
|
+
|
|
3688
|
+
/**
|
|
3689
|
+
* DescribeDnsData请求参数结构体
|
|
3690
|
+
*/
|
|
3691
|
+
export interface DescribeDnsDataRequest {
|
|
3692
|
+
/**
|
|
3693
|
+
* 起始时间
|
|
3694
|
+
*/
|
|
3695
|
+
StartTime: string
|
|
3696
|
+
|
|
3697
|
+
/**
|
|
3698
|
+
* 结束时间
|
|
3699
|
+
*/
|
|
3700
|
+
EndTime: string
|
|
3701
|
+
|
|
3702
|
+
/**
|
|
3703
|
+
* 过滤参数
|
|
3704
|
+
*/
|
|
3705
|
+
Filters?: Array<DnsDataFilter>
|
|
3706
|
+
|
|
3707
|
+
/**
|
|
3708
|
+
* 时间粒度,默认为1分钟粒度,服务端根据时间范围自适应。
|
|
3709
|
+
支持指定以下几种粒度:
|
|
3710
|
+
min:1分钟粒度
|
|
3711
|
+
5min:5分钟粒度
|
|
3712
|
+
hour:1小时粒度
|
|
3713
|
+
day:天粒度
|
|
3714
|
+
*/
|
|
3715
|
+
Interval?: string
|
|
72
3716
|
}
|
|
73
3717
|
|
|
74
3718
|
/**
|
|
@@ -110,75 +3754,96 @@ Targets可为空,不需要填写
|
|
|
110
3754
|
}
|
|
111
3755
|
|
|
112
3756
|
/**
|
|
113
|
-
*
|
|
3757
|
+
* DeleteDnsRecords返回参数结构体
|
|
114
3758
|
*/
|
|
115
|
-
export interface
|
|
116
|
-
/**
|
|
117
|
-
* 任务ID
|
|
118
|
-
*/
|
|
119
|
-
JobId?: string
|
|
120
|
-
|
|
3759
|
+
export interface DeleteDnsRecordsResponse {
|
|
121
3760
|
/**
|
|
122
|
-
*
|
|
3761
|
+
* 记录 ID
|
|
123
3762
|
*/
|
|
124
|
-
|
|
3763
|
+
Ids: Array<string>
|
|
125
3764
|
|
|
126
3765
|
/**
|
|
127
|
-
*
|
|
3766
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
128
3767
|
*/
|
|
129
|
-
|
|
3768
|
+
RequestId?: string
|
|
3769
|
+
}
|
|
130
3770
|
|
|
3771
|
+
/**
|
|
3772
|
+
* DescribeHostsSetting请求参数结构体
|
|
3773
|
+
*/
|
|
3774
|
+
export interface DescribeHostsSettingRequest {
|
|
131
3775
|
/**
|
|
132
|
-
*
|
|
3776
|
+
* 站点ID
|
|
133
3777
|
*/
|
|
134
|
-
|
|
3778
|
+
ZoneId: string
|
|
135
3779
|
|
|
136
3780
|
/**
|
|
137
|
-
*
|
|
3781
|
+
* 分页查询偏移量,默认为 0
|
|
138
3782
|
*/
|
|
139
3783
|
Offset?: number
|
|
140
3784
|
|
|
141
3785
|
/**
|
|
142
|
-
*
|
|
3786
|
+
* 分页查询限制数目,默认为 100,最大可设置为 1000
|
|
143
3787
|
*/
|
|
144
3788
|
Limit?: number
|
|
145
3789
|
|
|
146
3790
|
/**
|
|
147
|
-
|
|
148
|
-
允许的值为:processing、success、failed、timeout、invalid
|
|
149
|
-
*/
|
|
150
|
-
Statuses?: Array<string>
|
|
151
|
-
|
|
152
|
-
/**
|
|
153
|
-
* zone id
|
|
3791
|
+
* 指定域名查询
|
|
154
3792
|
*/
|
|
155
|
-
|
|
3793
|
+
Hosts?: Array<string>
|
|
3794
|
+
}
|
|
156
3795
|
|
|
3796
|
+
/**
|
|
3797
|
+
* CreateApplicationProxyRules返回参数结构体
|
|
3798
|
+
*/
|
|
3799
|
+
export interface CreateApplicationProxyRulesResponse {
|
|
157
3800
|
/**
|
|
158
|
-
*
|
|
3801
|
+
* 新增的规则ID数组
|
|
159
3802
|
*/
|
|
160
|
-
|
|
3803
|
+
RuleId: Array<string>
|
|
161
3804
|
|
|
162
3805
|
/**
|
|
163
|
-
*
|
|
3806
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
164
3807
|
*/
|
|
165
|
-
|
|
3808
|
+
RequestId?: string
|
|
166
3809
|
}
|
|
167
3810
|
|
|
168
3811
|
/**
|
|
169
|
-
*
|
|
3812
|
+
* DescribeIdentification返回参数结构体
|
|
170
3813
|
*/
|
|
171
|
-
export interface
|
|
3814
|
+
export interface DescribeIdentificationResponse {
|
|
3815
|
+
/**
|
|
3816
|
+
* 站点名称
|
|
3817
|
+
*/
|
|
3818
|
+
Name: string
|
|
3819
|
+
|
|
3820
|
+
/**
|
|
3821
|
+
* 验证状态
|
|
3822
|
+
- pending 验证中
|
|
3823
|
+
- finished 验证完成
|
|
3824
|
+
*/
|
|
3825
|
+
Status: string
|
|
3826
|
+
|
|
3827
|
+
/**
|
|
3828
|
+
* 子域
|
|
3829
|
+
*/
|
|
3830
|
+
Subdomain: string
|
|
3831
|
+
|
|
3832
|
+
/**
|
|
3833
|
+
* 记录类型
|
|
3834
|
+
*/
|
|
3835
|
+
RecordType: string
|
|
3836
|
+
|
|
172
3837
|
/**
|
|
173
|
-
*
|
|
3838
|
+
* 记录值
|
|
174
3839
|
*/
|
|
175
|
-
|
|
3840
|
+
RecordValue: string
|
|
176
3841
|
|
|
177
3842
|
/**
|
|
178
|
-
*
|
|
3843
|
+
* 域名当前的 NS 记录
|
|
179
3844
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
180
3845
|
*/
|
|
181
|
-
|
|
3846
|
+
OriginalNameServers: Array<string>
|
|
182
3847
|
|
|
183
3848
|
/**
|
|
184
3849
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -187,114 +3852,76 @@ export interface CreatePrefetchTaskResponse {
|
|
|
187
3852
|
}
|
|
188
3853
|
|
|
189
3854
|
/**
|
|
190
|
-
*
|
|
3855
|
+
* 源站组信息
|
|
191
3856
|
*/
|
|
192
|
-
export interface
|
|
193
|
-
/**
|
|
194
|
-
* 站点ID
|
|
195
|
-
*/
|
|
196
|
-
Id: string
|
|
197
|
-
|
|
3857
|
+
export interface OriginGroup {
|
|
198
3858
|
/**
|
|
199
|
-
*
|
|
3859
|
+
* 源站组ID
|
|
200
3860
|
*/
|
|
201
|
-
|
|
3861
|
+
OriginId: string
|
|
202
3862
|
|
|
203
3863
|
/**
|
|
204
|
-
*
|
|
3864
|
+
* 源站组名称
|
|
205
3865
|
*/
|
|
206
|
-
|
|
3866
|
+
OriginName: string
|
|
207
3867
|
|
|
208
3868
|
/**
|
|
209
|
-
*
|
|
3869
|
+
* 配置类型
|
|
210
3870
|
*/
|
|
211
|
-
NameServers: Array<string>
|
|
212
|
-
|
|
213
|
-
/**
|
|
214
|
-
* 站点状态
|
|
215
|
-
- active:NS 已切换
|
|
216
|
-
- pending:NS 未切换
|
|
217
|
-
- moved:NS 已切走
|
|
218
|
-
- deactivated:被封禁
|
|
219
|
-
*/
|
|
220
|
-
Status: string
|
|
221
|
-
|
|
222
|
-
/**
|
|
223
|
-
* 站点接入方式
|
|
224
|
-
- full:NS 接入
|
|
225
|
-
- partial:CNAME 接入
|
|
226
|
-
*/
|
|
227
3871
|
Type: string
|
|
228
3872
|
|
|
229
3873
|
/**
|
|
230
|
-
*
|
|
3874
|
+
* 记录
|
|
231
3875
|
*/
|
|
232
|
-
|
|
3876
|
+
Record: Array<OriginRecord>
|
|
233
3877
|
|
|
234
3878
|
/**
|
|
235
|
-
*
|
|
3879
|
+
* 更新时间
|
|
236
3880
|
*/
|
|
237
|
-
|
|
3881
|
+
UpdateTime: string
|
|
238
3882
|
|
|
239
3883
|
/**
|
|
240
|
-
*
|
|
3884
|
+
* 站点ID
|
|
241
3885
|
*/
|
|
242
|
-
|
|
243
|
-
}
|
|
244
|
-
|
|
245
|
-
/**
|
|
246
|
-
* DownloadL7Logs返回参数结构体
|
|
247
|
-
*/
|
|
248
|
-
export interface DownloadL7LogsResponse {
|
|
249
|
-
/**
|
|
250
|
-
* 七层离线日志data
|
|
251
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
252
|
-
*/
|
|
253
|
-
Data: Array<L7OfflineLog>
|
|
3886
|
+
ZoneId: string
|
|
254
3887
|
|
|
255
3888
|
/**
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
PageSize: number
|
|
3889
|
+
* 站点名称
|
|
3890
|
+
*/
|
|
3891
|
+
ZoneName: string
|
|
260
3892
|
|
|
261
3893
|
/**
|
|
262
|
-
*
|
|
3894
|
+
* 源站类型
|
|
263
3895
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
264
3896
|
*/
|
|
265
|
-
|
|
3897
|
+
OriginType: string
|
|
266
3898
|
|
|
267
3899
|
/**
|
|
268
|
-
*
|
|
3900
|
+
* 是否为四层代理使用
|
|
269
3901
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
270
3902
|
*/
|
|
271
|
-
|
|
3903
|
+
ApplicationProxyUsed: boolean
|
|
272
3904
|
|
|
273
3905
|
/**
|
|
274
|
-
*
|
|
3906
|
+
* 是否为负载均衡使用
|
|
275
3907
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
276
3908
|
*/
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
/**
|
|
280
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
281
|
-
*/
|
|
282
|
-
RequestId?: string
|
|
3909
|
+
LoadBalancingUsed: boolean
|
|
283
3910
|
}
|
|
284
3911
|
|
|
285
3912
|
/**
|
|
286
|
-
*
|
|
3913
|
+
* DescribeLoadBalancing返回参数结构体
|
|
287
3914
|
*/
|
|
288
|
-
export interface
|
|
3915
|
+
export interface DescribeLoadBalancingResponse {
|
|
289
3916
|
/**
|
|
290
|
-
*
|
|
3917
|
+
* 记录总数
|
|
291
3918
|
*/
|
|
292
3919
|
TotalCount: number
|
|
293
3920
|
|
|
294
3921
|
/**
|
|
295
|
-
*
|
|
3922
|
+
* 负载均衡信息
|
|
296
3923
|
*/
|
|
297
|
-
|
|
3924
|
+
Data: Array<LoadBalancing>
|
|
298
3925
|
|
|
299
3926
|
/**
|
|
300
3927
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -303,39 +3930,36 @@ export interface DescribePrefetchTasksResponse {
|
|
|
303
3930
|
}
|
|
304
3931
|
|
|
305
3932
|
/**
|
|
306
|
-
*
|
|
3933
|
+
* ModifyDnssec返回参数结构体
|
|
307
3934
|
*/
|
|
308
|
-
export interface
|
|
309
|
-
/**
|
|
310
|
-
* 分页参数,页偏移
|
|
311
|
-
*/
|
|
312
|
-
Offset?: number
|
|
313
|
-
|
|
3935
|
+
export interface ModifyDnssecResponse {
|
|
314
3936
|
/**
|
|
315
|
-
*
|
|
3937
|
+
* 站点 ID
|
|
316
3938
|
*/
|
|
317
|
-
|
|
3939
|
+
Id: string
|
|
318
3940
|
|
|
319
3941
|
/**
|
|
320
|
-
*
|
|
3942
|
+
* 站点名称
|
|
321
3943
|
*/
|
|
322
|
-
|
|
323
|
-
}
|
|
3944
|
+
Name: string
|
|
324
3945
|
|
|
325
|
-
/**
|
|
326
|
-
* DescribeZones返回参数结构体
|
|
327
|
-
*/
|
|
328
|
-
export interface DescribeZonesResponse {
|
|
329
3946
|
/**
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
3947
|
+
* DNSSEC 状态
|
|
3948
|
+
- enabled 开启
|
|
3949
|
+
- disabled 关闭
|
|
3950
|
+
*/
|
|
3951
|
+
Status: string
|
|
333
3952
|
|
|
334
3953
|
/**
|
|
335
|
-
*
|
|
3954
|
+
* DNSSEC 相关信息
|
|
336
3955
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
337
3956
|
*/
|
|
338
|
-
|
|
3957
|
+
Dnssec: DnssecInfo
|
|
3958
|
+
|
|
3959
|
+
/**
|
|
3960
|
+
* 修改时间
|
|
3961
|
+
*/
|
|
3962
|
+
ModifiedOn: string
|
|
339
3963
|
|
|
340
3964
|
/**
|
|
341
3965
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -344,173 +3968,166 @@ export interface DescribeZonesResponse {
|
|
|
344
3968
|
}
|
|
345
3969
|
|
|
346
3970
|
/**
|
|
347
|
-
*
|
|
3971
|
+
* ScanDnsRecords请求参数结构体
|
|
348
3972
|
*/
|
|
349
|
-
export interface
|
|
350
|
-
/**
|
|
351
|
-
* HTTP头部
|
|
352
|
-
*/
|
|
353
|
-
Name: string
|
|
354
|
-
|
|
3973
|
+
export interface ScanDnsRecordsRequest {
|
|
355
3974
|
/**
|
|
356
|
-
*
|
|
3975
|
+
* 站点 ID
|
|
357
3976
|
*/
|
|
358
|
-
|
|
3977
|
+
ZoneId: string
|
|
359
3978
|
}
|
|
360
3979
|
|
|
361
3980
|
/**
|
|
362
|
-
*
|
|
3981
|
+
* ImportDnsRecords返回参数结构体
|
|
363
3982
|
*/
|
|
364
|
-
export interface
|
|
3983
|
+
export interface ImportDnsRecordsResponse {
|
|
365
3984
|
/**
|
|
366
|
-
*
|
|
3985
|
+
* 记录 ID
|
|
367
3986
|
*/
|
|
368
|
-
|
|
3987
|
+
Ids: Array<string>
|
|
369
3988
|
|
|
370
3989
|
/**
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
Targets: Array<string>
|
|
3990
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3991
|
+
*/
|
|
3992
|
+
RequestId?: string
|
|
375
3993
|
}
|
|
376
3994
|
|
|
377
3995
|
/**
|
|
378
|
-
*
|
|
3996
|
+
* DescribeLoadBalancingDetail请求参数结构体
|
|
379
3997
|
*/
|
|
380
|
-
export interface
|
|
3998
|
+
export interface DescribeLoadBalancingDetailRequest {
|
|
381
3999
|
/**
|
|
382
|
-
*
|
|
383
|
-
*/
|
|
384
|
-
JobId: string
|
|
385
|
-
|
|
386
|
-
/**
|
|
387
|
-
* 状态
|
|
388
|
-
*/
|
|
389
|
-
Status: string
|
|
390
|
-
|
|
391
|
-
/**
|
|
392
|
-
* 资源
|
|
4000
|
+
* 站点ID
|
|
393
4001
|
*/
|
|
394
|
-
|
|
4002
|
+
ZoneId: string
|
|
395
4003
|
|
|
396
4004
|
/**
|
|
397
|
-
*
|
|
4005
|
+
* 负载均衡ID
|
|
398
4006
|
*/
|
|
399
|
-
|
|
4007
|
+
LoadBalancingId: string
|
|
4008
|
+
}
|
|
400
4009
|
|
|
4010
|
+
/**
|
|
4011
|
+
* https 服务端证书配置
|
|
4012
|
+
*/
|
|
4013
|
+
export interface DefaultServerCertInfo {
|
|
401
4014
|
/**
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
4015
|
+
* 服务器证书 ID, 默认证书ID, 或在 SSL 证书管理进行证书托管时自动生成
|
|
4016
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4017
|
+
*/
|
|
4018
|
+
CertId: string
|
|
405
4019
|
|
|
406
4020
|
/**
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
4021
|
+
* 证书备注名
|
|
4022
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4023
|
+
*/
|
|
4024
|
+
Alias?: string
|
|
411
4025
|
|
|
412
|
-
/**
|
|
413
|
-
* CreatePrefetchTask请求参数结构体
|
|
414
|
-
*/
|
|
415
|
-
export interface CreatePrefetchTaskRequest {
|
|
416
4026
|
/**
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
4027
|
+
* 证书类型:
|
|
4028
|
+
default: 默认证书
|
|
4029
|
+
upload:用户上传
|
|
4030
|
+
managed:腾讯云托管
|
|
4031
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4032
|
+
*/
|
|
4033
|
+
Type?: string
|
|
420
4034
|
|
|
421
4035
|
/**
|
|
422
|
-
*
|
|
423
|
-
|
|
4036
|
+
* 证书过期时间
|
|
4037
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
424
4038
|
*/
|
|
425
|
-
|
|
4039
|
+
ExpireTime?: string
|
|
426
4040
|
|
|
427
4041
|
/**
|
|
428
|
-
*
|
|
429
|
-
|
|
4042
|
+
* 证书生效时间
|
|
4043
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
430
4044
|
*/
|
|
431
|
-
|
|
4045
|
+
EffectiveTime?: string
|
|
432
4046
|
|
|
433
4047
|
/**
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
4048
|
+
* 证书公用名
|
|
4049
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4050
|
+
*/
|
|
4051
|
+
CommonName?: string
|
|
438
4052
|
|
|
439
|
-
/**
|
|
440
|
-
* DescribePurgeTasks返回参数结构体
|
|
441
|
-
*/
|
|
442
|
-
export interface DescribePurgeTasksResponse {
|
|
443
4053
|
/**
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
4054
|
+
* 证书SAN域名
|
|
4055
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4056
|
+
*/
|
|
4057
|
+
SubjectAltName?: Array<string>
|
|
447
4058
|
|
|
448
4059
|
/**
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
4060
|
+
* 证书状态:
|
|
4061
|
+
applying: 证书申请中
|
|
4062
|
+
failed: 证书(申请)失败
|
|
4063
|
+
processing: 证书部署中
|
|
4064
|
+
deployed: 证书已部署
|
|
4065
|
+
disabled: 证书被禁用
|
|
4066
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4067
|
+
*/
|
|
4068
|
+
Status?: string
|
|
452
4069
|
|
|
453
4070
|
/**
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
4071
|
+
* Status为失败时,此字段返回失败原因
|
|
4072
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4073
|
+
*/
|
|
4074
|
+
Message?: string
|
|
457
4075
|
}
|
|
458
4076
|
|
|
459
4077
|
/**
|
|
460
|
-
*
|
|
4078
|
+
* DNSSEC 相关信息
|
|
461
4079
|
*/
|
|
462
|
-
export interface
|
|
4080
|
+
export interface DnssecInfo {
|
|
463
4081
|
/**
|
|
464
|
-
*
|
|
4082
|
+
* 标志
|
|
465
4083
|
*/
|
|
466
|
-
|
|
4084
|
+
Flags: number
|
|
467
4085
|
|
|
468
4086
|
/**
|
|
469
|
-
*
|
|
4087
|
+
* 加密算法
|
|
470
4088
|
*/
|
|
471
|
-
|
|
4089
|
+
Algorithm: string
|
|
472
4090
|
|
|
473
4091
|
/**
|
|
474
|
-
*
|
|
4092
|
+
* 加密类型
|
|
475
4093
|
*/
|
|
476
|
-
|
|
4094
|
+
KeyType: string
|
|
477
4095
|
|
|
478
4096
|
/**
|
|
479
|
-
*
|
|
4097
|
+
* 摘要类型
|
|
480
4098
|
*/
|
|
481
|
-
|
|
4099
|
+
DigestType: string
|
|
482
4100
|
|
|
483
4101
|
/**
|
|
484
|
-
*
|
|
4102
|
+
* 摘要算法
|
|
485
4103
|
*/
|
|
486
|
-
|
|
4104
|
+
DigestAlgorithm: string
|
|
487
4105
|
|
|
488
4106
|
/**
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
Statuses?: Array<string>
|
|
4107
|
+
* 摘要信息
|
|
4108
|
+
*/
|
|
4109
|
+
Digest: string
|
|
493
4110
|
|
|
494
4111
|
/**
|
|
495
|
-
*
|
|
4112
|
+
* DS 记录值
|
|
496
4113
|
*/
|
|
497
|
-
|
|
4114
|
+
DS: string
|
|
498
4115
|
|
|
499
4116
|
/**
|
|
500
|
-
*
|
|
4117
|
+
* 密钥标签
|
|
501
4118
|
*/
|
|
502
|
-
|
|
4119
|
+
KeyTag: number
|
|
503
4120
|
|
|
504
4121
|
/**
|
|
505
|
-
*
|
|
4122
|
+
* 公钥
|
|
506
4123
|
*/
|
|
507
|
-
|
|
4124
|
+
PublicKey: string
|
|
508
4125
|
}
|
|
509
4126
|
|
|
510
4127
|
/**
|
|
511
|
-
*
|
|
4128
|
+
* DNS 记录查询过滤条件
|
|
512
4129
|
*/
|
|
513
|
-
export interface
|
|
4130
|
+
export interface DnsRecordFilter {
|
|
514
4131
|
/**
|
|
515
4132
|
* 过滤字段名,支持的列表如下:
|
|
516
4133
|
- name: 站点名。
|
|
@@ -530,36 +4147,39 @@ export interface ZoneFilter {
|
|
|
530
4147
|
}
|
|
531
4148
|
|
|
532
4149
|
/**
|
|
533
|
-
*
|
|
4150
|
+
* Http2回源配置
|
|
534
4151
|
*/
|
|
535
|
-
export interface
|
|
536
|
-
/**
|
|
537
|
-
* 日志打包开始时间
|
|
538
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
539
|
-
*/
|
|
540
|
-
LogTime: number
|
|
541
|
-
|
|
4152
|
+
export interface UpstreamHttp2 {
|
|
542
4153
|
/**
|
|
543
|
-
*
|
|
544
|
-
|
|
4154
|
+
* http2回源配置开关
|
|
4155
|
+
on:开启
|
|
4156
|
+
off:关闭
|
|
545
4157
|
*/
|
|
546
|
-
|
|
4158
|
+
Switch: string
|
|
4159
|
+
}
|
|
547
4160
|
|
|
4161
|
+
/**
|
|
4162
|
+
* 离线缓存是否开启
|
|
4163
|
+
*/
|
|
4164
|
+
export interface OfflineCache {
|
|
548
4165
|
/**
|
|
549
|
-
*
|
|
4166
|
+
* on | off, 离线缓存是否开启
|
|
550
4167
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
551
4168
|
*/
|
|
552
|
-
|
|
4169
|
+
Switch: string
|
|
4170
|
+
}
|
|
553
4171
|
|
|
4172
|
+
/**
|
|
4173
|
+
* 自定义名字服务器 IP 信息
|
|
4174
|
+
*/
|
|
4175
|
+
export interface VanityNameServersIps {
|
|
554
4176
|
/**
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
Url: string
|
|
4177
|
+
* 自定义名字服务器名称
|
|
4178
|
+
*/
|
|
4179
|
+
Name: string
|
|
559
4180
|
|
|
560
4181
|
/**
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
LogPacketName: string
|
|
4182
|
+
* 自定义名字服务器 IPv4 地址
|
|
4183
|
+
*/
|
|
4184
|
+
IPv4: string
|
|
565
4185
|
}
|