@aws-sdk/client-app-mesh 3.927.0 → 3.929.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 +2611 -1742
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/AppMeshClient.js +2 -0
- package/dist-es/commands/CreateGatewayRouteCommand.js +3 -9
- package/dist-es/commands/CreateMeshCommand.js +3 -9
- package/dist-es/commands/CreateRouteCommand.js +3 -9
- package/dist-es/commands/CreateVirtualGatewayCommand.js +3 -9
- package/dist-es/commands/CreateVirtualNodeCommand.js +3 -9
- package/dist-es/commands/CreateVirtualRouterCommand.js +3 -9
- package/dist-es/commands/CreateVirtualServiceCommand.js +3 -9
- package/dist-es/commands/DeleteGatewayRouteCommand.js +3 -9
- package/dist-es/commands/DeleteMeshCommand.js +3 -9
- package/dist-es/commands/DeleteRouteCommand.js +3 -9
- package/dist-es/commands/DeleteVirtualGatewayCommand.js +3 -9
- package/dist-es/commands/DeleteVirtualNodeCommand.js +3 -9
- package/dist-es/commands/DeleteVirtualRouterCommand.js +3 -9
- package/dist-es/commands/DeleteVirtualServiceCommand.js +3 -9
- package/dist-es/commands/DescribeGatewayRouteCommand.js +3 -9
- package/dist-es/commands/DescribeMeshCommand.js +3 -9
- package/dist-es/commands/DescribeRouteCommand.js +3 -9
- package/dist-es/commands/DescribeVirtualGatewayCommand.js +3 -9
- package/dist-es/commands/DescribeVirtualNodeCommand.js +3 -9
- package/dist-es/commands/DescribeVirtualRouterCommand.js +3 -9
- package/dist-es/commands/DescribeVirtualServiceCommand.js +3 -9
- package/dist-es/commands/ListGatewayRoutesCommand.js +3 -9
- package/dist-es/commands/ListMeshesCommand.js +3 -9
- package/dist-es/commands/ListRoutesCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListVirtualGatewaysCommand.js +3 -9
- package/dist-es/commands/ListVirtualNodesCommand.js +3 -9
- package/dist-es/commands/ListVirtualRoutersCommand.js +3 -9
- package/dist-es/commands/ListVirtualServicesCommand.js +3 -9
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/commands/UpdateGatewayRouteCommand.js +3 -9
- package/dist-es/commands/UpdateMeshCommand.js +3 -9
- package/dist-es/commands/UpdateRouteCommand.js +3 -9
- package/dist-es/commands/UpdateVirtualGatewayCommand.js +3 -9
- package/dist-es/commands/UpdateVirtualNodeCommand.js +3 -9
- package/dist-es/commands/UpdateVirtualRouterCommand.js +3 -9
- package/dist-es/commands/UpdateVirtualServiceCommand.js +3 -9
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +2515 -0
- package/dist-types/AppMeshClient.d.ts +10 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +296 -0
- package/dist-types/ts3.4/AppMeshClient.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +301 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_restJson1.js +0 -1451
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -344
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -461
|
@@ -1,461 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
HttpRequest as __HttpRequest,
|
|
3
|
-
HttpResponse as __HttpResponse,
|
|
4
|
-
} from "@smithy/protocol-http";
|
|
5
|
-
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
-
import {
|
|
7
|
-
CreateGatewayRouteCommandInput,
|
|
8
|
-
CreateGatewayRouteCommandOutput,
|
|
9
|
-
} from "../commands/CreateGatewayRouteCommand";
|
|
10
|
-
import {
|
|
11
|
-
CreateMeshCommandInput,
|
|
12
|
-
CreateMeshCommandOutput,
|
|
13
|
-
} from "../commands/CreateMeshCommand";
|
|
14
|
-
import {
|
|
15
|
-
CreateRouteCommandInput,
|
|
16
|
-
CreateRouteCommandOutput,
|
|
17
|
-
} from "../commands/CreateRouteCommand";
|
|
18
|
-
import {
|
|
19
|
-
CreateVirtualGatewayCommandInput,
|
|
20
|
-
CreateVirtualGatewayCommandOutput,
|
|
21
|
-
} from "../commands/CreateVirtualGatewayCommand";
|
|
22
|
-
import {
|
|
23
|
-
CreateVirtualNodeCommandInput,
|
|
24
|
-
CreateVirtualNodeCommandOutput,
|
|
25
|
-
} from "../commands/CreateVirtualNodeCommand";
|
|
26
|
-
import {
|
|
27
|
-
CreateVirtualRouterCommandInput,
|
|
28
|
-
CreateVirtualRouterCommandOutput,
|
|
29
|
-
} from "../commands/CreateVirtualRouterCommand";
|
|
30
|
-
import {
|
|
31
|
-
CreateVirtualServiceCommandInput,
|
|
32
|
-
CreateVirtualServiceCommandOutput,
|
|
33
|
-
} from "../commands/CreateVirtualServiceCommand";
|
|
34
|
-
import {
|
|
35
|
-
DeleteGatewayRouteCommandInput,
|
|
36
|
-
DeleteGatewayRouteCommandOutput,
|
|
37
|
-
} from "../commands/DeleteGatewayRouteCommand";
|
|
38
|
-
import {
|
|
39
|
-
DeleteMeshCommandInput,
|
|
40
|
-
DeleteMeshCommandOutput,
|
|
41
|
-
} from "../commands/DeleteMeshCommand";
|
|
42
|
-
import {
|
|
43
|
-
DeleteRouteCommandInput,
|
|
44
|
-
DeleteRouteCommandOutput,
|
|
45
|
-
} from "../commands/DeleteRouteCommand";
|
|
46
|
-
import {
|
|
47
|
-
DeleteVirtualGatewayCommandInput,
|
|
48
|
-
DeleteVirtualGatewayCommandOutput,
|
|
49
|
-
} from "../commands/DeleteVirtualGatewayCommand";
|
|
50
|
-
import {
|
|
51
|
-
DeleteVirtualNodeCommandInput,
|
|
52
|
-
DeleteVirtualNodeCommandOutput,
|
|
53
|
-
} from "../commands/DeleteVirtualNodeCommand";
|
|
54
|
-
import {
|
|
55
|
-
DeleteVirtualRouterCommandInput,
|
|
56
|
-
DeleteVirtualRouterCommandOutput,
|
|
57
|
-
} from "../commands/DeleteVirtualRouterCommand";
|
|
58
|
-
import {
|
|
59
|
-
DeleteVirtualServiceCommandInput,
|
|
60
|
-
DeleteVirtualServiceCommandOutput,
|
|
61
|
-
} from "../commands/DeleteVirtualServiceCommand";
|
|
62
|
-
import {
|
|
63
|
-
DescribeGatewayRouteCommandInput,
|
|
64
|
-
DescribeGatewayRouteCommandOutput,
|
|
65
|
-
} from "../commands/DescribeGatewayRouteCommand";
|
|
66
|
-
import {
|
|
67
|
-
DescribeMeshCommandInput,
|
|
68
|
-
DescribeMeshCommandOutput,
|
|
69
|
-
} from "../commands/DescribeMeshCommand";
|
|
70
|
-
import {
|
|
71
|
-
DescribeRouteCommandInput,
|
|
72
|
-
DescribeRouteCommandOutput,
|
|
73
|
-
} from "../commands/DescribeRouteCommand";
|
|
74
|
-
import {
|
|
75
|
-
DescribeVirtualGatewayCommandInput,
|
|
76
|
-
DescribeVirtualGatewayCommandOutput,
|
|
77
|
-
} from "../commands/DescribeVirtualGatewayCommand";
|
|
78
|
-
import {
|
|
79
|
-
DescribeVirtualNodeCommandInput,
|
|
80
|
-
DescribeVirtualNodeCommandOutput,
|
|
81
|
-
} from "../commands/DescribeVirtualNodeCommand";
|
|
82
|
-
import {
|
|
83
|
-
DescribeVirtualRouterCommandInput,
|
|
84
|
-
DescribeVirtualRouterCommandOutput,
|
|
85
|
-
} from "../commands/DescribeVirtualRouterCommand";
|
|
86
|
-
import {
|
|
87
|
-
DescribeVirtualServiceCommandInput,
|
|
88
|
-
DescribeVirtualServiceCommandOutput,
|
|
89
|
-
} from "../commands/DescribeVirtualServiceCommand";
|
|
90
|
-
import {
|
|
91
|
-
ListGatewayRoutesCommandInput,
|
|
92
|
-
ListGatewayRoutesCommandOutput,
|
|
93
|
-
} from "../commands/ListGatewayRoutesCommand";
|
|
94
|
-
import {
|
|
95
|
-
ListMeshesCommandInput,
|
|
96
|
-
ListMeshesCommandOutput,
|
|
97
|
-
} from "../commands/ListMeshesCommand";
|
|
98
|
-
import {
|
|
99
|
-
ListRoutesCommandInput,
|
|
100
|
-
ListRoutesCommandOutput,
|
|
101
|
-
} from "../commands/ListRoutesCommand";
|
|
102
|
-
import {
|
|
103
|
-
ListTagsForResourceCommandInput,
|
|
104
|
-
ListTagsForResourceCommandOutput,
|
|
105
|
-
} from "../commands/ListTagsForResourceCommand";
|
|
106
|
-
import {
|
|
107
|
-
ListVirtualGatewaysCommandInput,
|
|
108
|
-
ListVirtualGatewaysCommandOutput,
|
|
109
|
-
} from "../commands/ListVirtualGatewaysCommand";
|
|
110
|
-
import {
|
|
111
|
-
ListVirtualNodesCommandInput,
|
|
112
|
-
ListVirtualNodesCommandOutput,
|
|
113
|
-
} from "../commands/ListVirtualNodesCommand";
|
|
114
|
-
import {
|
|
115
|
-
ListVirtualRoutersCommandInput,
|
|
116
|
-
ListVirtualRoutersCommandOutput,
|
|
117
|
-
} from "../commands/ListVirtualRoutersCommand";
|
|
118
|
-
import {
|
|
119
|
-
ListVirtualServicesCommandInput,
|
|
120
|
-
ListVirtualServicesCommandOutput,
|
|
121
|
-
} from "../commands/ListVirtualServicesCommand";
|
|
122
|
-
import {
|
|
123
|
-
TagResourceCommandInput,
|
|
124
|
-
TagResourceCommandOutput,
|
|
125
|
-
} from "../commands/TagResourceCommand";
|
|
126
|
-
import {
|
|
127
|
-
UntagResourceCommandInput,
|
|
128
|
-
UntagResourceCommandOutput,
|
|
129
|
-
} from "../commands/UntagResourceCommand";
|
|
130
|
-
import {
|
|
131
|
-
UpdateGatewayRouteCommandInput,
|
|
132
|
-
UpdateGatewayRouteCommandOutput,
|
|
133
|
-
} from "../commands/UpdateGatewayRouteCommand";
|
|
134
|
-
import {
|
|
135
|
-
UpdateMeshCommandInput,
|
|
136
|
-
UpdateMeshCommandOutput,
|
|
137
|
-
} from "../commands/UpdateMeshCommand";
|
|
138
|
-
import {
|
|
139
|
-
UpdateRouteCommandInput,
|
|
140
|
-
UpdateRouteCommandOutput,
|
|
141
|
-
} from "../commands/UpdateRouteCommand";
|
|
142
|
-
import {
|
|
143
|
-
UpdateVirtualGatewayCommandInput,
|
|
144
|
-
UpdateVirtualGatewayCommandOutput,
|
|
145
|
-
} from "../commands/UpdateVirtualGatewayCommand";
|
|
146
|
-
import {
|
|
147
|
-
UpdateVirtualNodeCommandInput,
|
|
148
|
-
UpdateVirtualNodeCommandOutput,
|
|
149
|
-
} from "../commands/UpdateVirtualNodeCommand";
|
|
150
|
-
import {
|
|
151
|
-
UpdateVirtualRouterCommandInput,
|
|
152
|
-
UpdateVirtualRouterCommandOutput,
|
|
153
|
-
} from "../commands/UpdateVirtualRouterCommand";
|
|
154
|
-
import {
|
|
155
|
-
UpdateVirtualServiceCommandInput,
|
|
156
|
-
UpdateVirtualServiceCommandOutput,
|
|
157
|
-
} from "../commands/UpdateVirtualServiceCommand";
|
|
158
|
-
export declare const se_CreateGatewayRouteCommand: (
|
|
159
|
-
input: CreateGatewayRouteCommandInput,
|
|
160
|
-
context: __SerdeContext
|
|
161
|
-
) => Promise<__HttpRequest>;
|
|
162
|
-
export declare const se_CreateMeshCommand: (
|
|
163
|
-
input: CreateMeshCommandInput,
|
|
164
|
-
context: __SerdeContext
|
|
165
|
-
) => Promise<__HttpRequest>;
|
|
166
|
-
export declare const se_CreateRouteCommand: (
|
|
167
|
-
input: CreateRouteCommandInput,
|
|
168
|
-
context: __SerdeContext
|
|
169
|
-
) => Promise<__HttpRequest>;
|
|
170
|
-
export declare const se_CreateVirtualGatewayCommand: (
|
|
171
|
-
input: CreateVirtualGatewayCommandInput,
|
|
172
|
-
context: __SerdeContext
|
|
173
|
-
) => Promise<__HttpRequest>;
|
|
174
|
-
export declare const se_CreateVirtualNodeCommand: (
|
|
175
|
-
input: CreateVirtualNodeCommandInput,
|
|
176
|
-
context: __SerdeContext
|
|
177
|
-
) => Promise<__HttpRequest>;
|
|
178
|
-
export declare const se_CreateVirtualRouterCommand: (
|
|
179
|
-
input: CreateVirtualRouterCommandInput,
|
|
180
|
-
context: __SerdeContext
|
|
181
|
-
) => Promise<__HttpRequest>;
|
|
182
|
-
export declare const se_CreateVirtualServiceCommand: (
|
|
183
|
-
input: CreateVirtualServiceCommandInput,
|
|
184
|
-
context: __SerdeContext
|
|
185
|
-
) => Promise<__HttpRequest>;
|
|
186
|
-
export declare const se_DeleteGatewayRouteCommand: (
|
|
187
|
-
input: DeleteGatewayRouteCommandInput,
|
|
188
|
-
context: __SerdeContext
|
|
189
|
-
) => Promise<__HttpRequest>;
|
|
190
|
-
export declare const se_DeleteMeshCommand: (
|
|
191
|
-
input: DeleteMeshCommandInput,
|
|
192
|
-
context: __SerdeContext
|
|
193
|
-
) => Promise<__HttpRequest>;
|
|
194
|
-
export declare const se_DeleteRouteCommand: (
|
|
195
|
-
input: DeleteRouteCommandInput,
|
|
196
|
-
context: __SerdeContext
|
|
197
|
-
) => Promise<__HttpRequest>;
|
|
198
|
-
export declare const se_DeleteVirtualGatewayCommand: (
|
|
199
|
-
input: DeleteVirtualGatewayCommandInput,
|
|
200
|
-
context: __SerdeContext
|
|
201
|
-
) => Promise<__HttpRequest>;
|
|
202
|
-
export declare const se_DeleteVirtualNodeCommand: (
|
|
203
|
-
input: DeleteVirtualNodeCommandInput,
|
|
204
|
-
context: __SerdeContext
|
|
205
|
-
) => Promise<__HttpRequest>;
|
|
206
|
-
export declare const se_DeleteVirtualRouterCommand: (
|
|
207
|
-
input: DeleteVirtualRouterCommandInput,
|
|
208
|
-
context: __SerdeContext
|
|
209
|
-
) => Promise<__HttpRequest>;
|
|
210
|
-
export declare const se_DeleteVirtualServiceCommand: (
|
|
211
|
-
input: DeleteVirtualServiceCommandInput,
|
|
212
|
-
context: __SerdeContext
|
|
213
|
-
) => Promise<__HttpRequest>;
|
|
214
|
-
export declare const se_DescribeGatewayRouteCommand: (
|
|
215
|
-
input: DescribeGatewayRouteCommandInput,
|
|
216
|
-
context: __SerdeContext
|
|
217
|
-
) => Promise<__HttpRequest>;
|
|
218
|
-
export declare const se_DescribeMeshCommand: (
|
|
219
|
-
input: DescribeMeshCommandInput,
|
|
220
|
-
context: __SerdeContext
|
|
221
|
-
) => Promise<__HttpRequest>;
|
|
222
|
-
export declare const se_DescribeRouteCommand: (
|
|
223
|
-
input: DescribeRouteCommandInput,
|
|
224
|
-
context: __SerdeContext
|
|
225
|
-
) => Promise<__HttpRequest>;
|
|
226
|
-
export declare const se_DescribeVirtualGatewayCommand: (
|
|
227
|
-
input: DescribeVirtualGatewayCommandInput,
|
|
228
|
-
context: __SerdeContext
|
|
229
|
-
) => Promise<__HttpRequest>;
|
|
230
|
-
export declare const se_DescribeVirtualNodeCommand: (
|
|
231
|
-
input: DescribeVirtualNodeCommandInput,
|
|
232
|
-
context: __SerdeContext
|
|
233
|
-
) => Promise<__HttpRequest>;
|
|
234
|
-
export declare const se_DescribeVirtualRouterCommand: (
|
|
235
|
-
input: DescribeVirtualRouterCommandInput,
|
|
236
|
-
context: __SerdeContext
|
|
237
|
-
) => Promise<__HttpRequest>;
|
|
238
|
-
export declare const se_DescribeVirtualServiceCommand: (
|
|
239
|
-
input: DescribeVirtualServiceCommandInput,
|
|
240
|
-
context: __SerdeContext
|
|
241
|
-
) => Promise<__HttpRequest>;
|
|
242
|
-
export declare const se_ListGatewayRoutesCommand: (
|
|
243
|
-
input: ListGatewayRoutesCommandInput,
|
|
244
|
-
context: __SerdeContext
|
|
245
|
-
) => Promise<__HttpRequest>;
|
|
246
|
-
export declare const se_ListMeshesCommand: (
|
|
247
|
-
input: ListMeshesCommandInput,
|
|
248
|
-
context: __SerdeContext
|
|
249
|
-
) => Promise<__HttpRequest>;
|
|
250
|
-
export declare const se_ListRoutesCommand: (
|
|
251
|
-
input: ListRoutesCommandInput,
|
|
252
|
-
context: __SerdeContext
|
|
253
|
-
) => Promise<__HttpRequest>;
|
|
254
|
-
export declare const se_ListTagsForResourceCommand: (
|
|
255
|
-
input: ListTagsForResourceCommandInput,
|
|
256
|
-
context: __SerdeContext
|
|
257
|
-
) => Promise<__HttpRequest>;
|
|
258
|
-
export declare const se_ListVirtualGatewaysCommand: (
|
|
259
|
-
input: ListVirtualGatewaysCommandInput,
|
|
260
|
-
context: __SerdeContext
|
|
261
|
-
) => Promise<__HttpRequest>;
|
|
262
|
-
export declare const se_ListVirtualNodesCommand: (
|
|
263
|
-
input: ListVirtualNodesCommandInput,
|
|
264
|
-
context: __SerdeContext
|
|
265
|
-
) => Promise<__HttpRequest>;
|
|
266
|
-
export declare const se_ListVirtualRoutersCommand: (
|
|
267
|
-
input: ListVirtualRoutersCommandInput,
|
|
268
|
-
context: __SerdeContext
|
|
269
|
-
) => Promise<__HttpRequest>;
|
|
270
|
-
export declare const se_ListVirtualServicesCommand: (
|
|
271
|
-
input: ListVirtualServicesCommandInput,
|
|
272
|
-
context: __SerdeContext
|
|
273
|
-
) => Promise<__HttpRequest>;
|
|
274
|
-
export declare const se_TagResourceCommand: (
|
|
275
|
-
input: TagResourceCommandInput,
|
|
276
|
-
context: __SerdeContext
|
|
277
|
-
) => Promise<__HttpRequest>;
|
|
278
|
-
export declare const se_UntagResourceCommand: (
|
|
279
|
-
input: UntagResourceCommandInput,
|
|
280
|
-
context: __SerdeContext
|
|
281
|
-
) => Promise<__HttpRequest>;
|
|
282
|
-
export declare const se_UpdateGatewayRouteCommand: (
|
|
283
|
-
input: UpdateGatewayRouteCommandInput,
|
|
284
|
-
context: __SerdeContext
|
|
285
|
-
) => Promise<__HttpRequest>;
|
|
286
|
-
export declare const se_UpdateMeshCommand: (
|
|
287
|
-
input: UpdateMeshCommandInput,
|
|
288
|
-
context: __SerdeContext
|
|
289
|
-
) => Promise<__HttpRequest>;
|
|
290
|
-
export declare const se_UpdateRouteCommand: (
|
|
291
|
-
input: UpdateRouteCommandInput,
|
|
292
|
-
context: __SerdeContext
|
|
293
|
-
) => Promise<__HttpRequest>;
|
|
294
|
-
export declare const se_UpdateVirtualGatewayCommand: (
|
|
295
|
-
input: UpdateVirtualGatewayCommandInput,
|
|
296
|
-
context: __SerdeContext
|
|
297
|
-
) => Promise<__HttpRequest>;
|
|
298
|
-
export declare const se_UpdateVirtualNodeCommand: (
|
|
299
|
-
input: UpdateVirtualNodeCommandInput,
|
|
300
|
-
context: __SerdeContext
|
|
301
|
-
) => Promise<__HttpRequest>;
|
|
302
|
-
export declare const se_UpdateVirtualRouterCommand: (
|
|
303
|
-
input: UpdateVirtualRouterCommandInput,
|
|
304
|
-
context: __SerdeContext
|
|
305
|
-
) => Promise<__HttpRequest>;
|
|
306
|
-
export declare const se_UpdateVirtualServiceCommand: (
|
|
307
|
-
input: UpdateVirtualServiceCommandInput,
|
|
308
|
-
context: __SerdeContext
|
|
309
|
-
) => Promise<__HttpRequest>;
|
|
310
|
-
export declare const de_CreateGatewayRouteCommand: (
|
|
311
|
-
output: __HttpResponse,
|
|
312
|
-
context: __SerdeContext
|
|
313
|
-
) => Promise<CreateGatewayRouteCommandOutput>;
|
|
314
|
-
export declare const de_CreateMeshCommand: (
|
|
315
|
-
output: __HttpResponse,
|
|
316
|
-
context: __SerdeContext
|
|
317
|
-
) => Promise<CreateMeshCommandOutput>;
|
|
318
|
-
export declare const de_CreateRouteCommand: (
|
|
319
|
-
output: __HttpResponse,
|
|
320
|
-
context: __SerdeContext
|
|
321
|
-
) => Promise<CreateRouteCommandOutput>;
|
|
322
|
-
export declare const de_CreateVirtualGatewayCommand: (
|
|
323
|
-
output: __HttpResponse,
|
|
324
|
-
context: __SerdeContext
|
|
325
|
-
) => Promise<CreateVirtualGatewayCommandOutput>;
|
|
326
|
-
export declare const de_CreateVirtualNodeCommand: (
|
|
327
|
-
output: __HttpResponse,
|
|
328
|
-
context: __SerdeContext
|
|
329
|
-
) => Promise<CreateVirtualNodeCommandOutput>;
|
|
330
|
-
export declare const de_CreateVirtualRouterCommand: (
|
|
331
|
-
output: __HttpResponse,
|
|
332
|
-
context: __SerdeContext
|
|
333
|
-
) => Promise<CreateVirtualRouterCommandOutput>;
|
|
334
|
-
export declare const de_CreateVirtualServiceCommand: (
|
|
335
|
-
output: __HttpResponse,
|
|
336
|
-
context: __SerdeContext
|
|
337
|
-
) => Promise<CreateVirtualServiceCommandOutput>;
|
|
338
|
-
export declare const de_DeleteGatewayRouteCommand: (
|
|
339
|
-
output: __HttpResponse,
|
|
340
|
-
context: __SerdeContext
|
|
341
|
-
) => Promise<DeleteGatewayRouteCommandOutput>;
|
|
342
|
-
export declare const de_DeleteMeshCommand: (
|
|
343
|
-
output: __HttpResponse,
|
|
344
|
-
context: __SerdeContext
|
|
345
|
-
) => Promise<DeleteMeshCommandOutput>;
|
|
346
|
-
export declare const de_DeleteRouteCommand: (
|
|
347
|
-
output: __HttpResponse,
|
|
348
|
-
context: __SerdeContext
|
|
349
|
-
) => Promise<DeleteRouteCommandOutput>;
|
|
350
|
-
export declare const de_DeleteVirtualGatewayCommand: (
|
|
351
|
-
output: __HttpResponse,
|
|
352
|
-
context: __SerdeContext
|
|
353
|
-
) => Promise<DeleteVirtualGatewayCommandOutput>;
|
|
354
|
-
export declare const de_DeleteVirtualNodeCommand: (
|
|
355
|
-
output: __HttpResponse,
|
|
356
|
-
context: __SerdeContext
|
|
357
|
-
) => Promise<DeleteVirtualNodeCommandOutput>;
|
|
358
|
-
export declare const de_DeleteVirtualRouterCommand: (
|
|
359
|
-
output: __HttpResponse,
|
|
360
|
-
context: __SerdeContext
|
|
361
|
-
) => Promise<DeleteVirtualRouterCommandOutput>;
|
|
362
|
-
export declare const de_DeleteVirtualServiceCommand: (
|
|
363
|
-
output: __HttpResponse,
|
|
364
|
-
context: __SerdeContext
|
|
365
|
-
) => Promise<DeleteVirtualServiceCommandOutput>;
|
|
366
|
-
export declare const de_DescribeGatewayRouteCommand: (
|
|
367
|
-
output: __HttpResponse,
|
|
368
|
-
context: __SerdeContext
|
|
369
|
-
) => Promise<DescribeGatewayRouteCommandOutput>;
|
|
370
|
-
export declare const de_DescribeMeshCommand: (
|
|
371
|
-
output: __HttpResponse,
|
|
372
|
-
context: __SerdeContext
|
|
373
|
-
) => Promise<DescribeMeshCommandOutput>;
|
|
374
|
-
export declare const de_DescribeRouteCommand: (
|
|
375
|
-
output: __HttpResponse,
|
|
376
|
-
context: __SerdeContext
|
|
377
|
-
) => Promise<DescribeRouteCommandOutput>;
|
|
378
|
-
export declare const de_DescribeVirtualGatewayCommand: (
|
|
379
|
-
output: __HttpResponse,
|
|
380
|
-
context: __SerdeContext
|
|
381
|
-
) => Promise<DescribeVirtualGatewayCommandOutput>;
|
|
382
|
-
export declare const de_DescribeVirtualNodeCommand: (
|
|
383
|
-
output: __HttpResponse,
|
|
384
|
-
context: __SerdeContext
|
|
385
|
-
) => Promise<DescribeVirtualNodeCommandOutput>;
|
|
386
|
-
export declare const de_DescribeVirtualRouterCommand: (
|
|
387
|
-
output: __HttpResponse,
|
|
388
|
-
context: __SerdeContext
|
|
389
|
-
) => Promise<DescribeVirtualRouterCommandOutput>;
|
|
390
|
-
export declare const de_DescribeVirtualServiceCommand: (
|
|
391
|
-
output: __HttpResponse,
|
|
392
|
-
context: __SerdeContext
|
|
393
|
-
) => Promise<DescribeVirtualServiceCommandOutput>;
|
|
394
|
-
export declare const de_ListGatewayRoutesCommand: (
|
|
395
|
-
output: __HttpResponse,
|
|
396
|
-
context: __SerdeContext
|
|
397
|
-
) => Promise<ListGatewayRoutesCommandOutput>;
|
|
398
|
-
export declare const de_ListMeshesCommand: (
|
|
399
|
-
output: __HttpResponse,
|
|
400
|
-
context: __SerdeContext
|
|
401
|
-
) => Promise<ListMeshesCommandOutput>;
|
|
402
|
-
export declare const de_ListRoutesCommand: (
|
|
403
|
-
output: __HttpResponse,
|
|
404
|
-
context: __SerdeContext
|
|
405
|
-
) => Promise<ListRoutesCommandOutput>;
|
|
406
|
-
export declare const de_ListTagsForResourceCommand: (
|
|
407
|
-
output: __HttpResponse,
|
|
408
|
-
context: __SerdeContext
|
|
409
|
-
) => Promise<ListTagsForResourceCommandOutput>;
|
|
410
|
-
export declare const de_ListVirtualGatewaysCommand: (
|
|
411
|
-
output: __HttpResponse,
|
|
412
|
-
context: __SerdeContext
|
|
413
|
-
) => Promise<ListVirtualGatewaysCommandOutput>;
|
|
414
|
-
export declare const de_ListVirtualNodesCommand: (
|
|
415
|
-
output: __HttpResponse,
|
|
416
|
-
context: __SerdeContext
|
|
417
|
-
) => Promise<ListVirtualNodesCommandOutput>;
|
|
418
|
-
export declare const de_ListVirtualRoutersCommand: (
|
|
419
|
-
output: __HttpResponse,
|
|
420
|
-
context: __SerdeContext
|
|
421
|
-
) => Promise<ListVirtualRoutersCommandOutput>;
|
|
422
|
-
export declare const de_ListVirtualServicesCommand: (
|
|
423
|
-
output: __HttpResponse,
|
|
424
|
-
context: __SerdeContext
|
|
425
|
-
) => Promise<ListVirtualServicesCommandOutput>;
|
|
426
|
-
export declare const de_TagResourceCommand: (
|
|
427
|
-
output: __HttpResponse,
|
|
428
|
-
context: __SerdeContext
|
|
429
|
-
) => Promise<TagResourceCommandOutput>;
|
|
430
|
-
export declare const de_UntagResourceCommand: (
|
|
431
|
-
output: __HttpResponse,
|
|
432
|
-
context: __SerdeContext
|
|
433
|
-
) => Promise<UntagResourceCommandOutput>;
|
|
434
|
-
export declare const de_UpdateGatewayRouteCommand: (
|
|
435
|
-
output: __HttpResponse,
|
|
436
|
-
context: __SerdeContext
|
|
437
|
-
) => Promise<UpdateGatewayRouteCommandOutput>;
|
|
438
|
-
export declare const de_UpdateMeshCommand: (
|
|
439
|
-
output: __HttpResponse,
|
|
440
|
-
context: __SerdeContext
|
|
441
|
-
) => Promise<UpdateMeshCommandOutput>;
|
|
442
|
-
export declare const de_UpdateRouteCommand: (
|
|
443
|
-
output: __HttpResponse,
|
|
444
|
-
context: __SerdeContext
|
|
445
|
-
) => Promise<UpdateRouteCommandOutput>;
|
|
446
|
-
export declare const de_UpdateVirtualGatewayCommand: (
|
|
447
|
-
output: __HttpResponse,
|
|
448
|
-
context: __SerdeContext
|
|
449
|
-
) => Promise<UpdateVirtualGatewayCommandOutput>;
|
|
450
|
-
export declare const de_UpdateVirtualNodeCommand: (
|
|
451
|
-
output: __HttpResponse,
|
|
452
|
-
context: __SerdeContext
|
|
453
|
-
) => Promise<UpdateVirtualNodeCommandOutput>;
|
|
454
|
-
export declare const de_UpdateVirtualRouterCommand: (
|
|
455
|
-
output: __HttpResponse,
|
|
456
|
-
context: __SerdeContext
|
|
457
|
-
) => Promise<UpdateVirtualRouterCommandOutput>;
|
|
458
|
-
export declare const de_UpdateVirtualServiceCommand: (
|
|
459
|
-
output: __HttpResponse,
|
|
460
|
-
context: __SerdeContext
|
|
461
|
-
) => Promise<UpdateVirtualServiceCommandOutput>;
|