tencentcloud-sdk-nodejs-tse 4.0.768 → 4.0.769

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.
@@ -38,6 +38,15 @@ export interface CreateCloudNativeAPIGatewayServiceResponse {
38
38
  */
39
39
  RequestId?: string;
40
40
  }
41
+ /**
42
+ * DeleteCloudNativeAPIGatewayPublicNetwork返回参数结构体
43
+ */
44
+ export interface DeleteCloudNativeAPIGatewayPublicNetworkResponse {
45
+ /**
46
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
47
+ */
48
+ RequestId?: string;
49
+ }
41
50
  /**
42
51
  * DeleteCloudNativeAPIGatewayRouteRateLimit返回参数结构体
43
52
  */
@@ -523,6 +532,24 @@ export interface DescribeCloudNativeAPIGatewayCertificatesRequest {
523
532
  */
524
533
  Filters?: Array<ListFilter>;
525
534
  }
535
+ /**
536
+ * ModifyCloudNativeAPIGatewayRouteRateLimit请求参数结构体
537
+ */
538
+ export interface ModifyCloudNativeAPIGatewayRouteRateLimitRequest {
539
+ /**
540
+ * 网关ID
541
+ */
542
+ GatewayId: string;
543
+ /**
544
+ * 路由id,或路由名称。
545
+ 不支持“未命名”
546
+ */
547
+ Id: string;
548
+ /**
549
+ * 限流配置
550
+ */
551
+ LimitDetail: CloudNativeAPIGatewayRateLimitDetail;
552
+ }
526
553
  /**
527
554
  * 删除云原生API网关响应结果。
528
555
  */
@@ -699,22 +726,21 @@ export interface GatewayInstanceSchemeAndPorts {
699
726
  PortList?: Array<number | bigint>;
700
727
  }
701
728
  /**
702
- * ModifyCloudNativeAPIGatewayRouteRateLimit请求参数结构体
729
+ * DescribeZookeeperServerInterfaces请求参数结构体
703
730
  */
704
- export interface ModifyCloudNativeAPIGatewayRouteRateLimitRequest {
731
+ export interface DescribeZookeeperServerInterfacesRequest {
705
732
  /**
706
- * 网关ID
733
+ * 实例id
707
734
  */
708
- GatewayId: string;
735
+ InstanceId?: string;
709
736
  /**
710
- * 路由id,或路由名称。
711
- 不支持“未命名”
737
+ * 返回的列表个数
712
738
  */
713
- Id: string;
739
+ Limit?: number;
714
740
  /**
715
- * 限流配置
741
+ * 返回的列表起始偏移量
716
742
  */
717
- LimitDetail: CloudNativeAPIGatewayRateLimitDetail;
743
+ Offset?: number;
718
744
  }
719
745
  /**
720
746
  * 云原生网关健康检查配置
@@ -864,6 +890,31 @@ export interface CloudNativeAPIGatewayBalancedService {
864
890
  */
865
891
  Percent?: number;
866
892
  }
893
+ /**
894
+ * ModifyConsoleNetwork请求参数结构体
895
+ */
896
+ export interface ModifyConsoleNetworkRequest {
897
+ /**
898
+ * 云原生API网关实例ID。
899
+ */
900
+ GatewayId: string;
901
+ /**
902
+ * 网络类型:
903
+ - Open 公网
904
+ - Internal 内网(暂不支持)
905
+ */
906
+ NetworkType: string;
907
+ /**
908
+ * 开启Konga网络,不填时默认为Open
909
+ - Open,开启
910
+ - Close,关闭
911
+ */
912
+ Operate?: string;
913
+ /**
914
+ * 访问控制策略
915
+ */
916
+ AccessControl?: NetworkAccessControl;
917
+ }
867
918
  /**
868
919
  * 云原生网关限流插件外部redis配置
869
920
  */
@@ -1591,29 +1642,31 @@ export interface DescribeCloudNativeAPIGatewayResult {
1591
1642
  PublicIpAddresses?: Array<string>;
1592
1643
  }
1593
1644
  /**
1594
- * 北极星日志主题信息
1645
+ * ModifyNetworkAccessStrategy请求参数结构体
1595
1646
  */
1596
- export interface PolarisCLSTopicInfo {
1647
+ export interface ModifyNetworkAccessStrategyRequest {
1597
1648
  /**
1598
- * 日志集ID
1599
- 注意:此字段可能返回 null,表示取不到有效值。
1649
+ * 云原生API网关实例ID
1600
1650
  */
1601
- LogSetId?: string;
1651
+ GatewayId: string;
1602
1652
  /**
1603
- * 日志集名称
1604
- 注意:此字段可能返回 null,表示取不到有效值。
1653
+ * 分组id
1605
1654
  */
1606
- LogSetName?: string;
1655
+ GroupId: string;
1607
1656
  /**
1608
- * 日志主题ID
1609
- 注意:此字段可能返回 null,表示取不到有效值。
1657
+ * 网络类型:
1658
+ - Open 公网
1659
+ - Internal 内网 (暂不支持)
1610
1660
  */
1611
- TopicId?: string;
1661
+ NetworkType: string;
1612
1662
  /**
1613
- * 日志主题名称
1614
- 注意:此字段可能返回 null,表示取不到有效值。
1663
+ * ip地址
1615
1664
  */
1616
- TopicName?: string;
1665
+ Vip: string;
1666
+ /**
1667
+ * 访问控制策略
1668
+ */
1669
+ AccessControl: NetworkAccessControl;
1617
1670
  }
1618
1671
  /**
1619
1672
  * DeleteCloudNativeAPIGatewayRoute返回参数结构体
@@ -2620,6 +2673,15 @@ export interface DeleteEngineRequest {
2620
2673
  */
2621
2674
  InstanceId: string;
2622
2675
  }
2676
+ /**
2677
+ * CreateCloudNativeAPIGatewayPublicNetwork返回参数结构体
2678
+ */
2679
+ export interface CreateCloudNativeAPIGatewayPublicNetworkResponse {
2680
+ /**
2681
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
2682
+ */
2683
+ RequestId?: string;
2684
+ }
2623
2685
  /**
2624
2686
  * DescribeWafDomains返回参数结构体
2625
2687
  */
@@ -2635,46 +2697,36 @@ export interface DescribeWafDomainsResponse {
2635
2697
  RequestId?: string;
2636
2698
  }
2637
2699
  /**
2638
- * Zookeeper副本信息
2700
+ * ModifyNetworkBasicInfo请求参数结构体
2639
2701
  */
2640
- export interface ZookeeperReplica {
2641
- /**
2642
- * 名称
2643
- */
2644
- Name: string;
2702
+ export interface ModifyNetworkBasicInfoRequest {
2645
2703
  /**
2646
- * 角色
2704
+ * 云原生API网关实例ID。
2647
2705
  */
2648
- Role: string;
2706
+ GatewayId: string;
2649
2707
  /**
2650
- * 状态
2708
+ * 分组id
2651
2709
  */
2652
- Status: string;
2710
+ GroupId: string;
2653
2711
  /**
2654
- * 子网ID
2655
- 注意:此字段可能返回 null,表示取不到有效值。
2712
+ * 网络类型:
2713
+ - Open 公网ipv4
2714
+ - Open-IPv6 公网ipv6
2715
+ - Internal 内网
2656
2716
  */
2657
- SubnetId: string;
2717
+ NetworkType: string;
2658
2718
  /**
2659
- * 可用区ID
2660
- 注意:此字段可能返回 null,表示取不到有效值。
2719
+ * ip地址
2661
2720
  */
2662
- Zone: string;
2721
+ Vip: string;
2663
2722
  /**
2664
- * 可用区ID
2665
- 注意:此字段可能返回 null,表示取不到有效值。
2666
- */
2667
- ZoneId: string;
2668
- /**
2669
- * 别名
2670
- 注意:此字段可能返回 null,表示取不到有效值。
2723
+ * 公网出流量带宽[1,2048]Mbps
2671
2724
  */
2672
- AliasName: string;
2725
+ InternetMaxBandwidthOut?: number;
2673
2726
  /**
2674
- * VPC ID
2675
- 注意:此字段可能返回 null,表示取不到有效值。
2727
+ * 负载均衡描述
2676
2728
  */
2677
- VpcId?: string;
2729
+ Description?: string;
2678
2730
  }
2679
2731
  /**
2680
2732
  * ModifyCloudNativeAPIGatewayServiceRateLimit请求参数结构体
@@ -3053,6 +3105,15 @@ export interface DescribeZookeeperServerInterfacesResponse {
3053
3105
  */
3054
3106
  RequestId?: string;
3055
3107
  }
3108
+ /**
3109
+ * ModifyNetworkAccessStrategy返回参数结构体
3110
+ */
3111
+ export interface ModifyNetworkAccessStrategyResponse {
3112
+ /**
3113
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
3114
+ */
3115
+ RequestId?: string;
3116
+ }
3056
3117
  /**
3057
3118
  * DescribeNativeGatewayServerGroups请求参数结构体
3058
3119
  */
@@ -3369,21 +3430,21 @@ export interface NetworkAccessControl {
3369
3430
  CidrBlackList?: Array<string>;
3370
3431
  }
3371
3432
  /**
3372
- * DescribeZookeeperServerInterfaces请求参数结构体
3433
+ * CreateCloudNativeAPIGatewayPublicNetwork请求参数结构体
3373
3434
  */
3374
- export interface DescribeZookeeperServerInterfacesRequest {
3435
+ export interface CreateCloudNativeAPIGatewayPublicNetworkRequest {
3375
3436
  /**
3376
- * 实例id
3437
+ * 云原生API网关实例ID。
3377
3438
  */
3378
- InstanceId?: string;
3439
+ GatewayId: string;
3379
3440
  /**
3380
- * 返回的列表个数
3441
+ * 分组id。
3381
3442
  */
3382
- Limit?: number;
3443
+ GroupId?: string;
3383
3444
  /**
3384
- * 返回的列表起始偏移量
3445
+ * 公网负载均衡配置。
3385
3446
  */
3386
- Offset?: number;
3447
+ InternetConfig?: InternetConfig;
3387
3448
  }
3388
3449
  /**
3389
3450
  * DescribeCloudNativeAPIGatewayRouteRateLimit返回参数结构体
@@ -3529,6 +3590,29 @@ export interface OpenWafProtectionRequest {
3529
3590
  */
3530
3591
  List?: Array<string>;
3531
3592
  }
3593
+ /**
3594
+ * DeleteCloudNativeAPIGatewayPublicNetwork请求参数结构体
3595
+ */
3596
+ export interface DeleteCloudNativeAPIGatewayPublicNetworkRequest {
3597
+ /**
3598
+ * 云原生API网关实例ID。
3599
+ */
3600
+ GatewayId: string;
3601
+ /**
3602
+ * 分组id,kong类型时必填
3603
+ */
3604
+ GroupId?: string;
3605
+ /**
3606
+ * 公网类型
3607
+ - IPV4 (默认值)
3608
+ - IPV6
3609
+ */
3610
+ InternetAddressVersion?: string;
3611
+ /**
3612
+ * 公网ip,存在多个公网时必填
3613
+ */
3614
+ Vip?: string;
3615
+ }
3532
3616
  /**
3533
3617
  * DeleteCloudNativeAPIGatewayRoute请求参数结构体
3534
3618
  */
@@ -3736,6 +3820,48 @@ export interface CloudNativeAPIGatewayStrategyAutoScalerConfig {
3736
3820
  */
3737
3821
  Behavior?: AutoScalerBehavior;
3738
3822
  }
3823
+ /**
3824
+ * Zookeeper副本信息
3825
+ */
3826
+ export interface ZookeeperReplica {
3827
+ /**
3828
+ * 名称
3829
+ */
3830
+ Name: string;
3831
+ /**
3832
+ * 角色
3833
+ */
3834
+ Role: string;
3835
+ /**
3836
+ * 状态
3837
+ */
3838
+ Status: string;
3839
+ /**
3840
+ * 子网ID
3841
+ 注意:此字段可能返回 null,表示取不到有效值。
3842
+ */
3843
+ SubnetId: string;
3844
+ /**
3845
+ * 可用区ID
3846
+ 注意:此字段可能返回 null,表示取不到有效值。
3847
+ */
3848
+ Zone: string;
3849
+ /**
3850
+ * 可用区ID
3851
+ 注意:此字段可能返回 null,表示取不到有效值。
3852
+ */
3853
+ ZoneId: string;
3854
+ /**
3855
+ * 别名
3856
+ 注意:此字段可能返回 null,表示取不到有效值。
3857
+ */
3858
+ AliasName: string;
3859
+ /**
3860
+ * VPC ID
3861
+ 注意:此字段可能返回 null,表示取不到有效值。
3862
+ */
3863
+ VpcId?: string;
3864
+ }
3739
3865
  /**
3740
3866
  * DescribeNacosServerInterfaces请求参数结构体
3741
3867
  */
@@ -4219,6 +4345,31 @@ export interface DescribeZookeeperReplicasResponse {
4219
4345
  */
4220
4346
  RequestId?: string;
4221
4347
  }
4348
+ /**
4349
+ * 北极星日志主题信息
4350
+ */
4351
+ export interface PolarisCLSTopicInfo {
4352
+ /**
4353
+ * 日志集ID
4354
+ 注意:此字段可能返回 null,表示取不到有效值。
4355
+ */
4356
+ LogSetId?: string;
4357
+ /**
4358
+ * 日志集名称
4359
+ 注意:此字段可能返回 null,表示取不到有效值。
4360
+ */
4361
+ LogSetName?: string;
4362
+ /**
4363
+ * 日志主题ID
4364
+ 注意:此字段可能返回 null,表示取不到有效值。
4365
+ */
4366
+ TopicId?: string;
4367
+ /**
4368
+ * 日志主题名称
4369
+ 注意:此字段可能返回 null,表示取不到有效值。
4370
+ */
4371
+ TopicName?: string;
4372
+ }
4222
4373
  /**
4223
4374
  * 网关分组列表
4224
4375
  */
@@ -4411,6 +4562,15 @@ export interface KongServiceRouteList {
4411
4562
  */
4412
4563
  TotalCount?: number;
4413
4564
  }
4565
+ /**
4566
+ * ModifyConsoleNetwork返回参数结构体
4567
+ */
4568
+ export interface ModifyConsoleNetworkResponse {
4569
+ /**
4570
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4571
+ */
4572
+ RequestId?: string;
4573
+ }
4414
4574
  /**
4415
4575
  * DeleteWafDomains返回参数结构体
4416
4576
  */
@@ -4612,6 +4772,15 @@ export interface UpdateCloudNativeAPIGatewayCertificateInfoResponse {
4612
4772
  */
4613
4773
  RequestId?: string;
4614
4774
  }
4775
+ /**
4776
+ * ModifyNetworkBasicInfo返回参数结构体
4777
+ */
4778
+ export interface ModifyNetworkBasicInfoResponse {
4779
+ /**
4780
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
4781
+ */
4782
+ RequestId?: string;
4783
+ }
4615
4784
  /**
4616
4785
  * 获取WAF保护资源状态
4617
4786
  */