tencentcloud-sdk-nodejs-tse 4.0.792 → 4.0.793

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.
@@ -274,25 +274,34 @@ export interface CloudNativeAPIGatewayStrategyCronScalerConfig {
274
274
  }
275
275
 
276
276
  /**
277
- * DescribeCloudNativeAPIGatewayNodes请求参数结构体
277
+ * 策略绑定的网关分组信息
278
278
  */
279
- export interface DescribeCloudNativeAPIGatewayNodesRequest {
279
+ export interface CloudNativeAPIGatewayStrategyBindingGroupInfo {
280
280
  /**
281
- * 云原生API网关实例ID
281
+ * 网关分组ID
282
+ 注意:此字段可能返回 null,表示取不到有效值。
282
283
  */
283
- GatewayId: string
284
+ GroupId: string
284
285
  /**
285
- * 实例分组id
286
+ * 节点配置
287
+ 注意:此字段可能返回 null,表示取不到有效值。
286
288
  */
287
- GroupId?: string
289
+ NodeConfig: CloudNativeAPIGatewayNodeConfig
288
290
  /**
289
- * 翻页获取多少个
291
+ * 绑定时间
292
+ 注意:此字段可能返回 null,表示取不到有效值。
290
293
  */
291
- Limit?: number
294
+ BindTime: string
292
295
  /**
293
- * 翻页从第几个开始获取
296
+ * 网关分组名称
297
+ 注意:此字段可能返回 null,表示取不到有效值。
294
298
  */
295
- Offset?: number
299
+ GroupName: string
300
+ /**
301
+ * 绑定状态
302
+ 注意:此字段可能返回 null,表示取不到有效值。
303
+ */
304
+ Status: string
296
305
  }
297
306
 
298
307
  /**
@@ -503,17 +512,35 @@ export interface CloudNativeAPIGatewayNodeConfig {
503
512
  }
504
513
 
505
514
  /**
506
- * DescribeUpstreamHealthCheckConfig请求参数结构体
515
+ * CreateCloudNativeAPIGatewayCertificate请求参数结构体
507
516
  */
508
- export interface DescribeUpstreamHealthCheckConfigRequest {
517
+ export interface CreateCloudNativeAPIGatewayCertificateRequest {
509
518
  /**
510
519
  * 网关ID
511
520
  */
512
521
  GatewayId: string
513
522
  /**
514
- * 网关服务名称
523
+ * 绑定的域名
515
524
  */
516
- Name: string
525
+ BindDomains: Array<string>
526
+ /**
527
+ * ssl平台证书 Id
528
+ */
529
+ CertId: string
530
+ /**
531
+ * 证书名称
532
+ */
533
+ Name?: string
534
+ /**
535
+ * 证书私钥
536
+ * @deprecated
537
+ */
538
+ Key?: string
539
+ /**
540
+ * 证书pem格式
541
+ * @deprecated
542
+ */
543
+ Crt?: string
517
544
  }
518
545
 
519
546
  /**
@@ -573,6 +600,20 @@ export interface DescribeCloudNativeAPIGatewayCertificatesRequest {
573
600
  Filters?: Array<ListFilter>
574
601
  }
575
602
 
603
+ /**
604
+ * 云原生网关限流插件Qps阈值
605
+ */
606
+ export interface QpsThreshold {
607
+ /**
608
+ * qps阈值控制维度,包含:second、minute、hour、day、month、year
609
+ */
610
+ Unit: string
611
+ /**
612
+ * 阈值
613
+ */
614
+ Max: number
615
+ }
616
+
576
617
  /**
577
618
  * ModifyCloudNativeAPIGatewayRouteRateLimit请求参数结构体
578
619
  */
@@ -607,17 +648,17 @@ export interface DeleteCloudNativeAPIGatewayResult {
607
648
  }
608
649
 
609
650
  /**
610
- * 云原生网关限流插件Qps阈值
651
+ * 获取云原生API网关实例策略响应结果。
611
652
  */
612
- export interface QpsThreshold {
653
+ export interface ListCloudNativeAPIGatewayStrategyResult {
613
654
  /**
614
- * qps阈值控制维度,包含:second、minute、hour、day、month、year
655
+ * 总数。
615
656
  */
616
- Unit: string
657
+ TotalCount: number
617
658
  /**
618
- * 阈值
659
+ * 云原生API网关实例策略列表。
619
660
  */
620
- Max: number
661
+ StrategyList: Array<CloudNativeAPIGatewayStrategy>
621
662
  }
622
663
 
623
664
  /**
@@ -676,6 +717,17 @@ export interface DescribeCloudNativeAPIGatewayNodesResponse {
676
717
  RequestId?: string
677
718
  }
678
719
 
720
+ /**
721
+ * nacos服务端接口列表,用于云监控
722
+ */
723
+ export interface NacosServerInterface {
724
+ /**
725
+ * 接口名
726
+ 注意:此字段可能返回 null,表示取不到有效值。
727
+ */
728
+ Interface: string
729
+ }
730
+
679
731
  /**
680
732
  * CreateCloudNativeAPIGateway返回参数结构体
681
733
  */
@@ -706,13 +758,21 @@ export interface DescribeUpstreamHealthCheckConfigResponse {
706
758
  }
707
759
 
708
760
  /**
709
- * OpenWafProtection返回参数结构体
761
+ * 网络访问策略
710
762
  */
711
- export interface OpenWafProtectionResponse {
763
+ export interface NetworkAccessControl {
712
764
  /**
713
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
765
+ * 访问模式:Whitelist|Blacklist
714
766
  */
715
- RequestId?: string
767
+ Mode: string
768
+ /**
769
+ * 白名单列表
770
+ */
771
+ CidrWhiteList?: Array<string>
772
+ /**
773
+ * 黑名单列表
774
+ */
775
+ CidrBlackList?: Array<string>
716
776
  }
717
777
 
718
778
  /**
@@ -736,6 +796,27 @@ export interface KongActiveHealthCheck {
736
796
  HttpPath?: string
737
797
  }
738
798
 
799
+ /**
800
+ * 查询客户端公网信息
801
+ */
802
+ export interface DescribePublicNetworkResult {
803
+ /**
804
+ * 网关实例ID
805
+ 注意:此字段可能返回 null,表示取不到有效值。
806
+ */
807
+ GatewayId?: string
808
+ /**
809
+ * 网关分组ID
810
+ 注意:此字段可能返回 null,表示取不到有效值。
811
+ */
812
+ GroupId?: string
813
+ /**
814
+ * 客户端公网信息
815
+ 注意:此字段可能返回 null,表示取不到有效值。
816
+ */
817
+ PublicNetwork?: CloudNativeAPIGatewayConfig
818
+ }
819
+
739
820
  /**
740
821
  * DeleteCloudNativeAPIGatewayCertificate返回参数结构体
741
822
  */
@@ -853,14 +934,17 @@ export interface UpstreamHealthCheckConfig {
853
934
  }
854
935
 
855
936
  /**
856
- * nacos服务端接口列表,用于云监控
937
+ * DescribeAutoScalerResourceStrategyBindingGroups返回参数结构体
857
938
  */
858
- export interface NacosServerInterface {
939
+ export interface DescribeAutoScalerResourceStrategyBindingGroupsResponse {
859
940
  /**
860
- * 接口名
861
- 注意:此字段可能返回 null,表示取不到有效值。
941
+ * 云原生API网关实例策略绑定网关分组列表响应结果
862
942
  */
863
- Interface: string
943
+ Result?: ListCloudNativeAPIGatewayStrategyBindingGroupInfoResult
944
+ /**
945
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
946
+ */
947
+ RequestId?: string
864
948
  }
865
949
 
866
950
  /**
@@ -1308,6 +1392,20 @@ export interface DescribeCloudNativeAPIGatewayServicesRequest {
1308
1392
  Filters?: Array<ListFilter>
1309
1393
  }
1310
1394
 
1395
+ /**
1396
+ * UnbindAutoScalerResourceStrategyFromGroups返回参数结构体
1397
+ */
1398
+ export interface UnbindAutoScalerResourceStrategyFromGroupsResponse {
1399
+ /**
1400
+ * 是否成功
1401
+ */
1402
+ Result: boolean
1403
+ /**
1404
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1405
+ */
1406
+ RequestId?: string
1407
+ }
1408
+
1311
1409
  /**
1312
1410
  * DescribeCloudNativeAPIGatewayUpstream返回参数结构体
1313
1411
  */
@@ -1323,17 +1421,17 @@ export interface DescribeCloudNativeAPIGatewayUpstreamResponse {
1323
1421
  }
1324
1422
 
1325
1423
  /**
1326
- * DescribeCloudNativeAPIGatewayCertificates返回参数结构体
1424
+ * DeleteAutoScalerResourceStrategy请求参数结构体
1327
1425
  */
1328
- export interface DescribeCloudNativeAPIGatewayCertificatesResponse {
1426
+ export interface DeleteAutoScalerResourceStrategyRequest {
1329
1427
  /**
1330
- *
1428
+ * 网关实例ID
1331
1429
  */
1332
- Result?: KongCertificatesList
1430
+ GatewayId: string
1333
1431
  /**
1334
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1432
+ * 策略ID
1335
1433
  */
1336
- RequestId?: string
1434
+ StrategyId: string
1337
1435
  }
1338
1436
 
1339
1437
  /**
@@ -1396,21 +1494,25 @@ export interface KongUpstreamPreview {
1396
1494
  }
1397
1495
 
1398
1496
  /**
1399
- * UpdateEngineInternetAccess请求参数结构体
1497
+ * DescribeCloudNativeAPIGatewayNodes请求参数结构体
1400
1498
  */
1401
- export interface UpdateEngineInternetAccessRequest {
1499
+ export interface DescribeCloudNativeAPIGatewayNodesRequest {
1402
1500
  /**
1403
- * 引擎ID
1501
+ * 云原生API网关实例ID
1404
1502
  */
1405
- InstanceId: string
1503
+ GatewayId: string
1406
1504
  /**
1407
- * 引擎类型
1505
+ * 实例分组id
1408
1506
  */
1409
- EngineType: string
1507
+ GroupId?: string
1410
1508
  /**
1411
- * 是否开启客户端公网访问,true开 false关
1509
+ * 翻页获取多少个
1412
1510
  */
1413
- EnableClientInternetAccess?: boolean
1511
+ Limit?: number
1512
+ /**
1513
+ * 翻页从第几个开始获取
1514
+ */
1515
+ Offset?: number
1414
1516
  }
1415
1517
 
1416
1518
  /**
@@ -1600,29 +1702,31 @@ export interface DescribeWafDomainsResult {
1600
1702
  }
1601
1703
 
1602
1704
  /**
1603
- * 实例监听端口信息
1705
+ * BindAutoScalerResourceStrategyToGroups返回参数结构体
1604
1706
  */
1605
- export interface InstancePort {
1707
+ export interface BindAutoScalerResourceStrategyToGroupsResponse {
1606
1708
  /**
1607
- * 监听的 http 端口范围。
1608
- 注意:此字段可能返回 null,表示取不到有效值。
1709
+ * 是否成功
1609
1710
  */
1610
- HttpPort?: string
1711
+ Result: boolean
1611
1712
  /**
1612
- * 监听的 https 端口范围。
1613
- 注意:此字段可能返回 null,表示取不到有效值。
1713
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1614
1714
  */
1615
- HttpsPort?: string
1715
+ RequestId?: string
1716
+ }
1717
+
1718
+ /**
1719
+ * DescribeAutoScalerResourceStrategies返回参数结构体
1720
+ */
1721
+ export interface DescribeAutoScalerResourceStrategiesResponse {
1616
1722
  /**
1617
- * 监听的 tcp 端口范围。
1618
- 注意:此字段可能返回 null,表示取不到有效值。
1723
+ * 获取云原生API网关实例弹性伸缩策略列表响应结果。
1619
1724
  */
1620
- TcpPort?: string
1725
+ Result?: ListCloudNativeAPIGatewayStrategyResult
1621
1726
  /**
1622
- * 监听的 udp 端口范围。
1623
- 注意:此字段可能返回 null,表示取不到有效值。
1727
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1624
1728
  */
1625
- UdpPort?: string
1729
+ RequestId?: string
1626
1730
  }
1627
1731
 
1628
1732
  /**
@@ -1958,17 +2062,13 @@ export interface KongPassiveHealthCheck {
1958
2062
  }
1959
2063
 
1960
2064
  /**
1961
- * 引擎实例的标签信息
2065
+ * DescribeCloudNativeAPIGateway请求参数结构体
1962
2066
  */
1963
- export interface InstanceTagInfo {
1964
- /**
1965
- * 标签键
1966
- */
1967
- TagKey?: string
2067
+ export interface DescribeCloudNativeAPIGatewayRequest {
1968
2068
  /**
1969
- * 标签值
2069
+ * 云原生API网关实例ID
1970
2070
  */
1971
- TagValue?: string
2071
+ GatewayId: string
1972
2072
  }
1973
2073
 
1974
2074
  /**
@@ -2291,6 +2391,16 @@ export interface KongTarget {
2291
2391
  CvmInstanceName?: string
2292
2392
  }
2293
2393
 
2394
+ /**
2395
+ * UpdateEngineInternetAccess返回参数结构体
2396
+ */
2397
+ export interface UpdateEngineInternetAccessResponse {
2398
+ /**
2399
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2400
+ */
2401
+ RequestId?: string
2402
+ }
2403
+
2294
2404
  /**
2295
2405
  * DescribeCloudNativeAPIGateways请求参数结构体
2296
2406
  */
@@ -2393,6 +2503,24 @@ export interface KVMapping {
2393
2503
  Value?: string
2394
2504
  }
2395
2505
 
2506
+ /**
2507
+ * BindAutoScalerResourceStrategyToGroups请求参数结构体
2508
+ */
2509
+ export interface BindAutoScalerResourceStrategyToGroupsRequest {
2510
+ /**
2511
+ * 网关实例ID
2512
+ */
2513
+ GatewayId: string
2514
+ /**
2515
+ * 策略ID
2516
+ */
2517
+ StrategyId: string
2518
+ /**
2519
+ * 网关分组ID列表
2520
+ */
2521
+ GroupIds: Array<string>
2522
+ }
2523
+
2396
2524
  /**
2397
2525
  * 云原生网关限流插件自定义响应
2398
2526
  */
@@ -2442,6 +2570,20 @@ export interface DeleteCloudNativeAPIGatewayServiceRequest {
2442
2570
  Name: string
2443
2571
  }
2444
2572
 
2573
+ /**
2574
+ * ModifyAutoScalerResourceStrategy返回参数结构体
2575
+ */
2576
+ export interface ModifyAutoScalerResourceStrategyResponse {
2577
+ /**
2578
+ * 是否成功
2579
+ */
2580
+ Result?: boolean
2581
+ /**
2582
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2583
+ */
2584
+ RequestId?: string
2585
+ }
2586
+
2445
2587
  /**
2446
2588
  * CreateCloudNativeAPIGatewayCertificate返回参数结构体
2447
2589
  */
@@ -2563,6 +2705,21 @@ export interface CreateCloudNativeAPIGatewayCanaryRuleRequest {
2563
2705
  CanaryRule: CloudNativeAPIGatewayCanaryRule
2564
2706
  }
2565
2707
 
2708
+ /**
2709
+ * DescribePublicNetwork返回参数结构体
2710
+ */
2711
+ export interface DescribePublicNetworkResponse {
2712
+ /**
2713
+ * 获取云原生API网关公网详情响应结果。
2714
+ 注意:此字段可能返回 null,表示取不到有效值。
2715
+ */
2716
+ Result?: DescribePublicNetworkResult
2717
+ /**
2718
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2719
+ */
2720
+ RequestId?: string
2721
+ }
2722
+
2566
2723
  /**
2567
2724
  * ModifyNativeGatewayServerGroup请求参数结构体
2568
2725
  */
@@ -2731,13 +2888,19 @@ export interface DescribeCloudNativeAPIGatewaysResponse {
2731
2888
  }
2732
2889
 
2733
2890
  /**
2734
- * UpdateEngineInternetAccess返回参数结构体
2891
+ * kong服务路由列表
2735
2892
  */
2736
- export interface UpdateEngineInternetAccessResponse {
2893
+ export interface KongServiceRouteList {
2737
2894
  /**
2738
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2895
+ *
2896
+ 注意:此字段可能返回 null,表示取不到有效值。
2739
2897
  */
2740
- RequestId?: string
2898
+ RouteList?: Array<KongRoutePreview>
2899
+ /**
2900
+ * 总数
2901
+ 注意:此字段可能返回 null,表示取不到有效值。
2902
+ */
2903
+ TotalCount?: number
2741
2904
  }
2742
2905
 
2743
2906
  /**
@@ -2893,21 +3056,17 @@ export interface ModifyNetworkBasicInfoRequest {
2893
3056
  }
2894
3057
 
2895
3058
  /**
2896
- * ModifyCloudNativeAPIGatewayServiceRateLimit请求参数结构体
3059
+ * DescribeUpstreamHealthCheckConfig请求参数结构体
2897
3060
  */
2898
- export interface ModifyCloudNativeAPIGatewayServiceRateLimitRequest {
3061
+ export interface DescribeUpstreamHealthCheckConfigRequest {
2899
3062
  /**
2900
3063
  * 网关ID
2901
3064
  */
2902
3065
  GatewayId: string
2903
3066
  /**
2904
- * 服务名称,或服务ID
3067
+ * 网关服务名称
2905
3068
  */
2906
3069
  Name: string
2907
- /**
2908
- * 限流配置
2909
- */
2910
- LimitDetail: CloudNativeAPIGatewayRateLimitDetail
2911
3070
  }
2912
3071
 
2913
3072
  /**
@@ -2936,6 +3095,20 @@ export interface DescribeSREInstanceAccessAddressRequest {
2936
3095
  EngineRegion?: string
2937
3096
  }
2938
3097
 
3098
+ /**
3099
+ * DeleteAutoScalerResourceStrategy返回参数结构体
3100
+ */
3101
+ export interface DeleteAutoScalerResourceStrategyResponse {
3102
+ /**
3103
+ * 是否成功
3104
+ */
3105
+ Result: boolean
3106
+ /**
3107
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3108
+ */
3109
+ RequestId?: string
3110
+ }
3111
+
2939
3112
  /**
2940
3113
  * DescribeCloudNativeAPIGatewayCanaryRules返回参数结构体
2941
3114
  */
@@ -3295,6 +3468,46 @@ export interface ModifyNetworkAccessStrategyResponse {
3295
3468
  RequestId?: string
3296
3469
  }
3297
3470
 
3471
+ /**
3472
+ * ModifyAutoScalerResourceStrategy请求参数结构体
3473
+ */
3474
+ export interface ModifyAutoScalerResourceStrategyRequest {
3475
+ /**
3476
+ * 网关实例ID
3477
+ */
3478
+ GatewayId: string
3479
+ /**
3480
+ * 策略ID
3481
+ */
3482
+ StrategyId: string
3483
+ /**
3484
+ * 策略名称
3485
+ */
3486
+ StrategyName?: string
3487
+ /**
3488
+ * 策略描述
3489
+ */
3490
+ Description?: string
3491
+ /**
3492
+ * 指标伸缩配置
3493
+ */
3494
+ Config?: CloudNativeAPIGatewayStrategyAutoScalerConfig
3495
+ /**
3496
+ * 定时伸缩配置
3497
+ * @deprecated
3498
+ */
3499
+ CronScalerConfig?: CloudNativeAPIGatewayStrategyCronScalerConfig
3500
+ /**
3501
+ * 最大节点数
3502
+ * @deprecated
3503
+ */
3504
+ MaxReplicas?: number
3505
+ /**
3506
+ * 指标伸缩配置
3507
+ */
3508
+ CronConfig?: CloudNativeAPIGatewayStrategyCronScalerConfig
3509
+ }
3510
+
3298
3511
  /**
3299
3512
  * DescribeNativeGatewayServerGroups请求参数结构体
3300
3513
  */
@@ -3344,6 +3557,42 @@ export interface DescribeGatewayInstancePortResult {
3344
3557
  GatewayInstancePortList?: Array<GatewayInstanceSchemeAndPorts>
3345
3558
  }
3346
3559
 
3560
+ /**
3561
+ * UnbindAutoScalerResourceStrategyFromGroups请求参数结构体
3562
+ */
3563
+ export interface UnbindAutoScalerResourceStrategyFromGroupsRequest {
3564
+ /**
3565
+ * 网关实例ID
3566
+ */
3567
+ GatewayId: string
3568
+ /**
3569
+ * 策略ID
3570
+ */
3571
+ StrategyId: string
3572
+ /**
3573
+ * 网关分组ID列表
3574
+ */
3575
+ GroupIds: Array<string>
3576
+ }
3577
+
3578
+ /**
3579
+ * DescribePublicNetwork请求参数结构体
3580
+ */
3581
+ export interface DescribePublicNetworkRequest {
3582
+ /**
3583
+ * 云原生API网关实例ID。
3584
+ */
3585
+ GatewayId: string
3586
+ /**
3587
+ * 网关分组ID
3588
+ */
3589
+ GroupId: string
3590
+ /**
3591
+ * 网络ID
3592
+ */
3593
+ NetworkId: string
3594
+ }
3595
+
3347
3596
  /**
3348
3597
  * DeleteCloudNativeAPIGateway请求参数结构体
3349
3598
  */
@@ -3359,18 +3608,27 @@ export interface DeleteCloudNativeAPIGatewayRequest {
3359
3608
  }
3360
3609
 
3361
3610
  /**
3362
- * DescribeCloudNativeAPIGatewayCertificateDetails返回参数结构体
3611
+ * DeleteCloudNativeAPIGatewayPublicNetwork请求参数结构体
3363
3612
  */
3364
- export interface DescribeCloudNativeAPIGatewayCertificateDetailsResponse {
3613
+ export interface DeleteCloudNativeAPIGatewayPublicNetworkRequest {
3365
3614
  /**
3366
- *
3367
- 注意:此字段可能返回 null,表示取不到有效值。
3615
+ * 云原生API网关实例ID。
3368
3616
  */
3369
- Result?: KongCertificate
3617
+ GatewayId: string
3370
3618
  /**
3371
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3619
+ * 分组id,kong类型时必填
3372
3620
  */
3373
- RequestId?: string
3621
+ GroupId?: string
3622
+ /**
3623
+ * 公网类型
3624
+ - IPV4 (默认值)
3625
+ - IPV6
3626
+ */
3627
+ InternetAddressVersion?: string
3628
+ /**
3629
+ * 公网ip,存在多个公网时必填
3630
+ */
3631
+ Vip?: string
3374
3632
  }
3375
3633
 
3376
3634
  /**
@@ -3406,6 +3664,16 @@ export interface KongUpstreamList {
3406
3664
  UpstreamList?: Array<KongUpstreamPreview>
3407
3665
  }
3408
3666
 
3667
+ /**
3668
+ * OpenWafProtection返回参数结构体
3669
+ */
3670
+ export interface OpenWafProtectionResponse {
3671
+ /**
3672
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3673
+ */
3674
+ RequestId?: string
3675
+ }
3676
+
3409
3677
  /**
3410
3678
  * 引擎的初始管理账号,当前仅支持Apollo引擎
3411
3679
  */
@@ -3531,35 +3799,25 @@ export interface KongServices {
3531
3799
  }
3532
3800
 
3533
3801
  /**
3534
- * CreateCloudNativeAPIGatewayCertificate请求参数结构体
3802
+ * DescribeAutoScalerResourceStrategyBindingGroups请求参数结构体
3535
3803
  */
3536
- export interface CreateCloudNativeAPIGatewayCertificateRequest {
3804
+ export interface DescribeAutoScalerResourceStrategyBindingGroupsRequest {
3537
3805
  /**
3538
- * 网关ID
3806
+ * 网关实例ID
3539
3807
  */
3540
3808
  GatewayId: string
3541
3809
  /**
3542
- * 绑定的域名
3543
- */
3544
- BindDomains: Array<string>
3545
- /**
3546
- * ssl平台证书 Id
3547
- */
3548
- CertId: string
3549
- /**
3550
- * 证书名称
3810
+ * 策略ID
3551
3811
  */
3552
- Name?: string
3812
+ StrategyId: string
3553
3813
  /**
3554
- * 证书私钥
3555
- * @deprecated
3814
+ * 查询偏移量
3556
3815
  */
3557
- Key?: string
3816
+ Offset?: number
3558
3817
  /**
3559
- * 证书pem格式
3560
- * @deprecated
3818
+ * 查询数量限制
3561
3819
  */
3562
- Crt?: string
3820
+ Limit?: number
3563
3821
  }
3564
3822
 
3565
3823
  /**
@@ -3611,21 +3869,17 @@ export interface ModifyUpstreamNodeStatusResponse {
3611
3869
  }
3612
3870
 
3613
3871
  /**
3614
- * 网络访问策略
3872
+ * DescribeAutoScalerResourceStrategies请求参数结构体
3615
3873
  */
3616
- export interface NetworkAccessControl {
3617
- /**
3618
- * 访问模式:Whitelist|Blacklist
3619
- */
3620
- Mode: string
3874
+ export interface DescribeAutoScalerResourceStrategiesRequest {
3621
3875
  /**
3622
- * 白名单列表
3876
+ * 网关实例ID
3623
3877
  */
3624
- CidrWhiteList?: Array<string>
3878
+ GatewayId: string
3625
3879
  /**
3626
- * 黑名单列表
3880
+ * 策略ID
3627
3881
  */
3628
- CidrBlackList?: Array<string>
3882
+ StrategyId?: string
3629
3883
  }
3630
3884
 
3631
3885
  /**
@@ -3680,13 +3934,18 @@ export interface UpdateCloudNativeAPIGatewayResult {
3680
3934
  }
3681
3935
 
3682
3936
  /**
3683
- * DescribeCloudNativeAPIGateway请求参数结构体
3937
+ * DescribeCloudNativeAPIGatewayCertificateDetails返回参数结构体
3684
3938
  */
3685
- export interface DescribeCloudNativeAPIGatewayRequest {
3939
+ export interface DescribeCloudNativeAPIGatewayCertificateDetailsResponse {
3686
3940
  /**
3687
- * 云原生API网关实例ID
3941
+ *
3942
+ 注意:此字段可能返回 null,表示取不到有效值。
3688
3943
  */
3689
- GatewayId: string
3944
+ Result?: KongCertificate
3945
+ /**
3946
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3947
+ */
3948
+ RequestId?: string
3690
3949
  }
3691
3950
 
3692
3951
  /**
@@ -3704,49 +3963,29 @@ export interface DescribeNativeGatewayServerGroupsResponse {
3704
3963
  }
3705
3964
 
3706
3965
  /**
3707
- * 路由 WAF 状态
3966
+ * 实例监听端口信息
3708
3967
  */
3709
- export interface RouteWafStatus {
3710
- /**
3711
- * 路由的名字
3712
- 注意:此字段可能返回 null,表示取不到有效值。
3713
- */
3714
- Name?: string
3715
- /**
3716
- * 路由的 ID
3717
- 注意:此字段可能返回 null,表示取不到有效值。
3718
- */
3719
- Id?: string
3720
- /**
3721
- * 路由是否开启 WAF 防护
3722
- 注意:此字段可能返回 null,表示取不到有效值。
3723
- */
3724
- Status?: string
3725
- /**
3726
- * 方法
3727
- 注意:此字段可能返回 null,表示取不到有效值。
3728
- */
3729
- Methods?: Array<string>
3968
+ export interface InstancePort {
3730
3969
  /**
3731
- * 路径
3970
+ * 监听的 http 端口范围。
3732
3971
  注意:此字段可能返回 null,表示取不到有效值。
3733
3972
  */
3734
- Paths?: Array<string>
3973
+ HttpPort?: string
3735
3974
  /**
3736
- * 域名
3975
+ * 监听的 https 端口范围。
3737
3976
  注意:此字段可能返回 null,表示取不到有效值。
3738
3977
  */
3739
- Hosts?: Array<string>
3978
+ HttpsPort?: string
3740
3979
  /**
3741
- * 路由对应服务的名字
3980
+ * 监听的 tcp 端口范围。
3742
3981
  注意:此字段可能返回 null,表示取不到有效值。
3743
3982
  */
3744
- ServiceName?: string
3983
+ TcpPort?: string
3745
3984
  /**
3746
- * 路由对应服务的ID
3985
+ * 监听的 udp 端口范围。
3747
3986
  注意:此字段可能返回 null,表示取不到有效值。
3748
3987
  */
3749
- ServiceId?: string
3988
+ UdpPort?: string
3750
3989
  }
3751
3990
 
3752
3991
  /**
@@ -3798,41 +4037,73 @@ export interface OpenWafProtectionRequest {
3798
4037
  }
3799
4038
 
3800
4039
  /**
3801
- * DeleteCloudNativeAPIGatewayPublicNetwork请求参数结构体
4040
+ * DescribeCloudNativeAPIGatewayCertificates返回参数结构体
3802
4041
  */
3803
- export interface DeleteCloudNativeAPIGatewayPublicNetworkRequest {
4042
+ export interface DescribeCloudNativeAPIGatewayCertificatesResponse {
3804
4043
  /**
3805
- * 云原生API网关实例ID。
4044
+ *
3806
4045
  */
3807
- GatewayId: string
4046
+ Result?: KongCertificatesList
3808
4047
  /**
3809
- * 分组id,kong类型时必填
4048
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3810
4049
  */
3811
- GroupId?: string
4050
+ RequestId?: string
4051
+ }
4052
+
4053
+ /**
4054
+ * CreateCloudNativeAPIGatewayServiceRateLimit返回参数结构体
4055
+ */
4056
+ export interface CreateCloudNativeAPIGatewayServiceRateLimitResponse {
3812
4057
  /**
3813
- * 公网类型
3814
- - IPV4 (默认值)
3815
- - IPV6
4058
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3816
4059
  */
3817
- InternetAddressVersion?: string
4060
+ RequestId?: string
4061
+ }
4062
+
4063
+ /**
4064
+ * ModifyNativeGatewayServerGroup返回参数结构体
4065
+ */
4066
+ export interface ModifyNativeGatewayServerGroupResponse {
3818
4067
  /**
3819
- * 公网ip,存在多个公网时必填
4068
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3820
4069
  */
3821
- Vip?: string
4070
+ RequestId?: string
3822
4071
  }
3823
4072
 
3824
4073
  /**
3825
- * DeleteCloudNativeAPIGatewayRoute请求参数结构体
4074
+ * CreateAutoScalerResourceStrategy请求参数结构体
3826
4075
  */
3827
- export interface DeleteCloudNativeAPIGatewayRouteRequest {
4076
+ export interface CreateAutoScalerResourceStrategyRequest {
3828
4077
  /**
3829
- * 网关ID
4078
+ * 网关实例ID
3830
4079
  */
3831
4080
  GatewayId: string
3832
4081
  /**
3833
- * 路由的ID或名字,不支持名称“未命名”
4082
+ * 策略名称
3834
4083
  */
3835
- Name: string
4084
+ StrategyName: string
4085
+ /**
4086
+ * 策略描述
4087
+ */
4088
+ Description?: string
4089
+ /**
4090
+ * 指标伸缩配置
4091
+ */
4092
+ Config?: CloudNativeAPIGatewayStrategyAutoScalerConfig
4093
+ /**
4094
+ * 定时伸缩配置列表
4095
+ * @deprecated
4096
+ */
4097
+ CronScalerConfig?: CloudNativeAPIGatewayStrategyCronScalerConfig
4098
+ /**
4099
+ * 最大节点数
4100
+ * @deprecated
4101
+ */
4102
+ MaxReplicas?: number
4103
+ /**
4104
+ * 定时伸缩配置
4105
+ */
4106
+ CronConfig?: CloudNativeAPIGatewayStrategyCronScalerConfig
3836
4107
  }
3837
4108
 
3838
4109
  /**
@@ -3918,13 +4189,35 @@ export interface CreateEngineResponse {
3918
4189
  }
3919
4190
 
3920
4191
  /**
3921
- * CreateCloudNativeAPIGatewayServiceRateLimit返回参数结构体
4192
+ * ModifyCloudNativeAPIGatewayServiceRateLimit请求参数结构体
3922
4193
  */
3923
- export interface CreateCloudNativeAPIGatewayServiceRateLimitResponse {
4194
+ export interface ModifyCloudNativeAPIGatewayServiceRateLimitRequest {
3924
4195
  /**
3925
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4196
+ * 网关ID
3926
4197
  */
3927
- RequestId?: string
4198
+ GatewayId: string
4199
+ /**
4200
+ * 服务名称,或服务ID
4201
+ */
4202
+ Name: string
4203
+ /**
4204
+ * 限流配置
4205
+ */
4206
+ LimitDetail: CloudNativeAPIGatewayRateLimitDetail
4207
+ }
4208
+
4209
+ /**
4210
+ * DeleteCloudNativeAPIGatewayRoute请求参数结构体
4211
+ */
4212
+ export interface DeleteCloudNativeAPIGatewayRouteRequest {
4213
+ /**
4214
+ * 网关ID
4215
+ */
4216
+ GatewayId: string
4217
+ /**
4218
+ * 路由的ID或名字,不支持名称“未命名”
4219
+ */
4220
+ Name: string
3928
4221
  }
3929
4222
 
3930
4223
  /**
@@ -3977,6 +4270,20 @@ export interface CloudNativeAPIGatewayCanaryRule {
3977
4270
  ServiceName?: string
3978
4271
  }
3979
4272
 
4273
+ /**
4274
+ * 获取云原生API网关实例策略绑定网关分组列表响应结果。
4275
+ */
4276
+ export interface ListCloudNativeAPIGatewayStrategyBindingGroupInfoResult {
4277
+ /**
4278
+ * 数量
4279
+ */
4280
+ TotalCount: number
4281
+ /**
4282
+ * 云原生API网关实例策略绑定网关分组列表
4283
+ */
4284
+ GroupInfos: Array<CloudNativeAPIGatewayStrategyBindingGroupInfo>
4285
+ }
4286
+
3980
4287
  /**
3981
4288
  * ModifyCloudNativeAPIGatewayServiceRateLimit返回参数结构体
3982
4289
  */
@@ -4247,6 +4554,52 @@ export interface DescribeCloudNativeAPIGatewayCertificateDetailsRequest {
4247
4554
  Id: string
4248
4555
  }
4249
4556
 
4557
+ /**
4558
+ * 路由 WAF 状态
4559
+ */
4560
+ export interface RouteWafStatus {
4561
+ /**
4562
+ * 路由的名字
4563
+ 注意:此字段可能返回 null,表示取不到有效值。
4564
+ */
4565
+ Name?: string
4566
+ /**
4567
+ * 路由的 ID
4568
+ 注意:此字段可能返回 null,表示取不到有效值。
4569
+ */
4570
+ Id?: string
4571
+ /**
4572
+ * 路由是否开启 WAF 防护
4573
+ 注意:此字段可能返回 null,表示取不到有效值。
4574
+ */
4575
+ Status?: string
4576
+ /**
4577
+ * 方法
4578
+ 注意:此字段可能返回 null,表示取不到有效值。
4579
+ */
4580
+ Methods?: Array<string>
4581
+ /**
4582
+ * 路径
4583
+ 注意:此字段可能返回 null,表示取不到有效值。
4584
+ */
4585
+ Paths?: Array<string>
4586
+ /**
4587
+ * 域名
4588
+ 注意:此字段可能返回 null,表示取不到有效值。
4589
+ */
4590
+ Hosts?: Array<string>
4591
+ /**
4592
+ * 路由对应服务的名字
4593
+ 注意:此字段可能返回 null,表示取不到有效值。
4594
+ */
4595
+ ServiceName?: string
4596
+ /**
4597
+ * 路由对应服务的ID
4598
+ 注意:此字段可能返回 null,表示取不到有效值。
4599
+ */
4600
+ ServiceId?: string
4601
+ }
4602
+
4250
4603
  /**
4251
4604
  * 指标伸缩的规则
4252
4605
  */
@@ -4788,19 +5141,23 @@ export interface VpcInfo {
4788
5141
  }
4789
5142
 
4790
5143
  /**
4791
- * kong服务路由列表
5144
+ * CreateAutoScalerResourceStrategy返回参数结构体
4792
5145
  */
4793
- export interface KongServiceRouteList {
5146
+ export interface CreateAutoScalerResourceStrategyResponse {
4794
5147
  /**
4795
- *
4796
- 注意:此字段可能返回 null,表示取不到有效值。
5148
+ * 是否成功
5149
+ * @deprecated
4797
5150
  */
4798
- RouteList?: Array<KongRoutePreview>
5151
+ Result?: boolean
4799
5152
  /**
4800
- * 总数
5153
+ * 策略Id
4801
5154
  注意:此字段可能返回 null,表示取不到有效值。
4802
5155
  */
4803
- TotalCount?: number
5156
+ StrategyId?: string
5157
+ /**
5158
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5159
+ */
5160
+ RequestId?: string
4804
5161
  }
4805
5162
 
4806
5163
  /**
@@ -4970,6 +5327,24 @@ export interface DeleteCloudNativeAPIGatewayCanaryRuleResponse {
4970
5327
  RequestId?: string
4971
5328
  }
4972
5329
 
5330
+ /**
5331
+ * UpdateEngineInternetAccess请求参数结构体
5332
+ */
5333
+ export interface UpdateEngineInternetAccessRequest {
5334
+ /**
5335
+ * 引擎ID
5336
+ */
5337
+ InstanceId: string
5338
+ /**
5339
+ * 引擎类型
5340
+ */
5341
+ EngineType: string
5342
+ /**
5343
+ * 是否开启客户端公网访问,true开 false关
5344
+ */
5345
+ EnableClientInternetAccess?: boolean
5346
+ }
5347
+
4973
5348
  /**
4974
5349
  * DescribeCloudNativeAPIGatewayPorts请求参数结构体
4975
5350
  */
@@ -4981,13 +5356,17 @@ export interface DescribeCloudNativeAPIGatewayPortsRequest {
4981
5356
  }
4982
5357
 
4983
5358
  /**
4984
- * ModifyNativeGatewayServerGroup返回参数结构体
5359
+ * 引擎实例的标签信息
4985
5360
  */
4986
- export interface ModifyNativeGatewayServerGroupResponse {
5361
+ export interface InstanceTagInfo {
4987
5362
  /**
4988
- * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
5363
+ * 标签键
4989
5364
  */
4990
- RequestId?: string
5365
+ TagKey?: string
5366
+ /**
5367
+ * 标签值
5368
+ */
5369
+ TagValue?: string
4991
5370
  }
4992
5371
 
4993
5372
  /**