@aws-sdk/client-app-mesh 3.325.0 → 3.327.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.
Files changed (39) hide show
  1. package/dist-types/commands/CreateGatewayRouteCommand.d.ts +182 -0
  2. package/dist-types/commands/CreateMeshCommand.d.ts +28 -0
  3. package/dist-types/commands/CreateRouteCommand.d.ts +224 -0
  4. package/dist-types/commands/CreateVirtualGatewayCommand.d.ts +141 -0
  5. package/dist-types/commands/CreateVirtualNodeCommand.d.ts +246 -0
  6. package/dist-types/commands/CreateVirtualRouterCommand.d.ts +31 -0
  7. package/dist-types/commands/CreateVirtualServiceCommand.d.ts +31 -0
  8. package/dist-types/commands/DeleteGatewayRouteCommand.d.ts +182 -0
  9. package/dist-types/commands/DeleteMeshCommand.d.ts +28 -0
  10. package/dist-types/commands/DeleteRouteCommand.d.ts +224 -0
  11. package/dist-types/commands/DeleteVirtualGatewayCommand.d.ts +141 -0
  12. package/dist-types/commands/DeleteVirtualNodeCommand.d.ts +246 -0
  13. package/dist-types/commands/DeleteVirtualRouterCommand.d.ts +31 -0
  14. package/dist-types/commands/DeleteVirtualServiceCommand.d.ts +31 -0
  15. package/dist-types/commands/DescribeGatewayRouteCommand.d.ts +182 -0
  16. package/dist-types/commands/DescribeMeshCommand.d.ts +28 -0
  17. package/dist-types/commands/DescribeRouteCommand.d.ts +224 -0
  18. package/dist-types/commands/DescribeVirtualGatewayCommand.d.ts +141 -0
  19. package/dist-types/commands/DescribeVirtualNodeCommand.d.ts +246 -0
  20. package/dist-types/commands/DescribeVirtualRouterCommand.d.ts +31 -0
  21. package/dist-types/commands/DescribeVirtualServiceCommand.d.ts +31 -0
  22. package/dist-types/commands/ListGatewayRoutesCommand.d.ts +19 -0
  23. package/dist-types/commands/ListMeshesCommand.d.ts +17 -0
  24. package/dist-types/commands/ListRoutesCommand.d.ts +19 -0
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -0
  26. package/dist-types/commands/ListVirtualGatewaysCommand.d.ts +18 -0
  27. package/dist-types/commands/ListVirtualNodesCommand.d.ts +18 -0
  28. package/dist-types/commands/ListVirtualRoutersCommand.d.ts +18 -0
  29. package/dist-types/commands/ListVirtualServicesCommand.d.ts +18 -0
  30. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  31. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  32. package/dist-types/commands/UpdateGatewayRouteCommand.d.ts +182 -0
  33. package/dist-types/commands/UpdateMeshCommand.d.ts +28 -0
  34. package/dist-types/commands/UpdateRouteCommand.d.ts +224 -0
  35. package/dist-types/commands/UpdateVirtualGatewayCommand.d.ts +141 -0
  36. package/dist-types/commands/UpdateVirtualNodeCommand.d.ts +246 -0
  37. package/dist-types/commands/UpdateVirtualRouterCommand.d.ts +31 -0
  38. package/dist-types/commands/UpdateVirtualServiceCommand.d.ts +31 -0
  39. package/package.json +7 -7
@@ -288,6 +288,250 @@ export interface CreateVirtualNodeCommandOutput extends CreateVirtualNodeOutput,
288
288
  * };
289
289
  * const command = new CreateVirtualNodeCommand(input);
290
290
  * const response = await client.send(command);
291
+ * // { // CreateVirtualNodeOutput
292
+ * // virtualNode: { // VirtualNodeData
293
+ * // meshName: "STRING_VALUE", // required
294
+ * // virtualNodeName: "STRING_VALUE", // required
295
+ * // spec: { // VirtualNodeSpec
296
+ * // serviceDiscovery: { // ServiceDiscovery Union: only one key present
297
+ * // dns: { // DnsServiceDiscovery
298
+ * // hostname: "STRING_VALUE", // required
299
+ * // responseType: "STRING_VALUE",
300
+ * // ipPreference: "STRING_VALUE",
301
+ * // },
302
+ * // awsCloudMap: { // AwsCloudMapServiceDiscovery
303
+ * // namespaceName: "STRING_VALUE", // required
304
+ * // serviceName: "STRING_VALUE", // required
305
+ * // attributes: [ // AwsCloudMapInstanceAttributes
306
+ * // { // AwsCloudMapInstanceAttribute
307
+ * // key: "STRING_VALUE", // required
308
+ * // value: "STRING_VALUE", // required
309
+ * // },
310
+ * // ],
311
+ * // ipPreference: "STRING_VALUE",
312
+ * // },
313
+ * // },
314
+ * // listeners: [ // Listeners
315
+ * // { // Listener
316
+ * // portMapping: { // PortMapping
317
+ * // port: Number("int"), // required
318
+ * // protocol: "STRING_VALUE", // required
319
+ * // },
320
+ * // tls: { // ListenerTls
321
+ * // mode: "STRING_VALUE", // required
322
+ * // certificate: { // ListenerTlsCertificate Union: only one key present
323
+ * // acm: { // ListenerTlsAcmCertificate
324
+ * // certificateArn: "STRING_VALUE", // required
325
+ * // },
326
+ * // file: { // ListenerTlsFileCertificate
327
+ * // certificateChain: "STRING_VALUE", // required
328
+ * // privateKey: "STRING_VALUE", // required
329
+ * // },
330
+ * // sds: { // ListenerTlsSdsCertificate
331
+ * // secretName: "STRING_VALUE", // required
332
+ * // },
333
+ * // },
334
+ * // validation: { // ListenerTlsValidationContext
335
+ * // trust: { // ListenerTlsValidationContextTrust Union: only one key present
336
+ * // file: { // TlsValidationContextFileTrust
337
+ * // certificateChain: "STRING_VALUE", // required
338
+ * // },
339
+ * // sds: { // TlsValidationContextSdsTrust
340
+ * // secretName: "STRING_VALUE", // required
341
+ * // },
342
+ * // },
343
+ * // subjectAlternativeNames: { // SubjectAlternativeNames
344
+ * // match: { // SubjectAlternativeNameMatchers
345
+ * // exact: [ // SubjectAlternativeNameList // required
346
+ * // "STRING_VALUE",
347
+ * // ],
348
+ * // },
349
+ * // },
350
+ * // },
351
+ * // },
352
+ * // healthCheck: { // HealthCheckPolicy
353
+ * // timeoutMillis: Number("long"), // required
354
+ * // intervalMillis: Number("long"), // required
355
+ * // protocol: "STRING_VALUE", // required
356
+ * // port: Number("int"),
357
+ * // path: "STRING_VALUE",
358
+ * // healthyThreshold: Number("int"), // required
359
+ * // unhealthyThreshold: Number("int"), // required
360
+ * // },
361
+ * // timeout: { // ListenerTimeout Union: only one key present
362
+ * // tcp: { // TcpTimeout
363
+ * // idle: { // Duration
364
+ * // value: Number("long"),
365
+ * // unit: "STRING_VALUE",
366
+ * // },
367
+ * // },
368
+ * // http: { // HttpTimeout
369
+ * // perRequest: {
370
+ * // value: Number("long"),
371
+ * // unit: "STRING_VALUE",
372
+ * // },
373
+ * // idle: {
374
+ * // value: Number("long"),
375
+ * // unit: "STRING_VALUE",
376
+ * // },
377
+ * // },
378
+ * // http2: {
379
+ * // perRequest: {
380
+ * // value: Number("long"),
381
+ * // unit: "STRING_VALUE",
382
+ * // },
383
+ * // idle: {
384
+ * // value: Number("long"),
385
+ * // unit: "STRING_VALUE",
386
+ * // },
387
+ * // },
388
+ * // grpc: { // GrpcTimeout
389
+ * // perRequest: "<Duration>",
390
+ * // idle: "<Duration>",
391
+ * // },
392
+ * // },
393
+ * // outlierDetection: { // OutlierDetection
394
+ * // maxServerErrors: Number("long"), // required
395
+ * // interval: "<Duration>", // required
396
+ * // baseEjectionDuration: "<Duration>", // required
397
+ * // maxEjectionPercent: Number("int"), // required
398
+ * // },
399
+ * // connectionPool: { // VirtualNodeConnectionPool Union: only one key present
400
+ * // tcp: { // VirtualNodeTcpConnectionPool
401
+ * // maxConnections: Number("int"), // required
402
+ * // },
403
+ * // http: { // VirtualNodeHttpConnectionPool
404
+ * // maxConnections: Number("int"), // required
405
+ * // maxPendingRequests: Number("int"),
406
+ * // },
407
+ * // http2: { // VirtualNodeHttp2ConnectionPool
408
+ * // maxRequests: Number("int"), // required
409
+ * // },
410
+ * // grpc: { // VirtualNodeGrpcConnectionPool
411
+ * // maxRequests: Number("int"), // required
412
+ * // },
413
+ * // },
414
+ * // },
415
+ * // ],
416
+ * // backends: [ // Backends
417
+ * // { // Backend Union: only one key present
418
+ * // virtualService: { // VirtualServiceBackend
419
+ * // virtualServiceName: "STRING_VALUE", // required
420
+ * // clientPolicy: { // ClientPolicy
421
+ * // tls: { // ClientPolicyTls
422
+ * // enforce: true || false,
423
+ * // ports: [ // PortSet
424
+ * // Number("int"),
425
+ * // ],
426
+ * // certificate: { // ClientTlsCertificate Union: only one key present
427
+ * // file: {
428
+ * // certificateChain: "STRING_VALUE", // required
429
+ * // privateKey: "STRING_VALUE", // required
430
+ * // },
431
+ * // sds: {
432
+ * // secretName: "STRING_VALUE", // required
433
+ * // },
434
+ * // },
435
+ * // validation: { // TlsValidationContext
436
+ * // trust: { // TlsValidationContextTrust Union: only one key present
437
+ * // acm: { // TlsValidationContextAcmTrust
438
+ * // certificateAuthorityArns: [ // CertificateAuthorityArns // required
439
+ * // "STRING_VALUE",
440
+ * // ],
441
+ * // },
442
+ * // file: {
443
+ * // certificateChain: "STRING_VALUE", // required
444
+ * // },
445
+ * // sds: {
446
+ * // secretName: "STRING_VALUE", // required
447
+ * // },
448
+ * // },
449
+ * // subjectAlternativeNames: {
450
+ * // match: {
451
+ * // exact: [ // required
452
+ * // "STRING_VALUE",
453
+ * // ],
454
+ * // },
455
+ * // },
456
+ * // },
457
+ * // },
458
+ * // },
459
+ * // },
460
+ * // },
461
+ * // ],
462
+ * // backendDefaults: { // BackendDefaults
463
+ * // clientPolicy: {
464
+ * // tls: {
465
+ * // enforce: true || false,
466
+ * // ports: [
467
+ * // Number("int"),
468
+ * // ],
469
+ * // certificate: {// Union: only one key present
470
+ * // file: {
471
+ * // certificateChain: "STRING_VALUE", // required
472
+ * // privateKey: "STRING_VALUE", // required
473
+ * // },
474
+ * // sds: {
475
+ * // secretName: "STRING_VALUE", // required
476
+ * // },
477
+ * // },
478
+ * // validation: {
479
+ * // trust: {// Union: only one key present
480
+ * // acm: {
481
+ * // certificateAuthorityArns: [ // required
482
+ * // "STRING_VALUE",
483
+ * // ],
484
+ * // },
485
+ * // file: {
486
+ * // certificateChain: "STRING_VALUE", // required
487
+ * // },
488
+ * // sds: {
489
+ * // secretName: "STRING_VALUE", // required
490
+ * // },
491
+ * // },
492
+ * // subjectAlternativeNames: {
493
+ * // match: {
494
+ * // exact: [ // required
495
+ * // "STRING_VALUE",
496
+ * // ],
497
+ * // },
498
+ * // },
499
+ * // },
500
+ * // },
501
+ * // },
502
+ * // },
503
+ * // logging: { // Logging
504
+ * // accessLog: { // AccessLog Union: only one key present
505
+ * // file: { // FileAccessLog
506
+ * // path: "STRING_VALUE", // required
507
+ * // format: { // LoggingFormat Union: only one key present
508
+ * // text: "STRING_VALUE",
509
+ * // json: [ // JsonFormat
510
+ * // { // JsonFormatRef
511
+ * // key: "STRING_VALUE", // required
512
+ * // value: "STRING_VALUE", // required
513
+ * // },
514
+ * // ],
515
+ * // },
516
+ * // },
517
+ * // },
518
+ * // },
519
+ * // },
520
+ * // metadata: { // ResourceMetadata
521
+ * // arn: "STRING_VALUE", // required
522
+ * // version: Number("long"), // required
523
+ * // uid: "STRING_VALUE", // required
524
+ * // createdAt: new Date("TIMESTAMP"), // required
525
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
526
+ * // meshOwner: "STRING_VALUE", // required
527
+ * // resourceOwner: "STRING_VALUE", // required
528
+ * // },
529
+ * // status: { // VirtualNodeStatus
530
+ * // status: "STRING_VALUE", // required
531
+ * // },
532
+ * // },
533
+ * // };
534
+ *
291
535
  * ```
292
536
  *
293
537
  * @param CreateVirtualNodeCommandInput - {@link CreateVirtualNodeCommandInput}
@@ -325,6 +569,8 @@ export interface CreateVirtualNodeCommandOutput extends CreateVirtualNodeOutput,
325
569
  * your account. For best results, use an increasing or variable sleep interval between
326
570
  * requests.</p>
327
571
  *
572
+ * @throws {@link AppMeshServiceException}
573
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
328
574
  *
329
575
  */
330
576
  export declare class CreateVirtualNodeCommand extends $Command<CreateVirtualNodeCommandInput, CreateVirtualNodeCommandOutput, AppMeshClientResolvedConfig> {
@@ -56,6 +56,35 @@ export interface CreateVirtualRouterCommandOutput extends CreateVirtualRouterOut
56
56
  * };
57
57
  * const command = new CreateVirtualRouterCommand(input);
58
58
  * const response = await client.send(command);
59
+ * // { // CreateVirtualRouterOutput
60
+ * // virtualRouter: { // VirtualRouterData
61
+ * // meshName: "STRING_VALUE", // required
62
+ * // virtualRouterName: "STRING_VALUE", // required
63
+ * // spec: { // VirtualRouterSpec
64
+ * // listeners: [ // VirtualRouterListeners
65
+ * // { // VirtualRouterListener
66
+ * // portMapping: { // PortMapping
67
+ * // port: Number("int"), // required
68
+ * // protocol: "STRING_VALUE", // required
69
+ * // },
70
+ * // },
71
+ * // ],
72
+ * // },
73
+ * // metadata: { // ResourceMetadata
74
+ * // arn: "STRING_VALUE", // required
75
+ * // version: Number("long"), // required
76
+ * // uid: "STRING_VALUE", // required
77
+ * // createdAt: new Date("TIMESTAMP"), // required
78
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
79
+ * // meshOwner: "STRING_VALUE", // required
80
+ * // resourceOwner: "STRING_VALUE", // required
81
+ * // },
82
+ * // status: { // VirtualRouterStatus
83
+ * // status: "STRING_VALUE", // required
84
+ * // },
85
+ * // },
86
+ * // };
87
+ *
59
88
  * ```
60
89
  *
61
90
  * @param CreateVirtualRouterCommandInput - {@link CreateVirtualRouterCommandInput}
@@ -93,6 +122,8 @@ export interface CreateVirtualRouterCommandOutput extends CreateVirtualRouterOut
93
122
  * your account. For best results, use an increasing or variable sleep interval between
94
123
  * requests.</p>
95
124
  *
125
+ * @throws {@link AppMeshServiceException}
126
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
96
127
  *
97
128
  */
98
129
  export declare class CreateVirtualRouterCommand extends $Command<CreateVirtualRouterCommandInput, CreateVirtualRouterCommandOutput, AppMeshClientResolvedConfig> {
@@ -56,6 +56,35 @@ export interface CreateVirtualServiceCommandOutput extends CreateVirtualServiceO
56
56
  * };
57
57
  * const command = new CreateVirtualServiceCommand(input);
58
58
  * const response = await client.send(command);
59
+ * // { // CreateVirtualServiceOutput
60
+ * // virtualService: { // VirtualServiceData
61
+ * // meshName: "STRING_VALUE", // required
62
+ * // virtualServiceName: "STRING_VALUE", // required
63
+ * // spec: { // VirtualServiceSpec
64
+ * // provider: { // VirtualServiceProvider Union: only one key present
65
+ * // virtualNode: { // VirtualNodeServiceProvider
66
+ * // virtualNodeName: "STRING_VALUE", // required
67
+ * // },
68
+ * // virtualRouter: { // VirtualRouterServiceProvider
69
+ * // virtualRouterName: "STRING_VALUE", // required
70
+ * // },
71
+ * // },
72
+ * // },
73
+ * // metadata: { // ResourceMetadata
74
+ * // arn: "STRING_VALUE", // required
75
+ * // version: Number("long"), // required
76
+ * // uid: "STRING_VALUE", // required
77
+ * // createdAt: new Date("TIMESTAMP"), // required
78
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
79
+ * // meshOwner: "STRING_VALUE", // required
80
+ * // resourceOwner: "STRING_VALUE", // required
81
+ * // },
82
+ * // status: { // VirtualServiceStatus
83
+ * // status: "STRING_VALUE", // required
84
+ * // },
85
+ * // },
86
+ * // };
87
+ *
59
88
  * ```
60
89
  *
61
90
  * @param CreateVirtualServiceCommandInput - {@link CreateVirtualServiceCommandInput}
@@ -93,6 +122,8 @@ export interface CreateVirtualServiceCommandOutput extends CreateVirtualServiceO
93
122
  * your account. For best results, use an increasing or variable sleep interval between
94
123
  * requests.</p>
95
124
  *
125
+ * @throws {@link AppMeshServiceException}
126
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
96
127
  *
97
128
  */
98
129
  export declare class CreateVirtualServiceCommand extends $Command<CreateVirtualServiceCommandInput, CreateVirtualServiceCommandOutput, AppMeshClientResolvedConfig> {
@@ -34,6 +34,186 @@ export interface DeleteGatewayRouteCommandOutput extends DeleteGatewayRouteOutpu
34
34
  * };
35
35
  * const command = new DeleteGatewayRouteCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // DeleteGatewayRouteOutput
38
+ * // gatewayRoute: { // GatewayRouteData
39
+ * // meshName: "STRING_VALUE", // required
40
+ * // gatewayRouteName: "STRING_VALUE", // required
41
+ * // virtualGatewayName: "STRING_VALUE", // required
42
+ * // spec: { // GatewayRouteSpec
43
+ * // priority: Number("int"),
44
+ * // httpRoute: { // HttpGatewayRoute
45
+ * // match: { // HttpGatewayRouteMatch
46
+ * // prefix: "STRING_VALUE",
47
+ * // path: { // HttpPathMatch
48
+ * // exact: "STRING_VALUE",
49
+ * // regex: "STRING_VALUE",
50
+ * // },
51
+ * // queryParameters: [ // HttpQueryParameters
52
+ * // { // HttpQueryParameter
53
+ * // name: "STRING_VALUE", // required
54
+ * // match: { // QueryParameterMatch
55
+ * // exact: "STRING_VALUE",
56
+ * // },
57
+ * // },
58
+ * // ],
59
+ * // method: "STRING_VALUE",
60
+ * // hostname: { // GatewayRouteHostnameMatch
61
+ * // exact: "STRING_VALUE",
62
+ * // suffix: "STRING_VALUE",
63
+ * // },
64
+ * // headers: [ // HttpGatewayRouteHeaders
65
+ * // { // HttpGatewayRouteHeader
66
+ * // name: "STRING_VALUE", // required
67
+ * // invert: true || false,
68
+ * // match: { // HeaderMatchMethod Union: only one key present
69
+ * // exact: "STRING_VALUE",
70
+ * // regex: "STRING_VALUE",
71
+ * // range: { // MatchRange
72
+ * // start: Number("long"), // required
73
+ * // end: Number("long"), // required
74
+ * // },
75
+ * // prefix: "STRING_VALUE",
76
+ * // suffix: "STRING_VALUE",
77
+ * // },
78
+ * // },
79
+ * // ],
80
+ * // port: Number("int"),
81
+ * // },
82
+ * // action: { // HttpGatewayRouteAction
83
+ * // target: { // GatewayRouteTarget
84
+ * // virtualService: { // GatewayRouteVirtualService
85
+ * // virtualServiceName: "STRING_VALUE", // required
86
+ * // },
87
+ * // port: Number("int"),
88
+ * // },
89
+ * // rewrite: { // HttpGatewayRouteRewrite
90
+ * // prefix: { // HttpGatewayRoutePrefixRewrite
91
+ * // defaultPrefix: "STRING_VALUE",
92
+ * // value: "STRING_VALUE",
93
+ * // },
94
+ * // path: { // HttpGatewayRoutePathRewrite
95
+ * // exact: "STRING_VALUE",
96
+ * // },
97
+ * // hostname: { // GatewayRouteHostnameRewrite
98
+ * // defaultTargetHostname: "STRING_VALUE",
99
+ * // },
100
+ * // },
101
+ * // },
102
+ * // },
103
+ * // http2Route: {
104
+ * // match: {
105
+ * // prefix: "STRING_VALUE",
106
+ * // path: {
107
+ * // exact: "STRING_VALUE",
108
+ * // regex: "STRING_VALUE",
109
+ * // },
110
+ * // queryParameters: [
111
+ * // {
112
+ * // name: "STRING_VALUE", // required
113
+ * // match: {
114
+ * // exact: "STRING_VALUE",
115
+ * // },
116
+ * // },
117
+ * // ],
118
+ * // method: "STRING_VALUE",
119
+ * // hostname: {
120
+ * // exact: "STRING_VALUE",
121
+ * // suffix: "STRING_VALUE",
122
+ * // },
123
+ * // headers: [
124
+ * // {
125
+ * // name: "STRING_VALUE", // required
126
+ * // invert: true || false,
127
+ * // match: {// Union: only one key present
128
+ * // exact: "STRING_VALUE",
129
+ * // regex: "STRING_VALUE",
130
+ * // range: {
131
+ * // start: Number("long"), // required
132
+ * // end: Number("long"), // required
133
+ * // },
134
+ * // prefix: "STRING_VALUE",
135
+ * // suffix: "STRING_VALUE",
136
+ * // },
137
+ * // },
138
+ * // ],
139
+ * // port: Number("int"),
140
+ * // },
141
+ * // action: {
142
+ * // target: {
143
+ * // virtualService: {
144
+ * // virtualServiceName: "STRING_VALUE", // required
145
+ * // },
146
+ * // port: Number("int"),
147
+ * // },
148
+ * // rewrite: {
149
+ * // prefix: {
150
+ * // defaultPrefix: "STRING_VALUE",
151
+ * // value: "STRING_VALUE",
152
+ * // },
153
+ * // path: {
154
+ * // exact: "STRING_VALUE",
155
+ * // },
156
+ * // hostname: {
157
+ * // defaultTargetHostname: "STRING_VALUE",
158
+ * // },
159
+ * // },
160
+ * // },
161
+ * // },
162
+ * // grpcRoute: { // GrpcGatewayRoute
163
+ * // match: { // GrpcGatewayRouteMatch
164
+ * // serviceName: "STRING_VALUE",
165
+ * // hostname: {
166
+ * // exact: "STRING_VALUE",
167
+ * // suffix: "STRING_VALUE",
168
+ * // },
169
+ * // metadata: [ // GrpcGatewayRouteMetadataList
170
+ * // { // GrpcGatewayRouteMetadata
171
+ * // name: "STRING_VALUE", // required
172
+ * // invert: true || false,
173
+ * // match: { // GrpcMetadataMatchMethod Union: only one key present
174
+ * // exact: "STRING_VALUE",
175
+ * // regex: "STRING_VALUE",
176
+ * // range: {
177
+ * // start: Number("long"), // required
178
+ * // end: Number("long"), // required
179
+ * // },
180
+ * // prefix: "STRING_VALUE",
181
+ * // suffix: "STRING_VALUE",
182
+ * // },
183
+ * // },
184
+ * // ],
185
+ * // port: Number("int"),
186
+ * // },
187
+ * // action: { // GrpcGatewayRouteAction
188
+ * // target: {
189
+ * // virtualService: {
190
+ * // virtualServiceName: "STRING_VALUE", // required
191
+ * // },
192
+ * // port: Number("int"),
193
+ * // },
194
+ * // rewrite: { // GrpcGatewayRouteRewrite
195
+ * // hostname: {
196
+ * // defaultTargetHostname: "STRING_VALUE",
197
+ * // },
198
+ * // },
199
+ * // },
200
+ * // },
201
+ * // },
202
+ * // metadata: { // ResourceMetadata
203
+ * // arn: "STRING_VALUE", // required
204
+ * // version: Number("long"), // required
205
+ * // uid: "STRING_VALUE", // required
206
+ * // createdAt: new Date("TIMESTAMP"), // required
207
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
208
+ * // meshOwner: "STRING_VALUE", // required
209
+ * // resourceOwner: "STRING_VALUE", // required
210
+ * // },
211
+ * // status: { // GatewayRouteStatus
212
+ * // status: "STRING_VALUE", // required
213
+ * // },
214
+ * // },
215
+ * // };
216
+ *
37
217
  * ```
38
218
  *
39
219
  * @param DeleteGatewayRouteCommandInput - {@link DeleteGatewayRouteCommandInput}
@@ -67,6 +247,8 @@ export interface DeleteGatewayRouteCommandOutput extends DeleteGatewayRouteOutpu
67
247
  * your account. For best results, use an increasing or variable sleep interval between
68
248
  * requests.</p>
69
249
  *
250
+ * @throws {@link AppMeshServiceException}
251
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
70
252
  *
71
253
  */
72
254
  export declare class DeleteGatewayRouteCommand extends $Command<DeleteGatewayRouteCommandInput, DeleteGatewayRouteCommandOutput, AppMeshClientResolvedConfig> {
@@ -33,6 +33,32 @@ export interface DeleteMeshCommandOutput extends DeleteMeshOutput, __MetadataBea
33
33
  * };
34
34
  * const command = new DeleteMeshCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // DeleteMeshOutput
37
+ * // mesh: { // MeshData
38
+ * // meshName: "STRING_VALUE", // required
39
+ * // spec: { // MeshSpec
40
+ * // egressFilter: { // EgressFilter
41
+ * // type: "STRING_VALUE", // required
42
+ * // },
43
+ * // serviceDiscovery: { // MeshServiceDiscovery
44
+ * // ipPreference: "STRING_VALUE",
45
+ * // },
46
+ * // },
47
+ * // metadata: { // ResourceMetadata
48
+ * // arn: "STRING_VALUE", // required
49
+ * // version: Number("long"), // required
50
+ * // uid: "STRING_VALUE", // required
51
+ * // createdAt: new Date("TIMESTAMP"), // required
52
+ * // lastUpdatedAt: new Date("TIMESTAMP"), // required
53
+ * // meshOwner: "STRING_VALUE", // required
54
+ * // resourceOwner: "STRING_VALUE", // required
55
+ * // },
56
+ * // status: { // MeshStatus
57
+ * // status: "STRING_VALUE",
58
+ * // },
59
+ * // },
60
+ * // };
61
+ *
36
62
  * ```
37
63
  *
38
64
  * @param DeleteMeshCommandInput - {@link DeleteMeshCommandInput}
@@ -66,6 +92,8 @@ export interface DeleteMeshCommandOutput extends DeleteMeshOutput, __MetadataBea
66
92
  * your account. For best results, use an increasing or variable sleep interval between
67
93
  * requests.</p>
68
94
  *
95
+ * @throws {@link AppMeshServiceException}
96
+ * <p>Base exception class for all service exceptions from AppMesh service.</p>
69
97
  *
70
98
  */
71
99
  export declare class DeleteMeshCommand extends $Command<DeleteMeshCommandInput, DeleteMeshCommandOutput, AppMeshClientResolvedConfig> {