tencentcloud-sdk-nodejs-tse 4.0.733 → 4.0.735
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 +35 -35
- package/src/services/tse/v20201207/tse_client.ts +60 -7
- package/src/services/tse/v20201207/tse_models.ts +251 -5
- package/tencentcloud/services/tse/v20201207/tse_client.d.ts +19 -3
- package/tencentcloud/services/tse/v20201207/tse_client.js +27 -3
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +238 -5
- package/CHANGELOG.md +0 -156155
- package/SERVICE_CHANGELOG.md +0 -141873
@@ -105,6 +105,24 @@ export interface ApolloEnvParam {
|
|
105
105
|
EnvDesc?: string
|
106
106
|
}
|
107
107
|
|
108
|
+
/**
|
109
|
+
* UpdateUpstreamHealthCheckConfig请求参数结构体
|
110
|
+
*/
|
111
|
+
export interface UpdateUpstreamHealthCheckConfigRequest {
|
112
|
+
/**
|
113
|
+
* 网关ID
|
114
|
+
*/
|
115
|
+
GatewayId: string
|
116
|
+
/**
|
117
|
+
* 网关服务名称
|
118
|
+
*/
|
119
|
+
Name: string
|
120
|
+
/**
|
121
|
+
* 健康检查配置
|
122
|
+
*/
|
123
|
+
HealthCheckConfig: UpstreamHealthCheckConfig
|
124
|
+
}
|
125
|
+
|
108
126
|
/**
|
109
127
|
* DescribeCloudNativeAPIGatewayServiceRateLimit请求参数结构体
|
110
128
|
*/
|
@@ -325,6 +343,20 @@ export interface ModifyCloudNativeAPIGatewayRouteRequest {
|
|
325
343
|
Headers?: Array<KVMapping>
|
326
344
|
}
|
327
345
|
|
346
|
+
/**
|
347
|
+
* DescribeCloudNativeAPIGatewayUpstream请求参数结构体
|
348
|
+
*/
|
349
|
+
export interface DescribeCloudNativeAPIGatewayUpstreamRequest {
|
350
|
+
/**
|
351
|
+
* 网关ID
|
352
|
+
*/
|
353
|
+
GatewayId: string
|
354
|
+
/**
|
355
|
+
* 服务名字
|
356
|
+
*/
|
357
|
+
ServiceName: string
|
358
|
+
}
|
359
|
+
|
328
360
|
/**
|
329
361
|
* DeleteNativeGatewayServerGroup返回参数结构体
|
330
362
|
*/
|
@@ -437,6 +469,20 @@ export interface CloudNativeAPIGatewayNodeConfig {
|
|
437
469
|
Number: number
|
438
470
|
}
|
439
471
|
|
472
|
+
/**
|
473
|
+
* DescribeUpstreamHealthCheckConfig请求参数结构体
|
474
|
+
*/
|
475
|
+
export interface DescribeUpstreamHealthCheckConfigRequest {
|
476
|
+
/**
|
477
|
+
* 网关ID
|
478
|
+
*/
|
479
|
+
GatewayId: string
|
480
|
+
/**
|
481
|
+
* 网关服务名称
|
482
|
+
*/
|
483
|
+
Name: string
|
484
|
+
}
|
485
|
+
|
440
486
|
/**
|
441
487
|
* CreateNativeGatewayServerGroup请求参数结构体
|
442
488
|
*/
|
@@ -560,6 +606,42 @@ export interface CreateCloudNativeAPIGatewayResponse {
|
|
560
606
|
RequestId?: string
|
561
607
|
}
|
562
608
|
|
609
|
+
/**
|
610
|
+
* DescribeUpstreamHealthCheckConfig返回参数结构体
|
611
|
+
*/
|
612
|
+
export interface DescribeUpstreamHealthCheckConfigResponse {
|
613
|
+
/**
|
614
|
+
* 健康检查配置
|
615
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
616
|
+
*/
|
617
|
+
Result?: UpstreamHealthCheckConfig
|
618
|
+
/**
|
619
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
620
|
+
*/
|
621
|
+
RequestId?: string
|
622
|
+
}
|
623
|
+
|
624
|
+
/**
|
625
|
+
* Kong网关主动健康检查配置
|
626
|
+
*/
|
627
|
+
export interface KongActiveHealthCheck {
|
628
|
+
/**
|
629
|
+
* 主动健康检查健康探测间隔,单位:秒,0表示不开启
|
630
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
631
|
+
*/
|
632
|
+
HealthyInterval?: number
|
633
|
+
/**
|
634
|
+
* 主动健康检查异常探测间隔,单位:秒,0表示不开启
|
635
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
636
|
+
*/
|
637
|
+
UnHealthyInterval?: number
|
638
|
+
/**
|
639
|
+
* 在 GET HTTP 请求中使用的路径,以作为主动运行状况检查的探测器运行。默认: ”/”。
|
640
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
641
|
+
*/
|
642
|
+
HttpPath?: string
|
643
|
+
}
|
644
|
+
|
563
645
|
/**
|
564
646
|
* DeleteCloudNativeAPIGatewayCertificate返回参数结构体
|
565
647
|
*/
|
@@ -623,6 +705,57 @@ export interface ModifyCloudNativeAPIGatewayRouteRateLimitRequest {
|
|
623
705
|
LimitDetail: CloudNativeAPIGatewayRateLimitDetail
|
624
706
|
}
|
625
707
|
|
708
|
+
/**
|
709
|
+
* 云原生网关健康检查配置
|
710
|
+
*/
|
711
|
+
export interface UpstreamHealthCheckConfig {
|
712
|
+
/**
|
713
|
+
* 开启主动健康检查
|
714
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
715
|
+
*/
|
716
|
+
EnableActiveHealthCheck?: boolean
|
717
|
+
/**
|
718
|
+
* 主动健康检查配置
|
719
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
720
|
+
*/
|
721
|
+
ActiveHealthCheck?: KongActiveHealthCheck
|
722
|
+
/**
|
723
|
+
* 开启被动健康检查
|
724
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
725
|
+
*/
|
726
|
+
EnablePassiveHealthCheck?: boolean
|
727
|
+
/**
|
728
|
+
* 被动健康检查配置
|
729
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
730
|
+
*/
|
731
|
+
PassiveHealthCheck?: KongPassiveHealthCheck
|
732
|
+
/**
|
733
|
+
* 连续健康阈值,单位:次
|
734
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
735
|
+
*/
|
736
|
+
Successes?: number
|
737
|
+
/**
|
738
|
+
* 连续异常阈值,单位:次
|
739
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
740
|
+
*/
|
741
|
+
Failures?: number
|
742
|
+
/**
|
743
|
+
* 超时阈值,单位:次
|
744
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
745
|
+
*/
|
746
|
+
Timeouts?: number
|
747
|
+
/**
|
748
|
+
* 健康HTTP状态码
|
749
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
750
|
+
*/
|
751
|
+
HealthyHttpStatuses?: Array<number | bigint>
|
752
|
+
/**
|
753
|
+
* 异常HTTP状态码
|
754
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
755
|
+
*/
|
756
|
+
UnhealthyHttpStatuses?: Array<number | bigint>
|
757
|
+
}
|
758
|
+
|
626
759
|
/**
|
627
760
|
* nacos服务端接口列表,用于云监控
|
628
761
|
*/
|
@@ -1058,14 +1191,13 @@ export interface DescribeCloudNativeAPIGatewayServicesRequest {
|
|
1058
1191
|
}
|
1059
1192
|
|
1060
1193
|
/**
|
1061
|
-
*
|
1194
|
+
* DescribeCloudNativeAPIGatewayUpstream返回参数结构体
|
1062
1195
|
*/
|
1063
|
-
export interface
|
1196
|
+
export interface DescribeCloudNativeAPIGatewayUpstreamResponse {
|
1064
1197
|
/**
|
1065
|
-
*
|
1066
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
1198
|
+
* 无
|
1067
1199
|
*/
|
1068
|
-
Result?:
|
1200
|
+
Result?: KongUpstreamList
|
1069
1201
|
/**
|
1070
1202
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1071
1203
|
*/
|
@@ -1124,6 +1256,27 @@ export interface NacosReplica {
|
|
1124
1256
|
VpcId?: string
|
1125
1257
|
}
|
1126
1258
|
|
1259
|
+
/**
|
1260
|
+
* 云原生网关Upstream信息
|
1261
|
+
*/
|
1262
|
+
export interface KongUpstreamPreview {
|
1263
|
+
/**
|
1264
|
+
* 服务ID
|
1265
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1266
|
+
*/
|
1267
|
+
ID: string
|
1268
|
+
/**
|
1269
|
+
* 服务名字
|
1270
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1271
|
+
*/
|
1272
|
+
Name?: string
|
1273
|
+
/**
|
1274
|
+
* 后端配置
|
1275
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1276
|
+
*/
|
1277
|
+
Target?: Array<KongTarget>
|
1278
|
+
}
|
1279
|
+
|
1127
1280
|
/**
|
1128
1281
|
* UpdateEngineInternetAccess请求参数结构体
|
1129
1282
|
*/
|
@@ -1630,6 +1783,17 @@ export interface DeleteCloudNativeAPIGatewayServiceRateLimitRequest {
|
|
1630
1783
|
Name: string
|
1631
1784
|
}
|
1632
1785
|
|
1786
|
+
/**
|
1787
|
+
* Kong网关被动健康检查配置
|
1788
|
+
*/
|
1789
|
+
export interface KongPassiveHealthCheck {
|
1790
|
+
/**
|
1791
|
+
* 后端target协议类型,被动健康检查支持http和tcp,主动健康检查支持http
|
1792
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
1793
|
+
*/
|
1794
|
+
Type?: string
|
1795
|
+
}
|
1796
|
+
|
1633
1797
|
/**
|
1634
1798
|
* 云原生API网关vpc配置。
|
1635
1799
|
*/
|
@@ -1662,6 +1826,32 @@ export interface CloudAPIGatewayCanaryRuleList {
|
|
1662
1826
|
TotalCount?: number
|
1663
1827
|
}
|
1664
1828
|
|
1829
|
+
/**
|
1830
|
+
* ModifyUpstreamNodeStatus请求参数结构体
|
1831
|
+
*/
|
1832
|
+
export interface ModifyUpstreamNodeStatusRequest {
|
1833
|
+
/**
|
1834
|
+
* 网关实例ID
|
1835
|
+
*/
|
1836
|
+
GatewayId: string
|
1837
|
+
/**
|
1838
|
+
* 服务名称
|
1839
|
+
*/
|
1840
|
+
ServiceName: string
|
1841
|
+
/**
|
1842
|
+
* 访问IP地址或域名
|
1843
|
+
*/
|
1844
|
+
Host: string
|
1845
|
+
/**
|
1846
|
+
* 访问端口
|
1847
|
+
*/
|
1848
|
+
Port: number
|
1849
|
+
/**
|
1850
|
+
* HEALTHY或UNHEALTHY
|
1851
|
+
*/
|
1852
|
+
Status: string
|
1853
|
+
}
|
1854
|
+
|
1665
1855
|
/**
|
1666
1856
|
* DescribeCloudNativeAPIGatewayConfig返回参数结构体
|
1667
1857
|
*/
|
@@ -2553,6 +2743,21 @@ export interface DescribeCloudNativeAPIGatewayCanaryRulesResponse {
|
|
2553
2743
|
RequestId?: string
|
2554
2744
|
}
|
2555
2745
|
|
2746
|
+
/**
|
2747
|
+
* UpdateUpstreamTargets返回参数结构体
|
2748
|
+
*/
|
2749
|
+
export interface UpdateUpstreamTargetsResponse {
|
2750
|
+
/**
|
2751
|
+
* 是否更新成功
|
2752
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2753
|
+
*/
|
2754
|
+
Result?: boolean
|
2755
|
+
/**
|
2756
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2757
|
+
*/
|
2758
|
+
RequestId?: string
|
2759
|
+
}
|
2760
|
+
|
2556
2761
|
/**
|
2557
2762
|
* DeleteCloudNativeAPIGatewayCertificate请求参数结构体
|
2558
2763
|
*/
|
@@ -2943,6 +3148,17 @@ export interface UpdateCloudNativeAPIGatewayCertificateInfoRequest {
|
|
2943
3148
|
Name?: string
|
2944
3149
|
}
|
2945
3150
|
|
3151
|
+
/**
|
3152
|
+
* kong后端upstream列表
|
3153
|
+
*/
|
3154
|
+
export interface KongUpstreamList {
|
3155
|
+
/**
|
3156
|
+
* 无
|
3157
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3158
|
+
*/
|
3159
|
+
UpstreamList?: Array<KongUpstreamPreview>
|
3160
|
+
}
|
3161
|
+
|
2946
3162
|
/**
|
2947
3163
|
* 引擎的初始管理帐号
|
2948
3164
|
*/
|
@@ -3109,6 +3325,21 @@ export interface ModifyCloudNativeAPIGatewayResponse {
|
|
3109
3325
|
RequestId?: string
|
3110
3326
|
}
|
3111
3327
|
|
3328
|
+
/**
|
3329
|
+
* ModifyUpstreamNodeStatus返回参数结构体
|
3330
|
+
*/
|
3331
|
+
export interface ModifyUpstreamNodeStatusResponse {
|
3332
|
+
/**
|
3333
|
+
* 是否成功
|
3334
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3335
|
+
*/
|
3336
|
+
Result?: boolean
|
3337
|
+
/**
|
3338
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3339
|
+
*/
|
3340
|
+
RequestId?: string
|
3341
|
+
}
|
3342
|
+
|
3112
3343
|
/**
|
3113
3344
|
* 网络访问策略
|
3114
3345
|
*/
|
@@ -3503,6 +3734,21 @@ export interface CloudNativeAPIGatewayCanaryRuleCondition {
|
|
3503
3734
|
GlobalConfigName?: string
|
3504
3735
|
}
|
3505
3736
|
|
3737
|
+
/**
|
3738
|
+
* UpdateUpstreamHealthCheckConfig返回参数结构体
|
3739
|
+
*/
|
3740
|
+
export interface UpdateUpstreamHealthCheckConfigResponse {
|
3741
|
+
/**
|
3742
|
+
* 是否成功
|
3743
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3744
|
+
*/
|
3745
|
+
Result?: boolean
|
3746
|
+
/**
|
3747
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
3748
|
+
*/
|
3749
|
+
RequestId?: string
|
3750
|
+
}
|
3751
|
+
|
3506
3752
|
/**
|
3507
3753
|
* DescribeSREInstances返回参数结构体
|
3508
3754
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import * as TencentCloudCommon from "tencentcloud-sdk-nodejs-common";
|
2
|
-
import { DescribeCloudNativeAPIGatewayResponse, CreateCloudNativeAPIGatewayServiceResponse, DeleteCloudNativeAPIGatewayRouteRateLimitResponse, DescribeCloudNativeAPIGatewayServiceRateLimitRequest, CreateCloudNativeAPIGatewayRequest, DescribeCloudNativeAPIGatewayNodesRequest, ModifyCloudNativeAPIGatewayRouteRequest, DeleteNativeGatewayServerGroupResponse, ModifyCloudNativeAPIGatewayCertificateResponse, CreateCloudNativeAPIGatewayRouteRateLimitResponse, DescribeSREInstanceAccessAddressResponse, ModifyCloudNativeAPIGatewayCanaryRuleResponse, CreateNativeGatewayServerGroupRequest, DescribeCloudNativeAPIGatewayCertificatesRequest, ModifyCloudNativeAPIGatewayServiceResponse, DescribeCloudNativeAPIGatewayNodesResponse, CreateCloudNativeAPIGatewayResponse, DeleteCloudNativeAPIGatewayCertificateResponse, DeleteCloudNativeAPIGatewayCanaryRuleRequest, ModifyCloudNativeAPIGatewayRouteRateLimitRequest, DescribeNacosReplicasRequest, CreateCloudNativeAPIGatewayServiceRequest, ModifyCloudNativeAPIGatewayCertificateRequest, DescribeCloudNativeAPIGatewayServicesRequest,
|
2
|
+
import { DescribeCloudNativeAPIGatewayResponse, CreateCloudNativeAPIGatewayServiceResponse, DeleteCloudNativeAPIGatewayRouteRateLimitResponse, UpdateUpstreamHealthCheckConfigRequest, DescribeCloudNativeAPIGatewayServiceRateLimitRequest, CreateCloudNativeAPIGatewayRequest, DescribeCloudNativeAPIGatewayNodesRequest, ModifyCloudNativeAPIGatewayRouteRequest, DescribeCloudNativeAPIGatewayUpstreamRequest, DeleteNativeGatewayServerGroupResponse, ModifyCloudNativeAPIGatewayCertificateResponse, CreateCloudNativeAPIGatewayRouteRateLimitResponse, DescribeSREInstanceAccessAddressResponse, ModifyCloudNativeAPIGatewayCanaryRuleResponse, DescribeUpstreamHealthCheckConfigRequest, CreateNativeGatewayServerGroupRequest, DescribeCloudNativeAPIGatewayCertificatesRequest, ModifyCloudNativeAPIGatewayServiceResponse, DescribeCloudNativeAPIGatewayNodesResponse, CreateCloudNativeAPIGatewayResponse, DescribeUpstreamHealthCheckConfigResponse, DeleteCloudNativeAPIGatewayCertificateResponse, DeleteCloudNativeAPIGatewayCanaryRuleRequest, ModifyCloudNativeAPIGatewayRouteRateLimitRequest, DescribeNacosReplicasRequest, CreateCloudNativeAPIGatewayServiceRequest, ModifyCloudNativeAPIGatewayCertificateRequest, DescribeCloudNativeAPIGatewayServicesRequest, DescribeCloudNativeAPIGatewayUpstreamResponse, DescribeCloudNativeAPIGatewayCertificatesResponse, UpdateEngineInternetAccessRequest, CreateCloudNativeAPIGatewayCanaryRuleResponse, DescribeSREInstancesRequest, DeleteEngineResponse, DescribeCloudNativeAPIGatewayRoutesResponse, DescribeZookeeperReplicasRequest, UpdateUpstreamTargetsRequest, DeleteCloudNativeAPIGatewayServiceResponse, 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, ModifyCloudNativeAPIGatewayServiceRateLimitRequest, DescribeSREInstanceAccessAddressRequest, DescribeCloudNativeAPIGatewayCanaryRulesResponse, UpdateUpstreamTargetsResponse, DeleteCloudNativeAPIGatewayCertificateRequest, DeleteCloudNativeAPIGatewayServiceRateLimitResponse, UpdateCloudNativeAPIGatewaySpecResponse, DescribeZookeeperServerInterfacesResponse, DescribeNativeGatewayServerGroupsRequest, DeleteCloudNativeAPIGatewayRequest, DescribeCloudNativeAPIGatewayCertificateDetailsResponse, UpdateCloudNativeAPIGatewayCertificateInfoRequest, DescribeOneCloudNativeAPIGatewayServiceResponse, ModifyCloudNativeAPIGatewayServiceRequest, DeleteCloudNativeAPIGatewayResponse, CreateCloudNativeAPIGatewayCertificateRequest, ModifyCloudNativeAPIGatewayResponse, ModifyUpstreamNodeStatusResponse, DescribeZookeeperServerInterfacesRequest, DescribeCloudNativeAPIGatewayRouteRateLimitResponse, DescribeCloudNativeAPIGatewayRequest, DescribeNativeGatewayServerGroupsResponse, DeleteCloudNativeAPIGatewayRouteRequest, DescribeCloudNativeAPIGatewayRoutesRequest, CreateEngineResponse, CreateCloudNativeAPIGatewayServiceRateLimitResponse, ModifyCloudNativeAPIGatewayServiceRateLimitResponse, DescribeNacosServerInterfacesRequest, UpdateUpstreamHealthCheckConfigResponse, DescribeSREInstancesResponse, DescribeCloudNativeAPIGatewayCertificateDetailsRequest, CreateCloudNativeAPIGatewayRouteRequest, CreateNativeGatewayServerGroupResponse, CreateCloudNativeAPIGatewayServiceRateLimitRequest, DescribeZookeeperReplicasResponse, CreateEngineRequest, ModifyCloudNativeAPIGatewayCanaryRuleRequest, ModifyCloudNativeAPIGatewayRequest, ModifyCloudNativeAPIGatewayRouteRateLimitResponse, DescribeCloudNativeAPIGatewayCanaryRulesRequest, DeleteCloudNativeAPIGatewayCanaryRuleResponse, DescribeCloudNativeAPIGatewayPortsRequest, ModifyNativeGatewayServerGroupResponse, UpdateCloudNativeAPIGatewayCertificateInfoResponse } from "./tse_models";
|
3
3
|
/**
|
4
4
|
* tse client
|
5
5
|
* @class
|
@@ -7,13 +7,21 @@ import { DescribeCloudNativeAPIGatewayResponse, CreateCloudNativeAPIGatewayServi
|
|
7
7
|
export declare class Client extends TencentCloudCommon.AbstractClient {
|
8
8
|
constructor(clientConfig: TencentCloudCommon.ClientConfig);
|
9
9
|
/**
|
10
|
-
*
|
10
|
+
* 获取云原生网关服务详情下的Upstream列表
|
11
11
|
*/
|
12
|
-
|
12
|
+
DescribeCloudNativeAPIGatewayUpstream(req: DescribeCloudNativeAPIGatewayUpstreamRequest, cb?: (error: string, rep: DescribeCloudNativeAPIGatewayUpstreamResponse) => void): Promise<DescribeCloudNativeAPIGatewayUpstreamResponse>;
|
13
|
+
/**
|
14
|
+
* 获取云原生网关服务健康检查配置
|
15
|
+
*/
|
16
|
+
DescribeUpstreamHealthCheckConfig(req: DescribeUpstreamHealthCheckConfigRequest, cb?: (error: string, rep: DescribeUpstreamHealthCheckConfigResponse) => void): Promise<DescribeUpstreamHealthCheckConfigResponse>;
|
13
17
|
/**
|
14
18
|
* 修改云原生API网关实例分组基础信息
|
15
19
|
*/
|
16
20
|
ModifyNativeGatewayServerGroup(req: ModifyNativeGatewayServerGroupRequest, cb?: (error: string, rep: ModifyNativeGatewayServerGroupResponse) => void): Promise<ModifyNativeGatewayServerGroupResponse>;
|
21
|
+
/**
|
22
|
+
* 修改云原生网关上游实例节点健康状态
|
23
|
+
*/
|
24
|
+
ModifyUpstreamNodeStatus(req: ModifyUpstreamNodeStatusRequest, cb?: (error: string, rep: ModifyUpstreamNodeStatusResponse) => void): Promise<ModifyUpstreamNodeStatusResponse>;
|
17
25
|
/**
|
18
26
|
* 删除云原生网关的限流插件(服务)
|
19
27
|
*/
|
@@ -186,6 +194,14 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
186
194
|
* 查询云原生网关分组信息
|
187
195
|
*/
|
188
196
|
DescribeNativeGatewayServerGroups(req: DescribeNativeGatewayServerGroupsRequest, cb?: (error: string, rep: DescribeNativeGatewayServerGroupsResponse) => void): Promise<DescribeNativeGatewayServerGroupsResponse>;
|
197
|
+
/**
|
198
|
+
* 查询Nacos类型引擎实例副本信息
|
199
|
+
*/
|
200
|
+
DescribeNacosReplicas(req: DescribeNacosReplicasRequest, cb?: (error: string, rep: DescribeNacosReplicasResponse) => void): Promise<DescribeNacosReplicasResponse>;
|
201
|
+
/**
|
202
|
+
* 更新云原生网关健康检查配置
|
203
|
+
*/
|
204
|
+
UpdateUpstreamHealthCheckConfig(req: UpdateUpstreamHealthCheckConfigRequest, cb?: (error: string, rep: UpdateUpstreamHealthCheckConfigResponse) => void): Promise<UpdateUpstreamHealthCheckConfigResponse>;
|
189
205
|
/**
|
190
206
|
* 查询引擎实例访问地址
|
191
207
|
*/
|
@@ -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
|
+
* 获取云原生网关服务详情下的Upstream列表
|
32
32
|
*/
|
33
|
-
async
|
34
|
-
return this.request("
|
33
|
+
async DescribeCloudNativeAPIGatewayUpstream(req, cb) {
|
34
|
+
return this.request("DescribeCloudNativeAPIGatewayUpstream", req, cb);
|
35
|
+
}
|
36
|
+
/**
|
37
|
+
* 获取云原生网关服务健康检查配置
|
38
|
+
*/
|
39
|
+
async DescribeUpstreamHealthCheckConfig(req, cb) {
|
40
|
+
return this.request("DescribeUpstreamHealthCheckConfig", req, cb);
|
35
41
|
}
|
36
42
|
/**
|
37
43
|
* 修改云原生API网关实例分组基础信息
|
@@ -39,6 +45,12 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
39
45
|
async ModifyNativeGatewayServerGroup(req, cb) {
|
40
46
|
return this.request("ModifyNativeGatewayServerGroup", req, cb);
|
41
47
|
}
|
48
|
+
/**
|
49
|
+
* 修改云原生网关上游实例节点健康状态
|
50
|
+
*/
|
51
|
+
async ModifyUpstreamNodeStatus(req, cb) {
|
52
|
+
return this.request("ModifyUpstreamNodeStatus", req, cb);
|
53
|
+
}
|
42
54
|
/**
|
43
55
|
* 删除云原生网关的限流插件(服务)
|
44
56
|
*/
|
@@ -297,6 +309,18 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
297
309
|
async DescribeNativeGatewayServerGroups(req, cb) {
|
298
310
|
return this.request("DescribeNativeGatewayServerGroups", req, cb);
|
299
311
|
}
|
312
|
+
/**
|
313
|
+
* 查询Nacos类型引擎实例副本信息
|
314
|
+
*/
|
315
|
+
async DescribeNacosReplicas(req, cb) {
|
316
|
+
return this.request("DescribeNacosReplicas", req, cb);
|
317
|
+
}
|
318
|
+
/**
|
319
|
+
* 更新云原生网关健康检查配置
|
320
|
+
*/
|
321
|
+
async UpdateUpstreamHealthCheckConfig(req, cb) {
|
322
|
+
return this.request("UpdateUpstreamHealthCheckConfig", req, cb);
|
323
|
+
}
|
300
324
|
/**
|
301
325
|
* 查询引擎实例访问地址
|
302
326
|
*/
|