@aws-sdk/client-app-mesh 3.1087.0 → 3.1089.0
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/dist-cjs/index.js +1 -1
- package/dist-types/ts3.4/AppMesh.d.ts +131 -158
- package/dist-types/ts3.4/AppMeshClient.d.ts +24 -61
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +5 -12
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +11 -15
- package/dist-types/ts3.4/commandBuilder.d.ts +7 -13
- package/dist-types/ts3.4/commands/CreateGatewayRouteCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateMeshCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateRouteCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/CreateVirtualGatewayCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateVirtualNodeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/CreateVirtualRouterCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/CreateVirtualServiceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteGatewayRouteCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteMeshCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteRouteCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DeleteVirtualGatewayCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteVirtualNodeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/DeleteVirtualRouterCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DeleteVirtualServiceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeGatewayRouteCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeMeshCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeRouteCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/DescribeVirtualGatewayCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeVirtualNodeCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeVirtualRouterCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/DescribeVirtualServiceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListGatewayRoutesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListMeshesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListRoutesCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListVirtualGatewaysCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListVirtualNodesCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/ListVirtualRoutersCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/ListVirtualServicesCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateGatewayRouteCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateMeshCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateRouteCommand.d.ts +3 -5
- package/dist-types/ts3.4/commands/UpdateVirtualGatewayCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateVirtualNodeCommand.d.ts +4 -9
- package/dist-types/ts3.4/commands/UpdateVirtualRouterCommand.d.ts +5 -10
- package/dist-types/ts3.4/commands/UpdateVirtualServiceCommand.d.ts +5 -10
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +1 -1
- package/dist-types/ts3.4/extensionConfiguration.d.ts +2 -1
- package/dist-types/ts3.4/models/enums.d.ts +7 -14
- package/dist-types/ts3.4/models/errors.d.ts +7 -21
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +1 -2
- package/dist-types/ts3.4/pagination/ListMeshesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/pagination/ListRoutesPaginator.d.ts +1 -4
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -16
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +9 -22
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/ts3.4/runtimeExtensions.d.ts +1 -1
- package/package.json +38 -38
|
@@ -8,14 +8,8 @@ import {
|
|
|
8
8
|
CreateGatewayRouteCommandInput,
|
|
9
9
|
CreateGatewayRouteCommandOutput,
|
|
10
10
|
} from "./commands/CreateGatewayRouteCommand";
|
|
11
|
-
import {
|
|
12
|
-
|
|
13
|
-
CreateMeshCommandOutput,
|
|
14
|
-
} from "./commands/CreateMeshCommand";
|
|
15
|
-
import {
|
|
16
|
-
CreateRouteCommandInput,
|
|
17
|
-
CreateRouteCommandOutput,
|
|
18
|
-
} from "./commands/CreateRouteCommand";
|
|
11
|
+
import { CreateMeshCommandInput, CreateMeshCommandOutput } from "./commands/CreateMeshCommand";
|
|
12
|
+
import { CreateRouteCommandInput, CreateRouteCommandOutput } from "./commands/CreateRouteCommand";
|
|
19
13
|
import {
|
|
20
14
|
CreateVirtualGatewayCommandInput,
|
|
21
15
|
CreateVirtualGatewayCommandOutput,
|
|
@@ -36,14 +30,8 @@ import {
|
|
|
36
30
|
DeleteGatewayRouteCommandInput,
|
|
37
31
|
DeleteGatewayRouteCommandOutput,
|
|
38
32
|
} from "./commands/DeleteGatewayRouteCommand";
|
|
39
|
-
import {
|
|
40
|
-
|
|
41
|
-
DeleteMeshCommandOutput,
|
|
42
|
-
} from "./commands/DeleteMeshCommand";
|
|
43
|
-
import {
|
|
44
|
-
DeleteRouteCommandInput,
|
|
45
|
-
DeleteRouteCommandOutput,
|
|
46
|
-
} from "./commands/DeleteRouteCommand";
|
|
33
|
+
import { DeleteMeshCommandInput, DeleteMeshCommandOutput } from "./commands/DeleteMeshCommand";
|
|
34
|
+
import { DeleteRouteCommandInput, DeleteRouteCommandOutput } from "./commands/DeleteRouteCommand";
|
|
47
35
|
import {
|
|
48
36
|
DeleteVirtualGatewayCommandInput,
|
|
49
37
|
DeleteVirtualGatewayCommandOutput,
|
|
@@ -92,14 +80,8 @@ import {
|
|
|
92
80
|
ListGatewayRoutesCommandInput,
|
|
93
81
|
ListGatewayRoutesCommandOutput,
|
|
94
82
|
} from "./commands/ListGatewayRoutesCommand";
|
|
95
|
-
import {
|
|
96
|
-
|
|
97
|
-
ListMeshesCommandOutput,
|
|
98
|
-
} from "./commands/ListMeshesCommand";
|
|
99
|
-
import {
|
|
100
|
-
ListRoutesCommandInput,
|
|
101
|
-
ListRoutesCommandOutput,
|
|
102
|
-
} from "./commands/ListRoutesCommand";
|
|
83
|
+
import { ListMeshesCommandInput, ListMeshesCommandOutput } from "./commands/ListMeshesCommand";
|
|
84
|
+
import { ListRoutesCommandInput, ListRoutesCommandOutput } from "./commands/ListRoutesCommand";
|
|
103
85
|
import {
|
|
104
86
|
ListTagsForResourceCommandInput,
|
|
105
87
|
ListTagsForResourceCommandOutput,
|
|
@@ -120,10 +102,7 @@ import {
|
|
|
120
102
|
ListVirtualServicesCommandInput,
|
|
121
103
|
ListVirtualServicesCommandOutput,
|
|
122
104
|
} from "./commands/ListVirtualServicesCommand";
|
|
123
|
-
import {
|
|
124
|
-
TagResourceCommandInput,
|
|
125
|
-
TagResourceCommandOutput,
|
|
126
|
-
} from "./commands/TagResourceCommand";
|
|
105
|
+
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
127
106
|
import {
|
|
128
107
|
UntagResourceCommandInput,
|
|
129
108
|
UntagResourceCommandOutput,
|
|
@@ -132,14 +111,8 @@ import {
|
|
|
132
111
|
UpdateGatewayRouteCommandInput,
|
|
133
112
|
UpdateGatewayRouteCommandOutput,
|
|
134
113
|
} from "./commands/UpdateGatewayRouteCommand";
|
|
135
|
-
import {
|
|
136
|
-
|
|
137
|
-
UpdateMeshCommandOutput,
|
|
138
|
-
} from "./commands/UpdateMeshCommand";
|
|
139
|
-
import {
|
|
140
|
-
UpdateRouteCommandInput,
|
|
141
|
-
UpdateRouteCommandOutput,
|
|
142
|
-
} from "./commands/UpdateRouteCommand";
|
|
114
|
+
import { UpdateMeshCommandInput, UpdateMeshCommandOutput } from "./commands/UpdateMeshCommand";
|
|
115
|
+
import { UpdateRouteCommandInput, UpdateRouteCommandOutput } from "./commands/UpdateRouteCommand";
|
|
143
116
|
import {
|
|
144
117
|
UpdateVirtualGatewayCommandInput,
|
|
145
118
|
UpdateVirtualGatewayCommandOutput,
|
|
@@ -159,554 +132,554 @@ import {
|
|
|
159
132
|
export interface AppMesh {
|
|
160
133
|
createGatewayRoute(
|
|
161
134
|
args: CreateGatewayRouteCommandInput,
|
|
162
|
-
options?: __HttpHandlerOptions
|
|
135
|
+
options?: __HttpHandlerOptions,
|
|
163
136
|
): Promise<CreateGatewayRouteCommandOutput>;
|
|
164
137
|
createGatewayRoute(
|
|
165
138
|
args: CreateGatewayRouteCommandInput,
|
|
166
|
-
cb: (err: any, data?: CreateGatewayRouteCommandOutput) => void
|
|
139
|
+
cb: (err: any, data?: CreateGatewayRouteCommandOutput) => void,
|
|
167
140
|
): void;
|
|
168
141
|
createGatewayRoute(
|
|
169
142
|
args: CreateGatewayRouteCommandInput,
|
|
170
143
|
options: __HttpHandlerOptions,
|
|
171
|
-
cb: (err: any, data?: CreateGatewayRouteCommandOutput) => void
|
|
144
|
+
cb: (err: any, data?: CreateGatewayRouteCommandOutput) => void,
|
|
172
145
|
): void;
|
|
173
146
|
createMesh(
|
|
174
147
|
args: CreateMeshCommandInput,
|
|
175
|
-
options?: __HttpHandlerOptions
|
|
148
|
+
options?: __HttpHandlerOptions,
|
|
176
149
|
): Promise<CreateMeshCommandOutput>;
|
|
177
150
|
createMesh(
|
|
178
151
|
args: CreateMeshCommandInput,
|
|
179
|
-
cb: (err: any, data?: CreateMeshCommandOutput) => void
|
|
152
|
+
cb: (err: any, data?: CreateMeshCommandOutput) => void,
|
|
180
153
|
): void;
|
|
181
154
|
createMesh(
|
|
182
155
|
args: CreateMeshCommandInput,
|
|
183
156
|
options: __HttpHandlerOptions,
|
|
184
|
-
cb: (err: any, data?: CreateMeshCommandOutput) => void
|
|
157
|
+
cb: (err: any, data?: CreateMeshCommandOutput) => void,
|
|
185
158
|
): void;
|
|
186
159
|
createRoute(
|
|
187
160
|
args: CreateRouteCommandInput,
|
|
188
|
-
options?: __HttpHandlerOptions
|
|
161
|
+
options?: __HttpHandlerOptions,
|
|
189
162
|
): Promise<CreateRouteCommandOutput>;
|
|
190
163
|
createRoute(
|
|
191
164
|
args: CreateRouteCommandInput,
|
|
192
|
-
cb: (err: any, data?: CreateRouteCommandOutput) => void
|
|
165
|
+
cb: (err: any, data?: CreateRouteCommandOutput) => void,
|
|
193
166
|
): void;
|
|
194
167
|
createRoute(
|
|
195
168
|
args: CreateRouteCommandInput,
|
|
196
169
|
options: __HttpHandlerOptions,
|
|
197
|
-
cb: (err: any, data?: CreateRouteCommandOutput) => void
|
|
170
|
+
cb: (err: any, data?: CreateRouteCommandOutput) => void,
|
|
198
171
|
): void;
|
|
199
172
|
createVirtualGateway(
|
|
200
173
|
args: CreateVirtualGatewayCommandInput,
|
|
201
|
-
options?: __HttpHandlerOptions
|
|
174
|
+
options?: __HttpHandlerOptions,
|
|
202
175
|
): Promise<CreateVirtualGatewayCommandOutput>;
|
|
203
176
|
createVirtualGateway(
|
|
204
177
|
args: CreateVirtualGatewayCommandInput,
|
|
205
|
-
cb: (err: any, data?: CreateVirtualGatewayCommandOutput) => void
|
|
178
|
+
cb: (err: any, data?: CreateVirtualGatewayCommandOutput) => void,
|
|
206
179
|
): void;
|
|
207
180
|
createVirtualGateway(
|
|
208
181
|
args: CreateVirtualGatewayCommandInput,
|
|
209
182
|
options: __HttpHandlerOptions,
|
|
210
|
-
cb: (err: any, data?: CreateVirtualGatewayCommandOutput) => void
|
|
183
|
+
cb: (err: any, data?: CreateVirtualGatewayCommandOutput) => void,
|
|
211
184
|
): void;
|
|
212
185
|
createVirtualNode(
|
|
213
186
|
args: CreateVirtualNodeCommandInput,
|
|
214
|
-
options?: __HttpHandlerOptions
|
|
187
|
+
options?: __HttpHandlerOptions,
|
|
215
188
|
): Promise<CreateVirtualNodeCommandOutput>;
|
|
216
189
|
createVirtualNode(
|
|
217
190
|
args: CreateVirtualNodeCommandInput,
|
|
218
|
-
cb: (err: any, data?: CreateVirtualNodeCommandOutput) => void
|
|
191
|
+
cb: (err: any, data?: CreateVirtualNodeCommandOutput) => void,
|
|
219
192
|
): void;
|
|
220
193
|
createVirtualNode(
|
|
221
194
|
args: CreateVirtualNodeCommandInput,
|
|
222
195
|
options: __HttpHandlerOptions,
|
|
223
|
-
cb: (err: any, data?: CreateVirtualNodeCommandOutput) => void
|
|
196
|
+
cb: (err: any, data?: CreateVirtualNodeCommandOutput) => void,
|
|
224
197
|
): void;
|
|
225
198
|
createVirtualRouter(
|
|
226
199
|
args: CreateVirtualRouterCommandInput,
|
|
227
|
-
options?: __HttpHandlerOptions
|
|
200
|
+
options?: __HttpHandlerOptions,
|
|
228
201
|
): Promise<CreateVirtualRouterCommandOutput>;
|
|
229
202
|
createVirtualRouter(
|
|
230
203
|
args: CreateVirtualRouterCommandInput,
|
|
231
|
-
cb: (err: any, data?: CreateVirtualRouterCommandOutput) => void
|
|
204
|
+
cb: (err: any, data?: CreateVirtualRouterCommandOutput) => void,
|
|
232
205
|
): void;
|
|
233
206
|
createVirtualRouter(
|
|
234
207
|
args: CreateVirtualRouterCommandInput,
|
|
235
208
|
options: __HttpHandlerOptions,
|
|
236
|
-
cb: (err: any, data?: CreateVirtualRouterCommandOutput) => void
|
|
209
|
+
cb: (err: any, data?: CreateVirtualRouterCommandOutput) => void,
|
|
237
210
|
): void;
|
|
238
211
|
createVirtualService(
|
|
239
212
|
args: CreateVirtualServiceCommandInput,
|
|
240
|
-
options?: __HttpHandlerOptions
|
|
213
|
+
options?: __HttpHandlerOptions,
|
|
241
214
|
): Promise<CreateVirtualServiceCommandOutput>;
|
|
242
215
|
createVirtualService(
|
|
243
216
|
args: CreateVirtualServiceCommandInput,
|
|
244
|
-
cb: (err: any, data?: CreateVirtualServiceCommandOutput) => void
|
|
217
|
+
cb: (err: any, data?: CreateVirtualServiceCommandOutput) => void,
|
|
245
218
|
): void;
|
|
246
219
|
createVirtualService(
|
|
247
220
|
args: CreateVirtualServiceCommandInput,
|
|
248
221
|
options: __HttpHandlerOptions,
|
|
249
|
-
cb: (err: any, data?: CreateVirtualServiceCommandOutput) => void
|
|
222
|
+
cb: (err: any, data?: CreateVirtualServiceCommandOutput) => void,
|
|
250
223
|
): void;
|
|
251
224
|
deleteGatewayRoute(
|
|
252
225
|
args: DeleteGatewayRouteCommandInput,
|
|
253
|
-
options?: __HttpHandlerOptions
|
|
226
|
+
options?: __HttpHandlerOptions,
|
|
254
227
|
): Promise<DeleteGatewayRouteCommandOutput>;
|
|
255
228
|
deleteGatewayRoute(
|
|
256
229
|
args: DeleteGatewayRouteCommandInput,
|
|
257
|
-
cb: (err: any, data?: DeleteGatewayRouteCommandOutput) => void
|
|
230
|
+
cb: (err: any, data?: DeleteGatewayRouteCommandOutput) => void,
|
|
258
231
|
): void;
|
|
259
232
|
deleteGatewayRoute(
|
|
260
233
|
args: DeleteGatewayRouteCommandInput,
|
|
261
234
|
options: __HttpHandlerOptions,
|
|
262
|
-
cb: (err: any, data?: DeleteGatewayRouteCommandOutput) => void
|
|
235
|
+
cb: (err: any, data?: DeleteGatewayRouteCommandOutput) => void,
|
|
263
236
|
): void;
|
|
264
237
|
deleteMesh(
|
|
265
238
|
args: DeleteMeshCommandInput,
|
|
266
|
-
options?: __HttpHandlerOptions
|
|
239
|
+
options?: __HttpHandlerOptions,
|
|
267
240
|
): Promise<DeleteMeshCommandOutput>;
|
|
268
241
|
deleteMesh(
|
|
269
242
|
args: DeleteMeshCommandInput,
|
|
270
|
-
cb: (err: any, data?: DeleteMeshCommandOutput) => void
|
|
243
|
+
cb: (err: any, data?: DeleteMeshCommandOutput) => void,
|
|
271
244
|
): void;
|
|
272
245
|
deleteMesh(
|
|
273
246
|
args: DeleteMeshCommandInput,
|
|
274
247
|
options: __HttpHandlerOptions,
|
|
275
|
-
cb: (err: any, data?: DeleteMeshCommandOutput) => void
|
|
248
|
+
cb: (err: any, data?: DeleteMeshCommandOutput) => void,
|
|
276
249
|
): void;
|
|
277
250
|
deleteRoute(
|
|
278
251
|
args: DeleteRouteCommandInput,
|
|
279
|
-
options?: __HttpHandlerOptions
|
|
252
|
+
options?: __HttpHandlerOptions,
|
|
280
253
|
): Promise<DeleteRouteCommandOutput>;
|
|
281
254
|
deleteRoute(
|
|
282
255
|
args: DeleteRouteCommandInput,
|
|
283
|
-
cb: (err: any, data?: DeleteRouteCommandOutput) => void
|
|
256
|
+
cb: (err: any, data?: DeleteRouteCommandOutput) => void,
|
|
284
257
|
): void;
|
|
285
258
|
deleteRoute(
|
|
286
259
|
args: DeleteRouteCommandInput,
|
|
287
260
|
options: __HttpHandlerOptions,
|
|
288
|
-
cb: (err: any, data?: DeleteRouteCommandOutput) => void
|
|
261
|
+
cb: (err: any, data?: DeleteRouteCommandOutput) => void,
|
|
289
262
|
): void;
|
|
290
263
|
deleteVirtualGateway(
|
|
291
264
|
args: DeleteVirtualGatewayCommandInput,
|
|
292
|
-
options?: __HttpHandlerOptions
|
|
265
|
+
options?: __HttpHandlerOptions,
|
|
293
266
|
): Promise<DeleteVirtualGatewayCommandOutput>;
|
|
294
267
|
deleteVirtualGateway(
|
|
295
268
|
args: DeleteVirtualGatewayCommandInput,
|
|
296
|
-
cb: (err: any, data?: DeleteVirtualGatewayCommandOutput) => void
|
|
269
|
+
cb: (err: any, data?: DeleteVirtualGatewayCommandOutput) => void,
|
|
297
270
|
): void;
|
|
298
271
|
deleteVirtualGateway(
|
|
299
272
|
args: DeleteVirtualGatewayCommandInput,
|
|
300
273
|
options: __HttpHandlerOptions,
|
|
301
|
-
cb: (err: any, data?: DeleteVirtualGatewayCommandOutput) => void
|
|
274
|
+
cb: (err: any, data?: DeleteVirtualGatewayCommandOutput) => void,
|
|
302
275
|
): void;
|
|
303
276
|
deleteVirtualNode(
|
|
304
277
|
args: DeleteVirtualNodeCommandInput,
|
|
305
|
-
options?: __HttpHandlerOptions
|
|
278
|
+
options?: __HttpHandlerOptions,
|
|
306
279
|
): Promise<DeleteVirtualNodeCommandOutput>;
|
|
307
280
|
deleteVirtualNode(
|
|
308
281
|
args: DeleteVirtualNodeCommandInput,
|
|
309
|
-
cb: (err: any, data?: DeleteVirtualNodeCommandOutput) => void
|
|
282
|
+
cb: (err: any, data?: DeleteVirtualNodeCommandOutput) => void,
|
|
310
283
|
): void;
|
|
311
284
|
deleteVirtualNode(
|
|
312
285
|
args: DeleteVirtualNodeCommandInput,
|
|
313
286
|
options: __HttpHandlerOptions,
|
|
314
|
-
cb: (err: any, data?: DeleteVirtualNodeCommandOutput) => void
|
|
287
|
+
cb: (err: any, data?: DeleteVirtualNodeCommandOutput) => void,
|
|
315
288
|
): void;
|
|
316
289
|
deleteVirtualRouter(
|
|
317
290
|
args: DeleteVirtualRouterCommandInput,
|
|
318
|
-
options?: __HttpHandlerOptions
|
|
291
|
+
options?: __HttpHandlerOptions,
|
|
319
292
|
): Promise<DeleteVirtualRouterCommandOutput>;
|
|
320
293
|
deleteVirtualRouter(
|
|
321
294
|
args: DeleteVirtualRouterCommandInput,
|
|
322
|
-
cb: (err: any, data?: DeleteVirtualRouterCommandOutput) => void
|
|
295
|
+
cb: (err: any, data?: DeleteVirtualRouterCommandOutput) => void,
|
|
323
296
|
): void;
|
|
324
297
|
deleteVirtualRouter(
|
|
325
298
|
args: DeleteVirtualRouterCommandInput,
|
|
326
299
|
options: __HttpHandlerOptions,
|
|
327
|
-
cb: (err: any, data?: DeleteVirtualRouterCommandOutput) => void
|
|
300
|
+
cb: (err: any, data?: DeleteVirtualRouterCommandOutput) => void,
|
|
328
301
|
): void;
|
|
329
302
|
deleteVirtualService(
|
|
330
303
|
args: DeleteVirtualServiceCommandInput,
|
|
331
|
-
options?: __HttpHandlerOptions
|
|
304
|
+
options?: __HttpHandlerOptions,
|
|
332
305
|
): Promise<DeleteVirtualServiceCommandOutput>;
|
|
333
306
|
deleteVirtualService(
|
|
334
307
|
args: DeleteVirtualServiceCommandInput,
|
|
335
|
-
cb: (err: any, data?: DeleteVirtualServiceCommandOutput) => void
|
|
308
|
+
cb: (err: any, data?: DeleteVirtualServiceCommandOutput) => void,
|
|
336
309
|
): void;
|
|
337
310
|
deleteVirtualService(
|
|
338
311
|
args: DeleteVirtualServiceCommandInput,
|
|
339
312
|
options: __HttpHandlerOptions,
|
|
340
|
-
cb: (err: any, data?: DeleteVirtualServiceCommandOutput) => void
|
|
313
|
+
cb: (err: any, data?: DeleteVirtualServiceCommandOutput) => void,
|
|
341
314
|
): void;
|
|
342
315
|
describeGatewayRoute(
|
|
343
316
|
args: DescribeGatewayRouteCommandInput,
|
|
344
|
-
options?: __HttpHandlerOptions
|
|
317
|
+
options?: __HttpHandlerOptions,
|
|
345
318
|
): Promise<DescribeGatewayRouteCommandOutput>;
|
|
346
319
|
describeGatewayRoute(
|
|
347
320
|
args: DescribeGatewayRouteCommandInput,
|
|
348
|
-
cb: (err: any, data?: DescribeGatewayRouteCommandOutput) => void
|
|
321
|
+
cb: (err: any, data?: DescribeGatewayRouteCommandOutput) => void,
|
|
349
322
|
): void;
|
|
350
323
|
describeGatewayRoute(
|
|
351
324
|
args: DescribeGatewayRouteCommandInput,
|
|
352
325
|
options: __HttpHandlerOptions,
|
|
353
|
-
cb: (err: any, data?: DescribeGatewayRouteCommandOutput) => void
|
|
326
|
+
cb: (err: any, data?: DescribeGatewayRouteCommandOutput) => void,
|
|
354
327
|
): void;
|
|
355
328
|
describeMesh(
|
|
356
329
|
args: DescribeMeshCommandInput,
|
|
357
|
-
options?: __HttpHandlerOptions
|
|
330
|
+
options?: __HttpHandlerOptions,
|
|
358
331
|
): Promise<DescribeMeshCommandOutput>;
|
|
359
332
|
describeMesh(
|
|
360
333
|
args: DescribeMeshCommandInput,
|
|
361
|
-
cb: (err: any, data?: DescribeMeshCommandOutput) => void
|
|
334
|
+
cb: (err: any, data?: DescribeMeshCommandOutput) => void,
|
|
362
335
|
): void;
|
|
363
336
|
describeMesh(
|
|
364
337
|
args: DescribeMeshCommandInput,
|
|
365
338
|
options: __HttpHandlerOptions,
|
|
366
|
-
cb: (err: any, data?: DescribeMeshCommandOutput) => void
|
|
339
|
+
cb: (err: any, data?: DescribeMeshCommandOutput) => void,
|
|
367
340
|
): void;
|
|
368
341
|
describeRoute(
|
|
369
342
|
args: DescribeRouteCommandInput,
|
|
370
|
-
options?: __HttpHandlerOptions
|
|
343
|
+
options?: __HttpHandlerOptions,
|
|
371
344
|
): Promise<DescribeRouteCommandOutput>;
|
|
372
345
|
describeRoute(
|
|
373
346
|
args: DescribeRouteCommandInput,
|
|
374
|
-
cb: (err: any, data?: DescribeRouteCommandOutput) => void
|
|
347
|
+
cb: (err: any, data?: DescribeRouteCommandOutput) => void,
|
|
375
348
|
): void;
|
|
376
349
|
describeRoute(
|
|
377
350
|
args: DescribeRouteCommandInput,
|
|
378
351
|
options: __HttpHandlerOptions,
|
|
379
|
-
cb: (err: any, data?: DescribeRouteCommandOutput) => void
|
|
352
|
+
cb: (err: any, data?: DescribeRouteCommandOutput) => void,
|
|
380
353
|
): void;
|
|
381
354
|
describeVirtualGateway(
|
|
382
355
|
args: DescribeVirtualGatewayCommandInput,
|
|
383
|
-
options?: __HttpHandlerOptions
|
|
356
|
+
options?: __HttpHandlerOptions,
|
|
384
357
|
): Promise<DescribeVirtualGatewayCommandOutput>;
|
|
385
358
|
describeVirtualGateway(
|
|
386
359
|
args: DescribeVirtualGatewayCommandInput,
|
|
387
|
-
cb: (err: any, data?: DescribeVirtualGatewayCommandOutput) => void
|
|
360
|
+
cb: (err: any, data?: DescribeVirtualGatewayCommandOutput) => void,
|
|
388
361
|
): void;
|
|
389
362
|
describeVirtualGateway(
|
|
390
363
|
args: DescribeVirtualGatewayCommandInput,
|
|
391
364
|
options: __HttpHandlerOptions,
|
|
392
|
-
cb: (err: any, data?: DescribeVirtualGatewayCommandOutput) => void
|
|
365
|
+
cb: (err: any, data?: DescribeVirtualGatewayCommandOutput) => void,
|
|
393
366
|
): void;
|
|
394
367
|
describeVirtualNode(
|
|
395
368
|
args: DescribeVirtualNodeCommandInput,
|
|
396
|
-
options?: __HttpHandlerOptions
|
|
369
|
+
options?: __HttpHandlerOptions,
|
|
397
370
|
): Promise<DescribeVirtualNodeCommandOutput>;
|
|
398
371
|
describeVirtualNode(
|
|
399
372
|
args: DescribeVirtualNodeCommandInput,
|
|
400
|
-
cb: (err: any, data?: DescribeVirtualNodeCommandOutput) => void
|
|
373
|
+
cb: (err: any, data?: DescribeVirtualNodeCommandOutput) => void,
|
|
401
374
|
): void;
|
|
402
375
|
describeVirtualNode(
|
|
403
376
|
args: DescribeVirtualNodeCommandInput,
|
|
404
377
|
options: __HttpHandlerOptions,
|
|
405
|
-
cb: (err: any, data?: DescribeVirtualNodeCommandOutput) => void
|
|
378
|
+
cb: (err: any, data?: DescribeVirtualNodeCommandOutput) => void,
|
|
406
379
|
): void;
|
|
407
380
|
describeVirtualRouter(
|
|
408
381
|
args: DescribeVirtualRouterCommandInput,
|
|
409
|
-
options?: __HttpHandlerOptions
|
|
382
|
+
options?: __HttpHandlerOptions,
|
|
410
383
|
): Promise<DescribeVirtualRouterCommandOutput>;
|
|
411
384
|
describeVirtualRouter(
|
|
412
385
|
args: DescribeVirtualRouterCommandInput,
|
|
413
|
-
cb: (err: any, data?: DescribeVirtualRouterCommandOutput) => void
|
|
386
|
+
cb: (err: any, data?: DescribeVirtualRouterCommandOutput) => void,
|
|
414
387
|
): void;
|
|
415
388
|
describeVirtualRouter(
|
|
416
389
|
args: DescribeVirtualRouterCommandInput,
|
|
417
390
|
options: __HttpHandlerOptions,
|
|
418
|
-
cb: (err: any, data?: DescribeVirtualRouterCommandOutput) => void
|
|
391
|
+
cb: (err: any, data?: DescribeVirtualRouterCommandOutput) => void,
|
|
419
392
|
): void;
|
|
420
393
|
describeVirtualService(
|
|
421
394
|
args: DescribeVirtualServiceCommandInput,
|
|
422
|
-
options?: __HttpHandlerOptions
|
|
395
|
+
options?: __HttpHandlerOptions,
|
|
423
396
|
): Promise<DescribeVirtualServiceCommandOutput>;
|
|
424
397
|
describeVirtualService(
|
|
425
398
|
args: DescribeVirtualServiceCommandInput,
|
|
426
|
-
cb: (err: any, data?: DescribeVirtualServiceCommandOutput) => void
|
|
399
|
+
cb: (err: any, data?: DescribeVirtualServiceCommandOutput) => void,
|
|
427
400
|
): void;
|
|
428
401
|
describeVirtualService(
|
|
429
402
|
args: DescribeVirtualServiceCommandInput,
|
|
430
403
|
options: __HttpHandlerOptions,
|
|
431
|
-
cb: (err: any, data?: DescribeVirtualServiceCommandOutput) => void
|
|
404
|
+
cb: (err: any, data?: DescribeVirtualServiceCommandOutput) => void,
|
|
432
405
|
): void;
|
|
433
406
|
listGatewayRoutes(
|
|
434
407
|
args: ListGatewayRoutesCommandInput,
|
|
435
|
-
options?: __HttpHandlerOptions
|
|
408
|
+
options?: __HttpHandlerOptions,
|
|
436
409
|
): Promise<ListGatewayRoutesCommandOutput>;
|
|
437
410
|
listGatewayRoutes(
|
|
438
411
|
args: ListGatewayRoutesCommandInput,
|
|
439
|
-
cb: (err: any, data?: ListGatewayRoutesCommandOutput) => void
|
|
412
|
+
cb: (err: any, data?: ListGatewayRoutesCommandOutput) => void,
|
|
440
413
|
): void;
|
|
441
414
|
listGatewayRoutes(
|
|
442
415
|
args: ListGatewayRoutesCommandInput,
|
|
443
416
|
options: __HttpHandlerOptions,
|
|
444
|
-
cb: (err: any, data?: ListGatewayRoutesCommandOutput) => void
|
|
417
|
+
cb: (err: any, data?: ListGatewayRoutesCommandOutput) => void,
|
|
445
418
|
): void;
|
|
446
419
|
listMeshes(): Promise<ListMeshesCommandOutput>;
|
|
447
420
|
listMeshes(
|
|
448
421
|
args: ListMeshesCommandInput,
|
|
449
|
-
options?: __HttpHandlerOptions
|
|
422
|
+
options?: __HttpHandlerOptions,
|
|
450
423
|
): Promise<ListMeshesCommandOutput>;
|
|
451
424
|
listMeshes(
|
|
452
425
|
args: ListMeshesCommandInput,
|
|
453
|
-
cb: (err: any, data?: ListMeshesCommandOutput) => void
|
|
426
|
+
cb: (err: any, data?: ListMeshesCommandOutput) => void,
|
|
454
427
|
): void;
|
|
455
428
|
listMeshes(
|
|
456
429
|
args: ListMeshesCommandInput,
|
|
457
430
|
options: __HttpHandlerOptions,
|
|
458
|
-
cb: (err: any, data?: ListMeshesCommandOutput) => void
|
|
431
|
+
cb: (err: any, data?: ListMeshesCommandOutput) => void,
|
|
459
432
|
): void;
|
|
460
433
|
listRoutes(
|
|
461
434
|
args: ListRoutesCommandInput,
|
|
462
|
-
options?: __HttpHandlerOptions
|
|
435
|
+
options?: __HttpHandlerOptions,
|
|
463
436
|
): Promise<ListRoutesCommandOutput>;
|
|
464
437
|
listRoutes(
|
|
465
438
|
args: ListRoutesCommandInput,
|
|
466
|
-
cb: (err: any, data?: ListRoutesCommandOutput) => void
|
|
439
|
+
cb: (err: any, data?: ListRoutesCommandOutput) => void,
|
|
467
440
|
): void;
|
|
468
441
|
listRoutes(
|
|
469
442
|
args: ListRoutesCommandInput,
|
|
470
443
|
options: __HttpHandlerOptions,
|
|
471
|
-
cb: (err: any, data?: ListRoutesCommandOutput) => void
|
|
444
|
+
cb: (err: any, data?: ListRoutesCommandOutput) => void,
|
|
472
445
|
): void;
|
|
473
446
|
listTagsForResource(
|
|
474
447
|
args: ListTagsForResourceCommandInput,
|
|
475
|
-
options?: __HttpHandlerOptions
|
|
448
|
+
options?: __HttpHandlerOptions,
|
|
476
449
|
): Promise<ListTagsForResourceCommandOutput>;
|
|
477
450
|
listTagsForResource(
|
|
478
451
|
args: ListTagsForResourceCommandInput,
|
|
479
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
452
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
480
453
|
): void;
|
|
481
454
|
listTagsForResource(
|
|
482
455
|
args: ListTagsForResourceCommandInput,
|
|
483
456
|
options: __HttpHandlerOptions,
|
|
484
|
-
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
|
|
457
|
+
cb: (err: any, data?: ListTagsForResourceCommandOutput) => void,
|
|
485
458
|
): void;
|
|
486
459
|
listVirtualGateways(
|
|
487
460
|
args: ListVirtualGatewaysCommandInput,
|
|
488
|
-
options?: __HttpHandlerOptions
|
|
461
|
+
options?: __HttpHandlerOptions,
|
|
489
462
|
): Promise<ListVirtualGatewaysCommandOutput>;
|
|
490
463
|
listVirtualGateways(
|
|
491
464
|
args: ListVirtualGatewaysCommandInput,
|
|
492
|
-
cb: (err: any, data?: ListVirtualGatewaysCommandOutput) => void
|
|
465
|
+
cb: (err: any, data?: ListVirtualGatewaysCommandOutput) => void,
|
|
493
466
|
): void;
|
|
494
467
|
listVirtualGateways(
|
|
495
468
|
args: ListVirtualGatewaysCommandInput,
|
|
496
469
|
options: __HttpHandlerOptions,
|
|
497
|
-
cb: (err: any, data?: ListVirtualGatewaysCommandOutput) => void
|
|
470
|
+
cb: (err: any, data?: ListVirtualGatewaysCommandOutput) => void,
|
|
498
471
|
): void;
|
|
499
472
|
listVirtualNodes(
|
|
500
473
|
args: ListVirtualNodesCommandInput,
|
|
501
|
-
options?: __HttpHandlerOptions
|
|
474
|
+
options?: __HttpHandlerOptions,
|
|
502
475
|
): Promise<ListVirtualNodesCommandOutput>;
|
|
503
476
|
listVirtualNodes(
|
|
504
477
|
args: ListVirtualNodesCommandInput,
|
|
505
|
-
cb: (err: any, data?: ListVirtualNodesCommandOutput) => void
|
|
478
|
+
cb: (err: any, data?: ListVirtualNodesCommandOutput) => void,
|
|
506
479
|
): void;
|
|
507
480
|
listVirtualNodes(
|
|
508
481
|
args: ListVirtualNodesCommandInput,
|
|
509
482
|
options: __HttpHandlerOptions,
|
|
510
|
-
cb: (err: any, data?: ListVirtualNodesCommandOutput) => void
|
|
483
|
+
cb: (err: any, data?: ListVirtualNodesCommandOutput) => void,
|
|
511
484
|
): void;
|
|
512
485
|
listVirtualRouters(
|
|
513
486
|
args: ListVirtualRoutersCommandInput,
|
|
514
|
-
options?: __HttpHandlerOptions
|
|
487
|
+
options?: __HttpHandlerOptions,
|
|
515
488
|
): Promise<ListVirtualRoutersCommandOutput>;
|
|
516
489
|
listVirtualRouters(
|
|
517
490
|
args: ListVirtualRoutersCommandInput,
|
|
518
|
-
cb: (err: any, data?: ListVirtualRoutersCommandOutput) => void
|
|
491
|
+
cb: (err: any, data?: ListVirtualRoutersCommandOutput) => void,
|
|
519
492
|
): void;
|
|
520
493
|
listVirtualRouters(
|
|
521
494
|
args: ListVirtualRoutersCommandInput,
|
|
522
495
|
options: __HttpHandlerOptions,
|
|
523
|
-
cb: (err: any, data?: ListVirtualRoutersCommandOutput) => void
|
|
496
|
+
cb: (err: any, data?: ListVirtualRoutersCommandOutput) => void,
|
|
524
497
|
): void;
|
|
525
498
|
listVirtualServices(
|
|
526
499
|
args: ListVirtualServicesCommandInput,
|
|
527
|
-
options?: __HttpHandlerOptions
|
|
500
|
+
options?: __HttpHandlerOptions,
|
|
528
501
|
): Promise<ListVirtualServicesCommandOutput>;
|
|
529
502
|
listVirtualServices(
|
|
530
503
|
args: ListVirtualServicesCommandInput,
|
|
531
|
-
cb: (err: any, data?: ListVirtualServicesCommandOutput) => void
|
|
504
|
+
cb: (err: any, data?: ListVirtualServicesCommandOutput) => void,
|
|
532
505
|
): void;
|
|
533
506
|
listVirtualServices(
|
|
534
507
|
args: ListVirtualServicesCommandInput,
|
|
535
508
|
options: __HttpHandlerOptions,
|
|
536
|
-
cb: (err: any, data?: ListVirtualServicesCommandOutput) => void
|
|
509
|
+
cb: (err: any, data?: ListVirtualServicesCommandOutput) => void,
|
|
537
510
|
): void;
|
|
538
511
|
tagResource(
|
|
539
512
|
args: TagResourceCommandInput,
|
|
540
|
-
options?: __HttpHandlerOptions
|
|
513
|
+
options?: __HttpHandlerOptions,
|
|
541
514
|
): Promise<TagResourceCommandOutput>;
|
|
542
515
|
tagResource(
|
|
543
516
|
args: TagResourceCommandInput,
|
|
544
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
517
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
545
518
|
): void;
|
|
546
519
|
tagResource(
|
|
547
520
|
args: TagResourceCommandInput,
|
|
548
521
|
options: __HttpHandlerOptions,
|
|
549
|
-
cb: (err: any, data?: TagResourceCommandOutput) => void
|
|
522
|
+
cb: (err: any, data?: TagResourceCommandOutput) => void,
|
|
550
523
|
): void;
|
|
551
524
|
untagResource(
|
|
552
525
|
args: UntagResourceCommandInput,
|
|
553
|
-
options?: __HttpHandlerOptions
|
|
526
|
+
options?: __HttpHandlerOptions,
|
|
554
527
|
): Promise<UntagResourceCommandOutput>;
|
|
555
528
|
untagResource(
|
|
556
529
|
args: UntagResourceCommandInput,
|
|
557
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
530
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
558
531
|
): void;
|
|
559
532
|
untagResource(
|
|
560
533
|
args: UntagResourceCommandInput,
|
|
561
534
|
options: __HttpHandlerOptions,
|
|
562
|
-
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
535
|
+
cb: (err: any, data?: UntagResourceCommandOutput) => void,
|
|
563
536
|
): void;
|
|
564
537
|
updateGatewayRoute(
|
|
565
538
|
args: UpdateGatewayRouteCommandInput,
|
|
566
|
-
options?: __HttpHandlerOptions
|
|
539
|
+
options?: __HttpHandlerOptions,
|
|
567
540
|
): Promise<UpdateGatewayRouteCommandOutput>;
|
|
568
541
|
updateGatewayRoute(
|
|
569
542
|
args: UpdateGatewayRouteCommandInput,
|
|
570
|
-
cb: (err: any, data?: UpdateGatewayRouteCommandOutput) => void
|
|
543
|
+
cb: (err: any, data?: UpdateGatewayRouteCommandOutput) => void,
|
|
571
544
|
): void;
|
|
572
545
|
updateGatewayRoute(
|
|
573
546
|
args: UpdateGatewayRouteCommandInput,
|
|
574
547
|
options: __HttpHandlerOptions,
|
|
575
|
-
cb: (err: any, data?: UpdateGatewayRouteCommandOutput) => void
|
|
548
|
+
cb: (err: any, data?: UpdateGatewayRouteCommandOutput) => void,
|
|
576
549
|
): void;
|
|
577
550
|
updateMesh(
|
|
578
551
|
args: UpdateMeshCommandInput,
|
|
579
|
-
options?: __HttpHandlerOptions
|
|
552
|
+
options?: __HttpHandlerOptions,
|
|
580
553
|
): Promise<UpdateMeshCommandOutput>;
|
|
581
554
|
updateMesh(
|
|
582
555
|
args: UpdateMeshCommandInput,
|
|
583
|
-
cb: (err: any, data?: UpdateMeshCommandOutput) => void
|
|
556
|
+
cb: (err: any, data?: UpdateMeshCommandOutput) => void,
|
|
584
557
|
): void;
|
|
585
558
|
updateMesh(
|
|
586
559
|
args: UpdateMeshCommandInput,
|
|
587
560
|
options: __HttpHandlerOptions,
|
|
588
|
-
cb: (err: any, data?: UpdateMeshCommandOutput) => void
|
|
561
|
+
cb: (err: any, data?: UpdateMeshCommandOutput) => void,
|
|
589
562
|
): void;
|
|
590
563
|
updateRoute(
|
|
591
564
|
args: UpdateRouteCommandInput,
|
|
592
|
-
options?: __HttpHandlerOptions
|
|
565
|
+
options?: __HttpHandlerOptions,
|
|
593
566
|
): Promise<UpdateRouteCommandOutput>;
|
|
594
567
|
updateRoute(
|
|
595
568
|
args: UpdateRouteCommandInput,
|
|
596
|
-
cb: (err: any, data?: UpdateRouteCommandOutput) => void
|
|
569
|
+
cb: (err: any, data?: UpdateRouteCommandOutput) => void,
|
|
597
570
|
): void;
|
|
598
571
|
updateRoute(
|
|
599
572
|
args: UpdateRouteCommandInput,
|
|
600
573
|
options: __HttpHandlerOptions,
|
|
601
|
-
cb: (err: any, data?: UpdateRouteCommandOutput) => void
|
|
574
|
+
cb: (err: any, data?: UpdateRouteCommandOutput) => void,
|
|
602
575
|
): void;
|
|
603
576
|
updateVirtualGateway(
|
|
604
577
|
args: UpdateVirtualGatewayCommandInput,
|
|
605
|
-
options?: __HttpHandlerOptions
|
|
578
|
+
options?: __HttpHandlerOptions,
|
|
606
579
|
): Promise<UpdateVirtualGatewayCommandOutput>;
|
|
607
580
|
updateVirtualGateway(
|
|
608
581
|
args: UpdateVirtualGatewayCommandInput,
|
|
609
|
-
cb: (err: any, data?: UpdateVirtualGatewayCommandOutput) => void
|
|
582
|
+
cb: (err: any, data?: UpdateVirtualGatewayCommandOutput) => void,
|
|
610
583
|
): void;
|
|
611
584
|
updateVirtualGateway(
|
|
612
585
|
args: UpdateVirtualGatewayCommandInput,
|
|
613
586
|
options: __HttpHandlerOptions,
|
|
614
|
-
cb: (err: any, data?: UpdateVirtualGatewayCommandOutput) => void
|
|
587
|
+
cb: (err: any, data?: UpdateVirtualGatewayCommandOutput) => void,
|
|
615
588
|
): void;
|
|
616
589
|
updateVirtualNode(
|
|
617
590
|
args: UpdateVirtualNodeCommandInput,
|
|
618
|
-
options?: __HttpHandlerOptions
|
|
591
|
+
options?: __HttpHandlerOptions,
|
|
619
592
|
): Promise<UpdateVirtualNodeCommandOutput>;
|
|
620
593
|
updateVirtualNode(
|
|
621
594
|
args: UpdateVirtualNodeCommandInput,
|
|
622
|
-
cb: (err: any, data?: UpdateVirtualNodeCommandOutput) => void
|
|
595
|
+
cb: (err: any, data?: UpdateVirtualNodeCommandOutput) => void,
|
|
623
596
|
): void;
|
|
624
597
|
updateVirtualNode(
|
|
625
598
|
args: UpdateVirtualNodeCommandInput,
|
|
626
599
|
options: __HttpHandlerOptions,
|
|
627
|
-
cb: (err: any, data?: UpdateVirtualNodeCommandOutput) => void
|
|
600
|
+
cb: (err: any, data?: UpdateVirtualNodeCommandOutput) => void,
|
|
628
601
|
): void;
|
|
629
602
|
updateVirtualRouter(
|
|
630
603
|
args: UpdateVirtualRouterCommandInput,
|
|
631
|
-
options?: __HttpHandlerOptions
|
|
604
|
+
options?: __HttpHandlerOptions,
|
|
632
605
|
): Promise<UpdateVirtualRouterCommandOutput>;
|
|
633
606
|
updateVirtualRouter(
|
|
634
607
|
args: UpdateVirtualRouterCommandInput,
|
|
635
|
-
cb: (err: any, data?: UpdateVirtualRouterCommandOutput) => void
|
|
608
|
+
cb: (err: any, data?: UpdateVirtualRouterCommandOutput) => void,
|
|
636
609
|
): void;
|
|
637
610
|
updateVirtualRouter(
|
|
638
611
|
args: UpdateVirtualRouterCommandInput,
|
|
639
612
|
options: __HttpHandlerOptions,
|
|
640
|
-
cb: (err: any, data?: UpdateVirtualRouterCommandOutput) => void
|
|
613
|
+
cb: (err: any, data?: UpdateVirtualRouterCommandOutput) => void,
|
|
641
614
|
): void;
|
|
642
615
|
updateVirtualService(
|
|
643
616
|
args: UpdateVirtualServiceCommandInput,
|
|
644
|
-
options?: __HttpHandlerOptions
|
|
617
|
+
options?: __HttpHandlerOptions,
|
|
645
618
|
): Promise<UpdateVirtualServiceCommandOutput>;
|
|
646
619
|
updateVirtualService(
|
|
647
620
|
args: UpdateVirtualServiceCommandInput,
|
|
648
|
-
cb: (err: any, data?: UpdateVirtualServiceCommandOutput) => void
|
|
621
|
+
cb: (err: any, data?: UpdateVirtualServiceCommandOutput) => void,
|
|
649
622
|
): void;
|
|
650
623
|
updateVirtualService(
|
|
651
624
|
args: UpdateVirtualServiceCommandInput,
|
|
652
625
|
options: __HttpHandlerOptions,
|
|
653
|
-
cb: (err: any, data?: UpdateVirtualServiceCommandOutput) => void
|
|
626
|
+
cb: (err: any, data?: UpdateVirtualServiceCommandOutput) => void,
|
|
654
627
|
): void;
|
|
655
628
|
paginateListGatewayRoutes(
|
|
656
629
|
args: ListGatewayRoutesCommandInput,
|
|
657
630
|
paginationConfig?: Pick<
|
|
658
631
|
PaginationConfiguration,
|
|
659
632
|
Exclude<keyof PaginationConfiguration, "client">
|
|
660
|
-
|
|
633
|
+
>,
|
|
661
634
|
): Paginator<ListGatewayRoutesCommandOutput>;
|
|
662
635
|
paginateListMeshes(
|
|
663
636
|
args?: ListMeshesCommandInput,
|
|
664
637
|
paginationConfig?: Pick<
|
|
665
638
|
PaginationConfiguration,
|
|
666
639
|
Exclude<keyof PaginationConfiguration, "client">
|
|
667
|
-
|
|
640
|
+
>,
|
|
668
641
|
): Paginator<ListMeshesCommandOutput>;
|
|
669
642
|
paginateListRoutes(
|
|
670
643
|
args: ListRoutesCommandInput,
|
|
671
644
|
paginationConfig?: Pick<
|
|
672
645
|
PaginationConfiguration,
|
|
673
646
|
Exclude<keyof PaginationConfiguration, "client">
|
|
674
|
-
|
|
647
|
+
>,
|
|
675
648
|
): Paginator<ListRoutesCommandOutput>;
|
|
676
649
|
paginateListTagsForResource(
|
|
677
650
|
args: ListTagsForResourceCommandInput,
|
|
678
651
|
paginationConfig?: Pick<
|
|
679
652
|
PaginationConfiguration,
|
|
680
653
|
Exclude<keyof PaginationConfiguration, "client">
|
|
681
|
-
|
|
654
|
+
>,
|
|
682
655
|
): Paginator<ListTagsForResourceCommandOutput>;
|
|
683
656
|
paginateListVirtualGateways(
|
|
684
657
|
args: ListVirtualGatewaysCommandInput,
|
|
685
658
|
paginationConfig?: Pick<
|
|
686
659
|
PaginationConfiguration,
|
|
687
660
|
Exclude<keyof PaginationConfiguration, "client">
|
|
688
|
-
|
|
661
|
+
>,
|
|
689
662
|
): Paginator<ListVirtualGatewaysCommandOutput>;
|
|
690
663
|
paginateListVirtualNodes(
|
|
691
664
|
args: ListVirtualNodesCommandInput,
|
|
692
665
|
paginationConfig?: Pick<
|
|
693
666
|
PaginationConfiguration,
|
|
694
667
|
Exclude<keyof PaginationConfiguration, "client">
|
|
695
|
-
|
|
668
|
+
>,
|
|
696
669
|
): Paginator<ListVirtualNodesCommandOutput>;
|
|
697
670
|
paginateListVirtualRouters(
|
|
698
671
|
args: ListVirtualRoutersCommandInput,
|
|
699
672
|
paginationConfig?: Pick<
|
|
700
673
|
PaginationConfiguration,
|
|
701
674
|
Exclude<keyof PaginationConfiguration, "client">
|
|
702
|
-
|
|
675
|
+
>,
|
|
703
676
|
): Paginator<ListVirtualRoutersCommandOutput>;
|
|
704
677
|
paginateListVirtualServices(
|
|
705
678
|
args: ListVirtualServicesCommandInput,
|
|
706
679
|
paginationConfig?: Pick<
|
|
707
680
|
PaginationConfiguration,
|
|
708
681
|
Exclude<keyof PaginationConfiguration, "client">
|
|
709
|
-
|
|
682
|
+
>,
|
|
710
683
|
): Paginator<ListVirtualServicesCommandOutput>;
|
|
711
684
|
}
|
|
712
685
|
export declare class AppMesh extends AppMeshClient implements AppMesh {}
|