tencentcloud-sdk-nodejs-tse 4.0.767 → 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.
- package/package.json +1 -1
- package/products.md +23 -23
- package/src/services/tse/v20201207/tse_client.ts +76 -16
- package/src/services/tse/v20201207/tse_models.ts +237 -58
- package/tencentcloud/services/tse/v20201207/tse_client.d.ts +25 -5
- package/tencentcloud/services/tse/v20201207/tse_client.js +36 -6
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +227 -58
@@ -58,6 +58,16 @@ export interface CreateCloudNativeAPIGatewayServiceResponse {
|
|
58
58
|
RequestId?: string
|
59
59
|
}
|
60
60
|
|
61
|
+
/**
|
62
|
+
* DeleteCloudNativeAPIGatewayPublicNetwork返回参数结构体
|
63
|
+
*/
|
64
|
+
export interface DeleteCloudNativeAPIGatewayPublicNetworkResponse {
|
65
|
+
/**
|
66
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
67
|
+
*/
|
68
|
+
RequestId?: string
|
69
|
+
}
|
70
|
+
|
61
71
|
/**
|
62
72
|
* DeleteCloudNativeAPIGatewayRouteRateLimit返回参数结构体
|
63
73
|
*/
|
@@ -562,6 +572,25 @@ export interface DescribeCloudNativeAPIGatewayCertificatesRequest {
|
|
562
572
|
Filters?: Array<ListFilter>
|
563
573
|
}
|
564
574
|
|
575
|
+
/**
|
576
|
+
* ModifyCloudNativeAPIGatewayRouteRateLimit请求参数结构体
|
577
|
+
*/
|
578
|
+
export interface ModifyCloudNativeAPIGatewayRouteRateLimitRequest {
|
579
|
+
/**
|
580
|
+
* 网关ID
|
581
|
+
*/
|
582
|
+
GatewayId: string
|
583
|
+
/**
|
584
|
+
* 路由id,或路由名称。
|
585
|
+
不支持“未命名”
|
586
|
+
*/
|
587
|
+
Id: string
|
588
|
+
/**
|
589
|
+
* 限流配置
|
590
|
+
*/
|
591
|
+
LimitDetail: CloudNativeAPIGatewayRateLimitDetail
|
592
|
+
}
|
593
|
+
|
565
594
|
/**
|
566
595
|
* 删除云原生API网关响应结果。
|
567
596
|
*/
|
@@ -751,22 +780,21 @@ export interface GatewayInstanceSchemeAndPorts {
|
|
751
780
|
}
|
752
781
|
|
753
782
|
/**
|
754
|
-
*
|
783
|
+
* DescribeZookeeperServerInterfaces请求参数结构体
|
755
784
|
*/
|
756
|
-
export interface
|
785
|
+
export interface DescribeZookeeperServerInterfacesRequest {
|
757
786
|
/**
|
758
|
-
*
|
787
|
+
* 实例id
|
759
788
|
*/
|
760
|
-
|
789
|
+
InstanceId?: string
|
761
790
|
/**
|
762
|
-
*
|
763
|
-
不支持“未命名”
|
791
|
+
* 返回的列表个数
|
764
792
|
*/
|
765
|
-
|
793
|
+
Limit?: number
|
766
794
|
/**
|
767
|
-
*
|
795
|
+
* 返回的列表起始偏移量
|
768
796
|
*/
|
769
|
-
|
797
|
+
Offset?: number
|
770
798
|
}
|
771
799
|
|
772
800
|
/**
|
@@ -922,6 +950,32 @@ export interface CloudNativeAPIGatewayBalancedService {
|
|
922
950
|
Percent?: number
|
923
951
|
}
|
924
952
|
|
953
|
+
/**
|
954
|
+
* ModifyConsoleNetwork请求参数结构体
|
955
|
+
*/
|
956
|
+
export interface ModifyConsoleNetworkRequest {
|
957
|
+
/**
|
958
|
+
* 云原生API网关实例ID。
|
959
|
+
*/
|
960
|
+
GatewayId: string
|
961
|
+
/**
|
962
|
+
* 网络类型:
|
963
|
+
- Open 公网
|
964
|
+
- Internal 内网(暂不支持)
|
965
|
+
*/
|
966
|
+
NetworkType: string
|
967
|
+
/**
|
968
|
+
* 开启Konga网络,不填时默认为Open
|
969
|
+
- Open,开启
|
970
|
+
- Close,关闭
|
971
|
+
*/
|
972
|
+
Operate?: string
|
973
|
+
/**
|
974
|
+
* 访问控制策略
|
975
|
+
*/
|
976
|
+
AccessControl?: NetworkAccessControl
|
977
|
+
}
|
978
|
+
|
925
979
|
/**
|
926
980
|
* 云原生网关限流插件外部redis配置
|
927
981
|
*/
|
@@ -1675,29 +1729,31 @@ export interface DescribeCloudNativeAPIGatewayResult {
|
|
1675
1729
|
}
|
1676
1730
|
|
1677
1731
|
/**
|
1678
|
-
*
|
1732
|
+
* ModifyNetworkAccessStrategy请求参数结构体
|
1679
1733
|
*/
|
1680
|
-
export interface
|
1734
|
+
export interface ModifyNetworkAccessStrategyRequest {
|
1681
1735
|
/**
|
1682
|
-
*
|
1683
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1736
|
+
* 云原生API网关实例ID。
|
1684
1737
|
*/
|
1685
|
-
|
1738
|
+
GatewayId: string
|
1686
1739
|
/**
|
1687
|
-
*
|
1688
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1740
|
+
* 分组id
|
1689
1741
|
*/
|
1690
|
-
|
1742
|
+
GroupId: string
|
1691
1743
|
/**
|
1692
|
-
*
|
1693
|
-
|
1744
|
+
* 网络类型:
|
1745
|
+
- Open 公网
|
1746
|
+
- Internal 内网 (暂不支持)
|
1694
1747
|
*/
|
1695
|
-
|
1748
|
+
NetworkType: string
|
1696
1749
|
/**
|
1697
|
-
*
|
1698
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1750
|
+
* ip地址
|
1699
1751
|
*/
|
1700
|
-
|
1752
|
+
Vip: string
|
1753
|
+
/**
|
1754
|
+
* 访问控制策略
|
1755
|
+
*/
|
1756
|
+
AccessControl: NetworkAccessControl
|
1701
1757
|
}
|
1702
1758
|
|
1703
1759
|
/**
|
@@ -2751,6 +2807,16 @@ export interface DeleteEngineRequest {
|
|
2751
2807
|
InstanceId: string
|
2752
2808
|
}
|
2753
2809
|
|
2810
|
+
/**
|
2811
|
+
* CreateCloudNativeAPIGatewayPublicNetwork返回参数结构体
|
2812
|
+
*/
|
2813
|
+
export interface CreateCloudNativeAPIGatewayPublicNetworkResponse {
|
2814
|
+
/**
|
2815
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2816
|
+
*/
|
2817
|
+
RequestId?: string
|
2818
|
+
}
|
2819
|
+
|
2754
2820
|
/**
|
2755
2821
|
* DescribeWafDomains返回参数结构体
|
2756
2822
|
*/
|
@@ -2767,46 +2833,36 @@ export interface DescribeWafDomainsResponse {
|
|
2767
2833
|
}
|
2768
2834
|
|
2769
2835
|
/**
|
2770
|
-
*
|
2836
|
+
* ModifyNetworkBasicInfo请求参数结构体
|
2771
2837
|
*/
|
2772
|
-
export interface
|
2838
|
+
export interface ModifyNetworkBasicInfoRequest {
|
2773
2839
|
/**
|
2774
|
-
*
|
2775
|
-
*/
|
2776
|
-
Name: string
|
2777
|
-
/**
|
2778
|
-
* 角色
|
2779
|
-
*/
|
2780
|
-
Role: string
|
2781
|
-
/**
|
2782
|
-
* 状态
|
2840
|
+
* 云原生API网关实例ID。
|
2783
2841
|
*/
|
2784
|
-
|
2842
|
+
GatewayId: string
|
2785
2843
|
/**
|
2786
|
-
*
|
2787
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2844
|
+
* 分组id
|
2788
2845
|
*/
|
2789
|
-
|
2846
|
+
GroupId: string
|
2790
2847
|
/**
|
2791
|
-
*
|
2792
|
-
|
2848
|
+
* 网络类型:
|
2849
|
+
- Open 公网ipv4
|
2850
|
+
- Open-IPv6 公网ipv6
|
2851
|
+
- Internal 内网
|
2793
2852
|
*/
|
2794
|
-
|
2853
|
+
NetworkType: string
|
2795
2854
|
/**
|
2796
|
-
*
|
2797
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2855
|
+
* ip地址
|
2798
2856
|
*/
|
2799
|
-
|
2857
|
+
Vip: string
|
2800
2858
|
/**
|
2801
|
-
*
|
2802
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2859
|
+
* 公网出流量带宽[1,2048]Mbps
|
2803
2860
|
*/
|
2804
|
-
|
2861
|
+
InternetMaxBandwidthOut?: number
|
2805
2862
|
/**
|
2806
|
-
*
|
2807
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2863
|
+
* 负载均衡描述
|
2808
2864
|
*/
|
2809
|
-
|
2865
|
+
Description?: string
|
2810
2866
|
}
|
2811
2867
|
|
2812
2868
|
/**
|
@@ -3200,6 +3256,16 @@ export interface DescribeZookeeperServerInterfacesResponse {
|
|
3200
3256
|
RequestId?: string
|
3201
3257
|
}
|
3202
3258
|
|
3259
|
+
/**
|
3260
|
+
* ModifyNetworkAccessStrategy返回参数结构体
|
3261
|
+
*/
|
3262
|
+
export interface ModifyNetworkAccessStrategyResponse {
|
3263
|
+
/**
|
3264
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3265
|
+
*/
|
3266
|
+
RequestId?: string
|
3267
|
+
}
|
3268
|
+
|
3203
3269
|
/**
|
3204
3270
|
* DescribeNativeGatewayServerGroups请求参数结构体
|
3205
3271
|
*/
|
@@ -3534,21 +3600,21 @@ export interface NetworkAccessControl {
|
|
3534
3600
|
}
|
3535
3601
|
|
3536
3602
|
/**
|
3537
|
-
*
|
3603
|
+
* CreateCloudNativeAPIGatewayPublicNetwork请求参数结构体
|
3538
3604
|
*/
|
3539
|
-
export interface
|
3605
|
+
export interface CreateCloudNativeAPIGatewayPublicNetworkRequest {
|
3540
3606
|
/**
|
3541
|
-
*
|
3607
|
+
* 云原生API网关实例ID。
|
3542
3608
|
*/
|
3543
|
-
|
3609
|
+
GatewayId: string
|
3544
3610
|
/**
|
3545
|
-
*
|
3611
|
+
* 分组id。
|
3546
3612
|
*/
|
3547
|
-
|
3613
|
+
GroupId?: string
|
3548
3614
|
/**
|
3549
|
-
*
|
3615
|
+
* 公网负载均衡配置。
|
3550
3616
|
*/
|
3551
|
-
|
3617
|
+
InternetConfig?: InternetConfig
|
3552
3618
|
}
|
3553
3619
|
|
3554
3620
|
/**
|
@@ -3702,6 +3768,30 @@ export interface OpenWafProtectionRequest {
|
|
3702
3768
|
List?: Array<string>
|
3703
3769
|
}
|
3704
3770
|
|
3771
|
+
/**
|
3772
|
+
* DeleteCloudNativeAPIGatewayPublicNetwork请求参数结构体
|
3773
|
+
*/
|
3774
|
+
export interface DeleteCloudNativeAPIGatewayPublicNetworkRequest {
|
3775
|
+
/**
|
3776
|
+
* 云原生API网关实例ID。
|
3777
|
+
*/
|
3778
|
+
GatewayId: string
|
3779
|
+
/**
|
3780
|
+
* 分组id,kong类型时必填
|
3781
|
+
*/
|
3782
|
+
GroupId?: string
|
3783
|
+
/**
|
3784
|
+
* 公网类型
|
3785
|
+
- IPV4 (默认值)
|
3786
|
+
- IPV6
|
3787
|
+
*/
|
3788
|
+
InternetAddressVersion?: string
|
3789
|
+
/**
|
3790
|
+
* 公网ip,存在多个公网时必填
|
3791
|
+
*/
|
3792
|
+
Vip?: string
|
3793
|
+
}
|
3794
|
+
|
3705
3795
|
/**
|
3706
3796
|
* DeleteCloudNativeAPIGatewayRoute请求参数结构体
|
3707
3797
|
*/
|
@@ -3918,6 +4008,49 @@ export interface CloudNativeAPIGatewayStrategyAutoScalerConfig {
|
|
3918
4008
|
Behavior?: AutoScalerBehavior
|
3919
4009
|
}
|
3920
4010
|
|
4011
|
+
/**
|
4012
|
+
* Zookeeper副本信息
|
4013
|
+
*/
|
4014
|
+
export interface ZookeeperReplica {
|
4015
|
+
/**
|
4016
|
+
* 名称
|
4017
|
+
*/
|
4018
|
+
Name: string
|
4019
|
+
/**
|
4020
|
+
* 角色
|
4021
|
+
*/
|
4022
|
+
Role: string
|
4023
|
+
/**
|
4024
|
+
* 状态
|
4025
|
+
*/
|
4026
|
+
Status: string
|
4027
|
+
/**
|
4028
|
+
* 子网ID
|
4029
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4030
|
+
*/
|
4031
|
+
SubnetId: string
|
4032
|
+
/**
|
4033
|
+
* 可用区ID
|
4034
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4035
|
+
*/
|
4036
|
+
Zone: string
|
4037
|
+
/**
|
4038
|
+
* 可用区ID
|
4039
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4040
|
+
*/
|
4041
|
+
ZoneId: string
|
4042
|
+
/**
|
4043
|
+
* 别名
|
4044
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4045
|
+
*/
|
4046
|
+
AliasName: string
|
4047
|
+
/**
|
4048
|
+
* VPC ID
|
4049
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4050
|
+
*/
|
4051
|
+
VpcId?: string
|
4052
|
+
}
|
4053
|
+
|
3921
4054
|
/**
|
3922
4055
|
* DescribeNacosServerInterfaces请求参数结构体
|
3923
4056
|
*/
|
@@ -4417,6 +4550,32 @@ export interface DescribeZookeeperReplicasResponse {
|
|
4417
4550
|
RequestId?: string
|
4418
4551
|
}
|
4419
4552
|
|
4553
|
+
/**
|
4554
|
+
* 北极星日志主题信息
|
4555
|
+
*/
|
4556
|
+
export interface PolarisCLSTopicInfo {
|
4557
|
+
/**
|
4558
|
+
* 日志集ID
|
4559
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4560
|
+
*/
|
4561
|
+
LogSetId?: string
|
4562
|
+
/**
|
4563
|
+
* 日志集名称
|
4564
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4565
|
+
*/
|
4566
|
+
LogSetName?: string
|
4567
|
+
/**
|
4568
|
+
* 日志主题ID
|
4569
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4570
|
+
*/
|
4571
|
+
TopicId?: string
|
4572
|
+
/**
|
4573
|
+
* 日志主题名称
|
4574
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4575
|
+
*/
|
4576
|
+
TopicName?: string
|
4577
|
+
}
|
4578
|
+
|
4420
4579
|
/**
|
4421
4580
|
* 网关分组列表
|
4422
4581
|
*/
|
@@ -4614,6 +4773,16 @@ export interface KongServiceRouteList {
|
|
4614
4773
|
TotalCount?: number
|
4615
4774
|
}
|
4616
4775
|
|
4776
|
+
/**
|
4777
|
+
* ModifyConsoleNetwork返回参数结构体
|
4778
|
+
*/
|
4779
|
+
export interface ModifyConsoleNetworkResponse {
|
4780
|
+
/**
|
4781
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
4782
|
+
*/
|
4783
|
+
RequestId?: string
|
4784
|
+
}
|
4785
|
+
|
4617
4786
|
/**
|
4618
4787
|
* DeleteWafDomains返回参数结构体
|
4619
4788
|
*/
|
@@ -4827,6 +4996,16 @@ export interface UpdateCloudNativeAPIGatewayCertificateInfoResponse {
|
|
4827
4996
|
RequestId?: string
|
4828
4997
|
}
|
4829
4998
|
|
4999
|
+
/**
|
5000
|
+
* ModifyNetworkBasicInfo返回参数结构体
|
5001
|
+
*/
|
5002
|
+
export interface ModifyNetworkBasicInfoResponse {
|
5003
|
+
/**
|
5004
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
5005
|
+
*/
|
5006
|
+
RequestId?: string
|
5007
|
+
}
|
5008
|
+
|
4830
5009
|
/**
|
4831
5010
|
* 获取WAF保护资源状态
|
4832
5011
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
2
|
-
import { DescribeCloudNativeAPIGatewayResponse, CreateCloudNativeAPIGatewayServiceResponse, DeleteCloudNativeAPIGatewayRouteRateLimitResponse, DeleteWafDomainsRequest, DescribeCloudNativeAPIGatewayServiceRateLimitRequest, CreateCloudNativeAPIGatewayRequest, DescribeCloudNativeAPIGatewayNodesRequest, ModifyCloudNativeAPIGatewayRouteRequest, DescribeCloudNativeAPIGatewayUpstreamRequest, DeleteNativeGatewayServerGroupResponse, ModifyCloudNativeAPIGatewayCertificateResponse, CreateCloudNativeAPIGatewayRouteRateLimitResponse, DescribeSREInstanceAccessAddressResponse, ModifyCloudNativeAPIGatewayCanaryRuleResponse, DescribeUpstreamHealthCheckConfigRequest, CreateNativeGatewayServerGroupRequest, DescribeCloudNativeAPIGatewayCertificatesRequest, ModifyCloudNativeAPIGatewayResponse, CloseWafProtectionRequest, ModifyCloudNativeAPIGatewayServiceResponse, DescribeCloudNativeAPIGatewayNodesResponse, CreateCloudNativeAPIGatewayResponse, DescribeUpstreamHealthCheckConfigResponse, OpenWafProtectionResponse, DeleteCloudNativeAPIGatewayCertificateResponse, DeleteCloudNativeAPIGatewayCanaryRuleRequest,
|
2
|
+
import { DescribeCloudNativeAPIGatewayResponse, CreateCloudNativeAPIGatewayServiceResponse, DeleteCloudNativeAPIGatewayPublicNetworkResponse, DeleteCloudNativeAPIGatewayRouteRateLimitResponse, DeleteWafDomainsRequest, DescribeCloudNativeAPIGatewayServiceRateLimitRequest, CreateCloudNativeAPIGatewayRequest, DescribeCloudNativeAPIGatewayNodesRequest, ModifyCloudNativeAPIGatewayRouteRequest, DescribeCloudNativeAPIGatewayUpstreamRequest, DeleteNativeGatewayServerGroupResponse, ModifyCloudNativeAPIGatewayCertificateResponse, CreateCloudNativeAPIGatewayRouteRateLimitResponse, DescribeSREInstanceAccessAddressResponse, ModifyCloudNativeAPIGatewayCanaryRuleResponse, DescribeUpstreamHealthCheckConfigRequest, CreateNativeGatewayServerGroupRequest, DescribeCloudNativeAPIGatewayCertificatesRequest, ModifyCloudNativeAPIGatewayRouteRateLimitRequest, ModifyCloudNativeAPIGatewayResponse, CloseWafProtectionRequest, ModifyCloudNativeAPIGatewayServiceResponse, DescribeCloudNativeAPIGatewayNodesResponse, CreateCloudNativeAPIGatewayResponse, DescribeUpstreamHealthCheckConfigResponse, OpenWafProtectionResponse, DeleteCloudNativeAPIGatewayCertificateResponse, DeleteCloudNativeAPIGatewayCanaryRuleRequest, DescribeZookeeperServerInterfacesRequest, DescribeNacosReplicasRequest, CreateCloudNativeAPIGatewayServiceRequest, ModifyConsoleNetworkRequest, ModifyCloudNativeAPIGatewayCertificateRequest, CreateWafDomainsResponse, DescribeCloudNativeAPIGatewayServicesRequest, DescribeCloudNativeAPIGatewayUpstreamResponse, DescribeCloudNativeAPIGatewayCertificatesResponse, UpdateEngineInternetAccessRequest, CreateCloudNativeAPIGatewayCanaryRuleResponse, DescribeSREInstancesRequest, DeleteEngineResponse, DescribeCloudNativeAPIGatewayRoutesResponse, DescribeWafProtectionResponse, DescribeZookeeperReplicasRequest, UpdateUpstreamTargetsRequest, DeleteCloudNativeAPIGatewayServiceResponse, ModifyNetworkAccessStrategyRequest, DeleteCloudNativeAPIGatewayRouteResponse, DescribeCloudNativeAPIGatewayPortsResponse, CreateCloudNativeAPIGatewayRouteRateLimitRequest, DeleteNativeGatewayServerGroupRequest, ModifyCloudNativeAPIGatewayRouteResponse, DescribeNacosReplicasResponse, DeleteCloudNativeAPIGatewayServiceRateLimitRequest, ModifyUpstreamNodeStatusRequest, DescribeCloudNativeAPIGatewayConfigResponse, CreateCloudNativeAPIGatewayRouteResponse, DescribeCloudNativeAPIGatewayConfigRequest, DescribeCloudNativeAPIGatewaysRequest, DescribeNacosServerInterfacesResponse, DescribeCloudNativeAPIGatewayServiceRateLimitResponse, DeleteCloudNativeAPIGatewayServiceRequest, CreateCloudNativeAPIGatewayCertificateResponse, CreateCloudNativeAPIGatewayCanaryRuleRequest, ModifyNativeGatewayServerGroupRequest, DescribeCloudNativeAPIGatewayRouteRateLimitRequest, DescribeOneCloudNativeAPIGatewayServiceRequest, DescribeCloudNativeAPIGatewaysResponse, UpdateEngineInternetAccessResponse, UpdateCloudNativeAPIGatewaySpecRequest, DescribeCloudNativeAPIGatewayServicesResponse, DeleteCloudNativeAPIGatewayRouteRateLimitRequest, DeleteEngineRequest, CreateCloudNativeAPIGatewayPublicNetworkResponse, DescribeWafDomainsResponse, ModifyNetworkBasicInfoRequest, ModifyCloudNativeAPIGatewayServiceRateLimitRequest, DescribeSREInstanceAccessAddressRequest, DescribeCloudNativeAPIGatewayCanaryRulesResponse, UpdateUpstreamTargetsResponse, DeleteCloudNativeAPIGatewayCertificateRequest, DeleteCloudNativeAPIGatewayServiceRateLimitResponse, CloseWafProtectionResponse, UpdateUpstreamHealthCheckConfigRequest, UpdateCloudNativeAPIGatewaySpecResponse, DescribeZookeeperServerInterfacesResponse, ModifyNetworkAccessStrategyResponse, DescribeNativeGatewayServerGroupsRequest, DeleteCloudNativeAPIGatewayRequest, DescribeCloudNativeAPIGatewayCertificateDetailsResponse, UpdateCloudNativeAPIGatewayCertificateInfoRequest, DescribeOneCloudNativeAPIGatewayServiceResponse, ModifyCloudNativeAPIGatewayServiceRequest, DeleteCloudNativeAPIGatewayResponse, CreateCloudNativeAPIGatewayCertificateRequest, DescribeWafDomainsRequest, DescribeWafProtectionRequest, ModifyUpstreamNodeStatusResponse, CreateCloudNativeAPIGatewayPublicNetworkRequest, DescribeCloudNativeAPIGatewayRouteRateLimitResponse, DescribeCloudNativeAPIGatewayRequest, DescribeNativeGatewayServerGroupsResponse, OpenWafProtectionRequest, DeleteCloudNativeAPIGatewayPublicNetworkRequest, DeleteCloudNativeAPIGatewayRouteRequest, DescribeCloudNativeAPIGatewayRoutesRequest, CreateEngineResponse, CreateCloudNativeAPIGatewayServiceRateLimitResponse, ModifyCloudNativeAPIGatewayServiceRateLimitResponse, DescribeNacosServerInterfacesRequest, UpdateUpstreamHealthCheckConfigResponse, DescribeSREInstancesResponse, DescribeCloudNativeAPIGatewayCertificateDetailsRequest, CreateWafDomainsRequest, CreateCloudNativeAPIGatewayRouteRequest, CreateNativeGatewayServerGroupResponse, CreateCloudNativeAPIGatewayServiceRateLimitRequest, DescribeZookeeperReplicasResponse, CreateEngineRequest, ModifyCloudNativeAPIGatewayCanaryRuleRequest, ModifyConsoleNetworkResponse, DeleteWafDomainsResponse, ModifyCloudNativeAPIGatewayRequest, ModifyCloudNativeAPIGatewayRouteRateLimitResponse, DescribeCloudNativeAPIGatewayCanaryRulesRequest, DeleteCloudNativeAPIGatewayCanaryRuleResponse, DescribeCloudNativeAPIGatewayPortsRequest, ModifyNativeGatewayServerGroupResponse, UpdateCloudNativeAPIGatewayCertificateInfoResponse, ModifyNetworkBasicInfoResponse } from "./tse_models";
|
3
3
|
/**
|
4
4
|
* tse client
|
5
5
|
* @class
|
@@ -7,9 +7,13 @@ import { DescribeCloudNativeAPIGatewayResponse, CreateCloudNativeAPIGatewayServi
|
|
7
7
|
export declare class Client extends TencentCloudCommon.AbstractClient {
|
8
8
|
constructor(clientConfig: TencentCloudCommon.ClientConfig);
|
9
9
|
/**
|
10
|
-
*
|
10
|
+
* 修改网关实例Konga网络配置
|
11
11
|
*/
|
12
|
-
|
12
|
+
ModifyConsoleNetwork(req: ModifyConsoleNetworkRequest, cb?: (error: string, rep: ModifyConsoleNetworkResponse) => void): Promise<ModifyConsoleNetworkResponse>;
|
13
|
+
/**
|
14
|
+
* 创建公网网络配置
|
15
|
+
*/
|
16
|
+
CreateCloudNativeAPIGatewayPublicNetwork(req: CreateCloudNativeAPIGatewayPublicNetworkRequest, cb?: (error: string, rep: CreateCloudNativeAPIGatewayPublicNetworkResponse) => void): Promise<CreateCloudNativeAPIGatewayPublicNetworkResponse>;
|
13
17
|
/**
|
14
18
|
* 获取云原生网关服务健康检查配置
|
15
19
|
*/
|
@@ -42,6 +46,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
42
46
|
* 获取云原生网关服务详情
|
43
47
|
*/
|
44
48
|
DescribeOneCloudNativeAPIGatewayService(req: DescribeOneCloudNativeAPIGatewayServiceRequest, cb?: (error: string, rep: DescribeOneCloudNativeAPIGatewayServiceResponse) => void): Promise<DescribeOneCloudNativeAPIGatewayServiceResponse>;
|
49
|
+
/**
|
50
|
+
* 获取云原生网关服务详情下的Upstream列表
|
51
|
+
*/
|
52
|
+
DescribeCloudNativeAPIGatewayUpstream(req: DescribeCloudNativeAPIGatewayUpstreamRequest, cb?: (error: string, rep: DescribeCloudNativeAPIGatewayUpstreamResponse) => void): Promise<DescribeCloudNativeAPIGatewayUpstreamResponse>;
|
45
53
|
/**
|
46
54
|
* 查询云原生网关证书列表
|
47
55
|
*/
|
@@ -58,6 +66,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
58
66
|
* 修改云原生网关的灰度规则
|
59
67
|
*/
|
60
68
|
ModifyCloudNativeAPIGatewayCanaryRule(req: ModifyCloudNativeAPIGatewayCanaryRuleRequest, cb?: (error: string, rep: ModifyCloudNativeAPIGatewayCanaryRuleResponse) => void): Promise<ModifyCloudNativeAPIGatewayCanaryRuleResponse>;
|
69
|
+
/**
|
70
|
+
* 删除公网网络配置
|
71
|
+
*/
|
72
|
+
DeleteCloudNativeAPIGatewayPublicNetwork(req: DeleteCloudNativeAPIGatewayPublicNetworkRequest, cb?: (error: string, rep: DeleteCloudNativeAPIGatewayPublicNetworkResponse) => void): Promise<DeleteCloudNativeAPIGatewayPublicNetworkResponse>;
|
61
73
|
/**
|
62
74
|
* 删除 WAF 防护域名
|
63
75
|
*/
|
@@ -174,6 +186,10 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
174
186
|
* 开启 WAF 防护
|
175
187
|
*/
|
176
188
|
OpenWafProtection(req: OpenWafProtectionRequest, cb?: (error: string, rep: OpenWafProtectionResponse) => void): Promise<OpenWafProtectionResponse>;
|
189
|
+
/**
|
190
|
+
* 更新网关上游实例列表,仅支持IPList服务类型
|
191
|
+
*/
|
192
|
+
UpdateUpstreamTargets(req: UpdateUpstreamTargetsRequest, cb?: (error: string, rep: UpdateUpstreamTargetsResponse) => void): Promise<UpdateUpstreamTargetsResponse>;
|
177
193
|
/**
|
178
194
|
* 修改云原生API网关实例基础信息
|
179
195
|
*/
|
@@ -187,9 +203,13 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
187
203
|
*/
|
188
204
|
DeleteCloudNativeAPIGateway(req: DeleteCloudNativeAPIGatewayRequest, cb?: (error: string, rep: DeleteCloudNativeAPIGatewayResponse) => void): Promise<DeleteCloudNativeAPIGatewayResponse>;
|
189
205
|
/**
|
190
|
-
*
|
206
|
+
* 修改云原生API网关实例网络基本信息,比如带宽以及描述,只支持修改客户端公网/内网的信息。
|
191
207
|
*/
|
192
|
-
|
208
|
+
ModifyNetworkBasicInfo(req: ModifyNetworkBasicInfoRequest, cb?: (error: string, rep: ModifyNetworkBasicInfoResponse) => void): Promise<ModifyNetworkBasicInfoResponse>;
|
209
|
+
/**
|
210
|
+
* 修改云原生API网关实例Kong访问策略,支持白名单或者黑名单。
|
211
|
+
*/
|
212
|
+
ModifyNetworkAccessStrategy(req: ModifyNetworkAccessStrategyRequest, cb?: (error: string, rep: ModifyNetworkAccessStrategyResponse) => void): Promise<ModifyNetworkAccessStrategyResponse>;
|
193
213
|
/**
|
194
214
|
* 删除云原生网关证书
|
195
215
|
*/
|
@@ -28,10 +28,16 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
28
28
|
super("tse.tencentcloudapi.com", "2020-12-07", clientConfig);
|
29
29
|
}
|
30
30
|
/**
|
31
|
-
*
|
31
|
+
* 修改网关实例Konga网络配置
|
32
32
|
*/
|
33
|
-
async
|
34
|
-
return this.request("
|
33
|
+
async ModifyConsoleNetwork(req, cb) {
|
34
|
+
return this.request("ModifyConsoleNetwork", req, cb);
|
35
|
+
}
|
36
|
+
/**
|
37
|
+
* 创建公网网络配置
|
38
|
+
*/
|
39
|
+
async CreateCloudNativeAPIGatewayPublicNetwork(req, cb) {
|
40
|
+
return this.request("CreateCloudNativeAPIGatewayPublicNetwork", req, cb);
|
35
41
|
}
|
36
42
|
/**
|
37
43
|
* 获取云原生网关服务健康检查配置
|
@@ -81,6 +87,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
81
87
|
async DescribeOneCloudNativeAPIGatewayService(req, cb) {
|
82
88
|
return this.request("DescribeOneCloudNativeAPIGatewayService", req, cb);
|
83
89
|
}
|
90
|
+
/**
|
91
|
+
* 获取云原生网关服务详情下的Upstream列表
|
92
|
+
*/
|
93
|
+
async DescribeCloudNativeAPIGatewayUpstream(req, cb) {
|
94
|
+
return this.request("DescribeCloudNativeAPIGatewayUpstream", req, cb);
|
95
|
+
}
|
84
96
|
/**
|
85
97
|
* 查询云原生网关证书列表
|
86
98
|
*/
|
@@ -105,6 +117,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
105
117
|
async ModifyCloudNativeAPIGatewayCanaryRule(req, cb) {
|
106
118
|
return this.request("ModifyCloudNativeAPIGatewayCanaryRule", req, cb);
|
107
119
|
}
|
120
|
+
/**
|
121
|
+
* 删除公网网络配置
|
122
|
+
*/
|
123
|
+
async DeleteCloudNativeAPIGatewayPublicNetwork(req, cb) {
|
124
|
+
return this.request("DeleteCloudNativeAPIGatewayPublicNetwork", req, cb);
|
125
|
+
}
|
108
126
|
/**
|
109
127
|
* 删除 WAF 防护域名
|
110
128
|
*/
|
@@ -279,6 +297,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
279
297
|
async OpenWafProtection(req, cb) {
|
280
298
|
return this.request("OpenWafProtection", req, cb);
|
281
299
|
}
|
300
|
+
/**
|
301
|
+
* 更新网关上游实例列表,仅支持IPList服务类型
|
302
|
+
*/
|
303
|
+
async UpdateUpstreamTargets(req, cb) {
|
304
|
+
return this.request("UpdateUpstreamTargets", req, cb);
|
305
|
+
}
|
282
306
|
/**
|
283
307
|
* 修改云原生API网关实例基础信息
|
284
308
|
*/
|
@@ -298,10 +322,16 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
298
322
|
return this.request("DeleteCloudNativeAPIGateway", req, cb);
|
299
323
|
}
|
300
324
|
/**
|
301
|
-
*
|
325
|
+
* 修改云原生API网关实例网络基本信息,比如带宽以及描述,只支持修改客户端公网/内网的信息。
|
302
326
|
*/
|
303
|
-
async
|
304
|
-
return this.request("
|
327
|
+
async ModifyNetworkBasicInfo(req, cb) {
|
328
|
+
return this.request("ModifyNetworkBasicInfo", req, cb);
|
329
|
+
}
|
330
|
+
/**
|
331
|
+
* 修改云原生API网关实例Kong访问策略,支持白名单或者黑名单。
|
332
|
+
*/
|
333
|
+
async ModifyNetworkAccessStrategy(req, cb) {
|
334
|
+
return this.request("ModifyNetworkAccessStrategy", req, cb);
|
305
335
|
}
|
306
336
|
/**
|
307
337
|
* 删除云原生网关证书
|