tencentcloud-sdk-nodejs-teo 4.1.201 → 4.1.207

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.
@@ -50,15 +50,17 @@ export interface TopEntryValue {
50
50
  Count: number;
51
51
  }
52
52
  /**
53
- * 预付费套餐自动续费配置项。
53
+ * ModifyZoneWorkMode请求参数结构体
54
54
  */
55
- export interface RenewFlag {
55
+ export interface ModifyZoneWorkModeRequest {
56
56
  /**
57
- * 预付费套餐的自动续费标志,取值有:
58
- <li> on:开启自动续费;</li>
59
- <li> off:不开启自动续费。</li>
57
+ * 站点 ID。
60
58
  */
61
- Switch: string;
59
+ ZoneId: string;
60
+ /**
61
+ * 版本管理配置组工作模式。站点各配置模块可按照配置组维度开启「版本管理模式」或「即时生效模式」,详情请参考 [版本管理](https://cloud.tencent.com/document/product/1552/113690)。
62
+ */
63
+ WorkModeInfos?: Array<ConfigGroupWorkModeInfo>;
62
64
  }
63
65
  /**
64
66
  * 智能压缩配置。
@@ -207,33 +209,15 @@ export interface AdaptiveFrequencyControl {
207
209
  Action?: SecurityAction;
208
210
  }
209
211
  /**
210
- * 慢速攻击配置。
212
+ * 预付费套餐自动续费配置项。
211
213
  */
212
- export interface SlowPostConfig {
214
+ export interface RenewFlag {
213
215
  /**
214
- * 开关,取值有:
215
- <li>on:开启;</li>
216
- <li>off:关闭。</li>
216
+ * 预付费套餐的自动续费标志,取值有:
217
+ <li> on:开启自动续费;</li>
218
+ <li> off:不开启自动续费。</li>
217
219
  */
218
220
  Switch: string;
219
- /**
220
- * 首包配置。
221
- */
222
- FirstPartConfig?: FirstPartConfig;
223
- /**
224
- * 基础配置。
225
- */
226
- SlowRateConfig?: SlowRateConfig;
227
- /**
228
- * 慢速攻击的处置动作,取值有:
229
- <li>monitor:观察;</li>
230
- <li>drop:拦截。</li>
231
- */
232
- Action?: string;
233
- /**
234
- * 本规则的Id。
235
- */
236
- RuleId?: number;
237
221
  }
238
222
  /**
239
223
  * DescribeWebSecurityTemplates请求参数结构体
@@ -538,83 +522,21 @@ export interface HeaderAction {
538
522
  Value?: string;
539
523
  }
540
524
  /**
541
- * 实时日志投递任务。
525
+ * ModifyEdgeKVNamespace请求参数结构体
542
526
  */
543
- export interface RealtimeLogDeliveryTask {
544
- /**
545
- * 实时日志投递任务 ID。
546
- */
547
- TaskId?: string;
548
- /**
549
- * 实时日志投递任务的名称。
550
- */
551
- TaskName?: string;
552
- /**
553
- * 实时日志投递任务的状态,取值有: <li>enabled: 已启用;</li> <li>disabled: 已停用;</li><li>deleted: 异常删除状态,请检查目的地腾讯云 CLS 日志集/日志主题是否已被删除。</li>
554
- */
555
- DeliveryStatus?: string;
556
- /**
557
- * 实时日志投递任务类型,取值有: <li>cls: 推送到腾讯云 CLS;</li> <li>custom_endpoint:推送到自定义 HTTP(S) 地址;</li> <li>s3:推送到 AWS S3 兼容存储桶地址;</li><li>log_analysis:推送到 EdgeOne 日志分析。</li>
558
- */
559
- TaskType?: string;
560
- /**
561
- * 实时日志投递任务对应的实体(七层域名或者四层代理实例)列表。取值示例如下: <li>七层域名:domain.example.com;</li> <li>四层代理实例:sid-2s69eb5wcms7。</li>
562
- */
563
- EntityList?: Array<string>;
527
+ export interface ModifyEdgeKVNamespaceRequest {
564
528
  /**
565
- * 数据投递类型,取值有: <li>domain:站点加速日志;</li> <li>application:四层代理日志;</li> <li>web-rateLiming:速率限制和 CC 攻击防护日志;</li> <li>web-attack:托管规则日志;</li> <li>web-rule:自定义规则日志;</li> <li>web-bot:Bot管理日志。</li>
566
- */
567
- LogType?: string;
568
- /**
569
- * 数据投递区域,取值有: <li>mainland:中国大陆境内;</li> <li>overseas:全球(不含中国大陆)。</li>
570
- */
571
- Area?: string;
572
- /**
573
- * 投递的预设字段列表。
574
- */
575
- Fields?: Array<string>;
576
- /**
577
- * 投递的自定义字段列表。
578
- */
579
- CustomFields?: Array<CustomField>;
580
- /**
581
- * 日志投递的过滤条件。
582
- */
583
- DeliveryConditions?: Array<DeliveryCondition>;
584
- /**
585
- * 采样比例,采用千分制,取值范围为1-1000,例如:605 表示采样比例为 60.5%。
586
- */
587
- Sample?: number;
588
- /**
589
- * 日志投递的输出格式。出参为 null 时表示为默认格式,默认格式逻辑如下:
590
- <li>当 TaskType 取值为 custom_endpoint 时,默认格式为多个 JSON 对象组成的数组,每个 JSON 对象为一条日志;</li>
591
- <li>当 TaskType 取值为 s3 时,默认格式为 JSON Lines。</li>
592
- 注意:此字段可能返回 null,表示取不到有效值。
593
- */
594
- LogFormat?: LogFormat;
595
- /**
596
- * CLS 的配置信息。
597
- 注意:此字段可能返回 null,表示取不到有效值。
598
- */
599
- CLS?: CLSTopic;
600
- /**
601
- * 自定义 HTTP 服务的配置信息。
602
- 注意:此字段可能返回 null,表示取不到有效值。
603
- */
604
- CustomEndpoint?: CustomEndpoint;
605
- /**
606
- * AWS S3 兼容存储桶的配置信息。
607
- 注意:此字段可能返回 null,表示取不到有效值。
529
+ * 站点 ID。
608
530
  */
609
- S3?: S3;
531
+ ZoneId: string;
610
532
  /**
611
- * 创建时间。
533
+ * 命名空间名称。
612
534
  */
613
- CreateTime?: string;
535
+ Namespace: string;
614
536
  /**
615
- * 更新时间。
537
+ * 命名空间描述。用于说明命名空间的用途或业务含义。最大支持 256 个字符。
616
538
  */
617
- UpdateTime?: string;
539
+ Remark?: string;
618
540
  }
619
541
  /**
620
542
  * 预付费套餐计费参数
@@ -1263,6 +1185,61 @@ export interface ModifyL7AccRulePriorityRequest {
1263
1185
  */
1264
1186
  RuleIds: Array<string>;
1265
1187
  }
1188
+ /**
1189
+ * EdgeKVList请求参数结构体
1190
+ */
1191
+ export interface EdgeKVListRequest {
1192
+ /**
1193
+ * 站点 ID。
1194
+ */
1195
+ ZoneId: string;
1196
+ /**
1197
+ * 命名空间名称。
1198
+ */
1199
+ Namespace: string;
1200
+ /**
1201
+ * 键名前缀过滤。只返回以指定前缀开头的键名,长度为 1-512 个字符。不填写表示返回所有键名;不允许传入空字符串。
1202
+ */
1203
+ Prefix?: string;
1204
+ /**
1205
+ * 游标位置。标识当前查询的起始位置,用于遍历大量数据。首次查询时不填写,从头开始遍历;后续查询时填写上一次返回的 Cursor 值,从该位置继续向后遍历。
1206
+
1207
+ */
1208
+ Cursor?: string;
1209
+ /**
1210
+ * 返回的键名数量。默认值:20,最大值:1000。
1211
+ */
1212
+ Limit?: number;
1213
+ }
1214
+ /**
1215
+ * 慢速攻击配置。
1216
+ */
1217
+ export interface SlowPostConfig {
1218
+ /**
1219
+ * 开关,取值有:
1220
+ <li>on:开启;</li>
1221
+ <li>off:关闭。</li>
1222
+ */
1223
+ Switch: string;
1224
+ /**
1225
+ * 首包配置。
1226
+ */
1227
+ FirstPartConfig?: FirstPartConfig;
1228
+ /**
1229
+ * 基础配置。
1230
+ */
1231
+ SlowRateConfig?: SlowRateConfig;
1232
+ /**
1233
+ * 慢速攻击的处置动作,取值有:
1234
+ <li>monitor:观察;</li>
1235
+ <li>drop:拦截。</li>
1236
+ */
1237
+ Action?: string;
1238
+ /**
1239
+ * 本规则的Id。
1240
+ */
1241
+ RuleId?: number;
1242
+ }
1266
1243
  /**
1267
1244
  * WebSocket配置
1268
1245
  */
@@ -1319,6 +1296,23 @@ export interface ModifyAccelerationDomainRequest {
1319
1296
  */
1320
1297
  IPv6Status?: string;
1321
1298
  }
1299
+ /**
1300
+ * EdgeKVGet请求参数结构体
1301
+ */
1302
+ export interface EdgeKVGetRequest {
1303
+ /**
1304
+ * 站点 ID。
1305
+ */
1306
+ ZoneId: string;
1307
+ /**
1308
+ * 命名空间名称。可通过 DescribeEdgeKVNamespaces 接口获取站点下的命名空间列表。
1309
+ */
1310
+ Namespace: string;
1311
+ /**
1312
+ * 键名列表。数组长度上限为 20。每个键名不能为空,长度为 1-512 个字符,允许的字符为字母、数字、中划线和下划线。查询单个键时传入包含一个元素的数组。
1313
+ */
1314
+ Keys: Array<string>;
1315
+ }
1322
1316
  /**
1323
1317
  * ModifyContentIdentifier返回参数结构体
1324
1318
  */
@@ -1328,6 +1322,15 @@ export interface ModifyContentIdentifierResponse {
1328
1322
  */
1329
1323
  RequestId?: string;
1330
1324
  }
1325
+ /**
1326
+ * DeleteEdgeKVNamespace返回参数结构体
1327
+ */
1328
+ export interface DeleteEdgeKVNamespaceResponse {
1329
+ /**
1330
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1331
+ */
1332
+ RequestId?: string;
1333
+ }
1331
1334
  /**
1332
1335
  * DeleteSecurityAPIService返回参数结构体
1333
1336
  */
@@ -1775,6 +1778,23 @@ export interface CreateFunctionRuleRequest {
1775
1778
  */
1776
1779
  Remark?: string;
1777
1780
  }
1781
+ /**
1782
+ * 规则引擎条件使用StatusCode字段动作参数
1783
+ */
1784
+ export interface RuleCodeActionParams {
1785
+ /**
1786
+ * 状态 Code。
1787
+ */
1788
+ StatusCode: number;
1789
+ /**
1790
+ * 参数名称,参数填写规范可调用接口 [查询规则引擎的设置参数](https://cloud.tencent.com/document/product/1552/80618) 查看。
1791
+ */
1792
+ Name: string;
1793
+ /**
1794
+ * 参数值。
1795
+ */
1796
+ Values: Array<string>;
1797
+ }
1778
1798
  /**
1779
1799
  * 子规则分支。
1780
1800
  */
@@ -1794,6 +1814,40 @@ export interface RuleBranch {
1794
1814
  */
1795
1815
  SubRules?: Array<RuleEngineSubRule>;
1796
1816
  }
1817
+ /**
1818
+ * 组件被引用的实例信息,用于展示该组件与边缘函数等资源的绑定关系。当边缘函数需要访问组件(如 KV 命名空间)时,会建立引用关系,通过此结构体可查看引用的具体实例详情及所属站点信息。
1819
+ */
1820
+ export interface ComponentReference {
1821
+ /**
1822
+ * 引用的实例类型。取值有:
1823
+ <li>edge-function:边缘函数。</li>
1824
+ */
1825
+ ReferenceType?: string;
1826
+ /**
1827
+ * 引用的实例 ID。根据 ReferenceType 的取值不同,返回对应的实例 ID:
1828
+ <li>当 ReferenceType 为 edge-function 时:返回边缘函数 ID,格式形如:ef-2vc5oe9mzqhm。</li>
1829
+
1830
+ */
1831
+ ReferenceId?: string;
1832
+ /**
1833
+ * 引用的实例名称。根据 ReferenceType 的取值不同,返回对应的实例名称:
1834
+ <li>当 ReferenceType 为 edge-function 时:返回边缘函数名称。</li>
1835
+
1836
+ */
1837
+ ReferenceName?: string;
1838
+ /**
1839
+ * 站点 ID。引用该命名空间的实例所属的站点标识。
1840
+ */
1841
+ ZoneId?: string;
1842
+ /**
1843
+ * 站点名称。引用该命名空间的实例所属的站点名称。
1844
+ */
1845
+ ZoneName?: string;
1846
+ /**
1847
+ * 引用该命名空间的实例所属站点的别名。若未设置站点别名,则返回空字符串。
1848
+ */
1849
+ AliasZoneName?: string;
1850
+ }
1797
1851
  /**
1798
1852
  * ConfirmOriginACLUpdate返回参数结构体
1799
1853
  */
@@ -1803,6 +1857,15 @@ export interface ConfirmOriginACLUpdateResponse {
1803
1857
  */
1804
1858
  RequestId?: string;
1805
1859
  }
1860
+ /**
1861
+ * ModifyEdgeKVNamespace返回参数结构体
1862
+ */
1863
+ export interface ModifyEdgeKVNamespaceResponse {
1864
+ /**
1865
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
1866
+ */
1867
+ RequestId?: string;
1868
+ }
1806
1869
  /**
1807
1870
  * DescribeAliasDomains返回参数结构体
1808
1871
  */
@@ -2277,38 +2340,38 @@ export interface CachePrefresh {
2277
2340
  Percent?: number;
2278
2341
  }
2279
2342
  /**
2280
- * 七层加速域名/四层代理实例与回源 IP 网段的绑定关系,同时包含回源 IP 网段详情和选择可切换的回源 IP 网段列表。
2343
+ * DescribePurgeTasks请求参数结构体
2281
2344
  */
2282
- export interface OriginACLInfo {
2345
+ export interface DescribePurgeTasksRequest {
2283
2346
  /**
2284
- * 启用了特定回源 IP 网段回源的七层加速域名列表。源站防护未开启时为空。
2347
+ * 站点 ID。此参数将于2024年05月30日后由可选改为必填,详见公告:[【腾讯云 EdgeOne】云 API 变更通知](https://cloud.tencent.com/document/product/1552/104902)。
2285
2348
  */
2286
- L7Hosts?: Array<string>;
2349
+ ZoneId?: string;
2287
2350
  /**
2288
- * 启用了特定回源 IP 网段回源的四层代理实例列表。源站防护未开启时为空。
2351
+ * 查询起始时间,时间与 job-id 必填一个。
2289
2352
  */
2290
- L4ProxyIds?: Array<string>;
2353
+ StartTime?: string;
2291
2354
  /**
2292
- * 当前生效的回源 IP 网段。源站防护未开启时为空。
2293
- 注意:此字段可能返回 null,表示取不到有效值。
2355
+ * 查询结束时间,时间与 job-id 必填一个。
2294
2356
  */
2295
- CurrentOriginACL?: CurrentOriginACL;
2357
+ EndTime?: string;
2296
2358
  /**
2297
- * 当回源 IP 网段发生更新时,该字段会返回下一个版本将要生效的回源 IP 网段,包含与当前回源 IP 网段的对比。无更新或者源站防护未开启时该字段为空。
2298
- 注意:此字段可能返回 null,表示取不到有效值。
2359
+ * 分页查询偏移量,默认为 0。
2299
2360
  */
2300
- NextOriginACL?: NextOriginACL;
2361
+ Offset?: number;
2301
2362
  /**
2302
- * 源站防护状态,取值有:
2303
- <li>online:已生效;</li>
2304
- <li>offline:已停用;</li>
2305
- <li>updating: 配置部署中。</li>
2363
+ * 分页查询限制数目,默认值:20,最大值:1000。
2306
2364
  */
2307
- Status?: string;
2365
+ Limit?: number;
2308
2366
  /**
2309
- * 源站防护回源ACL控制域。
2367
+ * 过滤条件,Filters.Values的上限为20。详细的过滤条件如下:
2368
+ <li>job-id:按照任务 ID 进行过滤。job-id 形如:1379afjk91u32h,暂不支持多值,不支持模糊查询;</li>
2369
+ <li>target:按照目标资源信息进行过滤,target 形如:http://www.qq.com/1.txt 或者 tag1,暂不支持多值,支持模糊查询;</li>
2370
+ <li>domains:按照域名进行过滤,形如:www.qq.com,不支持模糊查询;</li>
2371
+ <li>statuses:按照任务状态进行过滤,不支持模糊查询。可选项:<br>   processing:处理中<br>   success:成功<br>   failed:失败<br>   timeout:超时<br>   canceled:已取消</li>
2372
+ <li>type:按照清除缓存类型进行过滤,暂不支持多值,不支持模糊查询。可选项:<br>   purge_url:URL<br>   purge_prefix:前缀<br>   purge_all:全部缓存内容<br>   purge_host:Hostname<br>   purge_cache_tag:CacheTag</li>
2310
2373
  */
2311
- OriginACLFamily?: string;
2374
+ Filters?: Array<AdvancedFilter>;
2312
2375
  }
2313
2376
  /**
2314
2377
  * DescribeTimingL7AnalysisData返回参数结构体
@@ -2352,6 +2415,85 @@ export interface CreateL7AccRulesRequest {
2352
2415
  */
2353
2416
  Rules: Array<RuleEngineItem>;
2354
2417
  }
2418
+ /**
2419
+ * 实时日志投递任务。
2420
+ */
2421
+ export interface RealtimeLogDeliveryTask {
2422
+ /**
2423
+ * 实时日志投递任务 ID。
2424
+ */
2425
+ TaskId?: string;
2426
+ /**
2427
+ * 实时日志投递任务的名称。
2428
+ */
2429
+ TaskName?: string;
2430
+ /**
2431
+ * 实时日志投递任务的状态,取值有: <li>enabled: 已启用;</li> <li>disabled: 已停用;</li><li>deleted: 异常删除状态,请检查目的地腾讯云 CLS 日志集/日志主题是否已被删除。</li>
2432
+ */
2433
+ DeliveryStatus?: string;
2434
+ /**
2435
+ * 实时日志投递任务类型,取值有: <li>cls: 推送到腾讯云 CLS;</li> <li>custom_endpoint:推送到自定义 HTTP(S) 地址;</li> <li>s3:推送到 AWS S3 兼容存储桶地址;</li><li>log_analysis:推送到 EdgeOne 日志分析。</li>
2436
+ */
2437
+ TaskType?: string;
2438
+ /**
2439
+ * 实时日志投递任务对应的实体(七层域名或者四层代理实例)列表。取值示例如下: <li>七层域名:domain.example.com;</li> <li>四层代理实例:sid-2s69eb5wcms7。</li>
2440
+ */
2441
+ EntityList?: Array<string>;
2442
+ /**
2443
+ * 数据投递类型,取值有: <li>domain:站点加速日志;</li> <li>application:四层代理日志;</li> <li>web-rateLiming:速率限制和 CC 攻击防护日志;</li> <li>web-attack:托管规则日志;</li> <li>web-rule:自定义规则日志;</li> <li>web-bot:Bot管理日志。</li>
2444
+ */
2445
+ LogType?: string;
2446
+ /**
2447
+ * 数据投递区域,取值有: <li>mainland:中国大陆境内;</li> <li>overseas:全球(不含中国大陆)。</li>
2448
+ */
2449
+ Area?: string;
2450
+ /**
2451
+ * 投递的预设字段列表。
2452
+ */
2453
+ Fields?: Array<string>;
2454
+ /**
2455
+ * 投递的自定义字段列表。
2456
+ */
2457
+ CustomFields?: Array<CustomField>;
2458
+ /**
2459
+ * 日志投递的过滤条件。
2460
+ */
2461
+ DeliveryConditions?: Array<DeliveryCondition>;
2462
+ /**
2463
+ * 采样比例,采用千分制,取值范围为1-1000,例如:605 表示采样比例为 60.5%。
2464
+ */
2465
+ Sample?: number;
2466
+ /**
2467
+ * 日志投递的输出格式。出参为 null 时表示为默认格式,默认格式逻辑如下:
2468
+ <li>当 TaskType 取值为 custom_endpoint 时,默认格式为多个 JSON 对象组成的数组,每个 JSON 对象为一条日志;</li>
2469
+ <li>当 TaskType 取值为 s3 时,默认格式为 JSON Lines。</li>
2470
+ 注意:此字段可能返回 null,表示取不到有效值。
2471
+ */
2472
+ LogFormat?: LogFormat;
2473
+ /**
2474
+ * CLS 的配置信息。
2475
+ 注意:此字段可能返回 null,表示取不到有效值。
2476
+ */
2477
+ CLS?: CLSTopic;
2478
+ /**
2479
+ * 自定义 HTTP 服务的配置信息。
2480
+ 注意:此字段可能返回 null,表示取不到有效值。
2481
+ */
2482
+ CustomEndpoint?: CustomEndpoint;
2483
+ /**
2484
+ * AWS S3 兼容存储桶的配置信息。
2485
+ 注意:此字段可能返回 null,表示取不到有效值。
2486
+ */
2487
+ S3?: S3;
2488
+ /**
2489
+ * 创建时间。
2490
+ */
2491
+ CreateTime?: string;
2492
+ /**
2493
+ * 更新时间。
2494
+ */
2495
+ UpdateTime?: string;
2496
+ }
2355
2497
  /**
2356
2498
  * bot 用户画像规则
2357
2499
  */
@@ -2450,21 +2592,38 @@ export interface DescribeSecurityJSInjectionRuleResponse {
2450
2592
  RequestId?: string;
2451
2593
  }
2452
2594
  /**
2453
- * 规则引擎条件使用StatusCode字段动作参数
2595
+ * 七层加速域名/四层代理实例与回源 IP 网段的绑定关系,同时包含回源 IP 网段详情和选择可切换的回源 IP 网段列表。
2454
2596
  */
2455
- export interface RuleCodeActionParams {
2597
+ export interface OriginACLInfo {
2456
2598
  /**
2457
- * 状态 Code。
2599
+ * 启用了特定回源 IP 网段回源的七层加速域名列表。源站防护未开启时为空。
2458
2600
  */
2459
- StatusCode: number;
2601
+ L7Hosts?: Array<string>;
2460
2602
  /**
2461
- * 参数名称,参数填写规范可调用接口 [查询规则引擎的设置参数](https://cloud.tencent.com/document/product/1552/80618) 查看。
2603
+ * 启用了特定回源 IP 网段回源的四层代理实例列表。源站防护未开启时为空。
2462
2604
  */
2463
- Name: string;
2605
+ L4ProxyIds?: Array<string>;
2464
2606
  /**
2465
- * 参数值。
2607
+ * 当前生效的回源 IP 网段。源站防护未开启时为空。
2608
+ 注意:此字段可能返回 null,表示取不到有效值。
2466
2609
  */
2467
- Values: Array<string>;
2610
+ CurrentOriginACL?: CurrentOriginACL;
2611
+ /**
2612
+ * 当回源 IP 网段发生更新时,该字段会返回下一个版本将要生效的回源 IP 网段,包含与当前回源 IP 网段的对比。无更新或者源站防护未开启时该字段为空。
2613
+ 注意:此字段可能返回 null,表示取不到有效值。
2614
+ */
2615
+ NextOriginACL?: NextOriginACL;
2616
+ /**
2617
+ * 源站防护状态,取值有:
2618
+ <li>online:已生效;</li>
2619
+ <li>offline:已停用;</li>
2620
+ <li>updating: 配置部署中。</li>
2621
+ */
2622
+ Status?: string;
2623
+ /**
2624
+ * 源站防护回源ACL控制域。
2625
+ */
2626
+ OriginACLFamily?: string;
2468
2627
  }
2469
2628
  /**
2470
2629
  * 源站组引用服务。
@@ -2822,17 +2981,17 @@ export interface ZoneInfo {
2822
2981
  Paused?: boolean;
2823
2982
  }
2824
2983
  /**
2825
- * 状态码缓存 TTL 配置参数内部结构。
2984
+ * EdgeKVGet返回参数结构体
2826
2985
  */
2827
- export interface StatusCodeCacheParam {
2986
+ export interface EdgeKVGetResponse {
2828
2987
  /**
2829
- * 状态码,取值为 400、 401、403、 404、 405、 407、 414、 500、 501、 502、 503、 504、 509、 514 之一。
2988
+ * 键值对数据列表。按入参 Keys 的顺序依次返回结果,若某键不存在,则对应项的 Value 字段返回空字符串。
2830
2989
  */
2831
- StatusCode?: number;
2990
+ Data?: Array<KeyValuePair>;
2832
2991
  /**
2833
- * 缓存时间数值,单位为秒,取值:0~31536000
2992
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId
2834
2993
  */
2835
- CacheTime?: number;
2994
+ RequestId?: string;
2836
2995
  }
2837
2996
  /**
2838
2997
  * 人机校验页的具体配置。
@@ -2986,6 +3145,24 @@ export interface DetectLengthLimitRule {
2986
3145
  */
2987
3146
  Action: string;
2988
3147
  }
3148
+ /**
3149
+ * IP SSL相关信息
3150
+ */
3151
+ export interface IPSSLConfig {
3152
+ /**
3153
+ * IP SSL关联的域名。如果Status值为 unbound 时,该字段为空值。
3154
+ 注意:此字段可能返回 null,表示取不到有效值。
3155
+ */
3156
+ AssociatedDomain?: string;
3157
+ /**
3158
+ * 关联状态, 取值如下:
3159
+ <li>bound:IP SSL配置已绑定</li>
3160
+ <li>binding:IP SSL配置绑定中</li>
3161
+ <li>unbinding:IP SSL配置解绑中</li>
3162
+ <li>unbound:IP SSL配置未绑定</li>
3163
+ */
3164
+ Status?: string;
3165
+ }
2989
3166
  /**
2990
3167
  * 源站组健康状态。
2991
3168
  */
@@ -3305,15 +3482,21 @@ export interface CurrentOriginACL {
3305
3482
  IsPlaned?: string;
3306
3483
  }
3307
3484
  /**
3308
- * Ipv6访问配置
3485
+ * CreateEdgeKVNamespace请求参数结构体
3309
3486
  */
3310
- export interface Ipv6 {
3487
+ export interface CreateEdgeKVNamespaceRequest {
3311
3488
  /**
3312
- * Ipv6 访问功能配置,取值有:
3313
- <li>on:开启Ipv6访问功能;</li>
3314
- <li>off:关闭Ipv6访问功能。</li>
3489
+ * 站点 ID。
3315
3490
  */
3316
- Switch: string;
3491
+ ZoneId: string;
3492
+ /**
3493
+ * 命名空间名称。输入内容有以下限制:支持输入 1-50 个字符,允许的字符为 a-z、A-Z、0-9、-,且 - 不能单独注册或连续使用,不能放在开头或结尾。在同站点下,名称需保证唯一。
3494
+ */
3495
+ Namespace: string;
3496
+ /**
3497
+ * 命名空间描述。用于说明命名空间的用途或业务含义。最大支持 256 个字符。
3498
+ */
3499
+ Remark?: string;
3317
3500
  }
3318
3501
  /**
3319
3502
  * Web安全配置
@@ -3404,17 +3587,50 @@ export interface DescribeOriginACLResponse {
3404
3587
  RequestId?: string;
3405
3588
  }
3406
3589
  /**
3407
- * 失败原因
3590
+ * 共享CNAME明细
3408
3591
  */
3409
- export interface FailReason {
3592
+ export interface SharedCNAMEInfo {
3410
3593
  /**
3411
- * 失败原因。
3594
+ * 共享CNAME类型:取值范围如下:
3595
+ <li>custom:由用户创建的自定义共享CNAME</li>
3596
+ <li>ip-ssl:IP SSL类型的共享CNAME</li>
3412
3597
  */
3413
- Reason: string;
3598
+ Type?: string;
3414
3599
  /**
3415
- * 处理失败的资源列表。
3600
+ * 共享CNAME名称。
3416
3601
  */
3417
- Targets: Array<string>;
3602
+ SharedCNAME?: string;
3603
+ /**
3604
+ * 描述。
3605
+ */
3606
+ Description?: string;
3607
+ /**
3608
+ * 当type为ip-ssl时,展示该共享CNAME关联的 IP SSL 配置信息。
3609
+ */
3610
+ IPSSLConfig?: IPSSLConfig;
3611
+ /**
3612
+ * 共享CNAME绑定的加速域名数量。
3613
+ */
3614
+ BindDomainCount?: number;
3615
+ /**
3616
+ * 加入该共享CNAME的加速域名列表。当加入的域名数量超过100个时,只返回前100个加速域名。
3617
+ */
3618
+ AccelerationDomains?: Array<ReferenceHolder>;
3619
+ }
3620
+ /**
3621
+ * 默认拦截动作配置。当安全规则命中并触发拦截处置动作时,若 SecurityAction 仅指定了 Name 为 Deny 且未指定 DenyActionParameters,则按功能模块维度匹配并使用此处定义的默认参数配置:
3622
+ <li>ManagedRules 托管规则默认拦截处置动作配置。</li>
3623
+ <li>OtherModules 除托管规则外的安全防护规则(自定义规则、速率限制 和 Bot 管理功能)默认拦截处置动作配置。</li>
3624
+ */
3625
+ export interface DefaultDenySecurityActionParameters {
3626
+ /**
3627
+ * 托管规则默认拦截处置动作配置。 DenyActionParameters 支持的配置参数:<li>ReturnCustomPage:是否使用自定义页面。</li><li>ResponseCode:自定义页面的状态码。</li><li>ErrorPageId:自定义页面的 PageId。</li>
3628
+ */
3629
+ ManagedRules?: DenyActionParameters;
3630
+ /**
3631
+ * 除托管规则外的安全防护规则(自定义规则、速率限制 和 Bot 管理功能)默认拦截处置动作配置。 DenyActionParameters 支持的配置参数:<li>ReturnCustomPage:是否使用自定义页面。</li><li>ResponseCode:自定义页面的状态码。</li><li>ErrorPageId:自定义页面的 PageId。</li>
3632
+ */
3633
+ OtherModules?: DenyActionParameters;
3418
3634
  }
3419
3635
  /**
3420
3636
  * ModifyL4ProxyRules请求参数结构体
@@ -3603,17 +3819,17 @@ export interface CreateOriginGroupRequest {
3603
3819
  HostHeader?: string;
3604
3820
  }
3605
3821
  /**
3606
- * Top类数据记录
3822
+ * ModifyDDoSProtection请求参数结构体
3607
3823
  */
3608
- export interface TopDataRecord {
3824
+ export interface ModifyDDoSProtectionRequest {
3609
3825
  /**
3610
- * 查询维度值。
3826
+ * 站点 ID。
3611
3827
  */
3612
- TypeKey: string;
3828
+ ZoneId: string;
3613
3829
  /**
3614
- * top数据排行。
3830
+ * 独立 DDoS 防护配置。
3615
3831
  */
3616
- DetailData: Array<TopDetailData>;
3832
+ DDoSProtection: DDoSProtection;
3617
3833
  }
3618
3834
  /**
3619
3835
  * DescribeDDoSProtection返回参数结构体
@@ -3654,6 +3870,19 @@ export interface CreateSharedCNAMEResponse {
3654
3870
  */
3655
3871
  RequestId?: string;
3656
3872
  }
3873
+ /**
3874
+ * 状态码缓存 TTL 配置参数内部结构。
3875
+ */
3876
+ export interface StatusCodeCacheParam {
3877
+ /**
3878
+ * 状态码,取值为 400、 401、403、 404、 405、 407、 414、 500、 501、 502、 503、 504、 509、 514 之一。
3879
+ */
3880
+ StatusCode?: number;
3881
+ /**
3882
+ * 缓存时间数值,单位为秒,取值:0~31536000。
3883
+ */
3884
+ CacheTime?: number;
3885
+ }
3657
3886
  /**
3658
3887
  * DeleteMultiPathGateway返回参数结构体
3659
3888
  */
@@ -3750,40 +3979,21 @@ export interface AccelerationDomainCertificate {
3750
3979
  UpstreamCertInfo?: UpstreamCertInfo;
3751
3980
  }
3752
3981
  /**
3753
- * 源站组记录
3982
+ * DescribeFunctionComponentBindings返回参数结构体
3754
3983
  */
3755
- export interface OriginRecord {
3756
- /**
3757
- * 源站记录值,不包含端口信息,可以为:IPv4,IPv6,域名格式。
3758
- */
3759
- Record: string;
3760
- /**
3761
- * 源站类型,取值有:
3762
- <li>IP_DOMAIN:IPV4、IPV6、域名类型源站;</li>
3763
- <li>COS:COS源。</li>
3764
- <li>AWS_S3:AWS S3对象存储源站。</li>
3765
- */
3766
- Type?: string;
3767
- /**
3768
- * 源站记录ID。
3769
- */
3770
- RecordId?: string;
3984
+ export interface DescribeFunctionComponentBindingsResponse {
3771
3985
  /**
3772
- * 【源站权重】:用于控制流量分配优先级的参数,取值范围:0-100(整数):<li>空值:不设置权重,系统按默认策略调度;</li><li>0 值:明确设置权重为0,流量将不会分配到该源站,注意事项:必须确保至少有一个源站的权重值大于0;</li><li>正常值:数值越大分配流量越多 ;</li>
3773
- 注意:此字段可能返回 null,表示取不到有效值。
3986
+ * 符合条件的函数绑定总数。
3774
3987
  */
3775
- Weight?: number;
3988
+ TotalCount?: number;
3776
3989
  /**
3777
- * 是否私有鉴权,当源站类型 RecordType=COS/AWS_S3 时生效,取值有:
3778
- <li>true:使用私有鉴权;</li>
3779
- <li>false:不使用私有鉴权。</li>不填写,默认值为:false。
3780
-
3990
+ * 函数组件绑定列表。
3781
3991
  */
3782
- Private?: boolean;
3992
+ FunctionComponentBindings?: Array<FunctionComponentBinding>;
3783
3993
  /**
3784
- * 私有鉴权参数,当源站类型Private=true时有效。
3994
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
3785
3995
  */
3786
- PrivateParameters?: Array<PrivateParameter>;
3996
+ RequestId?: string;
3787
3997
  }
3788
3998
  /**
3789
3999
  * DescribeSecurityTemplateBindings请求参数结构体
@@ -3847,6 +4057,45 @@ export interface AlgDetectResult {
3847
4057
  */
3848
4058
  Action?: string;
3849
4059
  }
4060
+ /**
4061
+ * EdgeKVList返回参数结构体
4062
+ */
4063
+ export interface EdgeKVListResponse {
4064
+ /**
4065
+ * 键名列表。
4066
+ */
4067
+ Keys?: Array<string>;
4068
+ /**
4069
+ * 游标位置。标识当前遍历的位置,用于获取下一批数据。将此值填入下次请求的 Cursor 参数中,可继续向后遍历。若为空字符串,表示已遍历完所有数据。
4070
+
4071
+ */
4072
+ Cursor?: string;
4073
+ /**
4074
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4075
+ */
4076
+ RequestId?: string;
4077
+ }
4078
+ /**
4079
+ * ModifySharedCNAME请求参数结构体
4080
+ */
4081
+ export interface ModifySharedCNAMERequest {
4082
+ /**
4083
+ * 共享 CNAME 所属站点 ID。
4084
+ */
4085
+ ZoneId: string;
4086
+ /**
4087
+ * 共享 CNAME。
4088
+ */
4089
+ SharedCNAME: string;
4090
+ /**
4091
+ * 请输入调整后的描述。
4092
+ */
4093
+ Description?: string;
4094
+ /**
4095
+ * 设置IP SSL 类型的共享CNAME 的 IP SSL 信息。
4096
+ */
4097
+ IPSSLSetting?: IPSSLSetting;
4098
+ }
3850
4099
  /**
3851
4100
  * https 服务端证书配置
3852
4101
  */
@@ -4089,6 +4338,15 @@ export interface LoadBalancer {
4089
4338
  */
4090
4339
  References?: Array<OriginGroupReference>;
4091
4340
  }
4341
+ /**
4342
+ * EdgeKVDelete返回参数结构体
4343
+ */
4344
+ export interface EdgeKVDeleteResponse {
4345
+ /**
4346
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4347
+ */
4348
+ RequestId?: string;
4349
+ }
4092
4350
  /**
4093
4351
  * CreateSecurityAPIService返回参数结构体
4094
4352
  */
@@ -4379,13 +4637,21 @@ export interface ModifyRuleRequest {
4379
4637
  Tags?: Array<string>;
4380
4638
  }
4381
4639
  /**
4382
- * 内容标识配置参数。
4640
+ * DescribeSharedCNAME返回参数结构体
4383
4641
  */
4384
- export interface SetContentIdentifierParameters {
4642
+ export interface DescribeSharedCNAMEResponse {
4385
4643
  /**
4386
- * 内容标识id
4644
+ * 符合过滤条件的共享CNAME总数。
4387
4645
  */
4388
- ContentIdentifier?: string;
4646
+ TotalCount?: number;
4647
+ /**
4648
+ * 共享CNAME列表明细。
4649
+ */
4650
+ SharedCNAMEInfo?: Array<SharedCNAMEInfo>;
4651
+ /**
4652
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4653
+ */
4654
+ RequestId?: string;
4389
4655
  }
4390
4656
  /**
4391
4657
  * RenewPlan请求参数结构体
@@ -4553,6 +4819,15 @@ export interface ModifySecurityPolicyRequest {
4553
4819
  */
4554
4820
  TemplateId?: string;
4555
4821
  }
4822
+ /**
4823
+ * ModifySharedCNAME返回参数结构体
4824
+ */
4825
+ export interface ModifySharedCNAMEResponse {
4826
+ /**
4827
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
4828
+ */
4829
+ RequestId?: string;
4830
+ }
4556
4831
  /**
4557
4832
  * DeleteL7AccRules请求参数结构体
4558
4833
  */
@@ -4998,7 +5273,7 @@ export interface ManagedRuleAutoUpdate {
4998
5273
  RulesetVersion?: string;
4999
5274
  }
5000
5275
  /**
5001
- * Web安全的自定义规则
5276
+ * Web 防护功能下的自定义规则。
5002
5277
  */
5003
5278
  export interface CustomRule {
5004
5279
  /**
@@ -5006,27 +5281,27 @@ export interface CustomRule {
5006
5281
  */
5007
5282
  Name: string;
5008
5283
  /**
5009
- * 自定义规则的具体内容,需符合表达式语法,详细规范参见产品文档。
5284
+ * 自定义规则的具体内容,需符合表达式语法,详细规范参见 [产品文档](https://cloud.tencent.com/document/product/1552/125343) 。
5010
5285
  */
5011
5286
  Condition: string;
5012
5287
  /**
5013
- * 自定义规则的执行动作。 SecurityActionName 取值支持:<li>Deny:拦截;</li><li>Monitor:观察;</li><li>ReturnCustomPage:使用指定页面拦截;</li><li>Redirect:重定向至 URL;</li><li>BlockIP:IP 封禁;</li><li>JSChallenge:JavaScript 挑战;</li><li>ManagedChallenge:托管挑战;</li><li>Allow:放行。</li>
5288
+ * 自定义规则的处置动作。SecurityAction.Name 取值范围如下:<ul><li>Deny:拦截;</li><li>Monitor:观察;</li><li>ReturnCustomPage:使用指定页面拦截;</li><li>Redirect:重定向至 URL;</li><li>BlockIP:IP 封禁;</li><li>JSChallenge:JavaScript 挑战;</li><li>ManagedChallenge:托管挑战;</li><li>Allow:放行。</li></ul>
5014
5289
  */
5015
5290
  Action: SecurityAction;
5016
5291
  /**
5017
- * 自定义规则是否开启。取值有:<li>on:开启</li><li>off:关闭</li>
5292
+ * 自定义规则是否开启。取值有:<ul><li>on:开启</li><li>off:关闭</li></ul>
5018
5293
  */
5019
5294
  Enabled: string;
5020
5295
  /**
5021
- * 自定义规则的 ID。<br>通过规则 ID 可支持不同的规则配置操作:<br> - 增加新规则:ID 为空或不指定 ID 参数;<br> - 修改已有规则:指定需要更新/修改的规则 ID;<br> - 删除已有规则:CustomRules 参数中,Rules 列表中未包含的已有规则将被删除。
5296
+ * 自定义规则的 ID。通过规则 ID 可支持不同的规则配置操作:<ul><li>增加新规则:ID 为空或不指定 ID 参数;</li><li>修改已有规则:指定需要更新/修改的规则 ID;</li><li>删除已有规则:CustomRules 参数中,Rules 列表中未包含的已有规则将被删除。</li></ul>
5022
5297
  */
5023
5298
  Id?: string;
5024
5299
  /**
5025
- * 自定义规则的类型。取值有:<li>BasicAccessRule:基础访问管控;</li><li>PreciseMatchRule:精准匹配规则,默认;</li><li>ManagedAccessRule:专家定制规则,仅出参。</li><br/>默认为PreciseMatchRule
5300
+ * 自定义规则的类型。取值有:<ul><li>BasicAccessRule:基础访问管控;</li><li>PreciseMatchRule:精准匹配规则;</li><li>ManagedAccessRule:专家定制规则,仅出参支持。</li></ul>说明:当未指定 RuleType 时,默认为 `PreciseMatchRule`。
5026
5301
  */
5027
5302
  RuleType?: string;
5028
5303
  /**
5029
- * 自定义规则的优先级,范围是 0 ~ 100,默认为 0,仅支持精准匹配规则(PreciseMatchRule)。
5304
+ * 自定义规则的优先级,范围是 0 ~ 100,默认为 0,仅支持精准匹配规则(`PreciseMatchRule`)。
5030
5305
  */
5031
5306
  Priority?: number;
5032
5307
  }
@@ -5893,19 +6168,13 @@ export interface DescribeZoneConfigImportResultResponse {
5893
6168
  RequestId?: string;
5894
6169
  }
5895
6170
  /**
5896
- * 标签配置
6171
+ * ModifyFunctionComponentBindings返回参数结构体
5897
6172
  */
5898
- export interface Tag {
5899
- /**
5900
- * 标签键。
5901
- 注意:此字段可能返回 null,表示取不到有效值。
5902
- */
5903
- TagKey: string;
6173
+ export interface ModifyFunctionComponentBindingsResponse {
5904
6174
  /**
5905
- * 标签值。
5906
- 注意:此字段可能返回 null,表示取不到有效值。
6175
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
5907
6176
  */
5908
- TagValue: string;
6177
+ RequestId?: string;
5909
6178
  }
5910
6179
  /**
5911
6180
  * BindSharedCNAME返回参数结构体
@@ -6033,6 +6302,19 @@ export interface VideoTemplateInfo {
6033
6302
  */
6034
6303
  FillType?: string;
6035
6304
  }
6305
+ /**
6306
+ * Top类数据记录
6307
+ */
6308
+ export interface TopDataRecord {
6309
+ /**
6310
+ * 查询维度值。
6311
+ */
6312
+ TypeKey: string;
6313
+ /**
6314
+ * top数据排行。
6315
+ */
6316
+ DetailData: Array<TopDetailData>;
6317
+ }
6036
6318
  /**
6037
6319
  * HandleFunctionRuntimeEnvironment返回参数结构体
6038
6320
  */
@@ -6979,7 +7261,7 @@ export interface CreatePlanForZoneRequest {
6979
7261
  */
6980
7262
  export interface DeviceProfile {
6981
7263
  /**
6982
- * 客户端设备类型。取值有:<li>iOS;</li><li>Android;</li><li>WebView。</li>
7264
+ * 客户端设备类型。取值有:<li>iOS;</li><li>Android;</li><li>WebView;</li><li>WeChatMiniProgram。</li>
6983
7265
  */
6984
7266
  ClientType: string;
6985
7267
  /**
@@ -7307,6 +7589,19 @@ export interface DescribeMultiPathGatewayRegionsResponse {
7307
7589
  */
7308
7590
  RequestId?: string;
7309
7591
  }
7592
+ /**
7593
+ * DeleteEdgeKVNamespace请求参数结构体
7594
+ */
7595
+ export interface DeleteEdgeKVNamespaceRequest {
7596
+ /**
7597
+ * 站点 ID。
7598
+ */
7599
+ ZoneId: string;
7600
+ /**
7601
+ * 要删除的命名空间名称。
7602
+ */
7603
+ Namespace: string;
7604
+ }
7310
7605
  /**
7311
7606
  * DescribeL4Proxy请求参数结构体
7312
7607
  */
@@ -7448,6 +7743,24 @@ export interface BotRatings {
7448
7743
  */
7449
7744
  HumanRequestsAction?: SecurityAction;
7450
7745
  }
7746
+ /**
7747
+ * 引用/被引用的实例信息。
7748
+ */
7749
+ export interface ReferenceHolder {
7750
+ /**
7751
+ * 站点ID。
7752
+ */
7753
+ ZoneId: string;
7754
+ /**
7755
+ * 实例类型,取值如下:
7756
+ <li>acceleration-domain:加速域名;</li>
7757
+ */
7758
+ Type: string;
7759
+ /**
7760
+ * 被引用/引用的实例信息。
7761
+ */
7762
+ Instance: string;
7763
+ }
7451
7764
  /**
7452
7765
  * 规则引擎常规类型的动作
7453
7766
  */
@@ -7516,6 +7829,39 @@ export interface TopDetailData {
7516
7829
  */
7517
7830
  Value: number;
7518
7831
  }
7832
+ /**
7833
+ * KV 命名空间信息,包含命名空间的基本属性、存储容量使用情况以及被引用关系。KV 命名空间是边缘函数存储键值对数据的容器,可在边缘函数中通过绑定方式进行读写操作。
7834
+ */
7835
+ export interface KVNamespace {
7836
+ /**
7837
+ * 命名空间名称。在同站点下具有唯一性。
7838
+ */
7839
+ Namespace?: string;
7840
+ /**
7841
+ * 命名空间描述。创建时填写的备注信息,用于说明命名空间的用途或业务含义。最大支持 256 个字符。
7842
+ */
7843
+ Remark?: string;
7844
+ /**
7845
+ * KV 存储空间可用容量,单位为字节(Byte)。表示该命名空间可存储数据的最大容量上限,当前默认为 1 GB。
7846
+ */
7847
+ Capacity?: number;
7848
+ /**
7849
+ * KV 存储空间已用容量,单位为字节(Byte)。表示该命名空间当前已使用的存储空间大小。
7850
+ */
7851
+ CapacityUsed?: number;
7852
+ /**
7853
+ * 命名空间被引用实例的列表。展示当前命名空间被哪些边缘函数实例引用,以及引用的站点信息。若未被引用,则返回空数组。
7854
+ */
7855
+ References?: Array<ComponentReference>;
7856
+ /**
7857
+ * 命名空间的创建时间,遵循 ISO 8601 标准,格式为 YYYY-MM-DDThh:mm:ssZ(UTC 时间)。
7858
+ */
7859
+ CreatedOn?: string;
7860
+ /**
7861
+ * 命名空间的最后修改时间,遵循 ISO 8601 标准,格式为 YYYY-MM-DDThh:mm:ssZ(UTC 时间)。
7862
+ */
7863
+ ModifiedOn?: string;
7864
+ }
7519
7865
  /**
7520
7866
  * DescribeZoneSetting返回参数结构体
7521
7867
  */
@@ -7553,38 +7899,13 @@ export interface DeleteJustInTimeTranscodeTemplatesResponse {
7553
7899
  RequestId?: string;
7554
7900
  }
7555
7901
  /**
7556
- * DescribePurgeTasks请求参数结构体
7902
+ * DeleteRules返回参数结构体
7557
7903
  */
7558
- export interface DescribePurgeTasksRequest {
7559
- /**
7560
- * 站点 ID。此参数将于2024年05月30日后由可选改为必填,详见公告:[【腾讯云 EdgeOne】云 API 变更通知](https://cloud.tencent.com/document/product/1552/104902)。
7561
- */
7562
- ZoneId?: string;
7563
- /**
7564
- * 查询起始时间,时间与 job-id 必填一个。
7565
- */
7566
- StartTime?: string;
7567
- /**
7568
- * 查询结束时间,时间与 job-id 必填一个。
7569
- */
7570
- EndTime?: string;
7571
- /**
7572
- * 分页查询偏移量,默认为 0。
7573
- */
7574
- Offset?: number;
7575
- /**
7576
- * 分页查询限制数目,默认值:20,最大值:1000。
7577
- */
7578
- Limit?: number;
7904
+ export interface DeleteRulesResponse {
7579
7905
  /**
7580
- * 过滤条件,Filters.Values的上限为20。详细的过滤条件如下:
7581
- <li>job-id:按照任务 ID 进行过滤。job-id 形如:1379afjk91u32h,暂不支持多值,不支持模糊查询;</li>
7582
- <li>target:按照目标资源信息进行过滤,target 形如:http://www.qq.com/1.txt 或者 tag1,暂不支持多值,支持模糊查询;</li>
7583
- <li>domains:按照域名进行过滤,形如:www.qq.com,不支持模糊查询;</li>
7584
- <li>statuses:按照任务状态进行过滤,不支持模糊查询。可选项:<br>   processing:处理中<br>   success:成功<br>   failed:失败<br>   timeout:超时<br>   canceled:已取消</li>
7585
- <li>type:按照清除缓存类型进行过滤,暂不支持多值,不支持模糊查询。可选项:<br>   purge_url:URL<br>   purge_prefix:前缀<br>   purge_all:全部缓存内容<br>   purge_host:Hostname<br>   purge_cache_tag:CacheTag</li>
7906
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7586
7907
  */
7587
- Filters?: Array<AdvancedFilter>;
7908
+ RequestId?: string;
7588
7909
  }
7589
7910
  /**
7590
7911
  * ModifyDnsRecords请求参数结构体
@@ -7651,6 +7972,23 @@ export interface DescribeL7AccSettingRequest {
7651
7972
  */
7652
7973
  ZoneId: string;
7653
7974
  }
7975
+ /**
7976
+ * DescribeEdgeKVNamespaces返回参数结构体
7977
+ */
7978
+ export interface DescribeEdgeKVNamespacesResponse {
7979
+ /**
7980
+ * 符合条件的命名空间总数。
7981
+ */
7982
+ TotalCount?: number;
7983
+ /**
7984
+ * KV 命名空间信息列表。若无符合条件的命名空间,则返回空数组。
7985
+ */
7986
+ KVNamespaces?: Array<KVNamespace>;
7987
+ /**
7988
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
7989
+ */
7990
+ RequestId?: string;
7991
+ }
7654
7992
  /**
7655
7993
  * UpgradePlan返回参数结构体
7656
7994
  */
@@ -7864,6 +8202,34 @@ export interface IPExpireInfo {
7864
8202
  */
7865
8203
  IPList?: Array<string>;
7866
8204
  }
8205
+ /**
8206
+ * DescribeFunctionComponentBindings请求参数结构体
8207
+ */
8208
+ export interface DescribeFunctionComponentBindingsRequest {
8209
+ /**
8210
+ * 站点 ID。
8211
+ */
8212
+ ZoneId: string;
8213
+ /**
8214
+ * 函数 ID。
8215
+ */
8216
+ FunctionId: string;
8217
+ /**
8218
+ * 分页查询偏移量。默认值:0。
8219
+ */
8220
+ Offset?: number;
8221
+ /**
8222
+ * 分页查询限制数目。默认值:20,最大值:1000。
8223
+ */
8224
+ Limit?: number;
8225
+ /**
8226
+ * 过滤条件,Filters.Values 的上限为 20。详细的过滤条件如下:
8227
+ <li>name:按照绑定的变量名进行过滤,支持模糊查询;</li>
8228
+ <li>type:按照绑定类型进行过滤,不支持模糊查询。</li>
8229
+
8230
+ */
8231
+ Filters?: Array<AdvancedFilter>;
8232
+ }
7867
8233
  /**
7868
8234
  * 访问 URL 重定向 配置参数。
7869
8235
  */
@@ -7895,58 +8261,6 @@ export interface AccessURLRedirectParameters {
7895
8261
  */
7896
8262
  QueryString?: AccessURLRedirectQueryString;
7897
8263
  }
7898
- /**
7899
- * DescribeDDoSAttackEvent请求参数结构体
7900
- */
7901
- export interface DescribeDDoSAttackEventRequest {
7902
- /**
7903
- * 开始时间,时间范围为 30 天。
7904
- */
7905
- StartTime: string;
7906
- /**
7907
- * 结束时间。查询时间范围(`EndTime` - `StartTime`)需小于等于 31 天。
7908
- */
7909
- EndTime: string;
7910
- /**
7911
- * ddos策略组集合,不填默认选择全部策略。
7912
- */
7913
- PolicyIds?: Array<number | bigint>;
7914
- /**
7915
- * 站点 ID 集合,此参数将于2024年05月30日后由可选改为必填,详见公告:[【腾讯云 EdgeOne】云 API 变更通知](https://cloud.tencent.com/document/product/1552/104902)。最多传入 100 个站点 ID。若需查询腾讯云主账号下所有站点数据,请用 `*` 代替,查询账号级别数据需具备本接口全部站点资源权限。
7916
- */
7917
- ZoneIds?: Array<string>;
7918
- /**
7919
- * 分页查询的限制数目,默认值为20,最大查询条目为1000。
7920
- */
7921
- Limit?: number;
7922
- /**
7923
- * 分页的偏移量,默认值为0。
7924
- */
7925
- Offset?: number;
7926
- /**
7927
- * 展示攻击详情的参数,若填false,默认只返回攻击次数,不返回攻击详情;若填true,返回攻击详情。
7928
- */
7929
- ShowDetail?: boolean;
7930
- /**
7931
- * 数据归属地区,取值有:
7932
- <li>overseas:全球(除中国大陆地区)数据;</li>
7933
- <li>mainland:中国大陆地区数据;</li>
7934
- <li>global:全球数据;</li>不填默认取值为global。
7935
- */
7936
- Area?: string;
7937
- /**
7938
- * 排序字段,取值有:
7939
- <li>MaxBandWidth:带宽峰值;</li>
7940
- <li>AttackStartTime:攻击开始时间。</li>不填默认值为:AttackStartTime。
7941
- */
7942
- OrderBy?: string;
7943
- /**
7944
- * 排序方式,取值有:
7945
- <li>asc:升序方式;</li>
7946
- <li>desc:降序方式。</li>不填默认值为:desc。
7947
- */
7948
- OrderType?: string;
7949
- }
7950
8264
  /**
7951
8265
  * 节点缓存 TTL 配置参数。
7952
8266
  */
@@ -7967,6 +8281,30 @@ export interface CacheConfigParameters {
7967
8281
  */
7968
8282
  CustomTime?: CacheConfigCustomTime;
7969
8283
  }
8284
+ /**
8285
+ * 边缘函数组件绑定配置,用于建立边缘函数与组件(如 KV 命名空间)的关联关系。通过绑定配置,边缘函数代码可在运行时通过指定的变量名访问绑定的资源。
8286
+ */
8287
+ export interface FunctionComponentBinding {
8288
+ /**
8289
+ * 绑定的组件类型。取值有:
8290
+ <li>kv_namespace:KV 命名空间。</li>
8291
+
8292
+ */
8293
+ Type: string;
8294
+ /**
8295
+ * 用于绑定的变量名。限制 1-50 个字符,允许的字符为字母、数字和下划线,其中数字不能在开头。在边缘函数代码中通过该变量名访问绑定的组件。根据 Type 的取值不同,使用方式如下:
8296
+ <li>当 Type 为 kv_namespace 时:在代码中可通过该变量名访问 KV 命名空间,例如设置为 "MY_KV" 时,可通过 MY_KV.get("key") 进行读写操作。</li>
8297
+
8298
+ */
8299
+ VariableName: string;
8300
+ /**
8301
+ * KV 命名空间配置参数。用于指定绑定的 KV 命名空间详情。当 Type 为 kv_namespace 时,此字段必填。
8302
+
8303
+
8304
+ 注意:此字段可能返回 null,表示取不到有效值。
8305
+ */
8306
+ KVNamespaceParameters?: KVNamespaceParameters;
8307
+ }
7970
8308
  /**
7971
8309
  * CreateL4Proxy返回参数结构体
7972
8310
  */
@@ -8582,17 +8920,17 @@ export interface UpstreamURLRewriteParameters {
8582
8920
  Regex?: string;
8583
8921
  }
8584
8922
  /**
8585
- * ModifyZoneWorkMode请求参数结构体
8923
+ * 失败原因
8586
8924
  */
8587
- export interface ModifyZoneWorkModeRequest {
8925
+ export interface FailReason {
8588
8926
  /**
8589
- * 站点 ID。
8927
+ * 失败原因。
8590
8928
  */
8591
- ZoneId: string;
8929
+ Reason: string;
8592
8930
  /**
8593
- * 版本管理配置组工作模式。站点各配置模块可按照配置组维度开启「版本管理模式」或「即时生效模式」,详情请参考 [版本管理](https://cloud.tencent.com/document/product/1552/113690)。
8931
+ * 处理失败的资源列表。
8594
8932
  */
8595
- WorkModeInfos?: Array<ConfigGroupWorkModeInfo>;
8933
+ Targets: Array<string>;
8596
8934
  }
8597
8935
  /**
8598
8936
  * DescribeL4Proxy返回参数结构体
@@ -8829,6 +9167,15 @@ export interface BillingData {
8829
9167
  */
8830
9168
  RegionId?: string;
8831
9169
  }
9170
+ /**
9171
+ * ModifySecurityPolicy返回参数结构体
9172
+ */
9173
+ export interface ModifySecurityPolicyResponse {
9174
+ /**
9175
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
9176
+ */
9177
+ RequestId?: string;
9178
+ }
8832
9179
  /**
8833
9180
  * DescribePlans请求参数结构体
8834
9181
  */
@@ -9848,9 +10195,18 @@ export interface DescribeSecurityTemplateBindingsResponse {
9848
10195
  */
9849
10196
  SecurityTemplate?: Array<SecurityTemplateBinding>;
9850
10197
  /**
9851
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10198
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
10199
+ */
10200
+ RequestId?: string;
10201
+ }
10202
+ /**
10203
+ * 内容标识配置参数。
10204
+ */
10205
+ export interface SetContentIdentifierParameters {
10206
+ /**
10207
+ * 内容标识id
9852
10208
  */
9853
- RequestId?: string;
10209
+ ContentIdentifier?: string;
9854
10210
  }
9855
10211
  /**
9856
10212
  * ModifyAliasDomainStatus返回参数结构体
@@ -10035,6 +10391,10 @@ export interface SecurityPolicy {
10035
10391
  * 基础 Bot 管理配置。
10036
10392
  */
10037
10393
  BotManagementLite?: BotManagementLite;
10394
+ /**
10395
+ * 默认拦截动作配置。
10396
+ */
10397
+ DefaultDenySecurityActionParameters?: DefaultDenySecurityActionParameters;
10038
10398
  }
10039
10399
  /**
10040
10400
  * 站点归属信息
@@ -10641,6 +11001,42 @@ export interface CreateApplicationProxyRuleResponse {
10641
11001
  */
10642
11002
  RequestId?: string;
10643
11003
  }
11004
+ /**
11005
+ * 源站组记录
11006
+ */
11007
+ export interface OriginRecord {
11008
+ /**
11009
+ * 源站记录值,不包含端口信息,可以为:IPv4,IPv6,域名格式。
11010
+ */
11011
+ Record: string;
11012
+ /**
11013
+ * 源站类型,取值有:
11014
+ <li>IP_DOMAIN:IPV4、IPV6、域名类型源站;</li>
11015
+ <li>COS:COS源。</li>
11016
+ <li>AWS_S3:AWS S3对象存储源站。</li>
11017
+ */
11018
+ Type?: string;
11019
+ /**
11020
+ * 源站记录ID。
11021
+ */
11022
+ RecordId?: string;
11023
+ /**
11024
+ * 【源站权重】:用于控制流量分配优先级的参数,取值范围:0-100(整数):<li>空值:不设置权重,系统按默认策略调度;</li><li>0 值:明确设置权重为0,流量将不会分配到该源站,注意事项:必须确保至少有一个源站的权重值大于0;</li><li>正常值:数值越大分配流量越多 ;</li>
11025
+ 注意:此字段可能返回 null,表示取不到有效值。
11026
+ */
11027
+ Weight?: number;
11028
+ /**
11029
+ * 是否私有鉴权,当源站类型 RecordType=COS/AWS_S3 时生效,取值有:
11030
+ <li>true:使用私有鉴权;</li>
11031
+ <li>false:不使用私有鉴权。</li>不填写,默认值为:false。
11032
+
11033
+ */
11034
+ Private?: boolean;
11035
+ /**
11036
+ * 私有鉴权参数,当源站类型Private=true时有效。
11037
+ */
11038
+ PrivateParameters?: Array<PrivateParameter>;
11039
+ }
10644
11040
  /**
10645
11041
  * 速率限制的具体配置。
10646
11042
  */
@@ -11541,6 +11937,23 @@ export interface FollowOrigin {
11541
11937
  */
11542
11938
  DefaultCacheTime?: number;
11543
11939
  }
11940
+ /**
11941
+ * EdgeKVDelete请求参数结构体
11942
+ */
11943
+ export interface EdgeKVDeleteRequest {
11944
+ /**
11945
+ * 站点 ID。
11946
+ */
11947
+ ZoneId: string;
11948
+ /**
11949
+ * 命名空间名称。
11950
+ */
11951
+ Namespace: string;
11952
+ /**
11953
+ * 键名列表。数组长度上限为 20。每个键名不能为空,长度为 1-512 个字符,允许的字符为字母、数字、中划线和下划线。删除单个键时传入包含一个元素的数组。
11954
+ */
11955
+ Keys: Array<string>;
11956
+ }
11544
11957
  /**
11545
11958
  * DescribeMultiPathGateway返回参数结构体
11546
11959
  */
@@ -12017,13 +12430,56 @@ export interface DescribeHostsSettingRequest {
12017
12430
  Filters?: Array<Filter>;
12018
12431
  }
12019
12432
  /**
12020
- * DeleteRules返回参数结构体
12433
+ * DescribeDDoSAttackEvent请求参数结构体
12021
12434
  */
12022
- export interface DeleteRulesResponse {
12435
+ export interface DescribeDDoSAttackEventRequest {
12023
12436
  /**
12024
- * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12437
+ * 开始时间,时间范围为 30 天。
12025
12438
  */
12026
- RequestId?: string;
12439
+ StartTime: string;
12440
+ /**
12441
+ * 结束时间。查询时间范围(`EndTime` - `StartTime`)需小于等于 31 天。
12442
+ */
12443
+ EndTime: string;
12444
+ /**
12445
+ * ddos策略组集合,不填默认选择全部策略。
12446
+ */
12447
+ PolicyIds?: Array<number | bigint>;
12448
+ /**
12449
+ * 站点 ID 集合,此参数将于2024年05月30日后由可选改为必填,详见公告:[【腾讯云 EdgeOne】云 API 变更通知](https://cloud.tencent.com/document/product/1552/104902)。最多传入 100 个站点 ID。若需查询腾讯云主账号下所有站点数据,请用 `*` 代替,查询账号级别数据需具备本接口全部站点资源权限。
12450
+ */
12451
+ ZoneIds?: Array<string>;
12452
+ /**
12453
+ * 分页查询的限制数目,默认值为20,最大查询条目为1000。
12454
+ */
12455
+ Limit?: number;
12456
+ /**
12457
+ * 分页的偏移量,默认值为0。
12458
+ */
12459
+ Offset?: number;
12460
+ /**
12461
+ * 展示攻击详情的参数,若填false,默认只返回攻击次数,不返回攻击详情;若填true,返回攻击详情。
12462
+ */
12463
+ ShowDetail?: boolean;
12464
+ /**
12465
+ * 数据归属地区,取值有:
12466
+ <li>overseas:全球(除中国大陆地区)数据;</li>
12467
+ <li>mainland:中国大陆地区数据;</li>
12468
+ <li>global:全球数据;</li>不填默认取值为global。
12469
+ */
12470
+ Area?: string;
12471
+ /**
12472
+ * 排序字段,取值有:
12473
+ <li>MaxBandWidth:带宽峰值;</li>
12474
+ <li>AttackStartTime:攻击开始时间。</li>不填默认值为:AttackStartTime。
12475
+ */
12476
+ OrderBy?: string;
12477
+ /**
12478
+ * 排序方式,取值有:
12479
+ <li>asc:升序方式;</li>
12480
+ <li>desc:降序方式。</li>不填默认值为:desc。
12481
+ */
12482
+ OrderType?: string;
12027
12483
  }
12028
12484
  /**
12029
12485
  * 源站组信息
@@ -12309,6 +12765,32 @@ export interface BotConfig {
12309
12765
  */
12310
12766
  Customizes?: Array<BotUserRule>;
12311
12767
  }
12768
+ /**
12769
+ * ModifyFunctionComponentBindings请求参数结构体
12770
+ */
12771
+ export interface ModifyFunctionComponentBindingsRequest {
12772
+ /**
12773
+ * 站点 ID。
12774
+ */
12775
+ ZoneId: string;
12776
+ /**
12777
+ * 函数 ID。
12778
+ */
12779
+ FunctionId: string;
12780
+ /**
12781
+ * 操作类型,取值有:
12782
+ <li>bind:绑定组件;</li>
12783
+ <li>bind-override:绑定组件。若绑定已存在则为重绑定行为,否则为绑定行为;</li>
12784
+ <li>unbind:解绑组件;</li>
12785
+ <li>rebind:重置绑定关系。清空所有现有绑定,并设置为传入的绑定列表。若传入空列表,则清空所有绑定。</li>
12786
+
12787
+ */
12788
+ Operation: string;
12789
+ /**
12790
+ * 操作的函数组件绑定列表。当 Operation 为 rebind 且传入空列表时,表示清空所有绑定。
12791
+ */
12792
+ FunctionComponentBindings: Array<FunctionComponentBinding>;
12793
+ }
12312
12794
  /**
12313
12795
  * EnableOriginACL请求参数结构体
12314
12796
  */
@@ -12349,6 +12831,15 @@ export interface EnableOriginACLRequest {
12349
12831
  */
12350
12832
  OriginACLFamily?: string;
12351
12833
  }
12834
+ /**
12835
+ * CreateEdgeKVNamespace返回参数结构体
12836
+ */
12837
+ export interface CreateEdgeKVNamespaceResponse {
12838
+ /**
12839
+ * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
12840
+ */
12841
+ RequestId?: string;
12842
+ }
12352
12843
  /**
12353
12844
  * ModifyZone返回参数结构体
12354
12845
  */
@@ -13503,6 +13994,23 @@ export interface NetworkErrorLogging {
13503
13994
  */
13504
13995
  Switch: string;
13505
13996
  }
13997
+ /**
13998
+ * KV 键值对数据,包含键名、键值和过期时间信息。
13999
+ */
14000
+ export interface KeyValuePair {
14001
+ /**
14002
+ * 键名。每个键名不能为空,长度为 1-512 个字符,允许的字符为字母、数字、中划线和下划线。
14003
+ */
14004
+ Key?: string;
14005
+ /**
14006
+ * 键值。入参时不能为空,最大支持 1 MB。出参时若键不存在,则返回空字符串。
14007
+ */
14008
+ Value?: string;
14009
+ /**
14010
+ * 过期时间,遵循 ISO 8601 标准,格式为 YYYY-MM-DDThh:mm:ssZ(UTC 时间)。出参时若为空字符串,表示该键值对永不过期。
14011
+ */
14012
+ Expiration?: string;
14013
+ }
13506
14014
  /**
13507
14015
  * DescribeDDoSAttackTopData请求参数结构体
13508
14016
  */
@@ -13862,6 +14370,17 @@ export interface DescribeMultiPathGatewayOriginACLRequest {
13862
14370
  */
13863
14371
  GatewayId: string;
13864
14372
  }
14373
+ /**
14374
+ * Ipv6访问配置
14375
+ */
14376
+ export interface Ipv6 {
14377
+ /**
14378
+ * Ipv6 访问功能配置,取值有:
14379
+ <li>on:开启Ipv6访问功能;</li>
14380
+ <li>off:关闭Ipv6访问功能。</li>
14381
+ */
14382
+ Switch: string;
14383
+ }
13865
14384
  /**
13866
14385
  * ApplyFreeCertificate请求参数结构体
13867
14386
  */
@@ -14132,6 +14651,19 @@ export interface DDoSBlockData {
14132
14651
  */
14133
14652
  BlockArea: string;
14134
14653
  }
14654
+ /**
14655
+ * IP SSL 配置信息
14656
+ */
14657
+ export interface IPSSLSetting {
14658
+ /**
14659
+ * 操作类型, 取值如下: <li>bind:绑定</li> <li>unbind:解绑</li>
14660
+ */
14661
+ Operation: string;
14662
+ /**
14663
+ * 要绑定的IP SSL的所属域名。
14664
+ */
14665
+ AssociatedDomain: string;
14666
+ }
14135
14667
  /**
14136
14668
  * DescribeMultiPathGateways请求参数结构体
14137
14669
  */
@@ -14297,6 +14829,21 @@ export interface HSTSParameters {
14297
14829
  */
14298
14830
  Preload?: string;
14299
14831
  }
14832
+ /**
14833
+ * 标签配置
14834
+ */
14835
+ export interface Tag {
14836
+ /**
14837
+ * 标签键。
14838
+ 注意:此字段可能返回 null,表示取不到有效值。
14839
+ */
14840
+ TagKey: string;
14841
+ /**
14842
+ * 标签值。
14843
+ 注意:此字段可能返回 null,表示取不到有效值。
14844
+ */
14845
+ TagValue: string;
14846
+ }
14300
14847
  /**
14301
14848
  * DeleteSecurityAPIResource返回参数结构体
14302
14849
  */
@@ -14355,17 +14902,46 @@ export interface IPWhitelist {
14355
14902
  IPv6: Array<string>;
14356
14903
  }
14357
14904
  /**
14358
- * ModifyDDoSProtection请求参数结构体
14905
+ * DescribeSharedCNAME请求参数结构体
14359
14906
  */
14360
- export interface ModifyDDoSProtectionRequest {
14907
+ export interface DescribeSharedCNAMERequest {
14361
14908
  /**
14362
- * 站点 ID。
14909
+ * 共享CNAME所属站点ID。
14363
14910
  */
14364
14911
  ZoneId: string;
14365
14912
  /**
14366
- * 独立 DDoS 防护配置。
14913
+ * 过滤条件,Filters.Values的上限为20。详细的过滤条件如下:
14914
+ <li>shared-cname<br>   按照【<strong>共享CNAME</strong>】进行过滤。<br>   类型:String<br>   必选:否</li>
14915
+ <li>type<br>   按照【<strong>共享canme类型</strong>】进行过滤。<br>   类型:String<br>   必选:否</li>
14916
+ <li>description<br>   按照【<strong>描述</strong>】进行过滤。<br>   类型:String<br>   必选:否</li>
14367
14917
  */
14368
- DDoSProtection: DDoSProtection;
14918
+ Filters?: Array<AdvancedFilter>;
14919
+ /**
14920
+ * 列表排序方式,取值有:
14921
+ <li>asc:升序排列;</li>
14922
+ <li>desc:降序排列。</li>默认值为asc。
14923
+ */
14924
+ Direction?: string;
14925
+ /**
14926
+ * 匹配方式,取值有:
14927
+ <li>all:返回匹配所有查询条件的共享CNAME;</li>
14928
+ <li>any:返回匹配任意一个查询条件的共享CNAME。</li>默认值为all。
14929
+ */
14930
+ Match?: string;
14931
+ /**
14932
+ * 排序依据,取值有:
14933
+ <li>create-time:创建时间;</li>
14934
+ <li>shared-cname:共享CNAME;</li>默认根据shared-cname属性排序。
14935
+ */
14936
+ Order?: string;
14937
+ /**
14938
+ * 分页查询偏移量,默认为 0。
14939
+ */
14940
+ Offset?: number;
14941
+ /**
14942
+ * 分页查询限制数目,默认值:20,上限:200。
14943
+ */
14944
+ Limit?: number;
14369
14945
  }
14370
14946
  /**
14371
14947
  * ModifyL7AccSetting请求参数结构体
@@ -14500,6 +15076,45 @@ export interface HTTPResponseParameters {
14500
15076
  */
14501
15077
  ResponsePage?: string;
14502
15078
  }
15079
+ /**
15080
+ * DescribeEdgeKVNamespaces请求参数结构体
15081
+ */
15082
+ export interface DescribeEdgeKVNamespacesRequest {
15083
+ /**
15084
+ * 站点 ID。
15085
+ */
15086
+ ZoneId: string;
15087
+ /**
15088
+ * 分页查询偏移量。默认值:0。
15089
+ */
15090
+ Offset?: number;
15091
+ /**
15092
+ * 分页查询限制数目。默认值:20,最大值:1000。
15093
+ */
15094
+ Limit?: number;
15095
+ /**
15096
+ * 排序依据,取值有:
15097
+ <li>created-on:创建时间;</li>
15098
+ <li>updated-on:更新时间。</li>
15099
+ 默认值为 created-on。
15100
+ */
15101
+ SortBy?: string;
15102
+ /**
15103
+ * 列表排序方式,取值有:
15104
+ <li>asc:升序排列;</li>
15105
+ <li>desc:降序排列。</li>
15106
+ 默认值为 desc。
15107
+
15108
+ */
15109
+ SortOrder?: string;
15110
+ /**
15111
+ * 过滤条件,Filters.Values 的上限为 20。该参数不填写时,返回站点 ID 下全部 KV 命名空间。详细的过滤条件如下:
15112
+ <li>namespace:按照 KV 命名空间名称进行过滤,支持模糊查询;</li>
15113
+ <li>remark:按照命名空间描述进行过滤,支持模糊查询。</li>
15114
+
15115
+ */
15116
+ Filters?: Array<AdvancedFilter>;
15117
+ }
14503
15118
  /**
14504
15119
  * 回源请求参数配置参数。
14505
15120
  */
@@ -14889,9 +15504,38 @@ export interface FunctionRuleCondition {
14889
15504
  RuleConditions: Array<RuleCondition>;
14890
15505
  }
14891
15506
  /**
14892
- * ModifySecurityPolicy返回参数结构体
15507
+ * EdgeKVPut请求参数结构体
14893
15508
  */
14894
- export interface ModifySecurityPolicyResponse {
15509
+ export interface EdgeKVPutRequest {
15510
+ /**
15511
+ * 站点 ID。
15512
+ */
15513
+ ZoneId: string;
15514
+ /**
15515
+ * 命名空间名称。
15516
+ */
15517
+ Namespace: string;
15518
+ /**
15519
+ * 键名,长度为 1-512 个字符,允许的字符为字母、数字、中划线和下划线。
15520
+ */
15521
+ Key: string;
15522
+ /**
15523
+ * 键值。不能为空,最大支持 1 MB。支持存储字符串数据。
15524
+ */
15525
+ Value: string;
15526
+ /**
15527
+ * 过期时间,绝对时间。表示从 1970 年 1 月 1 日(UTC/GMT 的午夜)开始所经过的秒数,不能小于当前时间。若 Expiration 和 ExpirationTTL 都填写,以 ExpirationTTL 为准。若 Expiration 和 ExpirationTTL 都不填写,则该键值对永不过期。
15528
+ */
15529
+ Expiration?: number;
15530
+ /**
15531
+ * 过期时间,相对时间,单位为秒。表示数据将在指定秒数后过期,必须大于 0。若 Expiration 和 ExpirationTTL 都填写,以 ExpirationTTL 为准。若 Expiration 和 ExpirationTTL 都不填写,则该键值对永不过期。
15532
+ */
15533
+ ExpirationTTL?: number;
15534
+ }
15535
+ /**
15536
+ * EdgeKVPut返回参数结构体
15537
+ */
15538
+ export interface EdgeKVPutResponse {
14895
15539
  /**
14896
15540
  * 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
14897
15541
  */
@@ -15309,6 +15953,19 @@ export interface DescribeWebSecurityTemplatesResponse {
15309
15953
  */
15310
15954
  RequestId?: string;
15311
15955
  }
15956
+ /**
15957
+ * 边缘函数绑定 KV 命名空间时所需的详细配置参数,用于指定绑定的命名空间来源。通过此配置,边缘函数可操作指定站点下的 KV 命名空间。
15958
+ */
15959
+ export interface KVNamespaceParameters {
15960
+ /**
15961
+ * KV 命名空间所属的站点 ID。指定要绑定的 KV 命名空间所在的站点,支持跨站点绑定。
15962
+ */
15963
+ ZoneId: string;
15964
+ /**
15965
+ * KV 命名空间名称。指定要绑定的具体命名空间,可通过 DescribeKVNamespace 接口获取站点下的命名空间列表。
15966
+ */
15967
+ Namespace: string;
15968
+ }
15312
15969
  /**
15313
15970
  * DescribePrefetchOriginLimit返回参数结构体
15314
15971
  */