tencentcloud-sdk-nodejs-tse 4.0.792 → 4.0.793

Sign up to get free protection for your applications and to get access to all the features.
@@ -246,25 +246,34 @@ export interface CloudNativeAPIGatewayStrategyCronScalerConfig {
246
246
  StrategyId?: string;
247
247
  }
248
248
  /**
249
- * DescribeCloudNativeAPIGatewayNodes请求参数结构体
249
+ * 策略绑定的网关分组信息
250
250
  */
251
- export interface DescribeCloudNativeAPIGatewayNodesRequest {
251
+ export interface CloudNativeAPIGatewayStrategyBindingGroupInfo {
252
252
  /**
253
- * 云原生API网关实例ID
253
+ * 网关分组ID
254
+ 注意:此字段可能返回 null,表示取不到有效值。
254
255
  */
255
- GatewayId: string;
256
+ GroupId: string;
256
257
  /**
257
- * 实例分组id
258
+ * 节点配置
259
+ 注意:此字段可能返回 null,表示取不到有效值。
258
260
  */
259
- GroupId?: string;
261
+ NodeConfig: CloudNativeAPIGatewayNodeConfig;
260
262
  /**
261
- * 翻页获取多少个
263
+ * 绑定时间
264
+ 注意:此字段可能返回 null,表示取不到有效值。
262
265
  */
263
- Limit?: number;
266
+ BindTime: string;
264
267
  /**
265
- * 翻页从第几个开始获取
268
+ * 网关分组名称
269
+ 注意:此字段可能返回 null,表示取不到有效值。
266
270
  */
267
- Offset?: number;
271
+ GroupName: string;
272
+ /**
273
+ * 绑定状态
274
+ 注意:此字段可能返回 null,表示取不到有效值。
275
+ */
276
+ Status: string;
268
277
  }
269
278
  /**
270
279
  * ModifyCloudNativeAPIGatewayRoute请求参数结构体
@@ -466,17 +475,35 @@ export interface CloudNativeAPIGatewayNodeConfig {
466
475
  Number: number;
467
476
  }
468
477
  /**
469
- * DescribeUpstreamHealthCheckConfig请求参数结构体
478
+ * CreateCloudNativeAPIGatewayCertificate请求参数结构体
470
479
  */
471
- export interface DescribeUpstreamHealthCheckConfigRequest {
480
+ export interface CreateCloudNativeAPIGatewayCertificateRequest {
472
481
  /**
473
482
  * 网关ID
474
483
  */
475
484
  GatewayId: string;
476
485
  /**
477
- * 网关服务名称
486
+ * 绑定的域名
478
487
  */
479
- Name: string;
488
+ BindDomains: Array<string>;
489
+ /**
490
+ * ssl平台证书 Id
491
+ */
492
+ CertId: string;
493
+ /**
494
+ * 证书名称
495
+ */
496
+ Name?: string;
497
+ /**
498
+ * 证书私钥
499
+ * @deprecated
500
+ */
501
+ Key?: string;
502
+ /**
503
+ * 证书pem格式
504
+ * @deprecated
505
+ */
506
+ Crt?: string;
480
507
  }
481
508
  /**
482
509
  * CreateNativeGatewayServerGroup请求参数结构体
@@ -533,6 +560,19 @@ export interface DescribeCloudNativeAPIGatewayCertificatesRequest {
533
560
  */
534
561
  Filters?: Array<ListFilter>;
535
562
  }
563
+ /**
564
+ * 云原生网关限流插件Qps阈值
565
+ */
566
+ export interface QpsThreshold {
567
+ /**
568
+ * qps阈值控制维度,包含:second、minute、hour、day、month、year
569
+ */
570
+ Unit: string;
571
+ /**
572
+ * 阈值
573
+ */
574
+ Max: number;
575
+ }
536
576
  /**
537
577
  * ModifyCloudNativeAPIGatewayRouteRateLimit请求参数结构体
538
578
  */
@@ -565,17 +605,17 @@ export interface DeleteCloudNativeAPIGatewayResult {
565
605
  Status: string;
566
606
  }
567
607
  /**
568
- * 云原生网关限流插件Qps阈值
608
+ * 获取云原生API网关实例策略响应结果。
569
609
  */
570
- export interface QpsThreshold {
610
+ export interface ListCloudNativeAPIGatewayStrategyResult {
571
611
  /**
572
- * qps阈值控制维度,包含:second、minute、hour、day、month、year
612
+ * 总数。
573
613
  */
574
- Unit: string;
614
+ TotalCount: number;
575
615
  /**
576
- * 阈值
616
+ * 云原生API网关实例策略列表。
577
617
  */
578
- Max: number;
618
+ StrategyList: Array<CloudNativeAPIGatewayStrategy>;
579
619
  }
580
620
  /**
581
621
  * ModifyCloudNativeAPIGateway返回参数结构体
@@ -629,6 +669,16 @@ export interface DescribeCloudNativeAPIGatewayNodesResponse {
629
669
  */
630
670
  RequestId?: string;
631
671
  }
672
+ /**
673
+ * nacos服务端接口列表,用于云监控
674
+ */
675
+ export interface NacosServerInterface {
676
+ /**
677
+ * 接口名
678
+ 注意:此字段可能返回 null,表示取不到有效值。
679
+ */
680
+ Interface: string;
681
+ }
632
682
  /**
633
683
  * CreateCloudNativeAPIGateway返回参数结构体
634
684
  */
@@ -657,13 +707,21 @@ export interface DescribeUpstreamHealthCheckConfigResponse {
657
707
  RequestId?: string;
658
708
  }
659
709
  /**
660
- * OpenWafProtection返回参数结构体
710
+ * 网络访问策略
661
711
  */
662
- export interface OpenWafProtectionResponse {
712
+ export interface NetworkAccessControl {
663
713
  /**
664
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
714
+ * 访问模式:Whitelist|Blacklist
665
715
  */
666
- RequestId?: string;
716
+ Mode: string;
717
+ /**
718
+ * 白名单列表
719
+ */
720
+ CidrWhiteList?: Array<string>;
721
+ /**
722
+ * 黑名单列表
723
+ */
724
+ CidrBlackList?: Array<string>;
667
725
  }
668
726
  /**
669
727
  * Kong网关主动健康检查配置
@@ -685,6 +743,26 @@ export interface KongActiveHealthCheck {
685
743
  */
686
744
  HttpPath?: string;
687
745
  }
746
+ /**
747
+ * 查询客户端公网信息
748
+ */
749
+ export interface DescribePublicNetworkResult {
750
+ /**
751
+ * 网关实例ID
752
+ 注意:此字段可能返回 null,表示取不到有效值。
753
+ */
754
+ GatewayId?: string;
755
+ /**
756
+ * 网关分组ID
757
+ 注意:此字段可能返回 null,表示取不到有效值。
758
+ */
759
+ GroupId?: string;
760
+ /**
761
+ * 客户端公网信息
762
+ 注意:此字段可能返回 null,表示取不到有效值。
763
+ */
764
+ PublicNetwork?: CloudNativeAPIGatewayConfig;
765
+ }
688
766
  /**
689
767
  * DeleteCloudNativeAPIGatewayCertificate返回参数结构体
690
768
  */
@@ -797,14 +875,17 @@ export interface UpstreamHealthCheckConfig {
797
875
  UnhealthyHttpStatuses?: Array<number | bigint>;
798
876
  }
799
877
  /**
800
- * nacos服务端接口列表,用于云监控
878
+ * DescribeAutoScalerResourceStrategyBindingGroups返回参数结构体
801
879
  */
802
- export interface NacosServerInterface {
880
+ export interface DescribeAutoScalerResourceStrategyBindingGroupsResponse {
803
881
  /**
804
- * 接口名
805
- 注意:此字段可能返回 null,表示取不到有效值。
882
+ * 云原生API网关实例策略绑定网关分组列表响应结果
806
883
  */
807
- Interface: string;
884
+ Result?: ListCloudNativeAPIGatewayStrategyBindingGroupInfoResult;
885
+ /**
886
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
887
+ */
888
+ RequestId?: string;
808
889
  }
809
890
  /**
810
891
  * DescribeNacosReplicas请求参数结构体
@@ -1240,6 +1321,19 @@ export interface DescribeCloudNativeAPIGatewayServicesRequest {
1240
1321
  */
1241
1322
  Filters?: Array<ListFilter>;
1242
1323
  }
1324
+ /**
1325
+ * UnbindAutoScalerResourceStrategyFromGroups返回参数结构体
1326
+ */
1327
+ export interface UnbindAutoScalerResourceStrategyFromGroupsResponse {
1328
+ /**
1329
+ * 是否成功
1330
+ */
1331
+ Result: boolean;
1332
+ /**
1333
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1334
+ */
1335
+ RequestId?: string;
1336
+ }
1243
1337
  /**
1244
1338
  * DescribeCloudNativeAPIGatewayUpstream返回参数结构体
1245
1339
  */
@@ -1254,17 +1348,17 @@ export interface DescribeCloudNativeAPIGatewayUpstreamResponse {
1254
1348
  RequestId?: string;
1255
1349
  }
1256
1350
  /**
1257
- * DescribeCloudNativeAPIGatewayCertificates返回参数结构体
1351
+ * DeleteAutoScalerResourceStrategy请求参数结构体
1258
1352
  */
1259
- export interface DescribeCloudNativeAPIGatewayCertificatesResponse {
1353
+ export interface DeleteAutoScalerResourceStrategyRequest {
1260
1354
  /**
1261
- *
1355
+ * 网关实例ID
1262
1356
  */
1263
- Result?: KongCertificatesList;
1357
+ GatewayId: string;
1264
1358
  /**
1265
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1359
+ * 策略ID
1266
1360
  */
1267
- RequestId?: string;
1361
+ StrategyId: string;
1268
1362
  }
1269
1363
  /**
1270
1364
  * Nacos副本信息
@@ -1324,21 +1418,25 @@ export interface KongUpstreamPreview {
1324
1418
  Target?: Array<KongTarget>;
1325
1419
  }
1326
1420
  /**
1327
- * UpdateEngineInternetAccess请求参数结构体
1421
+ * DescribeCloudNativeAPIGatewayNodes请求参数结构体
1328
1422
  */
1329
- export interface UpdateEngineInternetAccessRequest {
1423
+ export interface DescribeCloudNativeAPIGatewayNodesRequest {
1330
1424
  /**
1331
- * 引擎ID
1425
+ * 云原生API网关实例ID
1332
1426
  */
1333
- InstanceId: string;
1427
+ GatewayId: string;
1334
1428
  /**
1335
- * 引擎类型
1429
+ * 实例分组id
1336
1430
  */
1337
- EngineType: string;
1431
+ GroupId?: string;
1338
1432
  /**
1339
- * 是否开启客户端公网访问,true开 false关
1433
+ * 翻页获取多少个
1340
1434
  */
1341
- EnableClientInternetAccess?: boolean;
1435
+ Limit?: number;
1436
+ /**
1437
+ * 翻页从第几个开始获取
1438
+ */
1439
+ Offset?: number;
1342
1440
  }
1343
1441
  /**
1344
1442
  * CreateCloudNativeAPIGatewayCanaryRule返回参数结构体
@@ -1514,29 +1612,30 @@ export interface DescribeWafDomainsResult {
1514
1612
  Domains?: Array<string>;
1515
1613
  }
1516
1614
  /**
1517
- * 实例监听端口信息
1615
+ * BindAutoScalerResourceStrategyToGroups返回参数结构体
1518
1616
  */
1519
- export interface InstancePort {
1617
+ export interface BindAutoScalerResourceStrategyToGroupsResponse {
1520
1618
  /**
1521
- * 监听的 http 端口范围。
1522
- 注意:此字段可能返回 null,表示取不到有效值。
1619
+ * 是否成功
1523
1620
  */
1524
- HttpPort?: string;
1621
+ Result: boolean;
1525
1622
  /**
1526
- * 监听的 https 端口范围。
1527
- 注意:此字段可能返回 null,表示取不到有效值。
1623
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1528
1624
  */
1529
- HttpsPort?: string;
1625
+ RequestId?: string;
1626
+ }
1627
+ /**
1628
+ * DescribeAutoScalerResourceStrategies返回参数结构体
1629
+ */
1630
+ export interface DescribeAutoScalerResourceStrategiesResponse {
1530
1631
  /**
1531
- * 监听的 tcp 端口范围。
1532
- 注意:此字段可能返回 null,表示取不到有效值。
1632
+ * 获取云原生API网关实例弹性伸缩策略列表响应结果。
1533
1633
  */
1534
- TcpPort?: string;
1634
+ Result?: ListCloudNativeAPIGatewayStrategyResult;
1535
1635
  /**
1536
- * 监听的 udp 端口范围。
1537
- 注意:此字段可能返回 null,表示取不到有效值。
1636
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1538
1637
  */
1539
- UdpPort?: string;
1638
+ RequestId?: string;
1540
1639
  }
1541
1640
  /**
1542
1641
  * 获取云原生API网关基础信息响应结果。
@@ -1859,17 +1958,13 @@ export interface KongPassiveHealthCheck {
1859
1958
  Type?: string;
1860
1959
  }
1861
1960
  /**
1862
- * 引擎实例的标签信息
1961
+ * DescribeCloudNativeAPIGateway请求参数结构体
1863
1962
  */
1864
- export interface InstanceTagInfo {
1865
- /**
1866
- * 标签键
1867
- */
1868
- TagKey?: string;
1963
+ export interface DescribeCloudNativeAPIGatewayRequest {
1869
1964
  /**
1870
- * 标签值
1965
+ * 云原生API网关实例ID
1871
1966
  */
1872
- TagValue?: string;
1967
+ GatewayId: string;
1873
1968
  }
1874
1969
  /**
1875
1970
  * 云原生API网关vpc配置。
@@ -2181,6 +2276,15 @@ export interface KongTarget {
2181
2276
  */
2182
2277
  CvmInstanceName?: string;
2183
2278
  }
2279
+ /**
2280
+ * UpdateEngineInternetAccess返回参数结构体
2281
+ */
2282
+ export interface UpdateEngineInternetAccessResponse {
2283
+ /**
2284
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2285
+ */
2286
+ RequestId?: string;
2287
+ }
2184
2288
  /**
2185
2289
  * DescribeCloudNativeAPIGateways请求参数结构体
2186
2290
  */
@@ -2278,6 +2382,23 @@ export interface KVMapping {
2278
2382
  */
2279
2383
  Value?: string;
2280
2384
  }
2385
+ /**
2386
+ * BindAutoScalerResourceStrategyToGroups请求参数结构体
2387
+ */
2388
+ export interface BindAutoScalerResourceStrategyToGroupsRequest {
2389
+ /**
2390
+ * 网关实例ID
2391
+ */
2392
+ GatewayId: string;
2393
+ /**
2394
+ * 策略ID
2395
+ */
2396
+ StrategyId: string;
2397
+ /**
2398
+ * 网关分组ID列表
2399
+ */
2400
+ GroupIds: Array<string>;
2401
+ }
2281
2402
  /**
2282
2403
  * 云原生网关限流插件自定义响应
2283
2404
  */
@@ -2324,6 +2445,19 @@ export interface DeleteCloudNativeAPIGatewayServiceRequest {
2324
2445
  */
2325
2446
  Name: string;
2326
2447
  }
2448
+ /**
2449
+ * ModifyAutoScalerResourceStrategy返回参数结构体
2450
+ */
2451
+ export interface ModifyAutoScalerResourceStrategyResponse {
2452
+ /**
2453
+ * 是否成功
2454
+ */
2455
+ Result?: boolean;
2456
+ /**
2457
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2458
+ */
2459
+ RequestId?: string;
2460
+ }
2327
2461
  /**
2328
2462
  * CreateCloudNativeAPIGatewayCertificate返回参数结构体
2329
2463
  */
@@ -2441,6 +2575,20 @@ export interface CreateCloudNativeAPIGatewayCanaryRuleRequest {
2441
2575
  */
2442
2576
  CanaryRule: CloudNativeAPIGatewayCanaryRule;
2443
2577
  }
2578
+ /**
2579
+ * DescribePublicNetwork返回参数结构体
2580
+ */
2581
+ export interface DescribePublicNetworkResponse {
2582
+ /**
2583
+ * 获取云原生API网关公网详情响应结果。
2584
+ 注意:此字段可能返回 null,表示取不到有效值。
2585
+ */
2586
+ Result?: DescribePublicNetworkResult;
2587
+ /**
2588
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2589
+ */
2590
+ RequestId?: string;
2591
+ }
2444
2592
  /**
2445
2593
  * ModifyNativeGatewayServerGroup请求参数结构体
2446
2594
  */
@@ -2603,13 +2751,19 @@ export interface DescribeCloudNativeAPIGatewaysResponse {
2603
2751
  RequestId?: string;
2604
2752
  }
2605
2753
  /**
2606
- * UpdateEngineInternetAccess返回参数结构体
2754
+ * kong服务路由列表
2607
2755
  */
2608
- export interface UpdateEngineInternetAccessResponse {
2756
+ export interface KongServiceRouteList {
2609
2757
  /**
2610
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2758
+ *
2759
+ 注意:此字段可能返回 null,表示取不到有效值。
2611
2760
  */
2612
- RequestId?: string;
2761
+ RouteList?: Array<KongRoutePreview>;
2762
+ /**
2763
+ * 总数
2764
+ 注意:此字段可能返回 null,表示取不到有效值。
2765
+ */
2766
+ TotalCount?: number;
2613
2767
  }
2614
2768
  /**
2615
2769
  * UpdateCloudNativeAPIGatewaySpec请求参数结构体
@@ -2755,21 +2909,17 @@ export interface ModifyNetworkBasicInfoRequest {
2755
2909
  Description?: string;
2756
2910
  }
2757
2911
  /**
2758
- * ModifyCloudNativeAPIGatewayServiceRateLimit请求参数结构体
2912
+ * DescribeUpstreamHealthCheckConfig请求参数结构体
2759
2913
  */
2760
- export interface ModifyCloudNativeAPIGatewayServiceRateLimitRequest {
2914
+ export interface DescribeUpstreamHealthCheckConfigRequest {
2761
2915
  /**
2762
2916
  * 网关ID
2763
2917
  */
2764
2918
  GatewayId: string;
2765
2919
  /**
2766
- * 服务名称,或服务ID
2920
+ * 网关服务名称
2767
2921
  */
2768
2922
  Name: string;
2769
- /**
2770
- * 限流配置
2771
- */
2772
- LimitDetail: CloudNativeAPIGatewayRateLimitDetail;
2773
2923
  }
2774
2924
  /**
2775
2925
  * DescribeSREInstanceAccessAddress请求参数结构体
@@ -2796,6 +2946,19 @@ export interface DescribeSREInstanceAccessAddressRequest {
2796
2946
  */
2797
2947
  EngineRegion?: string;
2798
2948
  }
2949
+ /**
2950
+ * DeleteAutoScalerResourceStrategy返回参数结构体
2951
+ */
2952
+ export interface DeleteAutoScalerResourceStrategyResponse {
2953
+ /**
2954
+ * 是否成功
2955
+ */
2956
+ Result: boolean;
2957
+ /**
2958
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2959
+ */
2960
+ RequestId?: string;
2961
+ }
2799
2962
  /**
2800
2963
  * DescribeCloudNativeAPIGatewayCanaryRules返回参数结构体
2801
2964
  */
@@ -3142,6 +3305,45 @@ export interface ModifyNetworkAccessStrategyResponse {
3142
3305
  */
3143
3306
  RequestId?: string;
3144
3307
  }
3308
+ /**
3309
+ * ModifyAutoScalerResourceStrategy请求参数结构体
3310
+ */
3311
+ export interface ModifyAutoScalerResourceStrategyRequest {
3312
+ /**
3313
+ * 网关实例ID
3314
+ */
3315
+ GatewayId: string;
3316
+ /**
3317
+ * 策略ID
3318
+ */
3319
+ StrategyId: string;
3320
+ /**
3321
+ * 策略名称
3322
+ */
3323
+ StrategyName?: string;
3324
+ /**
3325
+ * 策略描述
3326
+ */
3327
+ Description?: string;
3328
+ /**
3329
+ * 指标伸缩配置
3330
+ */
3331
+ Config?: CloudNativeAPIGatewayStrategyAutoScalerConfig;
3332
+ /**
3333
+ * 定时伸缩配置
3334
+ * @deprecated
3335
+ */
3336
+ CronScalerConfig?: CloudNativeAPIGatewayStrategyCronScalerConfig;
3337
+ /**
3338
+ * 最大节点数
3339
+ * @deprecated
3340
+ */
3341
+ MaxReplicas?: number;
3342
+ /**
3343
+ * 指标伸缩配置
3344
+ */
3345
+ CronConfig?: CloudNativeAPIGatewayStrategyCronScalerConfig;
3346
+ }
3145
3347
  /**
3146
3348
  * DescribeNativeGatewayServerGroups请求参数结构体
3147
3349
  */
@@ -3188,6 +3390,40 @@ export interface DescribeGatewayInstancePortResult {
3188
3390
  */
3189
3391
  GatewayInstancePortList?: Array<GatewayInstanceSchemeAndPorts>;
3190
3392
  }
3393
+ /**
3394
+ * UnbindAutoScalerResourceStrategyFromGroups请求参数结构体
3395
+ */
3396
+ export interface UnbindAutoScalerResourceStrategyFromGroupsRequest {
3397
+ /**
3398
+ * 网关实例ID
3399
+ */
3400
+ GatewayId: string;
3401
+ /**
3402
+ * 策略ID
3403
+ */
3404
+ StrategyId: string;
3405
+ /**
3406
+ * 网关分组ID列表
3407
+ */
3408
+ GroupIds: Array<string>;
3409
+ }
3410
+ /**
3411
+ * DescribePublicNetwork请求参数结构体
3412
+ */
3413
+ export interface DescribePublicNetworkRequest {
3414
+ /**
3415
+ * 云原生API网关实例ID。
3416
+ */
3417
+ GatewayId: string;
3418
+ /**
3419
+ * 网关分组ID
3420
+ */
3421
+ GroupId: string;
3422
+ /**
3423
+ * 网络ID
3424
+ */
3425
+ NetworkId: string;
3426
+ }
3191
3427
  /**
3192
3428
  * DeleteCloudNativeAPIGateway请求参数结构体
3193
3429
  */
@@ -3202,18 +3438,27 @@ export interface DeleteCloudNativeAPIGatewayRequest {
3202
3438
  DeleteClsTopic?: boolean;
3203
3439
  }
3204
3440
  /**
3205
- * DescribeCloudNativeAPIGatewayCertificateDetails返回参数结构体
3441
+ * DeleteCloudNativeAPIGatewayPublicNetwork请求参数结构体
3206
3442
  */
3207
- export interface DescribeCloudNativeAPIGatewayCertificateDetailsResponse {
3443
+ export interface DeleteCloudNativeAPIGatewayPublicNetworkRequest {
3208
3444
  /**
3209
- *
3210
- 注意:此字段可能返回 null,表示取不到有效值。
3445
+ * 云原生API网关实例ID。
3211
3446
  */
3212
- Result?: KongCertificate;
3447
+ GatewayId: string;
3213
3448
  /**
3214
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3449
+ * 分组id,kong类型时必填
3215
3450
  */
3216
- RequestId?: string;
3451
+ GroupId?: string;
3452
+ /**
3453
+ * 公网类型
3454
+ - IPV4 (默认值)
3455
+ - IPV6
3456
+ */
3457
+ InternetAddressVersion?: string;
3458
+ /**
3459
+ * 公网ip,存在多个公网时必填
3460
+ */
3461
+ Vip?: string;
3217
3462
  }
3218
3463
  /**
3219
3464
  * UpdateCloudNativeAPIGatewayCertificateInfo请求参数结构体
@@ -3246,6 +3491,15 @@ export interface KongUpstreamList {
3246
3491
  */
3247
3492
  UpstreamList?: Array<KongUpstreamPreview>;
3248
3493
  }
3494
+ /**
3495
+ * OpenWafProtection返回参数结构体
3496
+ */
3497
+ export interface OpenWafProtectionResponse {
3498
+ /**
3499
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3500
+ */
3501
+ RequestId?: string;
3502
+ }
3249
3503
  /**
3250
3504
  * 引擎的初始管理账号,当前仅支持Apollo引擎
3251
3505
  */
@@ -3365,35 +3619,25 @@ export interface KongServices {
3365
3619
  TotalCount?: number;
3366
3620
  }
3367
3621
  /**
3368
- * CreateCloudNativeAPIGatewayCertificate请求参数结构体
3622
+ * DescribeAutoScalerResourceStrategyBindingGroups请求参数结构体
3369
3623
  */
3370
- export interface CreateCloudNativeAPIGatewayCertificateRequest {
3624
+ export interface DescribeAutoScalerResourceStrategyBindingGroupsRequest {
3371
3625
  /**
3372
- * 网关ID
3626
+ * 网关实例ID
3373
3627
  */
3374
3628
  GatewayId: string;
3375
3629
  /**
3376
- * 绑定的域名
3377
- */
3378
- BindDomains: Array<string>;
3379
- /**
3380
- * ssl平台证书 Id
3381
- */
3382
- CertId: string;
3383
- /**
3384
- * 证书名称
3630
+ * 策略ID
3385
3631
  */
3386
- Name?: string;
3632
+ StrategyId: string;
3387
3633
  /**
3388
- * 证书私钥
3389
- * @deprecated
3634
+ * 查询偏移量
3390
3635
  */
3391
- Key?: string;
3636
+ Offset?: number;
3392
3637
  /**
3393
- * 证书pem格式
3394
- * @deprecated
3638
+ * 查询数量限制
3395
3639
  */
3396
- Crt?: string;
3640
+ Limit?: number;
3397
3641
  }
3398
3642
  /**
3399
3643
  * DescribeWafDomains请求参数结构体
@@ -3441,21 +3685,17 @@ export interface ModifyUpstreamNodeStatusResponse {
3441
3685
  RequestId?: string;
3442
3686
  }
3443
3687
  /**
3444
- * 网络访问策略
3688
+ * DescribeAutoScalerResourceStrategies请求参数结构体
3445
3689
  */
3446
- export interface NetworkAccessControl {
3447
- /**
3448
- * 访问模式:Whitelist|Blacklist
3449
- */
3450
- Mode: string;
3690
+ export interface DescribeAutoScalerResourceStrategiesRequest {
3451
3691
  /**
3452
- * 白名单列表
3692
+ * 网关实例ID
3453
3693
  */
3454
- CidrWhiteList?: Array<string>;
3694
+ GatewayId: string;
3455
3695
  /**
3456
- * 黑名单列表
3696
+ * 策略ID
3457
3697
  */
3458
- CidrBlackList?: Array<string>;
3698
+ StrategyId?: string;
3459
3699
  }
3460
3700
  /**
3461
3701
  * CreateCloudNativeAPIGatewayPublicNetwork请求参数结构体
@@ -3506,13 +3746,18 @@ export interface UpdateCloudNativeAPIGatewayResult {
3506
3746
  TaskId?: string;
3507
3747
  }
3508
3748
  /**
3509
- * DescribeCloudNativeAPIGateway请求参数结构体
3749
+ * DescribeCloudNativeAPIGatewayCertificateDetails返回参数结构体
3510
3750
  */
3511
- export interface DescribeCloudNativeAPIGatewayRequest {
3751
+ export interface DescribeCloudNativeAPIGatewayCertificateDetailsResponse {
3512
3752
  /**
3513
- * 云原生API网关实例ID
3753
+ *
3754
+ 注意:此字段可能返回 null,表示取不到有效值。
3514
3755
  */
3515
- GatewayId: string;
3756
+ Result?: KongCertificate;
3757
+ /**
3758
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3759
+ */
3760
+ RequestId?: string;
3516
3761
  }
3517
3762
  /**
3518
3763
  * DescribeNativeGatewayServerGroups返回参数结构体
@@ -3528,49 +3773,29 @@ export interface DescribeNativeGatewayServerGroupsResponse {
3528
3773
  RequestId?: string;
3529
3774
  }
3530
3775
  /**
3531
- * 路由 WAF 状态
3776
+ * 实例监听端口信息
3532
3777
  */
3533
- export interface RouteWafStatus {
3534
- /**
3535
- * 路由的名字
3536
- 注意:此字段可能返回 null,表示取不到有效值。
3537
- */
3538
- Name?: string;
3539
- /**
3540
- * 路由的 ID
3541
- 注意:此字段可能返回 null,表示取不到有效值。
3542
- */
3543
- Id?: string;
3544
- /**
3545
- * 路由是否开启 WAF 防护
3546
- 注意:此字段可能返回 null,表示取不到有效值。
3547
- */
3548
- Status?: string;
3549
- /**
3550
- * 方法
3551
- 注意:此字段可能返回 null,表示取不到有效值。
3552
- */
3553
- Methods?: Array<string>;
3778
+ export interface InstancePort {
3554
3779
  /**
3555
- * 路径
3780
+ * 监听的 http 端口范围。
3556
3781
  注意:此字段可能返回 null,表示取不到有效值。
3557
3782
  */
3558
- Paths?: Array<string>;
3783
+ HttpPort?: string;
3559
3784
  /**
3560
- * 域名
3785
+ * 监听的 https 端口范围。
3561
3786
  注意:此字段可能返回 null,表示取不到有效值。
3562
3787
  */
3563
- Hosts?: Array<string>;
3788
+ HttpsPort?: string;
3564
3789
  /**
3565
- * 路由对应服务的名字
3790
+ * 监听的 tcp 端口范围。
3566
3791
  注意:此字段可能返回 null,表示取不到有效值。
3567
3792
  */
3568
- ServiceName?: string;
3793
+ TcpPort?: string;
3569
3794
  /**
3570
- * 路由对应服务的ID
3795
+ * 监听的 udp 端口范围。
3571
3796
  注意:此字段可能返回 null,表示取不到有效值。
3572
3797
  */
3573
- ServiceId?: string;
3798
+ UdpPort?: string;
3574
3799
  }
3575
3800
  /**
3576
3801
  * 定时伸缩配置参数
@@ -3619,40 +3844,70 @@ export interface OpenWafProtectionRequest {
3619
3844
  List?: Array<string>;
3620
3845
  }
3621
3846
  /**
3622
- * DeleteCloudNativeAPIGatewayPublicNetwork请求参数结构体
3847
+ * DescribeCloudNativeAPIGatewayCertificates返回参数结构体
3623
3848
  */
3624
- export interface DeleteCloudNativeAPIGatewayPublicNetworkRequest {
3849
+ export interface DescribeCloudNativeAPIGatewayCertificatesResponse {
3625
3850
  /**
3626
- * 云原生API网关实例ID。
3851
+ *
3627
3852
  */
3628
- GatewayId: string;
3853
+ Result?: KongCertificatesList;
3629
3854
  /**
3630
- * 分组id,kong类型时必填
3855
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3631
3856
  */
3632
- GroupId?: string;
3857
+ RequestId?: string;
3858
+ }
3859
+ /**
3860
+ * CreateCloudNativeAPIGatewayServiceRateLimit返回参数结构体
3861
+ */
3862
+ export interface CreateCloudNativeAPIGatewayServiceRateLimitResponse {
3633
3863
  /**
3634
- * 公网类型
3635
- - IPV4 (默认值)
3636
- - IPV6
3864
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3637
3865
  */
3638
- InternetAddressVersion?: string;
3866
+ RequestId?: string;
3867
+ }
3868
+ /**
3869
+ * ModifyNativeGatewayServerGroup返回参数结构体
3870
+ */
3871
+ export interface ModifyNativeGatewayServerGroupResponse {
3639
3872
  /**
3640
- * 公网ip,存在多个公网时必填
3873
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3641
3874
  */
3642
- Vip?: string;
3875
+ RequestId?: string;
3643
3876
  }
3644
3877
  /**
3645
- * DeleteCloudNativeAPIGatewayRoute请求参数结构体
3878
+ * CreateAutoScalerResourceStrategy请求参数结构体
3646
3879
  */
3647
- export interface DeleteCloudNativeAPIGatewayRouteRequest {
3880
+ export interface CreateAutoScalerResourceStrategyRequest {
3648
3881
  /**
3649
- * 网关ID
3882
+ * 网关实例ID
3650
3883
  */
3651
3884
  GatewayId: string;
3652
3885
  /**
3653
- * 路由的ID或名字,不支持名称“未命名”
3886
+ * 策略名称
3654
3887
  */
3655
- Name: string;
3888
+ StrategyName: string;
3889
+ /**
3890
+ * 策略描述
3891
+ */
3892
+ Description?: string;
3893
+ /**
3894
+ * 指标伸缩配置
3895
+ */
3896
+ Config?: CloudNativeAPIGatewayStrategyAutoScalerConfig;
3897
+ /**
3898
+ * 定时伸缩配置列表
3899
+ * @deprecated
3900
+ */
3901
+ CronScalerConfig?: CloudNativeAPIGatewayStrategyCronScalerConfig;
3902
+ /**
3903
+ * 最大节点数
3904
+ * @deprecated
3905
+ */
3906
+ MaxReplicas?: number;
3907
+ /**
3908
+ * 定时伸缩配置
3909
+ */
3910
+ CronConfig?: CloudNativeAPIGatewayStrategyCronScalerConfig;
3656
3911
  }
3657
3912
  /**
3658
3913
  * 公网负载均衡配置
@@ -3734,13 +3989,34 @@ export interface CreateEngineResponse {
3734
3989
  RequestId?: string;
3735
3990
  }
3736
3991
  /**
3737
- * CreateCloudNativeAPIGatewayServiceRateLimit返回参数结构体
3992
+ * ModifyCloudNativeAPIGatewayServiceRateLimit请求参数结构体
3738
3993
  */
3739
- export interface CreateCloudNativeAPIGatewayServiceRateLimitResponse {
3994
+ export interface ModifyCloudNativeAPIGatewayServiceRateLimitRequest {
3740
3995
  /**
3741
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3996
+ * 网关ID
3742
3997
  */
3743
- RequestId?: string;
3998
+ GatewayId: string;
3999
+ /**
4000
+ * 服务名称,或服务ID
4001
+ */
4002
+ Name: string;
4003
+ /**
4004
+ * 限流配置
4005
+ */
4006
+ LimitDetail: CloudNativeAPIGatewayRateLimitDetail;
4007
+ }
4008
+ /**
4009
+ * DeleteCloudNativeAPIGatewayRoute请求参数结构体
4010
+ */
4011
+ export interface DeleteCloudNativeAPIGatewayRouteRequest {
4012
+ /**
4013
+ * 网关ID
4014
+ */
4015
+ GatewayId: string;
4016
+ /**
4017
+ * 路由的ID或名字,不支持名称“未命名”
4018
+ */
4019
+ Name: string;
3744
4020
  }
3745
4021
  /**
3746
4022
  * 获取网关节点信息
@@ -3790,6 +4066,19 @@ export interface CloudNativeAPIGatewayCanaryRule {
3790
4066
  */
3791
4067
  ServiceName?: string;
3792
4068
  }
4069
+ /**
4070
+ * 获取云原生API网关实例策略绑定网关分组列表响应结果。
4071
+ */
4072
+ export interface ListCloudNativeAPIGatewayStrategyBindingGroupInfoResult {
4073
+ /**
4074
+ * 数量
4075
+ */
4076
+ TotalCount: number;
4077
+ /**
4078
+ * 云原生API网关实例策略绑定网关分组列表
4079
+ */
4080
+ GroupInfos: Array<CloudNativeAPIGatewayStrategyBindingGroupInfo>;
4081
+ }
3793
4082
  /**
3794
4083
  * ModifyCloudNativeAPIGatewayServiceRateLimit返回参数结构体
3795
4084
  */
@@ -4049,6 +4338,51 @@ export interface DescribeCloudNativeAPIGatewayCertificateDetailsRequest {
4049
4338
  */
4050
4339
  Id: string;
4051
4340
  }
4341
+ /**
4342
+ * 路由 WAF 状态
4343
+ */
4344
+ export interface RouteWafStatus {
4345
+ /**
4346
+ * 路由的名字
4347
+ 注意:此字段可能返回 null,表示取不到有效值。
4348
+ */
4349
+ Name?: string;
4350
+ /**
4351
+ * 路由的 ID
4352
+ 注意:此字段可能返回 null,表示取不到有效值。
4353
+ */
4354
+ Id?: string;
4355
+ /**
4356
+ * 路由是否开启 WAF 防护
4357
+ 注意:此字段可能返回 null,表示取不到有效值。
4358
+ */
4359
+ Status?: string;
4360
+ /**
4361
+ * 方法
4362
+ 注意:此字段可能返回 null,表示取不到有效值。
4363
+ */
4364
+ Methods?: Array<string>;
4365
+ /**
4366
+ * 路径
4367
+ 注意:此字段可能返回 null,表示取不到有效值。
4368
+ */
4369
+ Paths?: Array<string>;
4370
+ /**
4371
+ * 域名
4372
+ 注意:此字段可能返回 null,表示取不到有效值。
4373
+ */
4374
+ Hosts?: Array<string>;
4375
+ /**
4376
+ * 路由对应服务的名字
4377
+ 注意:此字段可能返回 null,表示取不到有效值。
4378
+ */
4379
+ ServiceName?: string;
4380
+ /**
4381
+ * 路由对应服务的ID
4382
+ 注意:此字段可能返回 null,表示取不到有效值。
4383
+ */
4384
+ ServiceId?: string;
4385
+ }
4052
4386
  /**
4053
4387
  * 指标伸缩的规则
4054
4388
  */
@@ -4577,19 +4911,23 @@ export interface VpcInfo {
4577
4911
  IntranetAddress?: string;
4578
4912
  }
4579
4913
  /**
4580
- * kong服务路由列表
4914
+ * CreateAutoScalerResourceStrategy返回参数结构体
4581
4915
  */
4582
- export interface KongServiceRouteList {
4916
+ export interface CreateAutoScalerResourceStrategyResponse {
4583
4917
  /**
4584
- *
4585
- 注意:此字段可能返回 null,表示取不到有效值。
4918
+ * 是否成功
4919
+ * @deprecated
4586
4920
  */
4587
- RouteList?: Array<KongRoutePreview>;
4921
+ Result?: boolean;
4588
4922
  /**
4589
- * 总数
4923
+ * 策略Id
4590
4924
  注意:此字段可能返回 null,表示取不到有效值。
4591
4925
  */
4592
- TotalCount?: number;
4926
+ StrategyId?: string;
4927
+ /**
4928
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4929
+ */
4930
+ RequestId?: string;
4593
4931
  }
4594
4932
  /**
4595
4933
  * ModifyConsoleNetwork返回参数结构体
@@ -4749,6 +5087,23 @@ export interface DeleteCloudNativeAPIGatewayCanaryRuleResponse {
4749
5087
  */
4750
5088
  RequestId?: string;
4751
5089
  }
5090
+ /**
5091
+ * UpdateEngineInternetAccess请求参数结构体
5092
+ */
5093
+ export interface UpdateEngineInternetAccessRequest {
5094
+ /**
5095
+ * 引擎ID
5096
+ */
5097
+ InstanceId: string;
5098
+ /**
5099
+ * 引擎类型
5100
+ */
5101
+ EngineType: string;
5102
+ /**
5103
+ * 是否开启客户端公网访问,true开 false关
5104
+ */
5105
+ EnableClientInternetAccess?: boolean;
5106
+ }
4752
5107
  /**
4753
5108
  * DescribeCloudNativeAPIGatewayPorts请求参数结构体
4754
5109
  */
@@ -4759,13 +5114,17 @@ export interface DescribeCloudNativeAPIGatewayPortsRequest {
4759
5114
  GatewayId: string;
4760
5115
  }
4761
5116
  /**
4762
- * ModifyNativeGatewayServerGroup返回参数结构体
5117
+ * 引擎实例的标签信息
4763
5118
  */
4764
- export interface ModifyNativeGatewayServerGroupResponse {
5119
+ export interface InstanceTagInfo {
4765
5120
  /**
4766
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5121
+ * 标签键
4767
5122
  */
4768
- RequestId?: string;
5123
+ TagKey?: string;
5124
+ /**
5125
+ * 标签值
5126
+ */
5127
+ TagValue?: string;
4769
5128
  }
4770
5129
  /**
4771
5130
  * 引擎地域配置详情