tencentcloud-sdk-nodejs 4.0.812 → 4.0.814
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/CHANGELOG.md +333 -0
- package/SERVICE_CHANGELOG.md +370 -156
- package/package.json +1 -1
- package/products.md +20 -20
- package/src/common/sdk_version.ts +1 -1
- package/src/services/afc/v20200226/afc_models.ts +4 -8
- package/src/services/asr/v20190614/asr_models.ts +1 -1
- package/src/services/billing/v20180709/billing_models.ts +1 -1
- package/src/services/cdn/v20180606/cdn_models.ts +1 -1
- package/src/services/cls/v20201016/cls_models.ts +50 -15
- package/src/services/cme/v20191029/cme_models.ts +50 -50
- package/src/services/cynosdb/v20190107/cynosdb_client.ts +1 -0
- package/src/services/cynosdb/v20190107/cynosdb_models.ts +30 -0
- package/src/services/emr/v20190103/emr_client.ts +4 -2
- package/src/services/emr/v20190103/emr_models.ts +106 -66
- package/src/services/ess/v20201111/ess_client.ts +14 -0
- package/src/services/ess/v20201111/ess_models.ts +42 -1
- package/src/services/essbasic/v20210526/essbasic_client.ts +20 -2
- package/src/services/essbasic/v20210526/essbasic_models.ts +41 -3
- package/src/services/ims/v20200713/ims_models.ts +1 -1
- package/src/services/lcic/v20220817/lcic_models.ts +42 -0
- package/src/services/live/v20180801/live_models.ts +0 -4
- package/src/services/mongodb/v20190725/mongodb_client.ts +1 -1
- package/src/services/mongodb/v20190725/mongodb_models.ts +13 -5
- package/src/services/organization/v20181225/organization_models.ts +20 -20
- package/src/services/sqlserver/v20180328/sqlserver_models.ts +4 -0
- package/src/services/tione/v20191022/tione_models.ts +23 -23
- package/src/services/trp/v20210515/trp_models.ts +10 -0
- package/src/services/tse/v20201207/tse_client.ts +904 -478
- package/src/services/tse/v20201207/tse_models.ts +2677 -444
- package/src/services/vm/v20210922/vm_client.ts +1 -1
- package/src/services/vm/v20210922/vm_models.ts +2 -2
- package/src/services/waf/v20180125/waf_client.ts +3 -20
- package/src/services/waf/v20180125/waf_models.ts +36 -108
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/afc/v20200226/afc_models.d.ts +4 -8
- package/tencentcloud/services/asr/v20190614/asr_models.d.ts +1 -1
- package/tencentcloud/services/billing/v20180709/billing_models.d.ts +1 -1
- package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +1 -1
- package/tencentcloud/services/cls/v20201016/cls_models.d.ts +50 -15
- package/tencentcloud/services/cme/v20191029/cme_models.d.ts +50 -50
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +29 -0
- package/tencentcloud/services/emr/v20190103/emr_client.d.ts +1 -1
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +104 -66
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +7 -1
- package/tencentcloud/services/ess/v20201111/ess_client.js +8 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +40 -1
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +12 -2
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +13 -1
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +39 -3
- package/tencentcloud/services/ims/v20200713/ims_models.d.ts +1 -1
- package/tencentcloud/services/lcic/v20220817/lcic_models.d.ts +42 -0
- package/tencentcloud/services/live/v20180801/live_models.d.ts +0 -4
- package/tencentcloud/services/mongodb/v20190725/mongodb_client.d.ts +1 -1
- package/tencentcloud/services/mongodb/v20190725/mongodb_client.js +1 -1
- package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +13 -5
- package/tencentcloud/services/organization/v20181225/organization_models.d.ts +20 -20
- package/tencentcloud/services/sqlserver/v20180328/sqlserver_models.d.ts +4 -0
- package/tencentcloud/services/tione/v20191022/tione_models.d.ts +23 -23
- package/tencentcloud/services/trp/v20210515/trp_models.d.ts +10 -0
- package/tencentcloud/services/tse/v20201207/tse_client.d.ts +273 -137
- package/tencentcloud/services/tse/v20201207/tse_client.js +408 -204
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +2693 -546
- package/tencentcloud/services/vm/v20210922/vm_client.d.ts +1 -1
- package/tencentcloud/services/vm/v20210922/vm_client.js +1 -1
- package/tencentcloud/services/vm/v20210922/vm_models.d.ts +2 -2
- package/tencentcloud/services/waf/v20180125/waf_client.d.ts +1 -8
- package/tencentcloud/services/waf/v20180125/waf_client.js +0 -9
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +36 -104
- package/test/ess.v20201111.test.js +10 -0
- package/test/essbasic.v20210526.test.js +10 -0
- package/test/tse.v20201207.test.js +493 -153
- package/test/waf.v20180125.test.js +0 -10
|
@@ -22,43 +22,60 @@ import {
|
|
|
22
22
|
DescribeCloudNativeAPIGatewayResponse,
|
|
23
23
|
CreateCloudNativeAPIGatewayServiceResponse,
|
|
24
24
|
DeleteCloudNativeAPIGatewayPublicNetworkResponse,
|
|
25
|
+
CreateOrUpdateConfigFileAndReleaseRequest,
|
|
25
26
|
DeleteCloudNativeAPIGatewayRouteRateLimitResponse,
|
|
26
27
|
ApolloEnvParam,
|
|
27
28
|
DeleteWafDomainsRequest,
|
|
28
29
|
ServiceWafStatus,
|
|
29
30
|
DescribeCloudNativeAPIGatewayServiceRateLimitRequest,
|
|
30
31
|
CreateCloudNativeAPIGatewayRequest,
|
|
32
|
+
DescribeConfigFileGroupsResponse,
|
|
31
33
|
CloudNativeAPIGatewayStrategyCronScalerConfig,
|
|
34
|
+
ListFilter,
|
|
32
35
|
CloudNativeAPIGatewayStrategyBindingGroupInfo,
|
|
33
|
-
|
|
36
|
+
DescribeCloudNativeAPIGatewayCertificatesRequest,
|
|
34
37
|
DescribeCloudNativeAPIGatewayUpstreamRequest,
|
|
38
|
+
DescribeCloudNativeAPIGatewayNodesRequest,
|
|
35
39
|
DeleteNativeGatewayServerGroupResponse,
|
|
36
40
|
Metadata,
|
|
37
|
-
|
|
41
|
+
Filter,
|
|
38
42
|
ModifyConsoleNetworkRequest,
|
|
39
43
|
CreateCloudNativeAPIGatewayRouteRateLimitResponse,
|
|
40
44
|
DescribeSREInstanceAccessAddressResponse,
|
|
45
|
+
CreateConfigFileRequest,
|
|
41
46
|
ModifyCloudNativeAPIGatewayCanaryRuleResponse,
|
|
47
|
+
DescribeCloudNativeAPIGatewaysResponse,
|
|
48
|
+
CreateGovernanceAliasResponse,
|
|
42
49
|
CloudNativeAPIGatewayNodeConfig,
|
|
50
|
+
DeleteConfigFileGroupResponse,
|
|
43
51
|
DescribeAutoScalerResourceStrategyBindingGroupsRequest,
|
|
44
52
|
CreateNativeGatewayServerGroupRequest,
|
|
45
|
-
|
|
53
|
+
DescribeAllConfigFileTemplatesResponse,
|
|
54
|
+
ConfigFilePublishInfo,
|
|
46
55
|
QpsThreshold,
|
|
47
56
|
ModifyCloudNativeAPIGatewayRouteRateLimitRequest,
|
|
48
57
|
DeleteCloudNativeAPIGatewayResult,
|
|
49
58
|
ListCloudNativeAPIGatewayStrategyResult,
|
|
50
|
-
|
|
59
|
+
DescribeGovernanceAliasesRequest,
|
|
60
|
+
ConfigFileGroupTag,
|
|
51
61
|
CloseWafProtectionRequest,
|
|
52
62
|
ModifyCloudNativeAPIGatewayServiceResponse,
|
|
63
|
+
GovernanceServiceInput,
|
|
64
|
+
ModifyGovernanceAliasRequest,
|
|
53
65
|
DescribeCloudNativeAPIGatewayNodesResponse,
|
|
66
|
+
DescribeConfigFileReleaseVersionsRequest,
|
|
54
67
|
NacosServerInterface,
|
|
55
68
|
CreateCloudNativeAPIGatewayResponse,
|
|
56
69
|
DescribeUpstreamHealthCheckConfigResponse,
|
|
57
|
-
|
|
70
|
+
GovernanceServiceContractVersion,
|
|
71
|
+
ConfigFile,
|
|
72
|
+
GovernanceNamespaceInput,
|
|
73
|
+
DeleteGovernanceServicesResponse,
|
|
58
74
|
KongActiveHealthCheck,
|
|
59
75
|
DescribePublicNetworkResult,
|
|
60
76
|
DeleteCloudNativeAPIGatewayCertificateResponse,
|
|
61
77
|
DeleteCloudNativeAPIGatewayCanaryRuleRequest,
|
|
78
|
+
ModifyNativeGatewayServerGroupResponse,
|
|
62
79
|
GatewayInstanceSchemeAndPorts,
|
|
63
80
|
CreatePublicNetworkResult,
|
|
64
81
|
UpstreamHealthCheckConfig,
|
|
@@ -68,23 +85,29 @@ import {
|
|
|
68
85
|
CloudNativeAPIGatewayBalancedService,
|
|
69
86
|
DescribeZookeeperServerInterfacesRequest,
|
|
70
87
|
ExternalRedis,
|
|
88
|
+
DeleteGovernanceNamespacesResponse,
|
|
71
89
|
ModifyCloudNativeAPIGatewayCertificateRequest,
|
|
72
|
-
|
|
90
|
+
DeleteCloudNativeAPIGatewayServiceRequest,
|
|
73
91
|
CLBMultiRegion,
|
|
74
92
|
SREInstance,
|
|
75
93
|
CreateWafDomainsResponse,
|
|
94
|
+
RateLimitResponse,
|
|
76
95
|
DescribeCloudNativeAPIGatewayServicesRequest,
|
|
77
|
-
|
|
96
|
+
CreateConfigFileResponse,
|
|
78
97
|
DescribeCloudNativeAPIGatewayUpstreamResponse,
|
|
98
|
+
GovernanceInterfaceDescription,
|
|
99
|
+
DescribeGovernanceServiceContractVersionsRequest,
|
|
79
100
|
DeleteAutoScalerResourceStrategyRequest,
|
|
101
|
+
DescribePublicNetworkRequest,
|
|
102
|
+
GovernanceInstance,
|
|
80
103
|
NacosReplica,
|
|
81
104
|
KongUpstreamPreview,
|
|
82
105
|
CreateGovernanceInstancesResponse,
|
|
83
|
-
|
|
106
|
+
CreateGovernanceNamespacesRequest,
|
|
84
107
|
CreateCloudNativeAPIGatewayCanaryRuleResponse,
|
|
85
108
|
DescribeSREInstancesRequest,
|
|
86
109
|
CreateGatewayServiceResult,
|
|
87
|
-
|
|
110
|
+
GovernanceAlias,
|
|
88
111
|
KVPair,
|
|
89
112
|
DeleteEngineResponse,
|
|
90
113
|
DescribeCloudNativeAPIGatewayRoutesResponse,
|
|
@@ -102,40 +125,55 @@ import {
|
|
|
102
125
|
DescribeCloudNativeAPIGatewayPortsResponse,
|
|
103
126
|
CreateCloudNativeAPIGatewayRouteRateLimitRequest,
|
|
104
127
|
DeleteNativeGatewayServerGroupRequest,
|
|
128
|
+
DeleteGovernanceAliasesResponse,
|
|
129
|
+
RollbackConfigFileReleasesResponse,
|
|
130
|
+
ModifyUpstreamNodeStatusRequest,
|
|
105
131
|
ModifyCloudNativeAPIGatewayRouteResponse,
|
|
132
|
+
ConfigFileReleaseHistory,
|
|
133
|
+
OpenWafProtectionResponse,
|
|
106
134
|
DeleteNativeGatewayServerGroupResult,
|
|
107
135
|
ServiceGovernanceInfo,
|
|
108
136
|
DescribeNacosReplicasResponse,
|
|
109
137
|
DeleteCloudNativeAPIGatewayServiceRateLimitRequest,
|
|
110
|
-
|
|
138
|
+
DescribeConfigFileReleasesResponse,
|
|
111
139
|
KongPassiveHealthCheck,
|
|
140
|
+
DescribeCloudNativeAPIGatewayConfigResponse,
|
|
112
141
|
DescribeCloudNativeAPIGatewayRequest,
|
|
142
|
+
VpcInfo,
|
|
113
143
|
CloudNativeAPIGatewayVpcConfig,
|
|
114
144
|
CloudAPIGatewayCanaryRuleList,
|
|
115
|
-
|
|
145
|
+
GovernanceService,
|
|
146
|
+
ModifyCloudNativeAPIGatewayCertificateResponse,
|
|
116
147
|
DescribeGovernanceInstancesResponse,
|
|
117
|
-
|
|
148
|
+
ConfigFileRelease,
|
|
149
|
+
ModifyConfigFilesRequest,
|
|
150
|
+
DeleteGovernanceNamespacesRequest,
|
|
118
151
|
KongRoutePreview,
|
|
119
152
|
KongCertificatesList,
|
|
153
|
+
ModifyGovernanceNamespacesResponse,
|
|
120
154
|
CloudNativeAPIGatewayRateLimitDetail,
|
|
155
|
+
DescribeConfigFileReleaseRequest,
|
|
121
156
|
CreateCloudNativeAPIGatewayRouteResponse,
|
|
122
157
|
DescribeCloudNativeAPIGatewayCanaryRulesResponse,
|
|
123
158
|
DescribeCloudNativeAPIGatewayConfigRequest,
|
|
159
|
+
ModifyConfigFileGroupRequest,
|
|
124
160
|
KongTarget,
|
|
125
|
-
|
|
161
|
+
UnbindAutoScalerResourceStrategyFromGroupsResponse,
|
|
162
|
+
DeleteConfigFilesResponse,
|
|
126
163
|
DescribeCloudNativeAPIGatewaysRequest,
|
|
127
164
|
CreateGovernanceInstancesRequest,
|
|
128
|
-
|
|
165
|
+
ConfigFileReleaseDeletion,
|
|
129
166
|
DescribeCloudNativeAPIGatewayConfigResult,
|
|
130
167
|
KVMapping,
|
|
168
|
+
ModifyConfigFilesResponse,
|
|
131
169
|
BindAutoScalerResourceStrategyToGroupsRequest,
|
|
132
|
-
|
|
170
|
+
ModifyNetworkAccessStrategyResponse,
|
|
133
171
|
DescribeCloudNativeAPIGatewayServiceRateLimitResponse,
|
|
134
|
-
|
|
172
|
+
DeleteCloudNativeAPIGatewayRouteRequest,
|
|
135
173
|
NativeGatewayServerGroups,
|
|
136
174
|
ModifyAutoScalerResourceStrategyResponse,
|
|
137
175
|
CreateCloudNativeAPIGatewayCertificateResponse,
|
|
138
|
-
|
|
176
|
+
GovernanceNamespace,
|
|
139
177
|
EnvInfo,
|
|
140
178
|
CreateCloudNativeAPIGatewayCanaryRuleRequest,
|
|
141
179
|
DescribePublicNetworkResponse,
|
|
@@ -144,15 +182,21 @@ import {
|
|
|
144
182
|
DescribeOneCloudNativeAPIGatewayServiceRequest,
|
|
145
183
|
DescribeInstanceRegionInfo,
|
|
146
184
|
DeleteGovernanceInstancesRequest,
|
|
147
|
-
|
|
185
|
+
DeleteGovernanceInstancesByHostRequest,
|
|
186
|
+
StorageOption,
|
|
187
|
+
DescribeConfigFileResponse,
|
|
188
|
+
RollbackConfigFileReleasesRequest,
|
|
189
|
+
ConfigFileTemplate,
|
|
148
190
|
CloudNativeAPIGatewayStrategy,
|
|
149
|
-
|
|
150
|
-
|
|
191
|
+
DeleteConfigFilesRequest,
|
|
192
|
+
DescribeGovernanceServicesResponse,
|
|
193
|
+
CreateGovernanceServicesRequest,
|
|
194
|
+
CreateGovernanceNamespacesResponse,
|
|
151
195
|
UpdateCloudNativeAPIGatewaySpecRequest,
|
|
152
196
|
DescribeCloudNativeAPIGatewayServicesResponse,
|
|
153
197
|
DeleteCloudNativeAPIGatewayRouteRateLimitRequest,
|
|
154
198
|
AutoScalerBehavior,
|
|
155
|
-
|
|
199
|
+
CreateConfigFileGroupRequest,
|
|
156
200
|
DeleteEngineRequest,
|
|
157
201
|
CreateCloudNativeAPIGatewayPublicNetworkResponse,
|
|
158
202
|
DescribeWafDomainsResponse,
|
|
@@ -161,37 +205,51 @@ import {
|
|
|
161
205
|
DescribeSREInstanceAccessAddressRequest,
|
|
162
206
|
DeleteAutoScalerResourceStrategyResponse,
|
|
163
207
|
AutoScalerPolicy,
|
|
164
|
-
|
|
208
|
+
ModifyConsoleNetworkResponse,
|
|
209
|
+
DescribeConfigFileGroupsRequest,
|
|
165
210
|
DeleteCloudNativeAPIGatewayCertificateRequest,
|
|
166
211
|
NativeGatewayServerGroup,
|
|
167
212
|
DeleteCloudNativeAPIGatewayServiceRateLimitResponse,
|
|
213
|
+
GovernanceServiceContract,
|
|
168
214
|
CloseWafProtectionResponse,
|
|
215
|
+
UpdateUpstreamTargetsResponse,
|
|
169
216
|
UpdateUpstreamHealthCheckConfigRequest,
|
|
170
217
|
CloudNativeAPIGatewayStrategyAutoScalerConfigMetric,
|
|
171
218
|
CloudNativeAPIGatewayNode,
|
|
172
219
|
UpdateCloudNativeAPIGatewaySpecResponse,
|
|
173
220
|
CloudNativeAPIGatewayConfig,
|
|
174
221
|
DescribeZookeeperServerInterfacesResponse,
|
|
175
|
-
|
|
222
|
+
DescribeGovernanceServiceContractsRequest,
|
|
176
223
|
ModifyAutoScalerResourceStrategyRequest,
|
|
177
|
-
|
|
224
|
+
DescribeConfigFileReleaseVersionsResponse,
|
|
225
|
+
KongServiceRouteList,
|
|
226
|
+
DeleteGovernanceAliasesRequest,
|
|
178
227
|
GovernanceInstanceUpdate,
|
|
179
228
|
CertificateInfo,
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
229
|
+
DescribeConfigFilesResponse,
|
|
230
|
+
DescribeConfigFileReleasesRequest,
|
|
231
|
+
DescribeAllConfigFileTemplatesRequest,
|
|
232
|
+
DescribeGovernanceNamespacesResponse,
|
|
233
|
+
KongCertificate,
|
|
183
234
|
DeleteCloudNativeAPIGatewayRequest,
|
|
184
235
|
DeleteCloudNativeAPIGatewayPublicNetworkRequest,
|
|
185
|
-
|
|
236
|
+
DeleteGovernanceInstancesByHostResponse,
|
|
186
237
|
KongUpstreamList,
|
|
238
|
+
DescribeConfigFilesByGroupRequest,
|
|
187
239
|
GovernanceInstanceInput,
|
|
188
|
-
|
|
240
|
+
CreateGovernanceServicesResponse,
|
|
189
241
|
PolarisLimiterAddress,
|
|
242
|
+
EngineAdmin,
|
|
243
|
+
CreateConfigFileGroupResponse,
|
|
244
|
+
ModifyGovernanceNamespacesRequest,
|
|
245
|
+
CreateGovernanceAliasRequest,
|
|
246
|
+
CreateOrUpdateConfigFileAndReleaseResponse,
|
|
190
247
|
DescribeOneCloudNativeAPIGatewayServiceResponse,
|
|
191
248
|
ModifyCloudNativeAPIGatewayServiceRequest,
|
|
192
249
|
DeleteCloudNativeAPIGatewayResponse,
|
|
193
|
-
|
|
250
|
+
DescribeConfigFilesRequest,
|
|
194
251
|
CreateCloudNativeAPIGatewayCertificateRequest,
|
|
252
|
+
DescribeConfigFilesByGroupResponse,
|
|
195
253
|
DescribeWafDomainsRequest,
|
|
196
254
|
DescribeWafProtectionRequest,
|
|
197
255
|
ModifyUpstreamNodeStatusResponse,
|
|
@@ -200,67 +258,95 @@ import {
|
|
|
200
258
|
DescribeGovernanceInstancesRequest,
|
|
201
259
|
DescribeCloudNativeAPIGatewayRouteRateLimitResponse,
|
|
202
260
|
UpdateCloudNativeAPIGatewayResult,
|
|
261
|
+
ModifyGovernanceServicesRequest,
|
|
203
262
|
DescribeCloudNativeAPIGatewayCertificateDetailsResponse,
|
|
263
|
+
DeleteConfigFileGroupRequest,
|
|
204
264
|
DescribeNativeGatewayServerGroupsResponse,
|
|
205
265
|
UpdateEngineInternetAccessRequest,
|
|
206
266
|
InstancePort,
|
|
267
|
+
ModifyCloudNativeAPIGatewayResponse,
|
|
207
268
|
CloudNativeAPIGatewayStrategyCronScalerConfigParam,
|
|
208
269
|
OpenWafProtectionRequest,
|
|
209
|
-
|
|
270
|
+
DeleteGovernanceServicesRequest,
|
|
271
|
+
UnbindAutoScalerResourceStrategyFromGroupsRequest,
|
|
272
|
+
ModifyConfigFileGroupResponse,
|
|
210
273
|
CreateCloudNativeAPIGatewayServiceRateLimitResponse,
|
|
211
|
-
|
|
274
|
+
DescribeNacosServerInterfacesResponse,
|
|
275
|
+
DeleteConfigFileReleasesRequest,
|
|
212
276
|
CreateAutoScalerResourceStrategyRequest,
|
|
213
277
|
InternetConfig,
|
|
214
278
|
DescribeCloudNativeAPIGatewayRoutesRequest,
|
|
215
279
|
CreateEngineResponse,
|
|
280
|
+
NetworkAccessControl,
|
|
216
281
|
ModifyCloudNativeAPIGatewayServiceRateLimitRequest,
|
|
217
|
-
|
|
282
|
+
ModifyNetworkBasicInfoResponse,
|
|
283
|
+
ModifyGovernanceServicesResponse,
|
|
284
|
+
UpdateEngineInternetAccessResponse,
|
|
285
|
+
ConfigFileGroup,
|
|
218
286
|
DescribeCloudNativeAPIGatewayNodesResult,
|
|
219
287
|
CloudNativeAPIGatewayCanaryRule,
|
|
220
288
|
ListCloudNativeAPIGatewayStrategyBindingGroupInfoResult,
|
|
221
289
|
ModifyCloudNativeAPIGatewayServiceRateLimitResponse,
|
|
222
290
|
CloudNativeAPIGatewayStrategyAutoScalerConfig,
|
|
291
|
+
DescribeGovernanceServiceContractsResponse,
|
|
223
292
|
ZookeeperReplica,
|
|
224
293
|
DescribeNacosServerInterfacesRequest,
|
|
225
294
|
CloudNativeAPIGatewayCanaryRuleCondition,
|
|
226
295
|
UpdateUpstreamHealthCheckConfigResponse,
|
|
296
|
+
DescribeNativeGatewayServerGroupsRequest,
|
|
297
|
+
ModifyCloudNativeAPIGatewayRouteRequest,
|
|
298
|
+
DescribeGovernanceNamespacesRequest,
|
|
227
299
|
DescribeSREInstancesResponse,
|
|
300
|
+
PublishConfigFilesResponse,
|
|
228
301
|
ZookeeperServerInterface,
|
|
229
302
|
CreateCloudNativeAPIGatewayServerGroupResult,
|
|
303
|
+
UpdateCloudNativeAPIGatewayCertificateInfoRequest,
|
|
230
304
|
BoundK8SInfo,
|
|
231
305
|
DescribeCloudNativeAPIGatewayCertificateDetailsRequest,
|
|
232
306
|
RouteWafStatus,
|
|
307
|
+
DescribeConfigFileRequest,
|
|
308
|
+
ModifyGovernanceAliasResponse,
|
|
233
309
|
AutoScalerRules,
|
|
234
310
|
CreateWafDomainsRequest,
|
|
235
311
|
KongUpstreamInfo,
|
|
236
312
|
CreateCloudNativeAPIGatewayRouteRequest,
|
|
237
313
|
CreateNativeGatewayServerGroupResponse,
|
|
314
|
+
ReleaseVersion,
|
|
315
|
+
KongServices,
|
|
238
316
|
KongCertificatesPreview,
|
|
239
317
|
CreateCloudNativeAPIGatewayServiceRateLimitRequest,
|
|
318
|
+
DeleteConfigFileReleasesResponse,
|
|
240
319
|
DescribeZookeeperReplicasResponse,
|
|
241
320
|
PolarisCLSTopicInfo,
|
|
321
|
+
DescribeGovernanceServiceContractVersionsResponse,
|
|
242
322
|
ModifyGovernanceInstancesRequest,
|
|
243
323
|
CreateEngineRequest,
|
|
244
324
|
ModifyCloudNativeAPIGatewayCanaryRuleRequest,
|
|
245
|
-
|
|
325
|
+
DescribeGatewayInstancePortResult,
|
|
326
|
+
PublishConfigFilesRequest,
|
|
246
327
|
CreateAutoScalerResourceStrategyResponse,
|
|
247
|
-
|
|
328
|
+
DescribeConfigFileReleaseHistoriesRequest,
|
|
248
329
|
DeleteWafDomainsResponse,
|
|
249
330
|
CreateCloudNativeAPIGatewayResult,
|
|
250
331
|
ModifyCloudNativeAPIGatewayRequest,
|
|
251
332
|
KongServicePreview,
|
|
333
|
+
DescribeCloudNativeAPIGatewayCertificatesResponse,
|
|
252
334
|
ModifyCloudNativeAPIGatewayRouteRateLimitResponse,
|
|
253
|
-
|
|
335
|
+
DescribeConfigFileReleaseHistoriesResponse,
|
|
254
336
|
DescribeCloudNativeAPIGatewayCanaryRulesRequest,
|
|
337
|
+
EnvAddressInfo,
|
|
255
338
|
DeleteCloudNativeAPIGatewayCanaryRuleResponse,
|
|
256
339
|
ModifyGovernanceInstancesResponse,
|
|
257
340
|
DescribeCloudNativeAPIGatewayPortsRequest,
|
|
258
341
|
InstanceTagInfo,
|
|
259
342
|
EngineRegionInfo,
|
|
260
343
|
UpdateCloudNativeAPIGatewayCertificateInfoResponse,
|
|
261
|
-
|
|
344
|
+
ConfigFileTag,
|
|
345
|
+
DescribeGovernanceServicesRequest,
|
|
346
|
+
DescribeConfigFileReleaseResponse,
|
|
262
347
|
DescribeWafProtectionResult,
|
|
263
348
|
KongServiceDetail,
|
|
349
|
+
DescribeGovernanceAliasesResponse,
|
|
264
350
|
} from "./tse_models"
|
|
265
351
|
|
|
266
352
|
/**
|
|
@@ -273,273 +359,293 @@ export class Client extends AbstractClient {
|
|
|
273
359
|
}
|
|
274
360
|
|
|
275
361
|
/**
|
|
276
|
-
*
|
|
362
|
+
* 获取云原生网关服务详情
|
|
277
363
|
*/
|
|
278
|
-
async
|
|
279
|
-
req:
|
|
280
|
-
cb?: (error: string, rep:
|
|
281
|
-
): Promise<
|
|
282
|
-
return this.request("
|
|
364
|
+
async DescribeOneCloudNativeAPIGatewayService(
|
|
365
|
+
req: DescribeOneCloudNativeAPIGatewayServiceRequest,
|
|
366
|
+
cb?: (error: string, rep: DescribeOneCloudNativeAPIGatewayServiceResponse) => void
|
|
367
|
+
): Promise<DescribeOneCloudNativeAPIGatewayServiceResponse> {
|
|
368
|
+
return this.request("DescribeOneCloudNativeAPIGatewayService", req, cb)
|
|
283
369
|
}
|
|
284
370
|
|
|
285
371
|
/**
|
|
286
|
-
*
|
|
372
|
+
* 修改引擎公网访问配置
|
|
287
373
|
*/
|
|
288
|
-
async
|
|
289
|
-
req:
|
|
290
|
-
cb?: (error: string, rep:
|
|
291
|
-
): Promise<
|
|
292
|
-
return this.request("
|
|
374
|
+
async UpdateEngineInternetAccess(
|
|
375
|
+
req: UpdateEngineInternetAccessRequest,
|
|
376
|
+
cb?: (error: string, rep: UpdateEngineInternetAccessResponse) => void
|
|
377
|
+
): Promise<UpdateEngineInternetAccessResponse> {
|
|
378
|
+
return this.request("UpdateEngineInternetAccess", req, cb)
|
|
293
379
|
}
|
|
294
380
|
|
|
295
381
|
/**
|
|
296
|
-
*
|
|
382
|
+
* 查询云原生网关的限流插件(服务)
|
|
297
383
|
*/
|
|
298
|
-
async
|
|
299
|
-
req:
|
|
300
|
-
cb?: (error: string, rep:
|
|
301
|
-
): Promise<
|
|
302
|
-
return this.request("
|
|
384
|
+
async DescribeCloudNativeAPIGatewayServiceRateLimit(
|
|
385
|
+
req: DescribeCloudNativeAPIGatewayServiceRateLimitRequest,
|
|
386
|
+
cb?: (error: string, rep: DescribeCloudNativeAPIGatewayServiceRateLimitResponse) => void
|
|
387
|
+
): Promise<DescribeCloudNativeAPIGatewayServiceRateLimitResponse> {
|
|
388
|
+
return this.request("DescribeCloudNativeAPIGatewayServiceRateLimit", req, cb)
|
|
303
389
|
}
|
|
304
390
|
|
|
305
391
|
/**
|
|
306
|
-
*
|
|
392
|
+
* 删除公网网络配置
|
|
307
393
|
*/
|
|
308
|
-
async
|
|
309
|
-
req:
|
|
310
|
-
cb?: (error: string, rep:
|
|
311
|
-
): Promise<
|
|
312
|
-
return this.request("
|
|
394
|
+
async DeleteCloudNativeAPIGatewayPublicNetwork(
|
|
395
|
+
req: DeleteCloudNativeAPIGatewayPublicNetworkRequest,
|
|
396
|
+
cb?: (error: string, rep: DeleteCloudNativeAPIGatewayPublicNetworkResponse) => void
|
|
397
|
+
): Promise<DeleteCloudNativeAPIGatewayPublicNetworkResponse> {
|
|
398
|
+
return this.request("DeleteCloudNativeAPIGatewayPublicNetwork", req, cb)
|
|
313
399
|
}
|
|
314
400
|
|
|
315
401
|
/**
|
|
316
|
-
*
|
|
402
|
+
* 查询治理中心服务别名列表
|
|
317
403
|
*/
|
|
318
|
-
async
|
|
319
|
-
req:
|
|
320
|
-
cb?: (error: string, rep:
|
|
321
|
-
): Promise<
|
|
322
|
-
return this.request("
|
|
404
|
+
async DescribeGovernanceAliases(
|
|
405
|
+
req: DescribeGovernanceAliasesRequest,
|
|
406
|
+
cb?: (error: string, rep: DescribeGovernanceAliasesResponse) => void
|
|
407
|
+
): Promise<DescribeGovernanceAliasesResponse> {
|
|
408
|
+
return this.request("DescribeGovernanceAliases", req, cb)
|
|
323
409
|
}
|
|
324
410
|
|
|
325
411
|
/**
|
|
326
|
-
*
|
|
412
|
+
* 删除配置文件分组
|
|
327
413
|
*/
|
|
328
|
-
async
|
|
329
|
-
req:
|
|
330
|
-
cb?: (error: string, rep:
|
|
331
|
-
): Promise<
|
|
332
|
-
return this.request("
|
|
414
|
+
async DeleteConfigFileGroup(
|
|
415
|
+
req: DeleteConfigFileGroupRequest,
|
|
416
|
+
cb?: (error: string, rep: DeleteConfigFileGroupResponse) => void
|
|
417
|
+
): Promise<DeleteConfigFileGroupResponse> {
|
|
418
|
+
return this.request("DeleteConfigFileGroup", req, cb)
|
|
333
419
|
}
|
|
334
420
|
|
|
335
421
|
/**
|
|
336
|
-
*
|
|
422
|
+
* 创建服务治理中心配置文件组
|
|
337
423
|
*/
|
|
338
|
-
async
|
|
339
|
-
req:
|
|
340
|
-
cb?: (error: string, rep:
|
|
341
|
-
): Promise<
|
|
342
|
-
return this.request("
|
|
424
|
+
async CreateConfigFileGroup(
|
|
425
|
+
req: CreateConfigFileGroupRequest,
|
|
426
|
+
cb?: (error: string, rep: CreateConfigFileGroupResponse) => void
|
|
427
|
+
): Promise<CreateConfigFileGroupResponse> {
|
|
428
|
+
return this.request("CreateConfigFileGroup", req, cb)
|
|
343
429
|
}
|
|
344
430
|
|
|
345
431
|
/**
|
|
346
|
-
*
|
|
432
|
+
* 删除引擎实例
|
|
347
433
|
*/
|
|
348
|
-
async
|
|
349
|
-
req:
|
|
350
|
-
cb?: (error: string, rep:
|
|
351
|
-
): Promise<
|
|
352
|
-
return this.request("
|
|
434
|
+
async DeleteEngine(
|
|
435
|
+
req: DeleteEngineRequest,
|
|
436
|
+
cb?: (error: string, rep: DeleteEngineResponse) => void
|
|
437
|
+
): Promise<DeleteEngineResponse> {
|
|
438
|
+
return this.request("DeleteEngine", req, cb)
|
|
353
439
|
}
|
|
354
440
|
|
|
355
441
|
/**
|
|
356
|
-
*
|
|
442
|
+
* 修改治理中心服务
|
|
357
443
|
*/
|
|
358
|
-
async
|
|
359
|
-
req:
|
|
360
|
-
cb?: (error: string, rep:
|
|
361
|
-
): Promise<
|
|
362
|
-
return this.request("
|
|
444
|
+
async ModifyGovernanceServices(
|
|
445
|
+
req: ModifyGovernanceServicesRequest,
|
|
446
|
+
cb?: (error: string, rep: ModifyGovernanceServicesResponse) => void
|
|
447
|
+
): Promise<ModifyGovernanceServicesResponse> {
|
|
448
|
+
return this.request("ModifyGovernanceServices", req, cb)
|
|
363
449
|
}
|
|
364
450
|
|
|
365
451
|
/**
|
|
366
|
-
*
|
|
452
|
+
* 获取云原生API网关实例列表
|
|
367
453
|
*/
|
|
368
|
-
async
|
|
369
|
-
req:
|
|
370
|
-
cb?: (error: string, rep:
|
|
371
|
-
): Promise<
|
|
372
|
-
return this.request("
|
|
454
|
+
async DescribeCloudNativeAPIGateways(
|
|
455
|
+
req: DescribeCloudNativeAPIGatewaysRequest,
|
|
456
|
+
cb?: (error: string, rep: DescribeCloudNativeAPIGatewaysResponse) => void
|
|
457
|
+
): Promise<DescribeCloudNativeAPIGatewaysResponse> {
|
|
458
|
+
return this.request("DescribeCloudNativeAPIGateways", req, cb)
|
|
373
459
|
}
|
|
374
460
|
|
|
375
461
|
/**
|
|
376
|
-
*
|
|
462
|
+
* 创建云原生网关证书
|
|
377
463
|
*/
|
|
378
|
-
async
|
|
379
|
-
req:
|
|
380
|
-
cb?: (error: string, rep:
|
|
381
|
-
): Promise<
|
|
382
|
-
return this.request("
|
|
464
|
+
async CreateCloudNativeAPIGatewayCertificate(
|
|
465
|
+
req: CreateCloudNativeAPIGatewayCertificateRequest,
|
|
466
|
+
cb?: (error: string, rep: CreateCloudNativeAPIGatewayCertificateResponse) => void
|
|
467
|
+
): Promise<CreateCloudNativeAPIGatewayCertificateResponse> {
|
|
468
|
+
return this.request("CreateCloudNativeAPIGatewayCertificate", req, cb)
|
|
383
469
|
}
|
|
384
470
|
|
|
385
471
|
/**
|
|
386
|
-
*
|
|
472
|
+
* 查询云原生网关服务列表
|
|
387
473
|
*/
|
|
388
|
-
async
|
|
389
|
-
req:
|
|
390
|
-
cb?: (error: string, rep:
|
|
391
|
-
): Promise<
|
|
392
|
-
return this.request("
|
|
474
|
+
async DescribeCloudNativeAPIGatewayServices(
|
|
475
|
+
req: DescribeCloudNativeAPIGatewayServicesRequest,
|
|
476
|
+
cb?: (error: string, rep: DescribeCloudNativeAPIGatewayServicesResponse) => void
|
|
477
|
+
): Promise<DescribeCloudNativeAPIGatewayServicesResponse> {
|
|
478
|
+
return this.request("DescribeCloudNativeAPIGatewayServices", req, cb)
|
|
393
479
|
}
|
|
394
480
|
|
|
395
481
|
/**
|
|
396
|
-
* 修改云原生网关限流插件(
|
|
482
|
+
* 修改云原生网关限流插件(路由)
|
|
397
483
|
*/
|
|
398
|
-
async
|
|
399
|
-
req:
|
|
400
|
-
cb?: (error: string, rep:
|
|
401
|
-
): Promise<
|
|
402
|
-
return this.request("
|
|
484
|
+
async ModifyCloudNativeAPIGatewayRouteRateLimit(
|
|
485
|
+
req: ModifyCloudNativeAPIGatewayRouteRateLimitRequest,
|
|
486
|
+
cb?: (error: string, rep: ModifyCloudNativeAPIGatewayRouteRateLimitResponse) => void
|
|
487
|
+
): Promise<ModifyCloudNativeAPIGatewayRouteRateLimitResponse> {
|
|
488
|
+
return this.request("ModifyCloudNativeAPIGatewayRouteRateLimit", req, cb)
|
|
403
489
|
}
|
|
404
490
|
|
|
405
491
|
/**
|
|
406
|
-
*
|
|
492
|
+
* 删除治理中心服务别名
|
|
407
493
|
*/
|
|
408
|
-
async
|
|
409
|
-
req:
|
|
410
|
-
cb?: (error: string, rep:
|
|
411
|
-
): Promise<
|
|
412
|
-
return this.request("
|
|
494
|
+
async DeleteGovernanceAliases(
|
|
495
|
+
req: DeleteGovernanceAliasesRequest,
|
|
496
|
+
cb?: (error: string, rep: DeleteGovernanceAliasesResponse) => void
|
|
497
|
+
): Promise<DeleteGovernanceAliasesResponse> {
|
|
498
|
+
return this.request("DeleteGovernanceAliases", req, cb)
|
|
413
499
|
}
|
|
414
500
|
|
|
415
501
|
/**
|
|
416
|
-
*
|
|
502
|
+
* 查询Zookeeper类型注册引擎实例副本信息
|
|
417
503
|
*/
|
|
418
|
-
async
|
|
419
|
-
req:
|
|
420
|
-
cb?: (error: string, rep:
|
|
421
|
-
): Promise<
|
|
422
|
-
return this.request("
|
|
504
|
+
async DescribeZookeeperReplicas(
|
|
505
|
+
req: DescribeZookeeperReplicasRequest,
|
|
506
|
+
cb?: (error: string, rep: DescribeZookeeperReplicasResponse) => void
|
|
507
|
+
): Promise<DescribeZookeeperReplicasResponse> {
|
|
508
|
+
return this.request("DescribeZookeeperReplicas", req, cb)
|
|
423
509
|
}
|
|
424
510
|
|
|
425
511
|
/**
|
|
426
|
-
*
|
|
512
|
+
* 删除服务实例
|
|
427
513
|
*/
|
|
428
|
-
async
|
|
429
|
-
req:
|
|
430
|
-
cb?: (error: string, rep:
|
|
431
|
-
): Promise<
|
|
432
|
-
return this.request("
|
|
514
|
+
async DeleteGovernanceInstances(
|
|
515
|
+
req: DeleteGovernanceInstancesRequest,
|
|
516
|
+
cb?: (error: string, rep: DeleteGovernanceInstancesResponse) => void
|
|
517
|
+
): Promise<DeleteGovernanceInstancesResponse> {
|
|
518
|
+
return this.request("DeleteGovernanceInstances", req, cb)
|
|
433
519
|
}
|
|
434
520
|
|
|
435
521
|
/**
|
|
436
|
-
*
|
|
522
|
+
* 创建云原生网关的灰度规则
|
|
437
523
|
*/
|
|
438
|
-
async
|
|
439
|
-
req:
|
|
440
|
-
cb?: (error: string, rep:
|
|
441
|
-
): Promise<
|
|
442
|
-
return this.request("
|
|
524
|
+
async CreateCloudNativeAPIGatewayCanaryRule(
|
|
525
|
+
req: CreateCloudNativeAPIGatewayCanaryRuleRequest,
|
|
526
|
+
cb?: (error: string, rep: CreateCloudNativeAPIGatewayCanaryRuleResponse) => void
|
|
527
|
+
): Promise<CreateCloudNativeAPIGatewayCanaryRuleResponse> {
|
|
528
|
+
return this.request("CreateCloudNativeAPIGatewayCanaryRule", req, cb)
|
|
443
529
|
}
|
|
444
530
|
|
|
445
531
|
/**
|
|
446
|
-
*
|
|
532
|
+
* 获取 WAF 防护域名
|
|
447
533
|
*/
|
|
448
|
-
async
|
|
449
|
-
req:
|
|
450
|
-
cb?: (error: string, rep:
|
|
451
|
-
): Promise<
|
|
452
|
-
return this.request("
|
|
453
|
-
}
|
|
454
|
-
|
|
534
|
+
async DescribeWafDomains(
|
|
535
|
+
req: DescribeWafDomainsRequest,
|
|
536
|
+
cb?: (error: string, rep: DescribeWafDomainsResponse) => void
|
|
537
|
+
): Promise<DescribeWafDomainsResponse> {
|
|
538
|
+
return this.request("DescribeWafDomains", req, cb)
|
|
539
|
+
}
|
|
540
|
+
|
|
455
541
|
/**
|
|
456
|
-
*
|
|
542
|
+
* 查询云原生网关单个证书详情
|
|
457
543
|
*/
|
|
458
|
-
async
|
|
459
|
-
req:
|
|
460
|
-
cb?: (error: string, rep:
|
|
461
|
-
): Promise<
|
|
462
|
-
return this.request("
|
|
544
|
+
async DescribeCloudNativeAPIGatewayCertificateDetails(
|
|
545
|
+
req: DescribeCloudNativeAPIGatewayCertificateDetailsRequest,
|
|
546
|
+
cb?: (error: string, rep: DescribeCloudNativeAPIGatewayCertificateDetailsResponse) => void
|
|
547
|
+
): Promise<DescribeCloudNativeAPIGatewayCertificateDetailsResponse> {
|
|
548
|
+
return this.request("DescribeCloudNativeAPIGatewayCertificateDetails", req, cb)
|
|
463
549
|
}
|
|
464
550
|
|
|
465
551
|
/**
|
|
466
|
-
*
|
|
552
|
+
* 查看弹性伸缩策略列表
|
|
467
553
|
*/
|
|
468
|
-
async
|
|
469
|
-
req:
|
|
470
|
-
cb?: (error: string, rep:
|
|
471
|
-
): Promise<
|
|
472
|
-
return this.request("
|
|
554
|
+
async DescribeAutoScalerResourceStrategies(
|
|
555
|
+
req: DescribeAutoScalerResourceStrategiesRequest,
|
|
556
|
+
cb?: (error: string, rep: DescribeAutoScalerResourceStrategiesResponse) => void
|
|
557
|
+
): Promise<DescribeAutoScalerResourceStrategiesResponse> {
|
|
558
|
+
return this.request("DescribeAutoScalerResourceStrategies", req, cb)
|
|
473
559
|
}
|
|
474
560
|
|
|
475
561
|
/**
|
|
476
|
-
*
|
|
562
|
+
* 修改云原生API网关实例网络基本信息,例如带宽以及描述,只支持修改客户端公网/内网的信息。
|
|
477
563
|
*/
|
|
478
|
-
async
|
|
479
|
-
req:
|
|
480
|
-
cb?: (error: string, rep:
|
|
481
|
-
): Promise<
|
|
482
|
-
return this.request("
|
|
564
|
+
async ModifyNetworkBasicInfo(
|
|
565
|
+
req: ModifyNetworkBasicInfoRequest,
|
|
566
|
+
cb?: (error: string, rep: ModifyNetworkBasicInfoResponse) => void
|
|
567
|
+
): Promise<ModifyNetworkBasicInfoResponse> {
|
|
568
|
+
return this.request("ModifyNetworkBasicInfo", req, cb)
|
|
483
569
|
}
|
|
484
570
|
|
|
485
571
|
/**
|
|
486
|
-
*
|
|
572
|
+
* 删除云原生网关证书
|
|
487
573
|
*/
|
|
488
|
-
async
|
|
489
|
-
req:
|
|
490
|
-
cb?: (error: string, rep:
|
|
491
|
-
): Promise<
|
|
492
|
-
return this.request("
|
|
574
|
+
async DeleteCloudNativeAPIGatewayCertificate(
|
|
575
|
+
req: DeleteCloudNativeAPIGatewayCertificateRequest,
|
|
576
|
+
cb?: (error: string, rep: DeleteCloudNativeAPIGatewayCertificateResponse) => void
|
|
577
|
+
): Promise<DeleteCloudNativeAPIGatewayCertificateResponse> {
|
|
578
|
+
return this.request("DeleteCloudNativeAPIGatewayCertificate", req, cb)
|
|
493
579
|
}
|
|
494
580
|
|
|
495
581
|
/**
|
|
496
|
-
*
|
|
582
|
+
* 查询服务契约定义列表
|
|
497
583
|
*/
|
|
498
|
-
async
|
|
499
|
-
req:
|
|
500
|
-
cb?: (error: string, rep:
|
|
501
|
-
): Promise<
|
|
502
|
-
return this.request("
|
|
584
|
+
async DescribeGovernanceServiceContracts(
|
|
585
|
+
req: DescribeGovernanceServiceContractsRequest,
|
|
586
|
+
cb?: (error: string, rep: DescribeGovernanceServiceContractsResponse) => void
|
|
587
|
+
): Promise<DescribeGovernanceServiceContractsResponse> {
|
|
588
|
+
return this.request("DescribeGovernanceServiceContracts", req, cb)
|
|
503
589
|
}
|
|
504
590
|
|
|
505
591
|
/**
|
|
506
|
-
*
|
|
592
|
+
* 修改云原生网关证书信息
|
|
507
593
|
*/
|
|
508
|
-
async
|
|
509
|
-
req:
|
|
510
|
-
cb?: (error: string, rep:
|
|
511
|
-
): Promise<
|
|
512
|
-
return this.request("
|
|
594
|
+
async UpdateCloudNativeAPIGatewayCertificateInfo(
|
|
595
|
+
req: UpdateCloudNativeAPIGatewayCertificateInfoRequest,
|
|
596
|
+
cb?: (error: string, rep: UpdateCloudNativeAPIGatewayCertificateInfoResponse) => void
|
|
597
|
+
): Promise<UpdateCloudNativeAPIGatewayCertificateInfoResponse> {
|
|
598
|
+
return this.request("UpdateCloudNativeAPIGatewayCertificateInfo", req, cb)
|
|
513
599
|
}
|
|
514
600
|
|
|
515
601
|
/**
|
|
516
|
-
*
|
|
602
|
+
* 获取全量配置文件模板列表
|
|
517
603
|
*/
|
|
518
|
-
async
|
|
519
|
-
req:
|
|
520
|
-
cb?: (error: string, rep:
|
|
521
|
-
): Promise<
|
|
522
|
-
return this.request("
|
|
604
|
+
async DescribeAllConfigFileTemplates(
|
|
605
|
+
req: DescribeAllConfigFileTemplatesRequest,
|
|
606
|
+
cb?: (error: string, rep: DescribeAllConfigFileTemplatesResponse) => void
|
|
607
|
+
): Promise<DescribeAllConfigFileTemplatesResponse> {
|
|
608
|
+
return this.request("DescribeAllConfigFileTemplates", req, cb)
|
|
523
609
|
}
|
|
524
610
|
|
|
525
611
|
/**
|
|
526
|
-
*
|
|
612
|
+
* 创建云原生网关引擎分组
|
|
527
613
|
*/
|
|
528
|
-
async
|
|
529
|
-
req:
|
|
530
|
-
cb?: (error: string, rep:
|
|
531
|
-
): Promise<
|
|
532
|
-
return this.request("
|
|
614
|
+
async CreateNativeGatewayServerGroup(
|
|
615
|
+
req: CreateNativeGatewayServerGroupRequest,
|
|
616
|
+
cb?: (error: string, rep: CreateNativeGatewayServerGroupResponse) => void
|
|
617
|
+
): Promise<CreateNativeGatewayServerGroupResponse> {
|
|
618
|
+
return this.request("CreateNativeGatewayServerGroup", req, cb)
|
|
533
619
|
}
|
|
534
620
|
|
|
535
621
|
/**
|
|
536
|
-
*
|
|
622
|
+
* 删除云原生网关的限流插件(服务)
|
|
537
623
|
*/
|
|
538
|
-
async
|
|
539
|
-
req:
|
|
540
|
-
cb?: (error: string, rep:
|
|
541
|
-
): Promise<
|
|
542
|
-
return this.request("
|
|
624
|
+
async DeleteCloudNativeAPIGatewayServiceRateLimit(
|
|
625
|
+
req: DeleteCloudNativeAPIGatewayServiceRateLimitRequest,
|
|
626
|
+
cb?: (error: string, rep: DeleteCloudNativeAPIGatewayServiceRateLimitResponse) => void
|
|
627
|
+
): Promise<DeleteCloudNativeAPIGatewayServiceRateLimitResponse> {
|
|
628
|
+
return this.request("DeleteCloudNativeAPIGatewayServiceRateLimit", req, cb)
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
/**
|
|
632
|
+
* 查询zookeeper服务接口列表
|
|
633
|
+
*/
|
|
634
|
+
async DescribeZookeeperServerInterfaces(
|
|
635
|
+
req: DescribeZookeeperServerInterfacesRequest,
|
|
636
|
+
cb?: (error: string, rep: DescribeZookeeperServerInterfacesResponse) => void
|
|
637
|
+
): Promise<DescribeZookeeperServerInterfacesResponse> {
|
|
638
|
+
return this.request("DescribeZookeeperServerInterfaces", req, cb)
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
/**
|
|
642
|
+
* 删除配置文件
|
|
643
|
+
*/
|
|
644
|
+
async DeleteConfigFiles(
|
|
645
|
+
req: DeleteConfigFilesRequest,
|
|
646
|
+
cb?: (error: string, rep: DeleteConfigFilesResponse) => void
|
|
647
|
+
): Promise<DeleteConfigFilesResponse> {
|
|
648
|
+
return this.request("DeleteConfigFiles", req, cb)
|
|
543
649
|
}
|
|
544
650
|
|
|
545
651
|
/**
|
|
@@ -563,73 +669,73 @@ export class Client extends AbstractClient {
|
|
|
563
669
|
}
|
|
564
670
|
|
|
565
671
|
/**
|
|
566
|
-
*
|
|
672
|
+
* 发布配置文件
|
|
567
673
|
*/
|
|
568
|
-
async
|
|
569
|
-
req:
|
|
570
|
-
cb?: (error: string, rep:
|
|
571
|
-
): Promise<
|
|
572
|
-
return this.request("
|
|
674
|
+
async PublishConfigFiles(
|
|
675
|
+
req: PublishConfigFilesRequest,
|
|
676
|
+
cb?: (error: string, rep: PublishConfigFilesResponse) => void
|
|
677
|
+
): Promise<PublishConfigFilesResponse> {
|
|
678
|
+
return this.request("PublishConfigFiles", req, cb)
|
|
573
679
|
}
|
|
574
680
|
|
|
575
681
|
/**
|
|
576
|
-
*
|
|
682
|
+
* 根据命名空间、组、名字查找配置文件
|
|
577
683
|
*/
|
|
578
|
-
async
|
|
579
|
-
req:
|
|
580
|
-
cb?: (error: string, rep:
|
|
581
|
-
): Promise<
|
|
582
|
-
return this.request("
|
|
684
|
+
async DescribeConfigFile(
|
|
685
|
+
req: DescribeConfigFileRequest,
|
|
686
|
+
cb?: (error: string, rep: DescribeConfigFileResponse) => void
|
|
687
|
+
): Promise<DescribeConfigFileResponse> {
|
|
688
|
+
return this.request("DescribeConfigFile", req, cb)
|
|
583
689
|
}
|
|
584
690
|
|
|
585
691
|
/**
|
|
586
|
-
*
|
|
692
|
+
* 查询配置版本列表
|
|
587
693
|
*/
|
|
588
|
-
async
|
|
589
|
-
req:
|
|
590
|
-
cb?: (error: string, rep:
|
|
591
|
-
): Promise<
|
|
592
|
-
return this.request("
|
|
694
|
+
async DescribeConfigFileReleases(
|
|
695
|
+
req: DescribeConfigFileReleasesRequest,
|
|
696
|
+
cb?: (error: string, rep: DescribeConfigFileReleasesResponse) => void
|
|
697
|
+
): Promise<DescribeConfigFileReleasesResponse> {
|
|
698
|
+
return this.request("DescribeConfigFileReleases", req, cb)
|
|
593
699
|
}
|
|
594
700
|
|
|
595
701
|
/**
|
|
596
|
-
*
|
|
702
|
+
* 关闭 WAF 防护
|
|
597
703
|
*/
|
|
598
|
-
async
|
|
599
|
-
req:
|
|
600
|
-
cb?: (error: string, rep:
|
|
601
|
-
): Promise<
|
|
602
|
-
return this.request("
|
|
704
|
+
async CloseWafProtection(
|
|
705
|
+
req: CloseWafProtectionRequest,
|
|
706
|
+
cb?: (error: string, rep: CloseWafProtectionResponse) => void
|
|
707
|
+
): Promise<CloseWafProtectionResponse> {
|
|
708
|
+
return this.request("CloseWafProtection", req, cb)
|
|
603
709
|
}
|
|
604
710
|
|
|
605
711
|
/**
|
|
606
|
-
*
|
|
712
|
+
* 创建云原生API网关实例
|
|
607
713
|
*/
|
|
608
|
-
async
|
|
609
|
-
req:
|
|
610
|
-
cb?: (error: string, rep:
|
|
611
|
-
): Promise<
|
|
612
|
-
return this.request("
|
|
714
|
+
async CreateCloudNativeAPIGateway(
|
|
715
|
+
req: CreateCloudNativeAPIGatewayRequest,
|
|
716
|
+
cb?: (error: string, rep: CreateCloudNativeAPIGatewayResponse) => void
|
|
717
|
+
): Promise<CreateCloudNativeAPIGatewayResponse> {
|
|
718
|
+
return this.request("CreateCloudNativeAPIGateway", req, cb)
|
|
613
719
|
}
|
|
614
720
|
|
|
615
721
|
/**
|
|
616
|
-
*
|
|
722
|
+
* 查询云原生网关的限流插件(路由)
|
|
617
723
|
*/
|
|
618
|
-
async
|
|
619
|
-
req:
|
|
620
|
-
cb?: (error: string, rep:
|
|
621
|
-
): Promise<
|
|
622
|
-
return this.request("
|
|
724
|
+
async DescribeCloudNativeAPIGatewayRouteRateLimit(
|
|
725
|
+
req: DescribeCloudNativeAPIGatewayRouteRateLimitRequest,
|
|
726
|
+
cb?: (error: string, rep: DescribeCloudNativeAPIGatewayRouteRateLimitResponse) => void
|
|
727
|
+
): Promise<DescribeCloudNativeAPIGatewayRouteRateLimitResponse> {
|
|
728
|
+
return this.request("DescribeCloudNativeAPIGatewayRouteRateLimit", req, cb)
|
|
623
729
|
}
|
|
624
730
|
|
|
625
731
|
/**
|
|
626
|
-
*
|
|
732
|
+
* 修改云原生网关服务
|
|
627
733
|
*/
|
|
628
|
-
async
|
|
629
|
-
req:
|
|
630
|
-
cb?: (error: string, rep:
|
|
631
|
-
): Promise<
|
|
632
|
-
return this.request("
|
|
734
|
+
async ModifyCloudNativeAPIGatewayService(
|
|
735
|
+
req: ModifyCloudNativeAPIGatewayServiceRequest,
|
|
736
|
+
cb?: (error: string, rep: ModifyCloudNativeAPIGatewayServiceResponse) => void
|
|
737
|
+
): Promise<ModifyCloudNativeAPIGatewayServiceResponse> {
|
|
738
|
+
return this.request("ModifyCloudNativeAPIGatewayService", req, cb)
|
|
633
739
|
}
|
|
634
740
|
|
|
635
741
|
/**
|
|
@@ -643,103 +749,243 @@ export class Client extends AbstractClient {
|
|
|
643
749
|
}
|
|
644
750
|
|
|
645
751
|
/**
|
|
646
|
-
*
|
|
752
|
+
* 获取配置文件发布
|
|
647
753
|
*/
|
|
648
|
-
async
|
|
649
|
-
req:
|
|
650
|
-
cb?: (error: string, rep:
|
|
651
|
-
): Promise<
|
|
652
|
-
return this.request("
|
|
754
|
+
async DescribeConfigFileRelease(
|
|
755
|
+
req: DescribeConfigFileReleaseRequest,
|
|
756
|
+
cb?: (error: string, rep: DescribeConfigFileReleaseResponse) => void
|
|
757
|
+
): Promise<DescribeConfigFileReleaseResponse> {
|
|
758
|
+
return this.request("DescribeConfigFileRelease", req, cb)
|
|
653
759
|
}
|
|
654
760
|
|
|
655
761
|
/**
|
|
656
|
-
*
|
|
762
|
+
* 查询服务治理中心命名空间列表
|
|
657
763
|
*/
|
|
658
|
-
async
|
|
659
|
-
req:
|
|
660
|
-
cb?: (error: string, rep:
|
|
661
|
-
): Promise<
|
|
662
|
-
return this.request("
|
|
764
|
+
async DescribeGovernanceNamespaces(
|
|
765
|
+
req: DescribeGovernanceNamespacesRequest,
|
|
766
|
+
cb?: (error: string, rep: DescribeGovernanceNamespacesResponse) => void
|
|
767
|
+
): Promise<DescribeGovernanceNamespacesResponse> {
|
|
768
|
+
return this.request("DescribeGovernanceNamespaces", req, cb)
|
|
663
769
|
}
|
|
664
770
|
|
|
665
771
|
/**
|
|
666
|
-
*
|
|
772
|
+
* 更新网关上游实例列表,仅支持IPList服务类型
|
|
667
773
|
*/
|
|
668
|
-
async
|
|
669
|
-
req:
|
|
670
|
-
cb?: (error: string, rep:
|
|
671
|
-
): Promise<
|
|
672
|
-
return this.request("
|
|
774
|
+
async UpdateUpstreamTargets(
|
|
775
|
+
req: UpdateUpstreamTargetsRequest,
|
|
776
|
+
cb?: (error: string, rep: UpdateUpstreamTargetsResponse) => void
|
|
777
|
+
): Promise<UpdateUpstreamTargetsResponse> {
|
|
778
|
+
return this.request("UpdateUpstreamTargets", req, cb)
|
|
673
779
|
}
|
|
674
780
|
|
|
675
781
|
/**
|
|
676
|
-
*
|
|
782
|
+
* 创建云原生网关路由
|
|
677
783
|
*/
|
|
678
|
-
async
|
|
679
|
-
req:
|
|
680
|
-
cb?: (error: string, rep:
|
|
681
|
-
): Promise<
|
|
682
|
-
return this.request("
|
|
784
|
+
async CreateCloudNativeAPIGatewayRoute(
|
|
785
|
+
req: CreateCloudNativeAPIGatewayRouteRequest,
|
|
786
|
+
cb?: (error: string, rep: CreateCloudNativeAPIGatewayRouteResponse) => void
|
|
787
|
+
): Promise<CreateCloudNativeAPIGatewayRouteResponse> {
|
|
788
|
+
return this.request("CreateCloudNativeAPIGatewayRoute", req, cb)
|
|
683
789
|
}
|
|
684
790
|
|
|
685
791
|
/**
|
|
686
|
-
*
|
|
792
|
+
* 创建服务实例
|
|
687
793
|
*/
|
|
688
|
-
async
|
|
689
|
-
req:
|
|
690
|
-
cb?: (error: string, rep:
|
|
691
|
-
): Promise<
|
|
692
|
-
return this.request("
|
|
794
|
+
async CreateGovernanceInstances(
|
|
795
|
+
req: CreateGovernanceInstancesRequest,
|
|
796
|
+
cb?: (error: string, rep: CreateGovernanceInstancesResponse) => void
|
|
797
|
+
): Promise<CreateGovernanceInstancesResponse> {
|
|
798
|
+
return this.request("CreateGovernanceInstances", req, cb)
|
|
693
799
|
}
|
|
694
800
|
|
|
695
801
|
/**
|
|
696
|
-
*
|
|
802
|
+
* 删除云原生网关的限流插件(路由)
|
|
697
803
|
*/
|
|
698
|
-
async
|
|
699
|
-
req:
|
|
700
|
-
cb?: (error: string, rep:
|
|
701
|
-
): Promise<
|
|
702
|
-
return this.request("
|
|
804
|
+
async DeleteCloudNativeAPIGatewayRouteRateLimit(
|
|
805
|
+
req: DeleteCloudNativeAPIGatewayRouteRateLimitRequest,
|
|
806
|
+
cb?: (error: string, rep: DeleteCloudNativeAPIGatewayRouteRateLimitResponse) => void
|
|
807
|
+
): Promise<DeleteCloudNativeAPIGatewayRouteRateLimitResponse> {
|
|
808
|
+
return this.request("DeleteCloudNativeAPIGatewayRouteRateLimit", req, cb)
|
|
703
809
|
}
|
|
704
810
|
|
|
705
811
|
/**
|
|
706
|
-
*
|
|
812
|
+
* 删除配置发布
|
|
707
813
|
*/
|
|
708
|
-
async
|
|
709
|
-
req:
|
|
710
|
-
cb?: (error: string, rep:
|
|
711
|
-
): Promise<
|
|
712
|
-
return this.request("
|
|
814
|
+
async DeleteConfigFileReleases(
|
|
815
|
+
req: DeleteConfigFileReleasesRequest,
|
|
816
|
+
cb?: (error: string, rep: DeleteConfigFileReleasesResponse) => void
|
|
817
|
+
): Promise<DeleteConfigFileReleasesResponse> {
|
|
818
|
+
return this.request("DeleteConfigFileReleases", req, cb)
|
|
713
819
|
}
|
|
714
820
|
|
|
715
821
|
/**
|
|
716
|
-
*
|
|
822
|
+
* 删除弹性伸缩策略
|
|
717
823
|
*/
|
|
718
|
-
async
|
|
719
|
-
req:
|
|
720
|
-
cb?: (error: string, rep:
|
|
721
|
-
): Promise<
|
|
722
|
-
return this.request("
|
|
723
|
-
}
|
|
824
|
+
async DeleteAutoScalerResourceStrategy(
|
|
825
|
+
req: DeleteAutoScalerResourceStrategyRequest,
|
|
826
|
+
cb?: (error: string, rep: DeleteAutoScalerResourceStrategyResponse) => void
|
|
827
|
+
): Promise<DeleteAutoScalerResourceStrategyResponse> {
|
|
828
|
+
return this.request("DeleteAutoScalerResourceStrategy", req, cb)
|
|
829
|
+
}
|
|
724
830
|
|
|
725
831
|
/**
|
|
726
|
-
*
|
|
832
|
+
* 修改云原生网关路由
|
|
727
833
|
*/
|
|
728
|
-
async
|
|
729
|
-
req:
|
|
730
|
-
cb?: (error: string, rep:
|
|
731
|
-
): Promise<
|
|
732
|
-
return this.request("
|
|
834
|
+
async ModifyCloudNativeAPIGatewayRoute(
|
|
835
|
+
req: ModifyCloudNativeAPIGatewayRouteRequest,
|
|
836
|
+
cb?: (error: string, rep: ModifyCloudNativeAPIGatewayRouteResponse) => void
|
|
837
|
+
): Promise<ModifyCloudNativeAPIGatewayRouteResponse> {
|
|
838
|
+
return this.request("ModifyCloudNativeAPIGatewayRoute", req, cb)
|
|
733
839
|
}
|
|
734
840
|
|
|
735
841
|
/**
|
|
736
|
-
*
|
|
842
|
+
* 删除网关实例分组
|
|
737
843
|
*/
|
|
738
|
-
async
|
|
739
|
-
req:
|
|
740
|
-
cb?: (error: string, rep:
|
|
741
|
-
): Promise<
|
|
742
|
-
return this.request("
|
|
844
|
+
async DeleteNativeGatewayServerGroup(
|
|
845
|
+
req: DeleteNativeGatewayServerGroupRequest,
|
|
846
|
+
cb?: (error: string, rep: DeleteNativeGatewayServerGroupResponse) => void
|
|
847
|
+
): Promise<DeleteNativeGatewayServerGroupResponse> {
|
|
848
|
+
return this.request("DeleteNativeGatewayServerGroup", req, cb)
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
/**
|
|
852
|
+
* 获取云原生API网关实例端口信息
|
|
853
|
+
*/
|
|
854
|
+
async DescribeCloudNativeAPIGatewayPorts(
|
|
855
|
+
req: DescribeCloudNativeAPIGatewayPortsRequest,
|
|
856
|
+
cb?: (error: string, rep: DescribeCloudNativeAPIGatewayPortsResponse) => void
|
|
857
|
+
): Promise<DescribeCloudNativeAPIGatewayPortsResponse> {
|
|
858
|
+
return this.request("DescribeCloudNativeAPIGatewayPorts", req, cb)
|
|
859
|
+
}
|
|
860
|
+
|
|
861
|
+
/**
|
|
862
|
+
* 查询云原生网关灰度规则列表
|
|
863
|
+
*/
|
|
864
|
+
async DescribeCloudNativeAPIGatewayCanaryRules(
|
|
865
|
+
req: DescribeCloudNativeAPIGatewayCanaryRulesRequest,
|
|
866
|
+
cb?: (error: string, rep: DescribeCloudNativeAPIGatewayCanaryRulesResponse) => void
|
|
867
|
+
): Promise<DescribeCloudNativeAPIGatewayCanaryRulesResponse> {
|
|
868
|
+
return this.request("DescribeCloudNativeAPIGatewayCanaryRules", req, cb)
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
/**
|
|
872
|
+
* 查询引擎实例访问地址
|
|
873
|
+
*/
|
|
874
|
+
async DescribeSREInstanceAccessAddress(
|
|
875
|
+
req: DescribeSREInstanceAccessAddressRequest,
|
|
876
|
+
cb?: (error: string, rep: DescribeSREInstanceAccessAddressResponse) => void
|
|
877
|
+
): Promise<DescribeSREInstanceAccessAddressResponse> {
|
|
878
|
+
return this.request("DescribeSREInstanceAccessAddress", req, cb)
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
/**
|
|
882
|
+
* 修改网关实例Konga网络配置
|
|
883
|
+
*/
|
|
884
|
+
async ModifyConsoleNetwork(
|
|
885
|
+
req: ModifyConsoleNetworkRequest,
|
|
886
|
+
cb?: (error: string, rep: ModifyConsoleNetworkResponse) => void
|
|
887
|
+
): Promise<ModifyConsoleNetworkResponse> {
|
|
888
|
+
return this.request("ModifyConsoleNetwork", req, cb)
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
/**
|
|
892
|
+
* 查询Nacos类型引擎实例副本信息
|
|
893
|
+
*/
|
|
894
|
+
async DescribeNacosReplicas(
|
|
895
|
+
req: DescribeNacosReplicasRequest,
|
|
896
|
+
cb?: (error: string, rep: DescribeNacosReplicasResponse) => void
|
|
897
|
+
): Promise<DescribeNacosReplicasResponse> {
|
|
898
|
+
return this.request("DescribeNacosReplicas", req, cb)
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
/**
|
|
902
|
+
* 获取云原生网关服务健康检查配置
|
|
903
|
+
*/
|
|
904
|
+
async DescribeUpstreamHealthCheckConfig(
|
|
905
|
+
req: DescribeUpstreamHealthCheckConfigRequest,
|
|
906
|
+
cb?: (error: string, rep: DescribeUpstreamHealthCheckConfigResponse) => void
|
|
907
|
+
): Promise<DescribeUpstreamHealthCheckConfigResponse> {
|
|
908
|
+
return this.request("DescribeUpstreamHealthCheckConfig", req, cb)
|
|
909
|
+
}
|
|
910
|
+
|
|
911
|
+
/**
|
|
912
|
+
* 修改云原生API网关实例分组基础信息
|
|
913
|
+
*/
|
|
914
|
+
async ModifyNativeGatewayServerGroup(
|
|
915
|
+
req: ModifyNativeGatewayServerGroupRequest,
|
|
916
|
+
cb?: (error: string, rep: ModifyNativeGatewayServerGroupResponse) => void
|
|
917
|
+
): Promise<ModifyNativeGatewayServerGroupResponse> {
|
|
918
|
+
return this.request("ModifyNativeGatewayServerGroup", req, cb)
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
/**
|
|
922
|
+
* 查询云原生网关证书列表
|
|
923
|
+
*/
|
|
924
|
+
async DescribeCloudNativeAPIGatewayCertificates(
|
|
925
|
+
req: DescribeCloudNativeAPIGatewayCertificatesRequest,
|
|
926
|
+
cb?: (error: string, rep: DescribeCloudNativeAPIGatewayCertificatesResponse) => void
|
|
927
|
+
): Promise<DescribeCloudNativeAPIGatewayCertificatesResponse> {
|
|
928
|
+
return this.request("DescribeCloudNativeAPIGatewayCertificates", req, cb)
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
/**
|
|
932
|
+
* 修改云原生网关限流插件(服务)
|
|
933
|
+
*/
|
|
934
|
+
async ModifyCloudNativeAPIGatewayServiceRateLimit(
|
|
935
|
+
req: ModifyCloudNativeAPIGatewayServiceRateLimitRequest,
|
|
936
|
+
cb?: (error: string, rep: ModifyCloudNativeAPIGatewayServiceRateLimitResponse) => void
|
|
937
|
+
): Promise<ModifyCloudNativeAPIGatewayServiceRateLimitResponse> {
|
|
938
|
+
return this.request("ModifyCloudNativeAPIGatewayServiceRateLimit", req, cb)
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
/**
|
|
942
|
+
* 删除治理中心服务
|
|
943
|
+
*/
|
|
944
|
+
async DeleteGovernanceServices(
|
|
945
|
+
req: DeleteGovernanceServicesRequest,
|
|
946
|
+
cb?: (error: string, rep: DeleteGovernanceServicesResponse) => void
|
|
947
|
+
): Promise<DeleteGovernanceServicesResponse> {
|
|
948
|
+
return this.request("DeleteGovernanceServices", req, cb)
|
|
949
|
+
}
|
|
950
|
+
|
|
951
|
+
/**
|
|
952
|
+
* 创建治理中心服务别名
|
|
953
|
+
*/
|
|
954
|
+
async CreateGovernanceAlias(
|
|
955
|
+
req: CreateGovernanceAliasRequest,
|
|
956
|
+
cb?: (error: string, rep: CreateGovernanceAliasResponse) => void
|
|
957
|
+
): Promise<CreateGovernanceAliasResponse> {
|
|
958
|
+
return this.request("CreateGovernanceAlias", req, cb)
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
/**
|
|
962
|
+
* 查询服务实例
|
|
963
|
+
*/
|
|
964
|
+
async DescribeGovernanceInstances(
|
|
965
|
+
req: DescribeGovernanceInstancesRequest,
|
|
966
|
+
cb?: (error: string, rep: DescribeGovernanceInstancesResponse) => void
|
|
967
|
+
): Promise<DescribeGovernanceInstancesResponse> {
|
|
968
|
+
return this.request("DescribeGovernanceInstances", req, cb)
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
/**
|
|
972
|
+
* 查询治理中心服务列表
|
|
973
|
+
*/
|
|
974
|
+
async DescribeGovernanceServices(
|
|
975
|
+
req: DescribeGovernanceServicesRequest,
|
|
976
|
+
cb?: (error: string, rep: DescribeGovernanceServicesResponse) => void
|
|
977
|
+
): Promise<DescribeGovernanceServicesResponse> {
|
|
978
|
+
return this.request("DescribeGovernanceServices", req, cb)
|
|
979
|
+
}
|
|
980
|
+
|
|
981
|
+
/**
|
|
982
|
+
* 删除云原生网关的灰度规则
|
|
983
|
+
*/
|
|
984
|
+
async DeleteCloudNativeAPIGatewayCanaryRule(
|
|
985
|
+
req: DeleteCloudNativeAPIGatewayCanaryRuleRequest,
|
|
986
|
+
cb?: (error: string, rep: DeleteCloudNativeAPIGatewayCanaryRuleResponse) => void
|
|
987
|
+
): Promise<DeleteCloudNativeAPIGatewayCanaryRuleResponse> {
|
|
988
|
+
return this.request("DeleteCloudNativeAPIGatewayCanaryRule", req, cb)
|
|
743
989
|
}
|
|
744
990
|
|
|
745
991
|
/**
|
|
@@ -753,292 +999,472 @@ export class Client extends AbstractClient {
|
|
|
753
999
|
}
|
|
754
1000
|
|
|
755
1001
|
/**
|
|
756
|
-
*
|
|
1002
|
+
* 弹性伸缩策略批量解绑网关分组
|
|
757
1003
|
*/
|
|
758
|
-
async
|
|
759
|
-
req:
|
|
760
|
-
cb?: (error: string, rep:
|
|
761
|
-
): Promise<
|
|
762
|
-
return this.request("
|
|
1004
|
+
async UnbindAutoScalerResourceStrategyFromGroups(
|
|
1005
|
+
req: UnbindAutoScalerResourceStrategyFromGroupsRequest,
|
|
1006
|
+
cb?: (error: string, rep: UnbindAutoScalerResourceStrategyFromGroupsResponse) => void
|
|
1007
|
+
): Promise<UnbindAutoScalerResourceStrategyFromGroupsResponse> {
|
|
1008
|
+
return this.request("UnbindAutoScalerResourceStrategyFromGroups", req, cb)
|
|
763
1009
|
}
|
|
764
1010
|
|
|
765
1011
|
/**
|
|
766
|
-
*
|
|
1012
|
+
* 查询某个配置所有版本信息
|
|
767
1013
|
*/
|
|
768
|
-
async
|
|
769
|
-
req:
|
|
770
|
-
cb?: (error: string, rep:
|
|
771
|
-
): Promise<
|
|
772
|
-
return this.request("
|
|
1014
|
+
async DescribeConfigFileReleaseVersions(
|
|
1015
|
+
req: DescribeConfigFileReleaseVersionsRequest,
|
|
1016
|
+
cb?: (error: string, rep: DescribeConfigFileReleaseVersionsResponse) => void
|
|
1017
|
+
): Promise<DescribeConfigFileReleaseVersionsResponse> {
|
|
1018
|
+
return this.request("DescribeConfigFileReleaseVersions", req, cb)
|
|
773
1019
|
}
|
|
774
1020
|
|
|
775
1021
|
/**
|
|
776
|
-
*
|
|
1022
|
+
* 用于查询引擎实例列表
|
|
777
1023
|
*/
|
|
778
|
-
async
|
|
779
|
-
req:
|
|
780
|
-
cb?: (error: string, rep:
|
|
781
|
-
): Promise<
|
|
782
|
-
return this.request("
|
|
1024
|
+
async DescribeSREInstances(
|
|
1025
|
+
req: DescribeSREInstancesRequest,
|
|
1026
|
+
cb?: (error: string, rep: DescribeSREInstancesResponse) => void
|
|
1027
|
+
): Promise<DescribeSREInstancesResponse> {
|
|
1028
|
+
return this.request("DescribeSREInstances", req, cb)
|
|
783
1029
|
}
|
|
784
1030
|
|
|
785
1031
|
/**
|
|
786
|
-
*
|
|
1032
|
+
* 根据group查询配置文件列表
|
|
1033
|
+
*/
|
|
1034
|
+
async DescribeConfigFilesByGroup(
|
|
1035
|
+
req: DescribeConfigFilesByGroupRequest,
|
|
1036
|
+
cb?: (error: string, rep: DescribeConfigFilesByGroupResponse) => void
|
|
1037
|
+
): Promise<DescribeConfigFilesByGroupResponse> {
|
|
1038
|
+
return this.request("DescribeConfigFilesByGroup", req, cb)
|
|
1039
|
+
}
|
|
1040
|
+
|
|
1041
|
+
/**
|
|
1042
|
+
* 获取 WAF 防护状态
|
|
1043
|
+
*/
|
|
1044
|
+
async DescribeWafProtection(
|
|
1045
|
+
req: DescribeWafProtectionRequest,
|
|
1046
|
+
cb?: (error: string, rep: DescribeWafProtectionResponse) => void
|
|
1047
|
+
): Promise<DescribeWafProtectionResponse> {
|
|
1048
|
+
return this.request("DescribeWafProtection", req, cb)
|
|
1049
|
+
}
|
|
1050
|
+
|
|
1051
|
+
/**
|
|
1052
|
+
* 获取云原生API网关实例网络配置信息
|
|
1053
|
+
*/
|
|
1054
|
+
async DescribeCloudNativeAPIGatewayConfig(
|
|
1055
|
+
req: DescribeCloudNativeAPIGatewayConfigRequest,
|
|
1056
|
+
cb?: (error: string, rep: DescribeCloudNativeAPIGatewayConfigResponse) => void
|
|
1057
|
+
): Promise<DescribeCloudNativeAPIGatewayConfigResponse> {
|
|
1058
|
+
return this.request("DescribeCloudNativeAPIGatewayConfig", req, cb)
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
/**
|
|
1062
|
+
* 创建治理中心命名空间
|
|
1063
|
+
*/
|
|
1064
|
+
async CreateGovernanceNamespaces(
|
|
1065
|
+
req: CreateGovernanceNamespacesRequest,
|
|
1066
|
+
cb?: (error: string, rep: CreateGovernanceNamespacesResponse) => void
|
|
1067
|
+
): Promise<CreateGovernanceNamespacesResponse> {
|
|
1068
|
+
return this.request("CreateGovernanceNamespaces", req, cb)
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
/**
|
|
1072
|
+
* 查询服务下契约版本列表
|
|
1073
|
+
*/
|
|
1074
|
+
async DescribeGovernanceServiceContractVersions(
|
|
1075
|
+
req: DescribeGovernanceServiceContractVersionsRequest,
|
|
1076
|
+
cb?: (error: string, rep: DescribeGovernanceServiceContractVersionsResponse) => void
|
|
1077
|
+
): Promise<DescribeGovernanceServiceContractVersionsResponse> {
|
|
1078
|
+
return this.request("DescribeGovernanceServiceContractVersions", req, cb)
|
|
1079
|
+
}
|
|
1080
|
+
|
|
1081
|
+
/**
|
|
1082
|
+
* 开启 WAF 防护
|
|
1083
|
+
*/
|
|
1084
|
+
async OpenWafProtection(
|
|
1085
|
+
req: OpenWafProtectionRequest,
|
|
1086
|
+
cb?: (error: string, rep: OpenWafProtectionResponse) => void
|
|
1087
|
+
): Promise<OpenWafProtectionResponse> {
|
|
1088
|
+
return this.request("OpenWafProtection", req, cb)
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
/**
|
|
1092
|
+
* 修改云原生网关的灰度规则
|
|
1093
|
+
*/
|
|
1094
|
+
async ModifyCloudNativeAPIGatewayCanaryRule(
|
|
1095
|
+
req: ModifyCloudNativeAPIGatewayCanaryRuleRequest,
|
|
1096
|
+
cb?: (error: string, rep: ModifyCloudNativeAPIGatewayCanaryRuleResponse) => void
|
|
1097
|
+
): Promise<ModifyCloudNativeAPIGatewayCanaryRuleResponse> {
|
|
1098
|
+
return this.request("ModifyCloudNativeAPIGatewayCanaryRule", req, cb)
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
/**
|
|
1102
|
+
* 创建云原生网关服务
|
|
1103
|
+
*/
|
|
1104
|
+
async CreateCloudNativeAPIGatewayService(
|
|
1105
|
+
req: CreateCloudNativeAPIGatewayServiceRequest,
|
|
1106
|
+
cb?: (error: string, rep: CreateCloudNativeAPIGatewayServiceResponse) => void
|
|
1107
|
+
): Promise<CreateCloudNativeAPIGatewayServiceResponse> {
|
|
1108
|
+
return this.request("CreateCloudNativeAPIGatewayService", req, cb)
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
/**
|
|
1112
|
+
* 删除云原生API网关实例
|
|
1113
|
+
*/
|
|
1114
|
+
async DeleteCloudNativeAPIGateway(
|
|
1115
|
+
req: DeleteCloudNativeAPIGatewayRequest,
|
|
1116
|
+
cb?: (error: string, rep: DeleteCloudNativeAPIGatewayResponse) => void
|
|
1117
|
+
): Promise<DeleteCloudNativeAPIGatewayResponse> {
|
|
1118
|
+
return this.request("DeleteCloudNativeAPIGateway", req, cb)
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
/**
|
|
1122
|
+
* 修改治理中心命名空间
|
|
1123
|
+
*/
|
|
1124
|
+
async ModifyGovernanceNamespaces(
|
|
1125
|
+
req: ModifyGovernanceNamespacesRequest,
|
|
1126
|
+
cb?: (error: string, rep: ModifyGovernanceNamespacesResponse) => void
|
|
1127
|
+
): Promise<ModifyGovernanceNamespacesResponse> {
|
|
1128
|
+
return this.request("ModifyGovernanceNamespaces", req, cb)
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
/**
|
|
1132
|
+
* 查询云原生API网关实例公网详情
|
|
1133
|
+
*/
|
|
1134
|
+
async DescribePublicNetwork(
|
|
1135
|
+
req: DescribePublicNetworkRequest,
|
|
1136
|
+
cb?: (error: string, rep: DescribePublicNetworkResponse) => void
|
|
1137
|
+
): Promise<DescribePublicNetworkResponse> {
|
|
1138
|
+
return this.request("DescribePublicNetwork", req, cb)
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
/**
|
|
1142
|
+
* 创建弹性伸缩策略
|
|
1143
|
+
*/
|
|
1144
|
+
async CreateAutoScalerResourceStrategy(
|
|
1145
|
+
req: CreateAutoScalerResourceStrategyRequest,
|
|
1146
|
+
cb?: (error: string, rep: CreateAutoScalerResourceStrategyResponse) => void
|
|
1147
|
+
): Promise<CreateAutoScalerResourceStrategyResponse> {
|
|
1148
|
+
return this.request("CreateAutoScalerResourceStrategy", req, cb)
|
|
1149
|
+
}
|
|
1150
|
+
|
|
1151
|
+
/**
|
|
1152
|
+
* 创建配置文件
|
|
1153
|
+
*/
|
|
1154
|
+
async CreateConfigFile(
|
|
1155
|
+
req: CreateConfigFileRequest,
|
|
1156
|
+
cb?: (error: string, rep: CreateConfigFileResponse) => void
|
|
1157
|
+
): Promise<CreateConfigFileResponse> {
|
|
1158
|
+
return this.request("CreateConfigFile", req, cb)
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
/**
|
|
1162
|
+
* 修改云原生API网关实例Kong访问策略,支持白名单或者黑名单。
|
|
1163
|
+
*/
|
|
1164
|
+
async ModifyNetworkAccessStrategy(
|
|
1165
|
+
req: ModifyNetworkAccessStrategyRequest,
|
|
1166
|
+
cb?: (error: string, rep: ModifyNetworkAccessStrategyResponse) => void
|
|
1167
|
+
): Promise<ModifyNetworkAccessStrategyResponse> {
|
|
1168
|
+
return this.request("ModifyNetworkAccessStrategy", req, cb)
|
|
1169
|
+
}
|
|
1170
|
+
|
|
1171
|
+
/**
|
|
1172
|
+
* 获取云原生网关服务详情下的Upstream列表
|
|
1173
|
+
*/
|
|
1174
|
+
async DescribeCloudNativeAPIGatewayUpstream(
|
|
1175
|
+
req: DescribeCloudNativeAPIGatewayUpstreamRequest,
|
|
1176
|
+
cb?: (error: string, rep: DescribeCloudNativeAPIGatewayUpstreamResponse) => void
|
|
1177
|
+
): Promise<DescribeCloudNativeAPIGatewayUpstreamResponse> {
|
|
1178
|
+
return this.request("DescribeCloudNativeAPIGatewayUpstream", req, cb)
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
/**
|
|
1182
|
+
* 创建或更新配置文件并发布配置
|
|
1183
|
+
*/
|
|
1184
|
+
async CreateOrUpdateConfigFileAndRelease(
|
|
1185
|
+
req: CreateOrUpdateConfigFileAndReleaseRequest,
|
|
1186
|
+
cb?: (error: string, rep: CreateOrUpdateConfigFileAndReleaseResponse) => void
|
|
1187
|
+
): Promise<CreateOrUpdateConfigFileAndReleaseResponse> {
|
|
1188
|
+
return this.request("CreateOrUpdateConfigFileAndRelease", req, cb)
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
/**
|
|
1192
|
+
* 修改治理中心服务别名
|
|
1193
|
+
*/
|
|
1194
|
+
async ModifyGovernanceAlias(
|
|
1195
|
+
req: ModifyGovernanceAliasRequest,
|
|
1196
|
+
cb?: (error: string, rep: ModifyGovernanceAliasResponse) => void
|
|
1197
|
+
): Promise<ModifyGovernanceAliasResponse> {
|
|
1198
|
+
return this.request("ModifyGovernanceAlias", req, cb)
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
/**
|
|
1202
|
+
* 新建 WAF 防护域名
|
|
1203
|
+
*/
|
|
1204
|
+
async CreateWafDomains(
|
|
1205
|
+
req: CreateWafDomainsRequest,
|
|
1206
|
+
cb?: (error: string, rep: CreateWafDomainsResponse) => void
|
|
1207
|
+
): Promise<CreateWafDomainsResponse> {
|
|
1208
|
+
return this.request("CreateWafDomains", req, cb)
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
/**
|
|
1212
|
+
* 批量修改配置文件组
|
|
787
1213
|
*/
|
|
788
|
-
async
|
|
789
|
-
req:
|
|
790
|
-
cb?: (error: string, rep:
|
|
791
|
-
): Promise<
|
|
792
|
-
return this.request("
|
|
1214
|
+
async ModifyConfigFileGroup(
|
|
1215
|
+
req: ModifyConfigFileGroupRequest,
|
|
1216
|
+
cb?: (error: string, rep: ModifyConfigFileGroupResponse) => void
|
|
1217
|
+
): Promise<ModifyConfigFileGroupResponse> {
|
|
1218
|
+
return this.request("ModifyConfigFileGroup", req, cb)
|
|
793
1219
|
}
|
|
794
1220
|
|
|
795
1221
|
/**
|
|
796
|
-
*
|
|
1222
|
+
* 回滚配置发布
|
|
797
1223
|
*/
|
|
798
|
-
async
|
|
799
|
-
req:
|
|
800
|
-
cb?: (error: string, rep:
|
|
801
|
-
): Promise<
|
|
802
|
-
return this.request("
|
|
1224
|
+
async RollbackConfigFileReleases(
|
|
1225
|
+
req: RollbackConfigFileReleasesRequest,
|
|
1226
|
+
cb?: (error: string, rep: RollbackConfigFileReleasesResponse) => void
|
|
1227
|
+
): Promise<RollbackConfigFileReleasesResponse> {
|
|
1228
|
+
return this.request("RollbackConfigFileReleases", req, cb)
|
|
803
1229
|
}
|
|
804
1230
|
|
|
805
1231
|
/**
|
|
806
|
-
*
|
|
1232
|
+
* 创建引擎实例
|
|
807
1233
|
*/
|
|
808
|
-
async
|
|
809
|
-
req:
|
|
810
|
-
cb?: (error: string, rep:
|
|
811
|
-
): Promise<
|
|
812
|
-
return this.request("
|
|
1234
|
+
async CreateEngine(
|
|
1235
|
+
req: CreateEngineRequest,
|
|
1236
|
+
cb?: (error: string, rep: CreateEngineResponse) => void
|
|
1237
|
+
): Promise<CreateEngineResponse> {
|
|
1238
|
+
return this.request("CreateEngine", req, cb)
|
|
813
1239
|
}
|
|
814
1240
|
|
|
815
1241
|
/**
|
|
816
|
-
*
|
|
1242
|
+
* 修改云原生网关上游实例节点健康状态
|
|
817
1243
|
*/
|
|
818
|
-
async
|
|
819
|
-
req:
|
|
820
|
-
cb?: (error: string, rep:
|
|
821
|
-
): Promise<
|
|
822
|
-
return this.request("
|
|
1244
|
+
async ModifyUpstreamNodeStatus(
|
|
1245
|
+
req: ModifyUpstreamNodeStatusRequest,
|
|
1246
|
+
cb?: (error: string, rep: ModifyUpstreamNodeStatusResponse) => void
|
|
1247
|
+
): Promise<ModifyUpstreamNodeStatusResponse> {
|
|
1248
|
+
return this.request("ModifyUpstreamNodeStatus", req, cb)
|
|
823
1249
|
}
|
|
824
1250
|
|
|
825
1251
|
/**
|
|
826
|
-
*
|
|
1252
|
+
* 弹性伸缩策略批量绑定网关分组
|
|
827
1253
|
*/
|
|
828
|
-
async
|
|
829
|
-
req:
|
|
830
|
-
cb?: (error: string, rep:
|
|
831
|
-
): Promise<
|
|
832
|
-
return this.request("
|
|
1254
|
+
async BindAutoScalerResourceStrategyToGroups(
|
|
1255
|
+
req: BindAutoScalerResourceStrategyToGroupsRequest,
|
|
1256
|
+
cb?: (error: string, rep: BindAutoScalerResourceStrategyToGroupsResponse) => void
|
|
1257
|
+
): Promise<BindAutoScalerResourceStrategyToGroupsResponse> {
|
|
1258
|
+
return this.request("BindAutoScalerResourceStrategyToGroups", req, cb)
|
|
833
1259
|
}
|
|
834
1260
|
|
|
835
1261
|
/**
|
|
836
|
-
*
|
|
1262
|
+
* 创建云原生网关限流插件(路由)
|
|
837
1263
|
*/
|
|
838
|
-
async
|
|
839
|
-
req:
|
|
840
|
-
cb?: (error: string, rep:
|
|
841
|
-
): Promise<
|
|
842
|
-
return this.request("
|
|
1264
|
+
async CreateCloudNativeAPIGatewayRouteRateLimit(
|
|
1265
|
+
req: CreateCloudNativeAPIGatewayRouteRateLimitRequest,
|
|
1266
|
+
cb?: (error: string, rep: CreateCloudNativeAPIGatewayRouteRateLimitResponse) => void
|
|
1267
|
+
): Promise<CreateCloudNativeAPIGatewayRouteRateLimitResponse> {
|
|
1268
|
+
return this.request("CreateCloudNativeAPIGatewayRouteRateLimit", req, cb)
|
|
843
1269
|
}
|
|
844
1270
|
|
|
845
1271
|
/**
|
|
846
|
-
*
|
|
1272
|
+
* 删除 WAF 防护域名
|
|
847
1273
|
*/
|
|
848
|
-
async
|
|
849
|
-
req:
|
|
850
|
-
cb?: (error: string, rep:
|
|
851
|
-
): Promise<
|
|
852
|
-
return this.request("
|
|
1274
|
+
async DeleteWafDomains(
|
|
1275
|
+
req: DeleteWafDomainsRequest,
|
|
1276
|
+
cb?: (error: string, rep: DeleteWafDomainsResponse) => void
|
|
1277
|
+
): Promise<DeleteWafDomainsResponse> {
|
|
1278
|
+
return this.request("DeleteWafDomains", req, cb)
|
|
853
1279
|
}
|
|
854
1280
|
|
|
855
1281
|
/**
|
|
856
|
-
*
|
|
1282
|
+
* 删除云原生网关服务
|
|
857
1283
|
*/
|
|
858
|
-
async
|
|
859
|
-
req:
|
|
860
|
-
cb?: (error: string, rep:
|
|
861
|
-
): Promise<
|
|
862
|
-
return this.request("
|
|
1284
|
+
async DeleteCloudNativeAPIGatewayService(
|
|
1285
|
+
req: DeleteCloudNativeAPIGatewayServiceRequest,
|
|
1286
|
+
cb?: (error: string, rep: DeleteCloudNativeAPIGatewayServiceResponse) => void
|
|
1287
|
+
): Promise<DeleteCloudNativeAPIGatewayServiceResponse> {
|
|
1288
|
+
return this.request("DeleteCloudNativeAPIGatewayService", req, cb)
|
|
863
1289
|
}
|
|
864
1290
|
|
|
865
1291
|
/**
|
|
866
|
-
*
|
|
1292
|
+
* 查询云原生网关路由列表
|
|
867
1293
|
*/
|
|
868
|
-
async
|
|
869
|
-
req:
|
|
870
|
-
cb?: (error: string, rep:
|
|
871
|
-
): Promise<
|
|
872
|
-
return this.request("
|
|
1294
|
+
async DescribeCloudNativeAPIGatewayRoutes(
|
|
1295
|
+
req: DescribeCloudNativeAPIGatewayRoutesRequest,
|
|
1296
|
+
cb?: (error: string, rep: DescribeCloudNativeAPIGatewayRoutesResponse) => void
|
|
1297
|
+
): Promise<DescribeCloudNativeAPIGatewayRoutesResponse> {
|
|
1298
|
+
return this.request("DescribeCloudNativeAPIGatewayRoutes", req, cb)
|
|
873
1299
|
}
|
|
874
1300
|
|
|
875
1301
|
/**
|
|
876
|
-
*
|
|
1302
|
+
* 根据条件分页查询配置文件组
|
|
877
1303
|
*/
|
|
878
|
-
async
|
|
879
|
-
req:
|
|
880
|
-
cb?: (error: string, rep:
|
|
881
|
-
): Promise<
|
|
882
|
-
return this.request("
|
|
1304
|
+
async DescribeConfigFileGroups(
|
|
1305
|
+
req: DescribeConfigFileGroupsRequest,
|
|
1306
|
+
cb?: (error: string, rep: DescribeConfigFileGroupsResponse) => void
|
|
1307
|
+
): Promise<DescribeConfigFileGroupsResponse> {
|
|
1308
|
+
return this.request("DescribeConfigFileGroups", req, cb)
|
|
883
1309
|
}
|
|
884
1310
|
|
|
885
1311
|
/**
|
|
886
|
-
*
|
|
1312
|
+
* 获取云原生API网关实例信息
|
|
887
1313
|
*/
|
|
888
|
-
async
|
|
889
|
-
req:
|
|
890
|
-
cb?: (error: string, rep:
|
|
891
|
-
): Promise<
|
|
892
|
-
return this.request("
|
|
1314
|
+
async DescribeCloudNativeAPIGateway(
|
|
1315
|
+
req: DescribeCloudNativeAPIGatewayRequest,
|
|
1316
|
+
cb?: (error: string, rep: DescribeCloudNativeAPIGatewayResponse) => void
|
|
1317
|
+
): Promise<DescribeCloudNativeAPIGatewayResponse> {
|
|
1318
|
+
return this.request("DescribeCloudNativeAPIGateway", req, cb)
|
|
893
1319
|
}
|
|
894
1320
|
|
|
895
1321
|
/**
|
|
896
|
-
*
|
|
1322
|
+
* 删除云原生网关路由
|
|
897
1323
|
*/
|
|
898
|
-
async
|
|
899
|
-
req:
|
|
900
|
-
cb?: (error: string, rep:
|
|
901
|
-
): Promise<
|
|
902
|
-
return this.request("
|
|
1324
|
+
async DeleteCloudNativeAPIGatewayRoute(
|
|
1325
|
+
req: DeleteCloudNativeAPIGatewayRouteRequest,
|
|
1326
|
+
cb?: (error: string, rep: DeleteCloudNativeAPIGatewayRouteResponse) => void
|
|
1327
|
+
): Promise<DeleteCloudNativeAPIGatewayRouteResponse> {
|
|
1328
|
+
return this.request("DeleteCloudNativeAPIGatewayRoute", req, cb)
|
|
903
1329
|
}
|
|
904
1330
|
|
|
905
1331
|
/**
|
|
906
|
-
*
|
|
1332
|
+
* 创建公网网络配置
|
|
907
1333
|
*/
|
|
908
|
-
async
|
|
909
|
-
req:
|
|
910
|
-
cb?: (error: string, rep:
|
|
911
|
-
): Promise<
|
|
912
|
-
return this.request("
|
|
1334
|
+
async CreateCloudNativeAPIGatewayPublicNetwork(
|
|
1335
|
+
req: CreateCloudNativeAPIGatewayPublicNetworkRequest,
|
|
1336
|
+
cb?: (error: string, rep: CreateCloudNativeAPIGatewayPublicNetworkResponse) => void
|
|
1337
|
+
): Promise<CreateCloudNativeAPIGatewayPublicNetworkResponse> {
|
|
1338
|
+
return this.request("CreateCloudNativeAPIGatewayPublicNetwork", req, cb)
|
|
913
1339
|
}
|
|
914
1340
|
|
|
915
1341
|
/**
|
|
916
|
-
*
|
|
1342
|
+
* 查询nacos服务接口列表
|
|
917
1343
|
*/
|
|
918
|
-
async
|
|
919
|
-
req:
|
|
920
|
-
cb?: (error: string, rep:
|
|
921
|
-
): Promise<
|
|
922
|
-
return this.request("
|
|
1344
|
+
async DescribeNacosServerInterfaces(
|
|
1345
|
+
req: DescribeNacosServerInterfacesRequest,
|
|
1346
|
+
cb?: (error: string, rep: DescribeNacosServerInterfacesResponse) => void
|
|
1347
|
+
): Promise<DescribeNacosServerInterfacesResponse> {
|
|
1348
|
+
return this.request("DescribeNacosServerInterfaces", req, cb)
|
|
923
1349
|
}
|
|
924
1350
|
|
|
925
1351
|
/**
|
|
926
|
-
*
|
|
1352
|
+
* 修改配置文件
|
|
927
1353
|
*/
|
|
928
|
-
async
|
|
929
|
-
req:
|
|
930
|
-
cb?: (error: string, rep:
|
|
931
|
-
): Promise<
|
|
932
|
-
return this.request("
|
|
1354
|
+
async ModifyConfigFiles(
|
|
1355
|
+
req: ModifyConfigFilesRequest,
|
|
1356
|
+
cb?: (error: string, rep: ModifyConfigFilesResponse) => void
|
|
1357
|
+
): Promise<ModifyConfigFilesResponse> {
|
|
1358
|
+
return this.request("ModifyConfigFiles", req, cb)
|
|
933
1359
|
}
|
|
934
1360
|
|
|
935
1361
|
/**
|
|
936
|
-
*
|
|
1362
|
+
* 修改云原生API网关实例的节点规格信息,例如节点扩缩容或者升降配
|
|
937
1363
|
*/
|
|
938
|
-
async
|
|
939
|
-
req:
|
|
940
|
-
cb?: (error: string, rep:
|
|
941
|
-
): Promise<
|
|
942
|
-
return this.request("
|
|
1364
|
+
async UpdateCloudNativeAPIGatewaySpec(
|
|
1365
|
+
req: UpdateCloudNativeAPIGatewaySpecRequest,
|
|
1366
|
+
cb?: (error: string, rep: UpdateCloudNativeAPIGatewaySpecResponse) => void
|
|
1367
|
+
): Promise<UpdateCloudNativeAPIGatewaySpecResponse> {
|
|
1368
|
+
return this.request("UpdateCloudNativeAPIGatewaySpec", req, cb)
|
|
943
1369
|
}
|
|
944
1370
|
|
|
945
1371
|
/**
|
|
946
|
-
*
|
|
1372
|
+
* 创建治理中心服务
|
|
947
1373
|
*/
|
|
948
|
-
async
|
|
949
|
-
req:
|
|
950
|
-
cb?: (error: string, rep:
|
|
951
|
-
): Promise<
|
|
952
|
-
return this.request("
|
|
1374
|
+
async CreateGovernanceServices(
|
|
1375
|
+
req: CreateGovernanceServicesRequest,
|
|
1376
|
+
cb?: (error: string, rep: CreateGovernanceServicesResponse) => void
|
|
1377
|
+
): Promise<CreateGovernanceServicesResponse> {
|
|
1378
|
+
return this.request("CreateGovernanceServices", req, cb)
|
|
953
1379
|
}
|
|
954
1380
|
|
|
955
1381
|
/**
|
|
956
|
-
*
|
|
1382
|
+
* 删除治理中心命名空间
|
|
957
1383
|
*/
|
|
958
|
-
async
|
|
959
|
-
req:
|
|
960
|
-
cb?: (error: string, rep:
|
|
961
|
-
): Promise<
|
|
962
|
-
return this.request("
|
|
1384
|
+
async DeleteGovernanceNamespaces(
|
|
1385
|
+
req: DeleteGovernanceNamespacesRequest,
|
|
1386
|
+
cb?: (error: string, rep: DeleteGovernanceNamespacesResponse) => void
|
|
1387
|
+
): Promise<DeleteGovernanceNamespacesResponse> {
|
|
1388
|
+
return this.request("DeleteGovernanceNamespaces", req, cb)
|
|
963
1389
|
}
|
|
964
1390
|
|
|
965
1391
|
/**
|
|
966
|
-
*
|
|
1392
|
+
* 修改治理中心服务实例
|
|
967
1393
|
*/
|
|
968
|
-
async
|
|
969
|
-
req:
|
|
970
|
-
cb?: (error: string, rep:
|
|
971
|
-
): Promise<
|
|
972
|
-
return this.request("
|
|
1394
|
+
async ModifyGovernanceInstances(
|
|
1395
|
+
req: ModifyGovernanceInstancesRequest,
|
|
1396
|
+
cb?: (error: string, rep: ModifyGovernanceInstancesResponse) => void
|
|
1397
|
+
): Promise<ModifyGovernanceInstancesResponse> {
|
|
1398
|
+
return this.request("ModifyGovernanceInstances", req, cb)
|
|
973
1399
|
}
|
|
974
1400
|
|
|
975
1401
|
/**
|
|
976
|
-
*
|
|
1402
|
+
* 根据命名空间、组名、名称、标签查询配置文件列表
|
|
977
1403
|
*/
|
|
978
|
-
async
|
|
979
|
-
req:
|
|
980
|
-
cb?: (error: string, rep:
|
|
981
|
-
): Promise<
|
|
982
|
-
return this.request("
|
|
1404
|
+
async DescribeConfigFiles(
|
|
1405
|
+
req: DescribeConfigFilesRequest,
|
|
1406
|
+
cb?: (error: string, rep: DescribeConfigFilesResponse) => void
|
|
1407
|
+
): Promise<DescribeConfigFilesResponse> {
|
|
1408
|
+
return this.request("DescribeConfigFiles", req, cb)
|
|
983
1409
|
}
|
|
984
1410
|
|
|
985
1411
|
/**
|
|
986
|
-
*
|
|
1412
|
+
* 修改云原生API网关实例基础信息
|
|
987
1413
|
*/
|
|
988
|
-
async
|
|
989
|
-
req:
|
|
990
|
-
cb?: (error: string, rep:
|
|
991
|
-
): Promise<
|
|
992
|
-
return this.request("
|
|
1414
|
+
async ModifyCloudNativeAPIGateway(
|
|
1415
|
+
req: ModifyCloudNativeAPIGatewayRequest,
|
|
1416
|
+
cb?: (error: string, rep: ModifyCloudNativeAPIGatewayResponse) => void
|
|
1417
|
+
): Promise<ModifyCloudNativeAPIGatewayResponse> {
|
|
1418
|
+
return this.request("ModifyCloudNativeAPIGateway", req, cb)
|
|
993
1419
|
}
|
|
994
1420
|
|
|
995
1421
|
/**
|
|
996
|
-
*
|
|
1422
|
+
* 创建云原生网关限流插件(服务)
|
|
997
1423
|
*/
|
|
998
|
-
async
|
|
999
|
-
req:
|
|
1000
|
-
cb?: (error: string, rep:
|
|
1001
|
-
): Promise<
|
|
1002
|
-
return this.request("
|
|
1424
|
+
async CreateCloudNativeAPIGatewayServiceRateLimit(
|
|
1425
|
+
req: CreateCloudNativeAPIGatewayServiceRateLimitRequest,
|
|
1426
|
+
cb?: (error: string, rep: CreateCloudNativeAPIGatewayServiceRateLimitResponse) => void
|
|
1427
|
+
): Promise<CreateCloudNativeAPIGatewayServiceRateLimitResponse> {
|
|
1428
|
+
return this.request("CreateCloudNativeAPIGatewayServiceRateLimit", req, cb)
|
|
1003
1429
|
}
|
|
1004
1430
|
|
|
1005
1431
|
/**
|
|
1006
|
-
*
|
|
1432
|
+
* 删除治理中心服务实例
|
|
1007
1433
|
*/
|
|
1008
|
-
async
|
|
1009
|
-
req:
|
|
1010
|
-
cb?: (error: string, rep:
|
|
1011
|
-
): Promise<
|
|
1012
|
-
return this.request("
|
|
1434
|
+
async DeleteGovernanceInstancesByHost(
|
|
1435
|
+
req: DeleteGovernanceInstancesByHostRequest,
|
|
1436
|
+
cb?: (error: string, rep: DeleteGovernanceInstancesByHostResponse) => void
|
|
1437
|
+
): Promise<DeleteGovernanceInstancesByHostResponse> {
|
|
1438
|
+
return this.request("DeleteGovernanceInstancesByHost", req, cb)
|
|
1013
1439
|
}
|
|
1014
1440
|
|
|
1015
1441
|
/**
|
|
1016
|
-
*
|
|
1442
|
+
* 获取配置文件发布历史列表
|
|
1017
1443
|
*/
|
|
1018
|
-
async
|
|
1019
|
-
req:
|
|
1020
|
-
cb?: (error: string, rep:
|
|
1021
|
-
): Promise<
|
|
1022
|
-
return this.request("
|
|
1444
|
+
async DescribeConfigFileReleaseHistories(
|
|
1445
|
+
req: DescribeConfigFileReleaseHistoriesRequest,
|
|
1446
|
+
cb?: (error: string, rep: DescribeConfigFileReleaseHistoriesResponse) => void
|
|
1447
|
+
): Promise<DescribeConfigFileReleaseHistoriesResponse> {
|
|
1448
|
+
return this.request("DescribeConfigFileReleaseHistories", req, cb)
|
|
1023
1449
|
}
|
|
1024
1450
|
|
|
1025
1451
|
/**
|
|
1026
|
-
*
|
|
1452
|
+
* 查询云原生网关分组信息
|
|
1027
1453
|
*/
|
|
1028
|
-
async
|
|
1029
|
-
req:
|
|
1030
|
-
cb?: (error: string, rep:
|
|
1031
|
-
): Promise<
|
|
1032
|
-
return this.request("
|
|
1454
|
+
async DescribeNativeGatewayServerGroups(
|
|
1455
|
+
req: DescribeNativeGatewayServerGroupsRequest,
|
|
1456
|
+
cb?: (error: string, rep: DescribeNativeGatewayServerGroupsResponse) => void
|
|
1457
|
+
): Promise<DescribeNativeGatewayServerGroupsResponse> {
|
|
1458
|
+
return this.request("DescribeNativeGatewayServerGroups", req, cb)
|
|
1033
1459
|
}
|
|
1034
1460
|
|
|
1035
1461
|
/**
|
|
1036
|
-
*
|
|
1462
|
+
* 更新云原生网关健康检查配置
|
|
1037
1463
|
*/
|
|
1038
|
-
async
|
|
1039
|
-
req:
|
|
1040
|
-
cb?: (error: string, rep:
|
|
1041
|
-
): Promise<
|
|
1042
|
-
return this.request("
|
|
1464
|
+
async UpdateUpstreamHealthCheckConfig(
|
|
1465
|
+
req: UpdateUpstreamHealthCheckConfigRequest,
|
|
1466
|
+
cb?: (error: string, rep: UpdateUpstreamHealthCheckConfigResponse) => void
|
|
1467
|
+
): Promise<UpdateUpstreamHealthCheckConfigResponse> {
|
|
1468
|
+
return this.request("UpdateUpstreamHealthCheckConfig", req, cb)
|
|
1043
1469
|
}
|
|
1044
1470
|
}
|