@aws-sdk/client-app-mesh 3.170.0 → 3.178.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 (51) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  3. package/dist-types/runtimeConfig.d.ts +1 -1
  4. package/dist-types/runtimeConfig.native.d.ts +1 -1
  5. package/dist-types/ts3.4/AppMesh.d.ts +0 -38
  6. package/dist-types/ts3.4/AppMeshClient.d.ts +0 -25
  7. package/dist-types/ts3.4/commands/CreateGatewayRouteCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/CreateMeshCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/CreateRouteCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/CreateVirtualGatewayCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/CreateVirtualNodeCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/CreateVirtualRouterCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/CreateVirtualServiceCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/DeleteGatewayRouteCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/DeleteMeshCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/DeleteRouteCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/DeleteVirtualGatewayCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/DeleteVirtualNodeCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/DeleteVirtualRouterCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/DeleteVirtualServiceCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/DescribeGatewayRouteCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/DescribeMeshCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/DescribeRouteCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/DescribeVirtualGatewayCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/DescribeVirtualNodeCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/DescribeVirtualRouterCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/DescribeVirtualServiceCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/commands/ListGatewayRoutesCommand.d.ts +0 -2
  29. package/dist-types/ts3.4/commands/ListMeshesCommand.d.ts +0 -2
  30. package/dist-types/ts3.4/commands/ListRoutesCommand.d.ts +0 -2
  31. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +0 -2
  32. package/dist-types/ts3.4/commands/ListVirtualGatewaysCommand.d.ts +0 -2
  33. package/dist-types/ts3.4/commands/ListVirtualNodesCommand.d.ts +0 -2
  34. package/dist-types/ts3.4/commands/ListVirtualRoutersCommand.d.ts +0 -2
  35. package/dist-types/ts3.4/commands/ListVirtualServicesCommand.d.ts +0 -2
  36. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
  37. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
  38. package/dist-types/ts3.4/commands/UpdateGatewayRouteCommand.d.ts +0 -2
  39. package/dist-types/ts3.4/commands/UpdateMeshCommand.d.ts +0 -2
  40. package/dist-types/ts3.4/commands/UpdateRouteCommand.d.ts +0 -2
  41. package/dist-types/ts3.4/commands/UpdateVirtualGatewayCommand.d.ts +0 -2
  42. package/dist-types/ts3.4/commands/UpdateVirtualNodeCommand.d.ts +0 -2
  43. package/dist-types/ts3.4/commands/UpdateVirtualRouterCommand.d.ts +0 -2
  44. package/dist-types/ts3.4/commands/UpdateVirtualServiceCommand.d.ts +0 -2
  45. package/dist-types/ts3.4/models/AppMeshServiceException.d.ts +0 -1
  46. package/dist-types/ts3.4/models/models_0.d.ts +0 -807
  47. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  48. package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
  49. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
  50. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  51. package/package.json +26 -26
@@ -1,12 +1,9 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { AppMeshServiceException as __BaseException } from "./AppMeshServiceException";
3
-
4
3
  export interface JsonFormatRef {
5
4
  key: string | undefined;
6
-
7
5
  value: string | undefined;
8
6
  }
9
-
10
7
  export declare type LoggingFormat =
11
8
  | LoggingFormat.JsonMember
12
9
  | LoggingFormat.TextMember
@@ -17,7 +14,6 @@ export declare namespace LoggingFormat {
17
14
  json?: never;
18
15
  $unknown?: never;
19
16
  }
20
-
21
17
  interface JsonMember {
22
18
  text?: never;
23
19
  json: JsonFormatRef[];
@@ -35,13 +31,10 @@ export declare namespace LoggingFormat {
35
31
  }
36
32
  const visit: <T>(value: LoggingFormat, visitor: Visitor<T>) => T;
37
33
  }
38
-
39
34
  export interface FileAccessLog {
40
35
  path: string | undefined;
41
-
42
36
  format?: LoggingFormat;
43
37
  }
44
-
45
38
  export declare type AccessLog = AccessLog.FileMember | AccessLog.$UnknownMember;
46
39
  export declare namespace AccessLog {
47
40
  interface FileMember {
@@ -58,93 +51,71 @@ export declare namespace AccessLog {
58
51
  }
59
52
  const visit: <T>(value: AccessLog, visitor: Visitor<T>) => T;
60
53
  }
61
-
62
54
  export declare class BadRequestException extends __BaseException {
63
55
  readonly name: "BadRequestException";
64
56
  readonly $fault: "client";
65
-
66
57
  constructor(
67
58
  opts: __ExceptionOptionType<BadRequestException, __BaseException>
68
59
  );
69
60
  }
70
-
71
61
  export declare class ForbiddenException extends __BaseException {
72
62
  readonly name: "ForbiddenException";
73
63
  readonly $fault: "client";
74
-
75
64
  constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
76
65
  }
77
-
78
66
  export declare class InternalServerErrorException extends __BaseException {
79
67
  readonly name: "InternalServerErrorException";
80
68
  readonly $fault: "server";
81
69
  $retryable: {};
82
-
83
70
  constructor(
84
71
  opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>
85
72
  );
86
73
  }
87
-
88
74
  export interface ListTagsForResourceInput {
89
75
  resourceArn: string | undefined;
90
-
91
76
  nextToken?: string;
92
-
93
77
  limit?: number;
94
78
  }
95
-
96
79
  export interface TagRef {
97
80
  key: string | undefined;
98
-
99
81
  value: string | undefined;
100
82
  }
101
-
102
83
  export interface ListTagsForResourceOutput {
103
84
  tags: TagRef[] | undefined;
104
-
105
85
  nextToken?: string;
106
86
  }
107
-
108
87
  export declare class NotFoundException extends __BaseException {
109
88
  readonly name: "NotFoundException";
110
89
  readonly $fault: "client";
111
-
112
90
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
113
91
  }
114
-
115
92
  export declare class ServiceUnavailableException extends __BaseException {
116
93
  readonly name: "ServiceUnavailableException";
117
94
  readonly $fault: "server";
118
95
  $retryable: {};
119
-
120
96
  constructor(
121
97
  opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
122
98
  );
123
99
  }
124
-
125
100
  export declare class TooManyRequestsException extends __BaseException {
126
101
  readonly name: "TooManyRequestsException";
127
102
  readonly $fault: "client";
128
103
  $retryable: {
129
104
  throttling: boolean;
130
105
  };
131
-
132
106
  constructor(
133
107
  opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
134
108
  );
135
109
  }
136
-
137
110
  export declare class ConflictException extends __BaseException {
138
111
  readonly name: "ConflictException";
139
112
  readonly $fault: "client";
140
-
141
113
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
142
114
  }
143
115
  export declare enum EgressFilterType {
144
116
  ALLOW_ALL = "ALLOW_ALL",
145
117
  DROP_ALL = "DROP_ALL",
146
118
  }
147
-
148
119
  export interface EgressFilter {
149
120
  type: EgressFilterType | string | undefined;
150
121
  }
@@ -154,40 +125,26 @@ export declare enum IpPreference {
154
125
  IPv6_ONLY = "IPv6_ONLY",
155
126
  IPv6_PREFERRED = "IPv6_PREFERRED",
156
127
  }
157
-
158
128
  export interface MeshServiceDiscovery {
159
129
  ipPreference?: IpPreference | string;
160
130
  }
161
-
162
131
  export interface MeshSpec {
163
132
  egressFilter?: EgressFilter;
164
-
165
133
  serviceDiscovery?: MeshServiceDiscovery;
166
134
  }
167
-
168
135
  export interface CreateMeshInput {
169
136
  meshName: string | undefined;
170
-
171
137
  spec?: MeshSpec;
172
-
173
138
  tags?: TagRef[];
174
-
175
139
  clientToken?: string;
176
140
  }
177
-
178
141
  export interface ResourceMetadata {
179
142
  arn: string | undefined;
180
-
181
143
  version: number | undefined;
182
-
183
144
  uid: string | undefined;
184
-
185
145
  createdAt: Date | undefined;
186
-
187
146
  lastUpdatedAt: Date | undefined;
188
-
189
147
  meshOwner: string | undefined;
190
-
191
148
  resourceOwner: string | undefined;
192
149
  }
193
150
  export declare enum MeshStatusCode {
@@ -195,111 +152,77 @@ export declare enum MeshStatusCode {
195
152
  DELETED = "DELETED",
196
153
  INACTIVE = "INACTIVE",
197
154
  }
198
-
199
155
  export interface MeshStatus {
200
156
  status?: MeshStatusCode | string;
201
157
  }
202
-
203
158
  export interface MeshData {
204
159
  meshName: string | undefined;
205
-
206
160
  spec: MeshSpec | undefined;
207
-
208
161
  metadata: ResourceMetadata | undefined;
209
-
210
162
  status: MeshStatus | undefined;
211
163
  }
212
-
213
164
  export interface CreateMeshOutput {
214
165
  mesh: MeshData | undefined;
215
166
  }
216
-
217
167
  export declare class LimitExceededException extends __BaseException {
218
168
  readonly name: "LimitExceededException";
219
169
  readonly $fault: "client";
220
-
221
170
  constructor(
222
171
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
223
172
  );
224
173
  }
225
-
226
174
  export interface DeleteMeshInput {
227
175
  meshName: string | undefined;
228
176
  }
229
-
230
177
  export interface DeleteMeshOutput {
231
178
  mesh: MeshData | undefined;
232
179
  }
233
-
234
180
  export declare class ResourceInUseException extends __BaseException {
235
181
  readonly name: "ResourceInUseException";
236
182
  readonly $fault: "client";
237
-
238
183
  constructor(
239
184
  opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
240
185
  );
241
186
  }
242
-
243
187
  export interface DescribeMeshInput {
244
188
  meshName: string | undefined;
245
-
246
189
  meshOwner?: string;
247
190
  }
248
-
249
191
  export interface DescribeMeshOutput {
250
192
  mesh: MeshData | undefined;
251
193
  }
252
-
253
194
  export interface ListMeshesInput {
254
195
  nextToken?: string;
255
-
256
196
  limit?: number;
257
197
  }
258
-
259
198
  export interface MeshRef {
260
199
  meshName: string | undefined;
261
-
262
200
  meshOwner: string | undefined;
263
-
264
201
  resourceOwner: string | undefined;
265
-
266
202
  arn: string | undefined;
267
-
268
203
  version: number | undefined;
269
-
270
204
  createdAt: Date | undefined;
271
-
272
205
  lastUpdatedAt: Date | undefined;
273
206
  }
274
-
275
207
  export interface ListMeshesOutput {
276
208
  meshes: MeshRef[] | undefined;
277
-
278
209
  nextToken?: string;
279
210
  }
280
-
281
211
  export interface UpdateMeshInput {
282
212
  meshName: string | undefined;
283
-
284
213
  spec?: MeshSpec;
285
-
286
214
  clientToken?: string;
287
215
  }
288
-
289
216
  export interface UpdateMeshOutput {
290
217
  mesh: MeshData | undefined;
291
218
  }
292
-
293
219
  export interface VirtualGatewayListenerTlsFileCertificate {
294
220
  certificateChain: string | undefined;
295
-
296
221
  privateKey: string | undefined;
297
222
  }
298
-
299
223
  export interface VirtualGatewayListenerTlsSdsCertificate {
300
224
  secretName: string | undefined;
301
225
  }
302
-
303
226
  export declare type VirtualGatewayClientTlsCertificate =
304
227
  | VirtualGatewayClientTlsCertificate.FileMember
305
228
  | VirtualGatewayClientTlsCertificate.SdsMember
@@ -310,7 +233,6 @@ export declare namespace VirtualGatewayClientTlsCertificate {
310
233
  sds?: never;
311
234
  $unknown?: never;
312
235
  }
313
-
314
236
  interface SdsMember {
315
237
  file?: never;
316
238
  sds: VirtualGatewayListenerTlsSdsCertificate;
@@ -331,27 +253,21 @@ export declare namespace VirtualGatewayClientTlsCertificate {
331
253
  visitor: Visitor<T>
332
254
  ) => T;
333
255
  }
334
-
335
256
  export interface SubjectAlternativeNameMatchers {
336
257
  exact: string[] | undefined;
337
258
  }
338
-
339
259
  export interface SubjectAlternativeNames {
340
260
  match: SubjectAlternativeNameMatchers | undefined;
341
261
  }
342
-
343
262
  export interface VirtualGatewayTlsValidationContextAcmTrust {
344
263
  certificateAuthorityArns: string[] | undefined;
345
264
  }
346
-
347
265
  export interface VirtualGatewayTlsValidationContextFileTrust {
348
266
  certificateChain: string | undefined;
349
267
  }
350
-
351
268
  export interface VirtualGatewayTlsValidationContextSdsTrust {
352
269
  secretName: string | undefined;
353
270
  }
354
-
355
271
  export declare type VirtualGatewayTlsValidationContextTrust =
356
272
  | VirtualGatewayTlsValidationContextTrust.AcmMember
357
273
  | VirtualGatewayTlsValidationContextTrust.FileMember
@@ -364,14 +280,12 @@ export declare namespace VirtualGatewayTlsValidationContextTrust {
364
280
  sds?: never;
365
281
  $unknown?: never;
366
282
  }
367
-
368
283
  interface FileMember {
369
284
  acm?: never;
370
285
  file: VirtualGatewayTlsValidationContextFileTrust;
371
286
  sds?: never;
372
287
  $unknown?: never;
373
288
  }
374
-
375
289
  interface SdsMember {
376
290
  acm?: never;
377
291
  file?: never;
@@ -395,45 +309,32 @@ export declare namespace VirtualGatewayTlsValidationContextTrust {
395
309
  visitor: Visitor<T>
396
310
  ) => T;
397
311
  }
398
-
399
312
  export interface VirtualGatewayTlsValidationContext {
400
313
  trust: VirtualGatewayTlsValidationContextTrust | undefined;
401
-
402
314
  subjectAlternativeNames?: SubjectAlternativeNames;
403
315
  }
404
-
405
316
  export interface VirtualGatewayClientPolicyTls {
406
317
  enforce?: boolean;
407
-
408
318
  ports?: number[];
409
-
410
319
  certificate?: VirtualGatewayClientTlsCertificate;
411
-
412
320
  validation: VirtualGatewayTlsValidationContext | undefined;
413
321
  }
414
-
415
322
  export interface VirtualGatewayClientPolicy {
416
323
  tls?: VirtualGatewayClientPolicyTls;
417
324
  }
418
-
419
325
  export interface VirtualGatewayBackendDefaults {
420
326
  clientPolicy?: VirtualGatewayClientPolicy;
421
327
  }
422
-
423
328
  export interface VirtualGatewayGrpcConnectionPool {
424
329
  maxRequests: number | undefined;
425
330
  }
426
-
427
331
  export interface VirtualGatewayHttpConnectionPool {
428
332
  maxConnections: number | undefined;
429
-
430
333
  maxPendingRequests?: number;
431
334
  }
432
-
433
335
  export interface VirtualGatewayHttp2ConnectionPool {
434
336
  maxRequests: number | undefined;
435
337
  }
436
-
437
338
  export declare type VirtualGatewayConnectionPool =
438
339
  | VirtualGatewayConnectionPool.GrpcMember
439
340
  | VirtualGatewayConnectionPool.HttpMember
@@ -446,14 +347,12 @@ export declare namespace VirtualGatewayConnectionPool {
446
347
  grpc?: never;
447
348
  $unknown?: never;
448
349
  }
449
-
450
350
  interface Http2Member {
451
351
  http?: never;
452
352
  http2: VirtualGatewayHttp2ConnectionPool;
453
353
  grpc?: never;
454
354
  $unknown?: never;
455
355
  }
456
-
457
356
  interface GrpcMember {
458
357
  http?: never;
459
358
  http2?: never;
@@ -482,33 +381,22 @@ export declare enum VirtualGatewayPortProtocol {
482
381
  HTTP = "http",
483
382
  HTTP2 = "http2",
484
383
  }
485
-
486
384
  export interface VirtualGatewayHealthCheckPolicy {
487
385
  timeoutMillis: number | undefined;
488
-
489
386
  intervalMillis: number | undefined;
490
-
491
387
  protocol: VirtualGatewayPortProtocol | string | undefined;
492
-
493
388
  port?: number;
494
-
495
389
  path?: string;
496
-
497
390
  healthyThreshold: number | undefined;
498
-
499
391
  unhealthyThreshold: number | undefined;
500
392
  }
501
-
502
393
  export interface VirtualGatewayPortMapping {
503
394
  port: number | undefined;
504
-
505
395
  protocol: VirtualGatewayPortProtocol | string | undefined;
506
396
  }
507
-
508
397
  export interface VirtualGatewayListenerTlsAcmCertificate {
509
398
  certificateArn: string | undefined;
510
399
  }
511
-
512
400
  export declare type VirtualGatewayListenerTlsCertificate =
513
401
  | VirtualGatewayListenerTlsCertificate.AcmMember
514
402
  | VirtualGatewayListenerTlsCertificate.FileMember
@@ -521,14 +409,12 @@ export declare namespace VirtualGatewayListenerTlsCertificate {
521
409
  sds?: never;
522
410
  $unknown?: never;
523
411
  }
524
-
525
412
  interface FileMember {
526
413
  acm?: never;
527
414
  file: VirtualGatewayListenerTlsFileCertificate;
528
415
  sds?: never;
529
416
  $unknown?: never;
530
417
  }
531
-
532
418
  interface SdsMember {
533
419
  acm?: never;
534
420
  file?: never;
@@ -557,7 +443,6 @@ export declare enum VirtualGatewayListenerTlsMode {
557
443
  PERMISSIVE = "PERMISSIVE",
558
444
  STRICT = "STRICT",
559
445
  }
560
-
561
446
  export declare type VirtualGatewayListenerTlsValidationContextTrust =
562
447
  | VirtualGatewayListenerTlsValidationContextTrust.FileMember
563
448
  | VirtualGatewayListenerTlsValidationContextTrust.SdsMember
@@ -568,7 +453,6 @@ export declare namespace VirtualGatewayListenerTlsValidationContextTrust {
568
453
  sds?: never;
569
454
  $unknown?: never;
570
455
  }
571
-
572
456
  interface SdsMember {
573
457
  file?: never;
574
458
  sds: VirtualGatewayTlsValidationContextSdsTrust;
@@ -589,37 +473,25 @@ export declare namespace VirtualGatewayListenerTlsValidationContextTrust {
589
473
  visitor: Visitor<T>
590
474
  ) => T;
591
475
  }
592
-
593
476
  export interface VirtualGatewayListenerTlsValidationContext {
594
477
  trust: VirtualGatewayListenerTlsValidationContextTrust | undefined;
595
-
596
478
  subjectAlternativeNames?: SubjectAlternativeNames;
597
479
  }
598
-
599
480
  export interface VirtualGatewayListenerTls {
600
481
  mode: VirtualGatewayListenerTlsMode | string | undefined;
601
-
602
482
  validation?: VirtualGatewayListenerTlsValidationContext;
603
-
604
483
  certificate: VirtualGatewayListenerTlsCertificate | undefined;
605
484
  }
606
-
607
485
  export interface VirtualGatewayListener {
608
486
  healthCheck?: VirtualGatewayHealthCheckPolicy;
609
-
610
487
  portMapping: VirtualGatewayPortMapping | undefined;
611
-
612
488
  tls?: VirtualGatewayListenerTls;
613
-
614
489
  connectionPool?: VirtualGatewayConnectionPool;
615
490
  }
616
-
617
491
  export interface VirtualGatewayFileAccessLog {
618
492
  path: string | undefined;
619
-
620
493
  format?: LoggingFormat;
621
494
  }
622
-
623
495
  export declare type VirtualGatewayAccessLog =
624
496
  | VirtualGatewayAccessLog.FileMember
625
497
  | VirtualGatewayAccessLog.$UnknownMember;
@@ -638,29 +510,20 @@ export declare namespace VirtualGatewayAccessLog {
638
510
  }
639
511
  const visit: <T>(value: VirtualGatewayAccessLog, visitor: Visitor<T>) => T;
640
512
  }
641
-
642
513
  export interface VirtualGatewayLogging {
643
514
  accessLog?: VirtualGatewayAccessLog;
644
515
  }
645
-
646
516
  export interface VirtualGatewaySpec {
647
517
  backendDefaults?: VirtualGatewayBackendDefaults;
648
-
649
518
  listeners: VirtualGatewayListener[] | undefined;
650
-
651
519
  logging?: VirtualGatewayLogging;
652
520
  }
653
521
  export interface CreateVirtualGatewayInput {
654
522
  virtualGatewayName: string | undefined;
655
-
656
523
  meshName: string | undefined;
657
-
658
524
  spec: VirtualGatewaySpec | undefined;
659
-
660
525
  tags?: TagRef[];
661
-
662
526
  clientToken?: string;
663
-
664
527
  meshOwner?: string;
665
528
  }
666
529
  export declare enum VirtualGatewayStatusCode {
@@ -668,20 +531,14 @@ export declare enum VirtualGatewayStatusCode {
668
531
  DELETED = "DELETED",
669
532
  INACTIVE = "INACTIVE",
670
533
  }
671
-
672
534
  export interface VirtualGatewayStatus {
673
535
  status: VirtualGatewayStatusCode | string | undefined;
674
536
  }
675
-
676
537
  export interface VirtualGatewayData {
677
538
  meshName: string | undefined;
678
-
679
539
  virtualGatewayName: string | undefined;
680
-
681
540
  spec: VirtualGatewaySpec | undefined;
682
-
683
541
  metadata: ResourceMetadata | undefined;
684
-
685
542
  status: VirtualGatewayStatus | undefined;
686
543
  }
687
544
  export interface CreateVirtualGatewayOutput {
@@ -689,9 +546,7 @@ export interface CreateVirtualGatewayOutput {
689
546
  }
690
547
  export interface DeleteVirtualGatewayInput {
691
548
  virtualGatewayName: string | undefined;
692
-
693
549
  meshName: string | undefined;
694
-
695
550
  meshOwner?: string;
696
551
  }
697
552
  export interface DeleteVirtualGatewayOutput {
@@ -699,9 +554,7 @@ export interface DeleteVirtualGatewayOutput {
699
554
  }
700
555
  export interface DescribeVirtualGatewayInput {
701
556
  virtualGatewayName: string | undefined;
702
-
703
557
  meshName: string | undefined;
704
-
705
558
  meshOwner?: string;
706
559
  }
707
560
  export interface DescribeVirtualGatewayOutput {
@@ -711,43 +564,31 @@ export declare enum DefaultGatewayRouteRewrite {
711
564
  DISABLED = "DISABLED",
712
565
  ENABLED = "ENABLED",
713
566
  }
714
-
715
567
  export interface GatewayRouteHostnameRewrite {
716
568
  defaultTargetHostname?: DefaultGatewayRouteRewrite | string;
717
569
  }
718
-
719
570
  export interface GrpcGatewayRouteRewrite {
720
571
  hostname?: GatewayRouteHostnameRewrite;
721
572
  }
722
-
723
573
  export interface GatewayRouteVirtualService {
724
574
  virtualServiceName: string | undefined;
725
575
  }
726
-
727
576
  export interface GatewayRouteTarget {
728
577
  virtualService: GatewayRouteVirtualService | undefined;
729
-
730
578
  port?: number;
731
579
  }
732
-
733
580
  export interface GrpcGatewayRouteAction {
734
581
  target: GatewayRouteTarget | undefined;
735
-
736
582
  rewrite?: GrpcGatewayRouteRewrite;
737
583
  }
738
-
739
584
  export interface GatewayRouteHostnameMatch {
740
585
  exact?: string;
741
-
742
586
  suffix?: string;
743
587
  }
744
-
745
588
  export interface MatchRange {
746
589
  start: number | undefined;
747
-
748
590
  end: number | undefined;
749
591
  }
750
-
751
592
  export declare type GrpcMetadataMatchMethod =
752
593
  | GrpcMetadataMatchMethod.ExactMember
753
594
  | GrpcMetadataMatchMethod.PrefixMember
@@ -764,7 +605,6 @@ export declare namespace GrpcMetadataMatchMethod {
764
605
  suffix?: never;
765
606
  $unknown?: never;
766
607
  }
767
-
768
608
  interface RegexMember {
769
609
  exact?: never;
770
610
  regex: string;
@@ -773,7 +613,6 @@ export declare namespace GrpcMetadataMatchMethod {
773
613
  suffix?: never;
774
614
  $unknown?: never;
775
615
  }
776
-
777
616
  interface RangeMember {
778
617
  exact?: never;
779
618
  regex?: never;
@@ -782,7 +621,6 @@ export declare namespace GrpcMetadataMatchMethod {
782
621
  suffix?: never;
783
622
  $unknown?: never;
784
623
  }
785
-
786
624
  interface PrefixMember {
787
625
  exact?: never;
788
626
  regex?: never;
@@ -791,7 +629,6 @@ export declare namespace GrpcMetadataMatchMethod {
791
629
  suffix?: never;
792
630
  $unknown?: never;
793
631
  }
794
-
795
632
  interface SuffixMember {
796
633
  exact?: never;
797
634
  regex?: never;
@@ -818,55 +655,37 @@ export declare namespace GrpcMetadataMatchMethod {
818
655
  }
819
656
  const visit: <T>(value: GrpcMetadataMatchMethod, visitor: Visitor<T>) => T;
820
657
  }
821
-
822
658
  export interface GrpcGatewayRouteMetadata {
823
659
  name: string | undefined;
824
-
825
660
  invert?: boolean;
826
-
827
661
  match?: GrpcMetadataMatchMethod;
828
662
  }
829
-
830
663
  export interface GrpcGatewayRouteMatch {
831
664
  serviceName?: string;
832
-
833
665
  hostname?: GatewayRouteHostnameMatch;
834
-
835
666
  metadata?: GrpcGatewayRouteMetadata[];
836
-
837
667
  port?: number;
838
668
  }
839
-
840
669
  export interface GrpcGatewayRoute {
841
670
  match: GrpcGatewayRouteMatch | undefined;
842
-
843
671
  action: GrpcGatewayRouteAction | undefined;
844
672
  }
845
-
846
673
  export interface HttpGatewayRoutePathRewrite {
847
674
  exact?: string;
848
675
  }
849
-
850
676
  export interface HttpGatewayRoutePrefixRewrite {
851
677
  defaultPrefix?: DefaultGatewayRouteRewrite | string;
852
-
853
678
  value?: string;
854
679
  }
855
-
856
680
  export interface HttpGatewayRouteRewrite {
857
681
  prefix?: HttpGatewayRoutePrefixRewrite;
858
-
859
682
  path?: HttpGatewayRoutePathRewrite;
860
-
861
683
  hostname?: GatewayRouteHostnameRewrite;
862
684
  }
863
-
864
685
  export interface HttpGatewayRouteAction {
865
686
  target: GatewayRouteTarget | undefined;
866
-
867
687
  rewrite?: HttpGatewayRouteRewrite;
868
688
  }
869
-
870
689
  export declare type HeaderMatchMethod =
871
690
  | HeaderMatchMethod.ExactMember
872
691
  | HeaderMatchMethod.PrefixMember
@@ -883,7 +702,6 @@ export declare namespace HeaderMatchMethod {
883
702
  suffix?: never;
884
703
  $unknown?: never;
885
704
  }
886
-
887
705
  interface RegexMember {
888
706
  exact?: never;
889
707
  regex: string;
@@ -892,7 +710,6 @@ export declare namespace HeaderMatchMethod {
892
710
  suffix?: never;
893
711
  $unknown?: never;
894
712
  }
895
-
896
713
  interface RangeMember {
897
714
  exact?: never;
898
715
  regex?: never;
@@ -901,7 +718,6 @@ export declare namespace HeaderMatchMethod {
901
718
  suffix?: never;
902
719
  $unknown?: never;
903
720
  }
904
-
905
721
  interface PrefixMember {
906
722
  exact?: never;
907
723
  regex?: never;
@@ -910,7 +726,6 @@ export declare namespace HeaderMatchMethod {
910
726
  suffix?: never;
911
727
  $unknown?: never;
912
728
  }
913
-
914
729
  interface SuffixMember {
915
730
  exact?: never;
916
731
  regex?: never;
@@ -937,12 +752,9 @@ export declare namespace HeaderMatchMethod {
937
752
  }
938
753
  const visit: <T>(value: HeaderMatchMethod, visitor: Visitor<T>) => T;
939
754
  }
940
-
941
755
  export interface HttpGatewayRouteHeader {
942
756
  name: string | undefined;
943
-
944
757
  invert?: boolean;
945
-
946
758
  match?: HeaderMatchMethod;
947
759
  }
948
760
  export declare enum HttpMethod {
@@ -956,67 +768,43 @@ export declare enum HttpMethod {
956
768
  PUT = "PUT",
957
769
  TRACE = "TRACE",
958
770
  }
959
-
960
771
  export interface HttpPathMatch {
961
772
  exact?: string;
962
-
963
773
  regex?: string;
964
774
  }
965
-
966
775
  export interface QueryParameterMatch {
967
776
  exact?: string;
968
777
  }
969
-
970
778
  export interface HttpQueryParameter {
971
779
  name: string | undefined;
972
-
973
780
  match?: QueryParameterMatch;
974
781
  }
975
-
976
782
  export interface HttpGatewayRouteMatch {
977
783
  prefix?: string;
978
-
979
784
  path?: HttpPathMatch;
980
-
981
785
  queryParameters?: HttpQueryParameter[];
982
-
983
786
  method?: HttpMethod | string;
984
-
985
787
  hostname?: GatewayRouteHostnameMatch;
986
-
987
788
  headers?: HttpGatewayRouteHeader[];
988
-
989
789
  port?: number;
990
790
  }
991
-
992
791
  export interface HttpGatewayRoute {
993
792
  match: HttpGatewayRouteMatch | undefined;
994
-
995
793
  action: HttpGatewayRouteAction | undefined;
996
794
  }
997
-
998
795
  export interface GatewayRouteSpec {
999
796
  priority?: number;
1000
-
1001
797
  httpRoute?: HttpGatewayRoute;
1002
-
1003
798
  http2Route?: HttpGatewayRoute;
1004
-
1005
799
  grpcRoute?: GrpcGatewayRoute;
1006
800
  }
1007
801
  export interface CreateGatewayRouteInput {
1008
802
  gatewayRouteName: string | undefined;
1009
-
1010
803
  meshName: string | undefined;
1011
-
1012
804
  virtualGatewayName: string | undefined;
1013
-
1014
805
  spec: GatewayRouteSpec | undefined;
1015
-
1016
806
  tags?: TagRef[];
1017
-
1018
807
  clientToken?: string;
1019
-
1020
808
  meshOwner?: string;
1021
809
  }
1022
810
  export declare enum GatewayRouteStatusCode {
@@ -1024,22 +812,15 @@ export declare enum GatewayRouteStatusCode {
1024
812
  DELETED = "DELETED",
1025
813
  INACTIVE = "INACTIVE",
1026
814
  }
1027
-
1028
815
  export interface GatewayRouteStatus {
1029
816
  status: GatewayRouteStatusCode | string | undefined;
1030
817
  }
1031
-
1032
818
  export interface GatewayRouteData {
1033
819
  meshName: string | undefined;
1034
-
1035
820
  gatewayRouteName: string | undefined;
1036
-
1037
821
  virtualGatewayName: string | undefined;
1038
-
1039
822
  spec: GatewayRouteSpec | undefined;
1040
-
1041
823
  metadata: ResourceMetadata | undefined;
1042
-
1043
824
  status: GatewayRouteStatus | undefined;
1044
825
  }
1045
826
  export interface CreateGatewayRouteOutput {
@@ -1047,11 +828,8 @@ export interface CreateGatewayRouteOutput {
1047
828
  }
1048
829
  export interface DeleteGatewayRouteInput {
1049
830
  gatewayRouteName: string | undefined;
1050
-
1051
831
  meshName: string | undefined;
1052
-
1053
832
  virtualGatewayName: string | undefined;
1054
-
1055
833
  meshOwner?: string;
1056
834
  }
1057
835
  export interface DeleteGatewayRouteOutput {
@@ -1059,11 +837,8 @@ export interface DeleteGatewayRouteOutput {
1059
837
  }
1060
838
  export interface DescribeGatewayRouteInput {
1061
839
  gatewayRouteName: string | undefined;
1062
-
1063
840
  meshName: string | undefined;
1064
-
1065
841
  virtualGatewayName: string | undefined;
1066
-
1067
842
  meshOwner?: string;
1068
843
  }
1069
844
  export interface DescribeGatewayRouteOutput {
@@ -1071,51 +846,32 @@ export interface DescribeGatewayRouteOutput {
1071
846
  }
1072
847
  export interface ListGatewayRoutesInput {
1073
848
  meshName: string | undefined;
1074
-
1075
849
  virtualGatewayName: string | undefined;
1076
-
1077
850
  nextToken?: string;
1078
-
1079
851
  limit?: number;
1080
-
1081
852
  meshOwner?: string;
1082
853
  }
1083
-
1084
854
  export interface GatewayRouteRef {
1085
855
  meshName: string | undefined;
1086
-
1087
856
  gatewayRouteName: string | undefined;
1088
-
1089
857
  virtualGatewayName: string | undefined;
1090
-
1091
858
  meshOwner: string | undefined;
1092
-
1093
859
  resourceOwner: string | undefined;
1094
-
1095
860
  arn: string | undefined;
1096
-
1097
861
  version: number | undefined;
1098
-
1099
862
  createdAt: Date | undefined;
1100
-
1101
863
  lastUpdatedAt: Date | undefined;
1102
864
  }
1103
865
  export interface ListGatewayRoutesOutput {
1104
866
  gatewayRoutes: GatewayRouteRef[] | undefined;
1105
-
1106
867
  nextToken?: string;
1107
868
  }
1108
869
  export interface UpdateGatewayRouteInput {
1109
870
  gatewayRouteName: string | undefined;
1110
-
1111
871
  meshName: string | undefined;
1112
-
1113
872
  virtualGatewayName: string | undefined;
1114
-
1115
873
  spec: GatewayRouteSpec | undefined;
1116
-
1117
874
  clientToken?: string;
1118
-
1119
875
  meshOwner?: string;
1120
876
  }
1121
877
  export interface UpdateGatewayRouteOutput {
@@ -1123,61 +879,41 @@ export interface UpdateGatewayRouteOutput {
1123
879
  }
1124
880
  export interface ListVirtualGatewaysInput {
1125
881
  meshName: string | undefined;
1126
-
1127
882
  nextToken?: string;
1128
-
1129
883
  limit?: number;
1130
-
1131
884
  meshOwner?: string;
1132
885
  }
1133
-
1134
886
  export interface VirtualGatewayRef {
1135
887
  meshName: string | undefined;
1136
-
1137
888
  virtualGatewayName: string | undefined;
1138
-
1139
889
  meshOwner: string | undefined;
1140
-
1141
890
  resourceOwner: string | undefined;
1142
-
1143
891
  arn: string | undefined;
1144
-
1145
892
  version: number | undefined;
1146
-
1147
893
  createdAt: Date | undefined;
1148
-
1149
894
  lastUpdatedAt: Date | undefined;
1150
895
  }
1151
896
  export interface ListVirtualGatewaysOutput {
1152
897
  virtualGateways: VirtualGatewayRef[] | undefined;
1153
-
1154
898
  nextToken?: string;
1155
899
  }
1156
900
  export interface UpdateVirtualGatewayInput {
1157
901
  virtualGatewayName: string | undefined;
1158
-
1159
902
  meshName: string | undefined;
1160
-
1161
903
  spec: VirtualGatewaySpec | undefined;
1162
-
1163
904
  clientToken?: string;
1164
-
1165
905
  meshOwner?: string;
1166
906
  }
1167
907
  export interface UpdateVirtualGatewayOutput {
1168
908
  virtualGateway: VirtualGatewayData | undefined;
1169
909
  }
1170
-
1171
910
  export interface ListenerTlsFileCertificate {
1172
911
  certificateChain: string | undefined;
1173
-
1174
912
  privateKey: string | undefined;
1175
913
  }
1176
-
1177
914
  export interface ListenerTlsSdsCertificate {
1178
915
  secretName: string | undefined;
1179
916
  }
1180
-
1181
917
  export declare type ClientTlsCertificate =
1182
918
  | ClientTlsCertificate.FileMember
1183
919
  | ClientTlsCertificate.SdsMember
@@ -1188,7 +924,6 @@ export declare namespace ClientTlsCertificate {
1188
924
  sds?: never;
1189
925
  $unknown?: never;
1190
926
  }
1191
-
1192
927
  interface SdsMember {
1193
928
  file?: never;
1194
929
  sds: ListenerTlsSdsCertificate;
@@ -1206,19 +941,15 @@ export declare namespace ClientTlsCertificate {
1206
941
  }
1207
942
  const visit: <T>(value: ClientTlsCertificate, visitor: Visitor<T>) => T;
1208
943
  }
1209
-
1210
944
  export interface TlsValidationContextAcmTrust {
1211
945
  certificateAuthorityArns: string[] | undefined;
1212
946
  }
1213
-
1214
947
  export interface TlsValidationContextFileTrust {
1215
948
  certificateChain: string | undefined;
1216
949
  }
1217
-
1218
950
  export interface TlsValidationContextSdsTrust {
1219
951
  secretName: string | undefined;
1220
952
  }
1221
-
1222
953
  export declare type TlsValidationContextTrust =
1223
954
  | TlsValidationContextTrust.AcmMember
1224
955
  | TlsValidationContextTrust.FileMember
@@ -1231,14 +962,12 @@ export declare namespace TlsValidationContextTrust {
1231
962
  sds?: never;
1232
963
  $unknown?: never;
1233
964
  }
1234
-
1235
965
  interface FileMember {
1236
966
  acm?: never;
1237
967
  file: TlsValidationContextFileTrust;
1238
968
  sds?: never;
1239
969
  $unknown?: never;
1240
970
  }
1241
-
1242
971
  interface SdsMember {
1243
972
  acm?: never;
1244
973
  file?: never;
@@ -1259,37 +988,26 @@ export declare namespace TlsValidationContextTrust {
1259
988
  }
1260
989
  const visit: <T>(value: TlsValidationContextTrust, visitor: Visitor<T>) => T;
1261
990
  }
1262
-
1263
991
  export interface TlsValidationContext {
1264
992
  trust: TlsValidationContextTrust | undefined;
1265
-
1266
993
  subjectAlternativeNames?: SubjectAlternativeNames;
1267
994
  }
1268
-
1269
995
  export interface ClientPolicyTls {
1270
996
  enforce?: boolean;
1271
-
1272
997
  ports?: number[];
1273
-
1274
998
  certificate?: ClientTlsCertificate;
1275
-
1276
999
  validation: TlsValidationContext | undefined;
1277
1000
  }
1278
-
1279
1001
  export interface ClientPolicy {
1280
1002
  tls?: ClientPolicyTls;
1281
1003
  }
1282
-
1283
1004
  export interface BackendDefaults {
1284
1005
  clientPolicy?: ClientPolicy;
1285
1006
  }
1286
-
1287
1007
  export interface VirtualServiceBackend {
1288
1008
  virtualServiceName: string | undefined;
1289
-
1290
1009
  clientPolicy?: ClientPolicy;
1291
1010
  }
1292
-
1293
1011
  export declare type Backend =
1294
1012
  | Backend.VirtualServiceMember
1295
1013
  | Backend.$UnknownMember;
@@ -1308,25 +1026,19 @@ export declare namespace Backend {
1308
1026
  }
1309
1027
  const visit: <T>(value: Backend, visitor: Visitor<T>) => T;
1310
1028
  }
1311
-
1312
1029
  export interface VirtualNodeGrpcConnectionPool {
1313
1030
  maxRequests: number | undefined;
1314
1031
  }
1315
-
1316
1032
  export interface VirtualNodeHttpConnectionPool {
1317
1033
  maxConnections: number | undefined;
1318
-
1319
1034
  maxPendingRequests?: number;
1320
1035
  }
1321
-
1322
1036
  export interface VirtualNodeHttp2ConnectionPool {
1323
1037
  maxRequests: number | undefined;
1324
1038
  }
1325
-
1326
1039
  export interface VirtualNodeTcpConnectionPool {
1327
1040
  maxConnections: number | undefined;
1328
1041
  }
1329
-
1330
1042
  export declare type VirtualNodeConnectionPool =
1331
1043
  | VirtualNodeConnectionPool.GrpcMember
1332
1044
  | VirtualNodeConnectionPool.HttpMember
@@ -1341,7 +1053,6 @@ export declare namespace VirtualNodeConnectionPool {
1341
1053
  grpc?: never;
1342
1054
  $unknown?: never;
1343
1055
  }
1344
-
1345
1056
  interface HttpMember {
1346
1057
  tcp?: never;
1347
1058
  http: VirtualNodeHttpConnectionPool;
@@ -1349,7 +1060,6 @@ export declare namespace VirtualNodeConnectionPool {
1349
1060
  grpc?: never;
1350
1061
  $unknown?: never;
1351
1062
  }
1352
-
1353
1063
  interface Http2Member {
1354
1064
  tcp?: never;
1355
1065
  http?: never;
@@ -1357,7 +1067,6 @@ export declare namespace VirtualNodeConnectionPool {
1357
1067
  grpc?: never;
1358
1068
  $unknown?: never;
1359
1069
  }
1360
-
1361
1070
  interface GrpcMember {
1362
1071
  tcp?: never;
1363
1072
  http?: never;
@@ -1387,65 +1096,44 @@ export declare enum PortProtocol {
1387
1096
  HTTP2 = "http2",
1388
1097
  TCP = "tcp",
1389
1098
  }
1390
-
1391
1099
  export interface HealthCheckPolicy {
1392
1100
  timeoutMillis: number | undefined;
1393
-
1394
1101
  intervalMillis: number | undefined;
1395
-
1396
1102
  protocol: PortProtocol | string | undefined;
1397
-
1398
1103
  port?: number;
1399
-
1400
1104
  path?: string;
1401
-
1402
1105
  healthyThreshold: number | undefined;
1403
-
1404
1106
  unhealthyThreshold: number | undefined;
1405
1107
  }
1406
1108
  export declare enum DurationUnit {
1407
1109
  MS = "ms",
1408
1110
  S = "s",
1409
1111
  }
1410
-
1411
1112
  export interface Duration {
1412
1113
  value?: number;
1413
-
1414
1114
  unit?: DurationUnit | string;
1415
1115
  }
1416
-
1417
1116
  export interface OutlierDetection {
1418
1117
  maxServerErrors: number | undefined;
1419
-
1420
1118
  interval: Duration | undefined;
1421
-
1422
1119
  baseEjectionDuration: Duration | undefined;
1423
-
1424
1120
  maxEjectionPercent: number | undefined;
1425
1121
  }
1426
-
1427
1122
  export interface PortMapping {
1428
1123
  port: number | undefined;
1429
-
1430
1124
  protocol: PortProtocol | string | undefined;
1431
1125
  }
1432
-
1433
1126
  export interface GrpcTimeout {
1434
1127
  perRequest?: Duration;
1435
-
1436
1128
  idle?: Duration;
1437
1129
  }
1438
-
1439
1130
  export interface HttpTimeout {
1440
1131
  perRequest?: Duration;
1441
-
1442
1132
  idle?: Duration;
1443
1133
  }
1444
-
1445
1134
  export interface TcpTimeout {
1446
1135
  idle?: Duration;
1447
1136
  }
1448
-
1449
1137
  export declare type ListenerTimeout =
1450
1138
  | ListenerTimeout.GrpcMember
1451
1139
  | ListenerTimeout.HttpMember
@@ -1460,7 +1148,6 @@ export declare namespace ListenerTimeout {
1460
1148
  grpc?: never;
1461
1149
  $unknown?: never;
1462
1150
  }
1463
-
1464
1151
  interface HttpMember {
1465
1152
  tcp?: never;
1466
1153
  http: HttpTimeout;
@@ -1468,7 +1155,6 @@ export declare namespace ListenerTimeout {
1468
1155
  grpc?: never;
1469
1156
  $unknown?: never;
1470
1157
  }
1471
-
1472
1158
  interface Http2Member {
1473
1159
  tcp?: never;
1474
1160
  http?: never;
@@ -1476,7 +1162,6 @@ export declare namespace ListenerTimeout {
1476
1162
  grpc?: never;
1477
1163
  $unknown?: never;
1478
1164
  }
1479
-
1480
1165
  interface GrpcMember {
1481
1166
  tcp?: never;
1482
1167
  http?: never;
@@ -1500,11 +1185,9 @@ export declare namespace ListenerTimeout {
1500
1185
  }
1501
1186
  const visit: <T>(value: ListenerTimeout, visitor: Visitor<T>) => T;
1502
1187
  }
1503
-
1504
1188
  export interface ListenerTlsAcmCertificate {
1505
1189
  certificateArn: string | undefined;
1506
1190
  }
1507
-
1508
1191
  export declare type ListenerTlsCertificate =
1509
1192
  | ListenerTlsCertificate.AcmMember
1510
1193
  | ListenerTlsCertificate.FileMember
@@ -1517,14 +1200,12 @@ export declare namespace ListenerTlsCertificate {
1517
1200
  sds?: never;
1518
1201
  $unknown?: never;
1519
1202
  }
1520
-
1521
1203
  interface FileMember {
1522
1204
  acm?: never;
1523
1205
  file: ListenerTlsFileCertificate;
1524
1206
  sds?: never;
1525
1207
  $unknown?: never;
1526
1208
  }
1527
-
1528
1209
  interface SdsMember {
1529
1210
  acm?: never;
1530
1211
  file?: never;
@@ -1550,7 +1231,6 @@ export declare enum ListenerTlsMode {
1550
1231
  PERMISSIVE = "PERMISSIVE",
1551
1232
  STRICT = "STRICT",
1552
1233
  }
1553
-
1554
1234
  export declare type ListenerTlsValidationContextTrust =
1555
1235
  | ListenerTlsValidationContextTrust.FileMember
1556
1236
  | ListenerTlsValidationContextTrust.SdsMember
@@ -1561,7 +1241,6 @@ export declare namespace ListenerTlsValidationContextTrust {
1561
1241
  sds?: never;
1562
1242
  $unknown?: never;
1563
1243
  }
1564
-
1565
1244
  interface SdsMember {
1566
1245
  file?: never;
1567
1246
  sds: TlsValidationContextSdsTrust;
@@ -1582,67 +1261,45 @@ export declare namespace ListenerTlsValidationContextTrust {
1582
1261
  visitor: Visitor<T>
1583
1262
  ) => T;
1584
1263
  }
1585
-
1586
1264
  export interface ListenerTlsValidationContext {
1587
1265
  trust: ListenerTlsValidationContextTrust | undefined;
1588
-
1589
1266
  subjectAlternativeNames?: SubjectAlternativeNames;
1590
1267
  }
1591
-
1592
1268
  export interface ListenerTls {
1593
1269
  mode: ListenerTlsMode | string | undefined;
1594
-
1595
1270
  certificate: ListenerTlsCertificate | undefined;
1596
-
1597
1271
  validation?: ListenerTlsValidationContext;
1598
1272
  }
1599
-
1600
1273
  export interface Listener {
1601
1274
  portMapping: PortMapping | undefined;
1602
-
1603
1275
  tls?: ListenerTls;
1604
-
1605
1276
  healthCheck?: HealthCheckPolicy;
1606
-
1607
1277
  timeout?: ListenerTimeout;
1608
-
1609
1278
  outlierDetection?: OutlierDetection;
1610
-
1611
1279
  connectionPool?: VirtualNodeConnectionPool;
1612
1280
  }
1613
-
1614
1281
  export interface Logging {
1615
1282
  accessLog?: AccessLog;
1616
1283
  }
1617
-
1618
1284
  export interface AwsCloudMapInstanceAttribute {
1619
1285
  key: string | undefined;
1620
-
1621
1286
  value: string | undefined;
1622
1287
  }
1623
-
1624
1288
  export interface AwsCloudMapServiceDiscovery {
1625
1289
  namespaceName: string | undefined;
1626
-
1627
1290
  serviceName: string | undefined;
1628
-
1629
1291
  attributes?: AwsCloudMapInstanceAttribute[];
1630
-
1631
1292
  ipPreference?: IpPreference | string;
1632
1293
  }
1633
1294
  export declare enum DnsResponseType {
1634
1295
  ENDPOINTS = "ENDPOINTS",
1635
1296
  LOADBALANCER = "LOADBALANCER",
1636
1297
  }
1637
-
1638
1298
  export interface DnsServiceDiscovery {
1639
1299
  hostname: string | undefined;
1640
-
1641
1300
  responseType?: DnsResponseType | string;
1642
-
1643
1301
  ipPreference?: IpPreference | string;
1644
1302
  }
1645
-
1646
1303
  export declare type ServiceDiscovery =
1647
1304
  | ServiceDiscovery.AwsCloudMapMember
1648
1305
  | ServiceDiscovery.DnsMember
@@ -1653,7 +1310,6 @@ export declare namespace ServiceDiscovery {
1653
1310
  awsCloudMap?: never;
1654
1311
  $unknown?: never;
1655
1312
  }
1656
-
1657
1313
  interface AwsCloudMapMember {
1658
1314
  dns?: never;
1659
1315
  awsCloudMap: AwsCloudMapServiceDiscovery;
@@ -1671,30 +1327,19 @@ export declare namespace ServiceDiscovery {
1671
1327
  }
1672
1328
  const visit: <T>(value: ServiceDiscovery, visitor: Visitor<T>) => T;
1673
1329
  }
1674
-
1675
1330
  export interface VirtualNodeSpec {
1676
1331
  serviceDiscovery?: ServiceDiscovery;
1677
-
1678
1332
  listeners?: Listener[];
1679
-
1680
1333
  backends?: Backend[];
1681
-
1682
1334
  backendDefaults?: BackendDefaults;
1683
-
1684
1335
  logging?: Logging;
1685
1336
  }
1686
-
1687
1337
  export interface CreateVirtualNodeInput {
1688
1338
  virtualNodeName: string | undefined;
1689
-
1690
1339
  meshName: string | undefined;
1691
-
1692
1340
  spec: VirtualNodeSpec | undefined;
1693
-
1694
1341
  tags?: TagRef[];
1695
-
1696
1342
  clientToken?: string;
1697
-
1698
1343
  meshOwner?: string;
1699
1344
  }
1700
1345
  export declare enum VirtualNodeStatusCode {
@@ -1702,120 +1347,77 @@ export declare enum VirtualNodeStatusCode {
1702
1347
  DELETED = "DELETED",
1703
1348
  INACTIVE = "INACTIVE",
1704
1349
  }
1705
-
1706
1350
  export interface VirtualNodeStatus {
1707
1351
  status: VirtualNodeStatusCode | string | undefined;
1708
1352
  }
1709
-
1710
1353
  export interface VirtualNodeData {
1711
1354
  meshName: string | undefined;
1712
-
1713
1355
  virtualNodeName: string | undefined;
1714
-
1715
1356
  spec: VirtualNodeSpec | undefined;
1716
-
1717
1357
  metadata: ResourceMetadata | undefined;
1718
-
1719
1358
  status: VirtualNodeStatus | undefined;
1720
1359
  }
1721
-
1722
1360
  export interface CreateVirtualNodeOutput {
1723
1361
  virtualNode: VirtualNodeData | undefined;
1724
1362
  }
1725
-
1726
1363
  export interface DeleteVirtualNodeInput {
1727
1364
  virtualNodeName: string | undefined;
1728
-
1729
1365
  meshName: string | undefined;
1730
-
1731
1366
  meshOwner?: string;
1732
1367
  }
1733
-
1734
1368
  export interface DeleteVirtualNodeOutput {
1735
1369
  virtualNode: VirtualNodeData | undefined;
1736
1370
  }
1737
-
1738
1371
  export interface DescribeVirtualNodeInput {
1739
1372
  virtualNodeName: string | undefined;
1740
-
1741
1373
  meshName: string | undefined;
1742
-
1743
1374
  meshOwner?: string;
1744
1375
  }
1745
-
1746
1376
  export interface DescribeVirtualNodeOutput {
1747
1377
  virtualNode: VirtualNodeData | undefined;
1748
1378
  }
1749
-
1750
1379
  export interface ListVirtualNodesInput {
1751
1380
  meshName: string | undefined;
1752
-
1753
1381
  nextToken?: string;
1754
-
1755
1382
  limit?: number;
1756
-
1757
1383
  meshOwner?: string;
1758
1384
  }
1759
-
1760
1385
  export interface VirtualNodeRef {
1761
1386
  meshName: string | undefined;
1762
-
1763
1387
  virtualNodeName: string | undefined;
1764
-
1765
1388
  meshOwner: string | undefined;
1766
-
1767
1389
  resourceOwner: string | undefined;
1768
-
1769
1390
  arn: string | undefined;
1770
-
1771
1391
  version: number | undefined;
1772
-
1773
1392
  createdAt: Date | undefined;
1774
-
1775
1393
  lastUpdatedAt: Date | undefined;
1776
1394
  }
1777
-
1778
1395
  export interface ListVirtualNodesOutput {
1779
1396
  virtualNodes: VirtualNodeRef[] | undefined;
1780
-
1781
1397
  nextToken?: string;
1782
1398
  }
1783
-
1784
1399
  export interface UpdateVirtualNodeInput {
1785
1400
  virtualNodeName: string | undefined;
1786
-
1787
1401
  meshName: string | undefined;
1788
-
1789
1402
  spec: VirtualNodeSpec | undefined;
1790
-
1791
1403
  clientToken?: string;
1792
-
1793
1404
  meshOwner?: string;
1794
1405
  }
1795
-
1796
1406
  export interface UpdateVirtualNodeOutput {
1797
1407
  virtualNode: VirtualNodeData | undefined;
1798
1408
  }
1799
-
1800
1409
  export interface VirtualRouterListener {
1801
1410
  portMapping: PortMapping | undefined;
1802
1411
  }
1803
-
1804
1412
  export interface VirtualRouterSpec {
1805
1413
  listeners?: VirtualRouterListener[];
1806
1414
  }
1807
-
1808
1415
  export interface CreateVirtualRouterInput {
1809
1416
  virtualRouterName: string | undefined;
1810
-
1811
1417
  meshName: string | undefined;
1812
-
1813
1418
  spec: VirtualRouterSpec | undefined;
1814
-
1815
1419
  tags?: TagRef[];
1816
-
1817
1420
  clientToken?: string;
1818
-
1819
1421
  meshOwner?: string;
1820
1422
  }
1821
1423
  export declare enum VirtualRouterStatusCode {
@@ -1823,97 +1425,63 @@ export declare enum VirtualRouterStatusCode {
1823
1425
  DELETED = "DELETED",
1824
1426
  INACTIVE = "INACTIVE",
1825
1427
  }
1826
-
1827
1428
  export interface VirtualRouterStatus {
1828
1429
  status: VirtualRouterStatusCode | string | undefined;
1829
1430
  }
1830
-
1831
1431
  export interface VirtualRouterData {
1832
1432
  meshName: string | undefined;
1833
-
1834
1433
  virtualRouterName: string | undefined;
1835
-
1836
1434
  spec: VirtualRouterSpec | undefined;
1837
-
1838
1435
  metadata: ResourceMetadata | undefined;
1839
-
1840
1436
  status: VirtualRouterStatus | undefined;
1841
1437
  }
1842
-
1843
1438
  export interface CreateVirtualRouterOutput {
1844
1439
  virtualRouter: VirtualRouterData | undefined;
1845
1440
  }
1846
-
1847
1441
  export interface DeleteVirtualRouterInput {
1848
1442
  virtualRouterName: string | undefined;
1849
-
1850
1443
  meshName: string | undefined;
1851
-
1852
1444
  meshOwner?: string;
1853
1445
  }
1854
-
1855
1446
  export interface DeleteVirtualRouterOutput {
1856
1447
  virtualRouter: VirtualRouterData | undefined;
1857
1448
  }
1858
-
1859
1449
  export interface DescribeVirtualRouterInput {
1860
1450
  virtualRouterName: string | undefined;
1861
-
1862
1451
  meshName: string | undefined;
1863
-
1864
1452
  meshOwner?: string;
1865
1453
  }
1866
-
1867
1454
  export interface DescribeVirtualRouterOutput {
1868
1455
  virtualRouter: VirtualRouterData | undefined;
1869
1456
  }
1870
-
1871
1457
  export interface ListVirtualRoutersInput {
1872
1458
  meshName: string | undefined;
1873
-
1874
1459
  nextToken?: string;
1875
-
1876
1460
  limit?: number;
1877
-
1878
1461
  meshOwner?: string;
1879
1462
  }
1880
-
1881
1463
  export interface VirtualRouterRef {
1882
1464
  meshName: string | undefined;
1883
-
1884
1465
  virtualRouterName: string | undefined;
1885
-
1886
1466
  meshOwner: string | undefined;
1887
-
1888
1467
  resourceOwner: string | undefined;
1889
-
1890
1468
  arn: string | undefined;
1891
-
1892
1469
  version: number | undefined;
1893
-
1894
1470
  createdAt: Date | undefined;
1895
-
1896
1471
  lastUpdatedAt: Date | undefined;
1897
1472
  }
1898
-
1899
1473
  export interface ListVirtualRoutersOutput {
1900
1474
  virtualRouters: VirtualRouterRef[] | undefined;
1901
-
1902
1475
  nextToken?: string;
1903
1476
  }
1904
-
1905
1477
  export interface WeightedTarget {
1906
1478
  virtualNode: string | undefined;
1907
-
1908
1479
  weight: number | undefined;
1909
-
1910
1480
  port?: number;
1911
1481
  }
1912
-
1913
1482
  export interface GrpcRouteAction {
1914
1483
  weightedTargets: WeightedTarget[] | undefined;
1915
1484
  }
1916
-
1917
1485
  export declare type GrpcRouteMetadataMatchMethod =
1918
1486
  | GrpcRouteMetadataMatchMethod.ExactMember
1919
1487
  | GrpcRouteMetadataMatchMethod.PrefixMember
@@ -1930,7 +1498,6 @@ export declare namespace GrpcRouteMetadataMatchMethod {
1930
1498
  suffix?: never;
1931
1499
  $unknown?: never;
1932
1500
  }
1933
-
1934
1501
  interface RegexMember {
1935
1502
  exact?: never;
1936
1503
  regex: string;
@@ -1939,7 +1506,6 @@ export declare namespace GrpcRouteMetadataMatchMethod {
1939
1506
  suffix?: never;
1940
1507
  $unknown?: never;
1941
1508
  }
1942
-
1943
1509
  interface RangeMember {
1944
1510
  exact?: never;
1945
1511
  regex?: never;
@@ -1948,7 +1514,6 @@ export declare namespace GrpcRouteMetadataMatchMethod {
1948
1514
  suffix?: never;
1949
1515
  $unknown?: never;
1950
1516
  }
1951
-
1952
1517
  interface PrefixMember {
1953
1518
  exact?: never;
1954
1519
  regex?: never;
@@ -1957,7 +1522,6 @@ export declare namespace GrpcRouteMetadataMatchMethod {
1957
1522
  suffix?: never;
1958
1523
  $unknown?: never;
1959
1524
  }
1960
-
1961
1525
  interface SuffixMember {
1962
1526
  exact?: never;
1963
1527
  regex?: never;
@@ -1987,22 +1551,15 @@ export declare namespace GrpcRouteMetadataMatchMethod {
1987
1551
  visitor: Visitor<T>
1988
1552
  ) => T;
1989
1553
  }
1990
-
1991
1554
  export interface GrpcRouteMetadata {
1992
1555
  name: string | undefined;
1993
-
1994
1556
  invert?: boolean;
1995
-
1996
1557
  match?: GrpcRouteMetadataMatchMethod;
1997
1558
  }
1998
-
1999
1559
  export interface GrpcRouteMatch {
2000
1560
  serviceName?: string;
2001
-
2002
1561
  methodName?: string;
2003
-
2004
1562
  metadata?: GrpcRouteMetadata[];
2005
-
2006
1563
  port?: number;
2007
1564
  }
2008
1565
  export declare enum GrpcRetryPolicyEvent {
@@ -2015,122 +1572,77 @@ export declare enum GrpcRetryPolicyEvent {
2015
1572
  export declare enum TcpRetryPolicyEvent {
2016
1573
  CONNECTION_ERROR = "connection-error",
2017
1574
  }
2018
-
2019
1575
  export interface GrpcRetryPolicy {
2020
1576
  perRetryTimeout: Duration | undefined;
2021
-
2022
1577
  maxRetries: number | undefined;
2023
-
2024
1578
  httpRetryEvents?: string[];
2025
-
2026
1579
  tcpRetryEvents?: (TcpRetryPolicyEvent | string)[];
2027
-
2028
1580
  grpcRetryEvents?: (GrpcRetryPolicyEvent | string)[];
2029
1581
  }
2030
-
2031
1582
  export interface GrpcRoute {
2032
1583
  action: GrpcRouteAction | undefined;
2033
-
2034
1584
  match: GrpcRouteMatch | undefined;
2035
-
2036
1585
  retryPolicy?: GrpcRetryPolicy;
2037
-
2038
1586
  timeout?: GrpcTimeout;
2039
1587
  }
2040
-
2041
1588
  export interface HttpRouteAction {
2042
1589
  weightedTargets: WeightedTarget[] | undefined;
2043
1590
  }
2044
-
2045
1591
  export interface HttpRouteHeader {
2046
1592
  name: string | undefined;
2047
-
2048
1593
  invert?: boolean;
2049
-
2050
1594
  match?: HeaderMatchMethod;
2051
1595
  }
2052
1596
  export declare enum HttpScheme {
2053
1597
  HTTP = "http",
2054
1598
  HTTPS = "https",
2055
1599
  }
2056
-
2057
1600
  export interface HttpRouteMatch {
2058
1601
  prefix?: string;
2059
-
2060
1602
  path?: HttpPathMatch;
2061
-
2062
1603
  queryParameters?: HttpQueryParameter[];
2063
-
2064
1604
  method?: HttpMethod | string;
2065
-
2066
1605
  scheme?: HttpScheme | string;
2067
-
2068
1606
  headers?: HttpRouteHeader[];
2069
-
2070
1607
  port?: number;
2071
1608
  }
2072
-
2073
1609
  export interface HttpRetryPolicy {
2074
1610
  perRetryTimeout: Duration | undefined;
2075
-
2076
1611
  maxRetries: number | undefined;
2077
-
2078
1612
  httpRetryEvents?: string[];
2079
-
2080
1613
  tcpRetryEvents?: (TcpRetryPolicyEvent | string)[];
2081
1614
  }
2082
-
2083
1615
  export interface HttpRoute {
2084
1616
  match: HttpRouteMatch | undefined;
2085
-
2086
1617
  action: HttpRouteAction | undefined;
2087
-
2088
1618
  retryPolicy?: HttpRetryPolicy;
2089
-
2090
1619
  timeout?: HttpTimeout;
2091
1620
  }
2092
-
2093
1621
  export interface TcpRouteAction {
2094
1622
  weightedTargets: WeightedTarget[] | undefined;
2095
1623
  }
2096
-
2097
1624
  export interface TcpRouteMatch {
2098
1625
  port?: number;
2099
1626
  }
2100
-
2101
1627
  export interface TcpRoute {
2102
1628
  action: TcpRouteAction | undefined;
2103
-
2104
1629
  timeout?: TcpTimeout;
2105
-
2106
1630
  match?: TcpRouteMatch;
2107
1631
  }
2108
-
2109
1632
  export interface RouteSpec {
2110
1633
  priority?: number;
2111
-
2112
1634
  httpRoute?: HttpRoute;
2113
-
2114
1635
  tcpRoute?: TcpRoute;
2115
-
2116
1636
  http2Route?: HttpRoute;
2117
-
2118
1637
  grpcRoute?: GrpcRoute;
2119
1638
  }
2120
-
2121
1639
  export interface CreateRouteInput {
2122
1640
  routeName: string | undefined;
2123
-
2124
1641
  meshName: string | undefined;
2125
-
2126
1642
  virtualRouterName: string | undefined;
2127
-
2128
1643
  spec: RouteSpec | undefined;
2129
-
2130
1644
  tags?: TagRef[];
2131
-
2132
1645
  clientToken?: string;
2133
-
2134
1646
  meshOwner?: string;
2135
1647
  }
2136
1648
  export declare enum RouteStatusCode {
@@ -2138,137 +1650,87 @@ export declare enum RouteStatusCode {
2138
1650
  DELETED = "DELETED",
2139
1651
  INACTIVE = "INACTIVE",
2140
1652
  }
2141
-
2142
1653
  export interface RouteStatus {
2143
1654
  status: RouteStatusCode | string | undefined;
2144
1655
  }
2145
-
2146
1656
  export interface RouteData {
2147
1657
  meshName: string | undefined;
2148
-
2149
1658
  virtualRouterName: string | undefined;
2150
-
2151
1659
  routeName: string | undefined;
2152
-
2153
1660
  spec: RouteSpec | undefined;
2154
-
2155
1661
  metadata: ResourceMetadata | undefined;
2156
-
2157
1662
  status: RouteStatus | undefined;
2158
1663
  }
2159
-
2160
1664
  export interface CreateRouteOutput {
2161
1665
  route: RouteData | undefined;
2162
1666
  }
2163
-
2164
1667
  export interface DeleteRouteInput {
2165
1668
  routeName: string | undefined;
2166
-
2167
1669
  meshName: string | undefined;
2168
-
2169
1670
  virtualRouterName: string | undefined;
2170
-
2171
1671
  meshOwner?: string;
2172
1672
  }
2173
-
2174
1673
  export interface DeleteRouteOutput {
2175
1674
  route: RouteData | undefined;
2176
1675
  }
2177
-
2178
1676
  export interface DescribeRouteInput {
2179
1677
  routeName: string | undefined;
2180
-
2181
1678
  meshName: string | undefined;
2182
-
2183
1679
  meshOwner?: string;
2184
-
2185
1680
  virtualRouterName: string | undefined;
2186
1681
  }
2187
-
2188
1682
  export interface DescribeRouteOutput {
2189
1683
  route: RouteData | undefined;
2190
1684
  }
2191
-
2192
1685
  export interface ListRoutesInput {
2193
1686
  meshName: string | undefined;
2194
-
2195
1687
  virtualRouterName: string | undefined;
2196
-
2197
1688
  nextToken?: string;
2198
-
2199
1689
  limit?: number;
2200
-
2201
1690
  meshOwner?: string;
2202
1691
  }
2203
-
2204
1692
  export interface RouteRef {
2205
1693
  meshName: string | undefined;
2206
-
2207
1694
  virtualRouterName: string | undefined;
2208
-
2209
1695
  routeName: string | undefined;
2210
-
2211
1696
  meshOwner: string | undefined;
2212
-
2213
1697
  resourceOwner: string | undefined;
2214
-
2215
1698
  arn: string | undefined;
2216
-
2217
1699
  version: number | undefined;
2218
-
2219
1700
  createdAt: Date | undefined;
2220
-
2221
1701
  lastUpdatedAt: Date | undefined;
2222
1702
  }
2223
-
2224
1703
  export interface ListRoutesOutput {
2225
1704
  routes: RouteRef[] | undefined;
2226
-
2227
1705
  nextToken?: string;
2228
1706
  }
2229
-
2230
1707
  export interface UpdateRouteInput {
2231
1708
  routeName: string | undefined;
2232
-
2233
1709
  meshName: string | undefined;
2234
-
2235
1710
  virtualRouterName: string | undefined;
2236
-
2237
1711
  spec: RouteSpec | undefined;
2238
-
2239
1712
  clientToken?: string;
2240
-
2241
1713
  meshOwner?: string;
2242
1714
  }
2243
-
2244
1715
  export interface UpdateRouteOutput {
2245
1716
  route: RouteData | undefined;
2246
1717
  }
2247
-
2248
1718
  export interface UpdateVirtualRouterInput {
2249
1719
  virtualRouterName: string | undefined;
2250
-
2251
1720
  meshName: string | undefined;
2252
-
2253
1721
  spec: VirtualRouterSpec | undefined;
2254
-
2255
1722
  clientToken?: string;
2256
-
2257
1723
  meshOwner?: string;
2258
1724
  }
2259
-
2260
1725
  export interface UpdateVirtualRouterOutput {
2261
1726
  virtualRouter: VirtualRouterData | undefined;
2262
1727
  }
2263
-
2264
1728
  export interface VirtualNodeServiceProvider {
2265
1729
  virtualNodeName: string | undefined;
2266
1730
  }
2267
-
2268
1731
  export interface VirtualRouterServiceProvider {
2269
1732
  virtualRouterName: string | undefined;
2270
1733
  }
2271
-
2272
1734
  export declare type VirtualServiceProvider =
2273
1735
  | VirtualServiceProvider.VirtualNodeMember
2274
1736
  | VirtualServiceProvider.VirtualRouterMember
@@ -2279,7 +1741,6 @@ export declare namespace VirtualServiceProvider {
2279
1741
  virtualRouter?: never;
2280
1742
  $unknown?: never;
2281
1743
  }
2282
-
2283
1744
  interface VirtualRouterMember {
2284
1745
  virtualNode?: never;
2285
1746
  virtualRouter: VirtualRouterServiceProvider;
@@ -2297,22 +1758,15 @@ export declare namespace VirtualServiceProvider {
2297
1758
  }
2298
1759
  const visit: <T>(value: VirtualServiceProvider, visitor: Visitor<T>) => T;
2299
1760
  }
2300
-
2301
1761
  export interface VirtualServiceSpec {
2302
1762
  provider?: VirtualServiceProvider;
2303
1763
  }
2304
-
2305
1764
  export interface CreateVirtualServiceInput {
2306
1765
  virtualServiceName: string | undefined;
2307
-
2308
1766
  meshName: string | undefined;
2309
-
2310
1767
  spec: VirtualServiceSpec | undefined;
2311
-
2312
1768
  tags?: TagRef[];
2313
-
2314
1769
  clientToken?: string;
2315
-
2316
1770
  meshOwner?: string;
2317
1771
  }
2318
1772
  export declare enum VirtualServiceStatusCode {
@@ -2320,944 +1774,683 @@ export declare enum VirtualServiceStatusCode {
2320
1774
  DELETED = "DELETED",
2321
1775
  INACTIVE = "INACTIVE",
2322
1776
  }
2323
-
2324
1777
  export interface VirtualServiceStatus {
2325
1778
  status: VirtualServiceStatusCode | string | undefined;
2326
1779
  }
2327
-
2328
1780
  export interface VirtualServiceData {
2329
1781
  meshName: string | undefined;
2330
-
2331
1782
  virtualServiceName: string | undefined;
2332
-
2333
1783
  spec: VirtualServiceSpec | undefined;
2334
-
2335
1784
  metadata: ResourceMetadata | undefined;
2336
-
2337
1785
  status: VirtualServiceStatus | undefined;
2338
1786
  }
2339
-
2340
1787
  export interface CreateVirtualServiceOutput {
2341
1788
  virtualService: VirtualServiceData | undefined;
2342
1789
  }
2343
-
2344
1790
  export interface DeleteVirtualServiceInput {
2345
1791
  virtualServiceName: string | undefined;
2346
-
2347
1792
  meshName: string | undefined;
2348
-
2349
1793
  meshOwner?: string;
2350
1794
  }
2351
-
2352
1795
  export interface DeleteVirtualServiceOutput {
2353
1796
  virtualService: VirtualServiceData | undefined;
2354
1797
  }
2355
-
2356
1798
  export interface DescribeVirtualServiceInput {
2357
1799
  virtualServiceName: string | undefined;
2358
-
2359
1800
  meshName: string | undefined;
2360
-
2361
1801
  meshOwner?: string;
2362
1802
  }
2363
-
2364
1803
  export interface DescribeVirtualServiceOutput {
2365
1804
  virtualService: VirtualServiceData | undefined;
2366
1805
  }
2367
-
2368
1806
  export interface ListVirtualServicesInput {
2369
1807
  meshName: string | undefined;
2370
-
2371
1808
  nextToken?: string;
2372
-
2373
1809
  limit?: number;
2374
-
2375
1810
  meshOwner?: string;
2376
1811
  }
2377
-
2378
1812
  export interface VirtualServiceRef {
2379
1813
  meshName: string | undefined;
2380
-
2381
1814
  virtualServiceName: string | undefined;
2382
-
2383
1815
  meshOwner: string | undefined;
2384
-
2385
1816
  resourceOwner: string | undefined;
2386
-
2387
1817
  arn: string | undefined;
2388
-
2389
1818
  version: number | undefined;
2390
-
2391
1819
  createdAt: Date | undefined;
2392
-
2393
1820
  lastUpdatedAt: Date | undefined;
2394
1821
  }
2395
-
2396
1822
  export interface ListVirtualServicesOutput {
2397
1823
  virtualServices: VirtualServiceRef[] | undefined;
2398
-
2399
1824
  nextToken?: string;
2400
1825
  }
2401
-
2402
1826
  export interface UpdateVirtualServiceInput {
2403
1827
  virtualServiceName: string | undefined;
2404
-
2405
1828
  meshName: string | undefined;
2406
-
2407
1829
  spec: VirtualServiceSpec | undefined;
2408
-
2409
1830
  clientToken?: string;
2410
-
2411
1831
  meshOwner?: string;
2412
1832
  }
2413
-
2414
1833
  export interface UpdateVirtualServiceOutput {
2415
1834
  virtualService: VirtualServiceData | undefined;
2416
1835
  }
2417
-
2418
1836
  export interface TagResourceInput {
2419
1837
  resourceArn: string | undefined;
2420
-
2421
1838
  tags: TagRef[] | undefined;
2422
1839
  }
2423
-
2424
1840
  export interface TagResourceOutput {}
2425
-
2426
1841
  export declare class TooManyTagsException extends __BaseException {
2427
1842
  readonly name: "TooManyTagsException";
2428
1843
  readonly $fault: "client";
2429
-
2430
1844
  constructor(
2431
1845
  opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
2432
1846
  );
2433
1847
  }
2434
-
2435
1848
  export interface UntagResourceInput {
2436
1849
  resourceArn: string | undefined;
2437
-
2438
1850
  tagKeys: string[] | undefined;
2439
1851
  }
2440
-
2441
1852
  export interface UntagResourceOutput {}
2442
-
2443
1853
  export declare const JsonFormatRefFilterSensitiveLog: (
2444
1854
  obj: JsonFormatRef
2445
1855
  ) => any;
2446
-
2447
1856
  export declare const LoggingFormatFilterSensitiveLog: (
2448
1857
  obj: LoggingFormat
2449
1858
  ) => any;
2450
-
2451
1859
  export declare const FileAccessLogFilterSensitiveLog: (
2452
1860
  obj: FileAccessLog
2453
1861
  ) => any;
2454
-
2455
1862
  export declare const AccessLogFilterSensitiveLog: (obj: AccessLog) => any;
2456
-
2457
1863
  export declare const ListTagsForResourceInputFilterSensitiveLog: (
2458
1864
  obj: ListTagsForResourceInput
2459
1865
  ) => any;
2460
-
2461
1866
  export declare const TagRefFilterSensitiveLog: (obj: TagRef) => any;
2462
-
2463
1867
  export declare const ListTagsForResourceOutputFilterSensitiveLog: (
2464
1868
  obj: ListTagsForResourceOutput
2465
1869
  ) => any;
2466
-
2467
1870
  export declare const EgressFilterFilterSensitiveLog: (obj: EgressFilter) => any;
2468
-
2469
1871
  export declare const MeshServiceDiscoveryFilterSensitiveLog: (
2470
1872
  obj: MeshServiceDiscovery
2471
1873
  ) => any;
2472
-
2473
1874
  export declare const MeshSpecFilterSensitiveLog: (obj: MeshSpec) => any;
2474
-
2475
1875
  export declare const CreateMeshInputFilterSensitiveLog: (
2476
1876
  obj: CreateMeshInput
2477
1877
  ) => any;
2478
-
2479
1878
  export declare const ResourceMetadataFilterSensitiveLog: (
2480
1879
  obj: ResourceMetadata
2481
1880
  ) => any;
2482
-
2483
1881
  export declare const MeshStatusFilterSensitiveLog: (obj: MeshStatus) => any;
2484
-
2485
1882
  export declare const MeshDataFilterSensitiveLog: (obj: MeshData) => any;
2486
-
2487
1883
  export declare const CreateMeshOutputFilterSensitiveLog: (
2488
1884
  obj: CreateMeshOutput
2489
1885
  ) => any;
2490
-
2491
1886
  export declare const DeleteMeshInputFilterSensitiveLog: (
2492
1887
  obj: DeleteMeshInput
2493
1888
  ) => any;
2494
-
2495
1889
  export declare const DeleteMeshOutputFilterSensitiveLog: (
2496
1890
  obj: DeleteMeshOutput
2497
1891
  ) => any;
2498
-
2499
1892
  export declare const DescribeMeshInputFilterSensitiveLog: (
2500
1893
  obj: DescribeMeshInput
2501
1894
  ) => any;
2502
-
2503
1895
  export declare const DescribeMeshOutputFilterSensitiveLog: (
2504
1896
  obj: DescribeMeshOutput
2505
1897
  ) => any;
2506
-
2507
1898
  export declare const ListMeshesInputFilterSensitiveLog: (
2508
1899
  obj: ListMeshesInput
2509
1900
  ) => any;
2510
-
2511
1901
  export declare const MeshRefFilterSensitiveLog: (obj: MeshRef) => any;
2512
-
2513
1902
  export declare const ListMeshesOutputFilterSensitiveLog: (
2514
1903
  obj: ListMeshesOutput
2515
1904
  ) => any;
2516
-
2517
1905
  export declare const UpdateMeshInputFilterSensitiveLog: (
2518
1906
  obj: UpdateMeshInput
2519
1907
  ) => any;
2520
-
2521
1908
  export declare const UpdateMeshOutputFilterSensitiveLog: (
2522
1909
  obj: UpdateMeshOutput
2523
1910
  ) => any;
2524
-
2525
1911
  export declare const VirtualGatewayListenerTlsFileCertificateFilterSensitiveLog: (
2526
1912
  obj: VirtualGatewayListenerTlsFileCertificate
2527
1913
  ) => any;
2528
-
2529
1914
  export declare const VirtualGatewayListenerTlsSdsCertificateFilterSensitiveLog: (
2530
1915
  obj: VirtualGatewayListenerTlsSdsCertificate
2531
1916
  ) => any;
2532
-
2533
1917
  export declare const VirtualGatewayClientTlsCertificateFilterSensitiveLog: (
2534
1918
  obj: VirtualGatewayClientTlsCertificate
2535
1919
  ) => any;
2536
-
2537
1920
  export declare const SubjectAlternativeNameMatchersFilterSensitiveLog: (
2538
1921
  obj: SubjectAlternativeNameMatchers
2539
1922
  ) => any;
2540
-
2541
1923
  export declare const SubjectAlternativeNamesFilterSensitiveLog: (
2542
1924
  obj: SubjectAlternativeNames
2543
1925
  ) => any;
2544
-
2545
1926
  export declare const VirtualGatewayTlsValidationContextAcmTrustFilterSensitiveLog: (
2546
1927
  obj: VirtualGatewayTlsValidationContextAcmTrust
2547
1928
  ) => any;
2548
-
2549
1929
  export declare const VirtualGatewayTlsValidationContextFileTrustFilterSensitiveLog: (
2550
1930
  obj: VirtualGatewayTlsValidationContextFileTrust
2551
1931
  ) => any;
2552
-
2553
1932
  export declare const VirtualGatewayTlsValidationContextSdsTrustFilterSensitiveLog: (
2554
1933
  obj: VirtualGatewayTlsValidationContextSdsTrust
2555
1934
  ) => any;
2556
-
2557
1935
  export declare const VirtualGatewayTlsValidationContextTrustFilterSensitiveLog: (
2558
1936
  obj: VirtualGatewayTlsValidationContextTrust
2559
1937
  ) => any;
2560
-
2561
1938
  export declare const VirtualGatewayTlsValidationContextFilterSensitiveLog: (
2562
1939
  obj: VirtualGatewayTlsValidationContext
2563
1940
  ) => any;
2564
-
2565
1941
  export declare const VirtualGatewayClientPolicyTlsFilterSensitiveLog: (
2566
1942
  obj: VirtualGatewayClientPolicyTls
2567
1943
  ) => any;
2568
-
2569
1944
  export declare const VirtualGatewayClientPolicyFilterSensitiveLog: (
2570
1945
  obj: VirtualGatewayClientPolicy
2571
1946
  ) => any;
2572
-
2573
1947
  export declare const VirtualGatewayBackendDefaultsFilterSensitiveLog: (
2574
1948
  obj: VirtualGatewayBackendDefaults
2575
1949
  ) => any;
2576
-
2577
1950
  export declare const VirtualGatewayGrpcConnectionPoolFilterSensitiveLog: (
2578
1951
  obj: VirtualGatewayGrpcConnectionPool
2579
1952
  ) => any;
2580
-
2581
1953
  export declare const VirtualGatewayHttpConnectionPoolFilterSensitiveLog: (
2582
1954
  obj: VirtualGatewayHttpConnectionPool
2583
1955
  ) => any;
2584
-
2585
1956
  export declare const VirtualGatewayHttp2ConnectionPoolFilterSensitiveLog: (
2586
1957
  obj: VirtualGatewayHttp2ConnectionPool
2587
1958
  ) => any;
2588
-
2589
1959
  export declare const VirtualGatewayConnectionPoolFilterSensitiveLog: (
2590
1960
  obj: VirtualGatewayConnectionPool
2591
1961
  ) => any;
2592
-
2593
1962
  export declare const VirtualGatewayHealthCheckPolicyFilterSensitiveLog: (
2594
1963
  obj: VirtualGatewayHealthCheckPolicy
2595
1964
  ) => any;
2596
-
2597
1965
  export declare const VirtualGatewayPortMappingFilterSensitiveLog: (
2598
1966
  obj: VirtualGatewayPortMapping
2599
1967
  ) => any;
2600
-
2601
1968
  export declare const VirtualGatewayListenerTlsAcmCertificateFilterSensitiveLog: (
2602
1969
  obj: VirtualGatewayListenerTlsAcmCertificate
2603
1970
  ) => any;
2604
-
2605
1971
  export declare const VirtualGatewayListenerTlsCertificateFilterSensitiveLog: (
2606
1972
  obj: VirtualGatewayListenerTlsCertificate
2607
1973
  ) => any;
2608
-
2609
1974
  export declare const VirtualGatewayListenerTlsValidationContextTrustFilterSensitiveLog: (
2610
1975
  obj: VirtualGatewayListenerTlsValidationContextTrust
2611
1976
  ) => any;
2612
-
2613
1977
  export declare const VirtualGatewayListenerTlsValidationContextFilterSensitiveLog: (
2614
1978
  obj: VirtualGatewayListenerTlsValidationContext
2615
1979
  ) => any;
2616
-
2617
1980
  export declare const VirtualGatewayListenerTlsFilterSensitiveLog: (
2618
1981
  obj: VirtualGatewayListenerTls
2619
1982
  ) => any;
2620
-
2621
1983
  export declare const VirtualGatewayListenerFilterSensitiveLog: (
2622
1984
  obj: VirtualGatewayListener
2623
1985
  ) => any;
2624
-
2625
1986
  export declare const VirtualGatewayFileAccessLogFilterSensitiveLog: (
2626
1987
  obj: VirtualGatewayFileAccessLog
2627
1988
  ) => any;
2628
-
2629
1989
  export declare const VirtualGatewayAccessLogFilterSensitiveLog: (
2630
1990
  obj: VirtualGatewayAccessLog
2631
1991
  ) => any;
2632
-
2633
1992
  export declare const VirtualGatewayLoggingFilterSensitiveLog: (
2634
1993
  obj: VirtualGatewayLogging
2635
1994
  ) => any;
2636
-
2637
1995
  export declare const VirtualGatewaySpecFilterSensitiveLog: (
2638
1996
  obj: VirtualGatewaySpec
2639
1997
  ) => any;
2640
-
2641
1998
  export declare const CreateVirtualGatewayInputFilterSensitiveLog: (
2642
1999
  obj: CreateVirtualGatewayInput
2643
2000
  ) => any;
2644
-
2645
2001
  export declare const VirtualGatewayStatusFilterSensitiveLog: (
2646
2002
  obj: VirtualGatewayStatus
2647
2003
  ) => any;
2648
-
2649
2004
  export declare const VirtualGatewayDataFilterSensitiveLog: (
2650
2005
  obj: VirtualGatewayData
2651
2006
  ) => any;
2652
-
2653
2007
  export declare const CreateVirtualGatewayOutputFilterSensitiveLog: (
2654
2008
  obj: CreateVirtualGatewayOutput
2655
2009
  ) => any;
2656
-
2657
2010
  export declare const DeleteVirtualGatewayInputFilterSensitiveLog: (
2658
2011
  obj: DeleteVirtualGatewayInput
2659
2012
  ) => any;
2660
-
2661
2013
  export declare const DeleteVirtualGatewayOutputFilterSensitiveLog: (
2662
2014
  obj: DeleteVirtualGatewayOutput
2663
2015
  ) => any;
2664
-
2665
2016
  export declare const DescribeVirtualGatewayInputFilterSensitiveLog: (
2666
2017
  obj: DescribeVirtualGatewayInput
2667
2018
  ) => any;
2668
-
2669
2019
  export declare const DescribeVirtualGatewayOutputFilterSensitiveLog: (
2670
2020
  obj: DescribeVirtualGatewayOutput
2671
2021
  ) => any;
2672
-
2673
2022
  export declare const GatewayRouteHostnameRewriteFilterSensitiveLog: (
2674
2023
  obj: GatewayRouteHostnameRewrite
2675
2024
  ) => any;
2676
-
2677
2025
  export declare const GrpcGatewayRouteRewriteFilterSensitiveLog: (
2678
2026
  obj: GrpcGatewayRouteRewrite
2679
2027
  ) => any;
2680
-
2681
2028
  export declare const GatewayRouteVirtualServiceFilterSensitiveLog: (
2682
2029
  obj: GatewayRouteVirtualService
2683
2030
  ) => any;
2684
-
2685
2031
  export declare const GatewayRouteTargetFilterSensitiveLog: (
2686
2032
  obj: GatewayRouteTarget
2687
2033
  ) => any;
2688
-
2689
2034
  export declare const GrpcGatewayRouteActionFilterSensitiveLog: (
2690
2035
  obj: GrpcGatewayRouteAction
2691
2036
  ) => any;
2692
-
2693
2037
  export declare const GatewayRouteHostnameMatchFilterSensitiveLog: (
2694
2038
  obj: GatewayRouteHostnameMatch
2695
2039
  ) => any;
2696
-
2697
2040
  export declare const MatchRangeFilterSensitiveLog: (obj: MatchRange) => any;
2698
-
2699
2041
  export declare const GrpcMetadataMatchMethodFilterSensitiveLog: (
2700
2042
  obj: GrpcMetadataMatchMethod
2701
2043
  ) => any;
2702
-
2703
2044
  export declare const GrpcGatewayRouteMetadataFilterSensitiveLog: (
2704
2045
  obj: GrpcGatewayRouteMetadata
2705
2046
  ) => any;
2706
-
2707
2047
  export declare const GrpcGatewayRouteMatchFilterSensitiveLog: (
2708
2048
  obj: GrpcGatewayRouteMatch
2709
2049
  ) => any;
2710
-
2711
2050
  export declare const GrpcGatewayRouteFilterSensitiveLog: (
2712
2051
  obj: GrpcGatewayRoute
2713
2052
  ) => any;
2714
-
2715
2053
  export declare const HttpGatewayRoutePathRewriteFilterSensitiveLog: (
2716
2054
  obj: HttpGatewayRoutePathRewrite
2717
2055
  ) => any;
2718
-
2719
2056
  export declare const HttpGatewayRoutePrefixRewriteFilterSensitiveLog: (
2720
2057
  obj: HttpGatewayRoutePrefixRewrite
2721
2058
  ) => any;
2722
-
2723
2059
  export declare const HttpGatewayRouteRewriteFilterSensitiveLog: (
2724
2060
  obj: HttpGatewayRouteRewrite
2725
2061
  ) => any;
2726
-
2727
2062
  export declare const HttpGatewayRouteActionFilterSensitiveLog: (
2728
2063
  obj: HttpGatewayRouteAction
2729
2064
  ) => any;
2730
-
2731
2065
  export declare const HeaderMatchMethodFilterSensitiveLog: (
2732
2066
  obj: HeaderMatchMethod
2733
2067
  ) => any;
2734
-
2735
2068
  export declare const HttpGatewayRouteHeaderFilterSensitiveLog: (
2736
2069
  obj: HttpGatewayRouteHeader
2737
2070
  ) => any;
2738
-
2739
2071
  export declare const HttpPathMatchFilterSensitiveLog: (
2740
2072
  obj: HttpPathMatch
2741
2073
  ) => any;
2742
-
2743
2074
  export declare const QueryParameterMatchFilterSensitiveLog: (
2744
2075
  obj: QueryParameterMatch
2745
2076
  ) => any;
2746
-
2747
2077
  export declare const HttpQueryParameterFilterSensitiveLog: (
2748
2078
  obj: HttpQueryParameter
2749
2079
  ) => any;
2750
-
2751
2080
  export declare const HttpGatewayRouteMatchFilterSensitiveLog: (
2752
2081
  obj: HttpGatewayRouteMatch
2753
2082
  ) => any;
2754
-
2755
2083
  export declare const HttpGatewayRouteFilterSensitiveLog: (
2756
2084
  obj: HttpGatewayRoute
2757
2085
  ) => any;
2758
-
2759
2086
  export declare const GatewayRouteSpecFilterSensitiveLog: (
2760
2087
  obj: GatewayRouteSpec
2761
2088
  ) => any;
2762
-
2763
2089
  export declare const CreateGatewayRouteInputFilterSensitiveLog: (
2764
2090
  obj: CreateGatewayRouteInput
2765
2091
  ) => any;
2766
-
2767
2092
  export declare const GatewayRouteStatusFilterSensitiveLog: (
2768
2093
  obj: GatewayRouteStatus
2769
2094
  ) => any;
2770
-
2771
2095
  export declare const GatewayRouteDataFilterSensitiveLog: (
2772
2096
  obj: GatewayRouteData
2773
2097
  ) => any;
2774
-
2775
2098
  export declare const CreateGatewayRouteOutputFilterSensitiveLog: (
2776
2099
  obj: CreateGatewayRouteOutput
2777
2100
  ) => any;
2778
-
2779
2101
  export declare const DeleteGatewayRouteInputFilterSensitiveLog: (
2780
2102
  obj: DeleteGatewayRouteInput
2781
2103
  ) => any;
2782
-
2783
2104
  export declare const DeleteGatewayRouteOutputFilterSensitiveLog: (
2784
2105
  obj: DeleteGatewayRouteOutput
2785
2106
  ) => any;
2786
-
2787
2107
  export declare const DescribeGatewayRouteInputFilterSensitiveLog: (
2788
2108
  obj: DescribeGatewayRouteInput
2789
2109
  ) => any;
2790
-
2791
2110
  export declare const DescribeGatewayRouteOutputFilterSensitiveLog: (
2792
2111
  obj: DescribeGatewayRouteOutput
2793
2112
  ) => any;
2794
-
2795
2113
  export declare const ListGatewayRoutesInputFilterSensitiveLog: (
2796
2114
  obj: ListGatewayRoutesInput
2797
2115
  ) => any;
2798
-
2799
2116
  export declare const GatewayRouteRefFilterSensitiveLog: (
2800
2117
  obj: GatewayRouteRef
2801
2118
  ) => any;
2802
-
2803
2119
  export declare const ListGatewayRoutesOutputFilterSensitiveLog: (
2804
2120
  obj: ListGatewayRoutesOutput
2805
2121
  ) => any;
2806
-
2807
2122
  export declare const UpdateGatewayRouteInputFilterSensitiveLog: (
2808
2123
  obj: UpdateGatewayRouteInput
2809
2124
  ) => any;
2810
-
2811
2125
  export declare const UpdateGatewayRouteOutputFilterSensitiveLog: (
2812
2126
  obj: UpdateGatewayRouteOutput
2813
2127
  ) => any;
2814
-
2815
2128
  export declare const ListVirtualGatewaysInputFilterSensitiveLog: (
2816
2129
  obj: ListVirtualGatewaysInput
2817
2130
  ) => any;
2818
-
2819
2131
  export declare const VirtualGatewayRefFilterSensitiveLog: (
2820
2132
  obj: VirtualGatewayRef
2821
2133
  ) => any;
2822
-
2823
2134
  export declare const ListVirtualGatewaysOutputFilterSensitiveLog: (
2824
2135
  obj: ListVirtualGatewaysOutput
2825
2136
  ) => any;
2826
-
2827
2137
  export declare const UpdateVirtualGatewayInputFilterSensitiveLog: (
2828
2138
  obj: UpdateVirtualGatewayInput
2829
2139
  ) => any;
2830
-
2831
2140
  export declare const UpdateVirtualGatewayOutputFilterSensitiveLog: (
2832
2141
  obj: UpdateVirtualGatewayOutput
2833
2142
  ) => any;
2834
-
2835
2143
  export declare const ListenerTlsFileCertificateFilterSensitiveLog: (
2836
2144
  obj: ListenerTlsFileCertificate
2837
2145
  ) => any;
2838
-
2839
2146
  export declare const ListenerTlsSdsCertificateFilterSensitiveLog: (
2840
2147
  obj: ListenerTlsSdsCertificate
2841
2148
  ) => any;
2842
-
2843
2149
  export declare const ClientTlsCertificateFilterSensitiveLog: (
2844
2150
  obj: ClientTlsCertificate
2845
2151
  ) => any;
2846
-
2847
2152
  export declare const TlsValidationContextAcmTrustFilterSensitiveLog: (
2848
2153
  obj: TlsValidationContextAcmTrust
2849
2154
  ) => any;
2850
-
2851
2155
  export declare const TlsValidationContextFileTrustFilterSensitiveLog: (
2852
2156
  obj: TlsValidationContextFileTrust
2853
2157
  ) => any;
2854
-
2855
2158
  export declare const TlsValidationContextSdsTrustFilterSensitiveLog: (
2856
2159
  obj: TlsValidationContextSdsTrust
2857
2160
  ) => any;
2858
-
2859
2161
  export declare const TlsValidationContextTrustFilterSensitiveLog: (
2860
2162
  obj: TlsValidationContextTrust
2861
2163
  ) => any;
2862
-
2863
2164
  export declare const TlsValidationContextFilterSensitiveLog: (
2864
2165
  obj: TlsValidationContext
2865
2166
  ) => any;
2866
-
2867
2167
  export declare const ClientPolicyTlsFilterSensitiveLog: (
2868
2168
  obj: ClientPolicyTls
2869
2169
  ) => any;
2870
-
2871
2170
  export declare const ClientPolicyFilterSensitiveLog: (obj: ClientPolicy) => any;
2872
-
2873
2171
  export declare const BackendDefaultsFilterSensitiveLog: (
2874
2172
  obj: BackendDefaults
2875
2173
  ) => any;
2876
-
2877
2174
  export declare const VirtualServiceBackendFilterSensitiveLog: (
2878
2175
  obj: VirtualServiceBackend
2879
2176
  ) => any;
2880
-
2881
2177
  export declare const BackendFilterSensitiveLog: (obj: Backend) => any;
2882
-
2883
2178
  export declare const VirtualNodeGrpcConnectionPoolFilterSensitiveLog: (
2884
2179
  obj: VirtualNodeGrpcConnectionPool
2885
2180
  ) => any;
2886
-
2887
2181
  export declare const VirtualNodeHttpConnectionPoolFilterSensitiveLog: (
2888
2182
  obj: VirtualNodeHttpConnectionPool
2889
2183
  ) => any;
2890
-
2891
2184
  export declare const VirtualNodeHttp2ConnectionPoolFilterSensitiveLog: (
2892
2185
  obj: VirtualNodeHttp2ConnectionPool
2893
2186
  ) => any;
2894
-
2895
2187
  export declare const VirtualNodeTcpConnectionPoolFilterSensitiveLog: (
2896
2188
  obj: VirtualNodeTcpConnectionPool
2897
2189
  ) => any;
2898
-
2899
2190
  export declare const VirtualNodeConnectionPoolFilterSensitiveLog: (
2900
2191
  obj: VirtualNodeConnectionPool
2901
2192
  ) => any;
2902
-
2903
2193
  export declare const HealthCheckPolicyFilterSensitiveLog: (
2904
2194
  obj: HealthCheckPolicy
2905
2195
  ) => any;
2906
-
2907
2196
  export declare const DurationFilterSensitiveLog: (obj: Duration) => any;
2908
-
2909
2197
  export declare const OutlierDetectionFilterSensitiveLog: (
2910
2198
  obj: OutlierDetection
2911
2199
  ) => any;
2912
-
2913
2200
  export declare const PortMappingFilterSensitiveLog: (obj: PortMapping) => any;
2914
-
2915
2201
  export declare const GrpcTimeoutFilterSensitiveLog: (obj: GrpcTimeout) => any;
2916
-
2917
2202
  export declare const HttpTimeoutFilterSensitiveLog: (obj: HttpTimeout) => any;
2918
-
2919
2203
  export declare const TcpTimeoutFilterSensitiveLog: (obj: TcpTimeout) => any;
2920
-
2921
2204
  export declare const ListenerTimeoutFilterSensitiveLog: (
2922
2205
  obj: ListenerTimeout
2923
2206
  ) => any;
2924
-
2925
2207
  export declare const ListenerTlsAcmCertificateFilterSensitiveLog: (
2926
2208
  obj: ListenerTlsAcmCertificate
2927
2209
  ) => any;
2928
-
2929
2210
  export declare const ListenerTlsCertificateFilterSensitiveLog: (
2930
2211
  obj: ListenerTlsCertificate
2931
2212
  ) => any;
2932
-
2933
2213
  export declare const ListenerTlsValidationContextTrustFilterSensitiveLog: (
2934
2214
  obj: ListenerTlsValidationContextTrust
2935
2215
  ) => any;
2936
-
2937
2216
  export declare const ListenerTlsValidationContextFilterSensitiveLog: (
2938
2217
  obj: ListenerTlsValidationContext
2939
2218
  ) => any;
2940
-
2941
2219
  export declare const ListenerTlsFilterSensitiveLog: (obj: ListenerTls) => any;
2942
-
2943
2220
  export declare const ListenerFilterSensitiveLog: (obj: Listener) => any;
2944
-
2945
2221
  export declare const LoggingFilterSensitiveLog: (obj: Logging) => any;
2946
-
2947
2222
  export declare const AwsCloudMapInstanceAttributeFilterSensitiveLog: (
2948
2223
  obj: AwsCloudMapInstanceAttribute
2949
2224
  ) => any;
2950
-
2951
2225
  export declare const AwsCloudMapServiceDiscoveryFilterSensitiveLog: (
2952
2226
  obj: AwsCloudMapServiceDiscovery
2953
2227
  ) => any;
2954
-
2955
2228
  export declare const DnsServiceDiscoveryFilterSensitiveLog: (
2956
2229
  obj: DnsServiceDiscovery
2957
2230
  ) => any;
2958
-
2959
2231
  export declare const ServiceDiscoveryFilterSensitiveLog: (
2960
2232
  obj: ServiceDiscovery
2961
2233
  ) => any;
2962
-
2963
2234
  export declare const VirtualNodeSpecFilterSensitiveLog: (
2964
2235
  obj: VirtualNodeSpec
2965
2236
  ) => any;
2966
-
2967
2237
  export declare const CreateVirtualNodeInputFilterSensitiveLog: (
2968
2238
  obj: CreateVirtualNodeInput
2969
2239
  ) => any;
2970
-
2971
2240
  export declare const VirtualNodeStatusFilterSensitiveLog: (
2972
2241
  obj: VirtualNodeStatus
2973
2242
  ) => any;
2974
-
2975
2243
  export declare const VirtualNodeDataFilterSensitiveLog: (
2976
2244
  obj: VirtualNodeData
2977
2245
  ) => any;
2978
-
2979
2246
  export declare const CreateVirtualNodeOutputFilterSensitiveLog: (
2980
2247
  obj: CreateVirtualNodeOutput
2981
2248
  ) => any;
2982
-
2983
2249
  export declare const DeleteVirtualNodeInputFilterSensitiveLog: (
2984
2250
  obj: DeleteVirtualNodeInput
2985
2251
  ) => any;
2986
-
2987
2252
  export declare const DeleteVirtualNodeOutputFilterSensitiveLog: (
2988
2253
  obj: DeleteVirtualNodeOutput
2989
2254
  ) => any;
2990
-
2991
2255
  export declare const DescribeVirtualNodeInputFilterSensitiveLog: (
2992
2256
  obj: DescribeVirtualNodeInput
2993
2257
  ) => any;
2994
-
2995
2258
  export declare const DescribeVirtualNodeOutputFilterSensitiveLog: (
2996
2259
  obj: DescribeVirtualNodeOutput
2997
2260
  ) => any;
2998
-
2999
2261
  export declare const ListVirtualNodesInputFilterSensitiveLog: (
3000
2262
  obj: ListVirtualNodesInput
3001
2263
  ) => any;
3002
-
3003
2264
  export declare const VirtualNodeRefFilterSensitiveLog: (
3004
2265
  obj: VirtualNodeRef
3005
2266
  ) => any;
3006
-
3007
2267
  export declare const ListVirtualNodesOutputFilterSensitiveLog: (
3008
2268
  obj: ListVirtualNodesOutput
3009
2269
  ) => any;
3010
-
3011
2270
  export declare const UpdateVirtualNodeInputFilterSensitiveLog: (
3012
2271
  obj: UpdateVirtualNodeInput
3013
2272
  ) => any;
3014
-
3015
2273
  export declare const UpdateVirtualNodeOutputFilterSensitiveLog: (
3016
2274
  obj: UpdateVirtualNodeOutput
3017
2275
  ) => any;
3018
-
3019
2276
  export declare const VirtualRouterListenerFilterSensitiveLog: (
3020
2277
  obj: VirtualRouterListener
3021
2278
  ) => any;
3022
-
3023
2279
  export declare const VirtualRouterSpecFilterSensitiveLog: (
3024
2280
  obj: VirtualRouterSpec
3025
2281
  ) => any;
3026
-
3027
2282
  export declare const CreateVirtualRouterInputFilterSensitiveLog: (
3028
2283
  obj: CreateVirtualRouterInput
3029
2284
  ) => any;
3030
-
3031
2285
  export declare const VirtualRouterStatusFilterSensitiveLog: (
3032
2286
  obj: VirtualRouterStatus
3033
2287
  ) => any;
3034
-
3035
2288
  export declare const VirtualRouterDataFilterSensitiveLog: (
3036
2289
  obj: VirtualRouterData
3037
2290
  ) => any;
3038
-
3039
2291
  export declare const CreateVirtualRouterOutputFilterSensitiveLog: (
3040
2292
  obj: CreateVirtualRouterOutput
3041
2293
  ) => any;
3042
-
3043
2294
  export declare const DeleteVirtualRouterInputFilterSensitiveLog: (
3044
2295
  obj: DeleteVirtualRouterInput
3045
2296
  ) => any;
3046
-
3047
2297
  export declare const DeleteVirtualRouterOutputFilterSensitiveLog: (
3048
2298
  obj: DeleteVirtualRouterOutput
3049
2299
  ) => any;
3050
-
3051
2300
  export declare const DescribeVirtualRouterInputFilterSensitiveLog: (
3052
2301
  obj: DescribeVirtualRouterInput
3053
2302
  ) => any;
3054
-
3055
2303
  export declare const DescribeVirtualRouterOutputFilterSensitiveLog: (
3056
2304
  obj: DescribeVirtualRouterOutput
3057
2305
  ) => any;
3058
-
3059
2306
  export declare const ListVirtualRoutersInputFilterSensitiveLog: (
3060
2307
  obj: ListVirtualRoutersInput
3061
2308
  ) => any;
3062
-
3063
2309
  export declare const VirtualRouterRefFilterSensitiveLog: (
3064
2310
  obj: VirtualRouterRef
3065
2311
  ) => any;
3066
-
3067
2312
  export declare const ListVirtualRoutersOutputFilterSensitiveLog: (
3068
2313
  obj: ListVirtualRoutersOutput
3069
2314
  ) => any;
3070
-
3071
2315
  export declare const WeightedTargetFilterSensitiveLog: (
3072
2316
  obj: WeightedTarget
3073
2317
  ) => any;
3074
-
3075
2318
  export declare const GrpcRouteActionFilterSensitiveLog: (
3076
2319
  obj: GrpcRouteAction
3077
2320
  ) => any;
3078
-
3079
2321
  export declare const GrpcRouteMetadataMatchMethodFilterSensitiveLog: (
3080
2322
  obj: GrpcRouteMetadataMatchMethod
3081
2323
  ) => any;
3082
-
3083
2324
  export declare const GrpcRouteMetadataFilterSensitiveLog: (
3084
2325
  obj: GrpcRouteMetadata
3085
2326
  ) => any;
3086
-
3087
2327
  export declare const GrpcRouteMatchFilterSensitiveLog: (
3088
2328
  obj: GrpcRouteMatch
3089
2329
  ) => any;
3090
-
3091
2330
  export declare const GrpcRetryPolicyFilterSensitiveLog: (
3092
2331
  obj: GrpcRetryPolicy
3093
2332
  ) => any;
3094
-
3095
2333
  export declare const GrpcRouteFilterSensitiveLog: (obj: GrpcRoute) => any;
3096
-
3097
2334
  export declare const HttpRouteActionFilterSensitiveLog: (
3098
2335
  obj: HttpRouteAction
3099
2336
  ) => any;
3100
-
3101
2337
  export declare const HttpRouteHeaderFilterSensitiveLog: (
3102
2338
  obj: HttpRouteHeader
3103
2339
  ) => any;
3104
-
3105
2340
  export declare const HttpRouteMatchFilterSensitiveLog: (
3106
2341
  obj: HttpRouteMatch
3107
2342
  ) => any;
3108
-
3109
2343
  export declare const HttpRetryPolicyFilterSensitiveLog: (
3110
2344
  obj: HttpRetryPolicy
3111
2345
  ) => any;
3112
-
3113
2346
  export declare const HttpRouteFilterSensitiveLog: (obj: HttpRoute) => any;
3114
-
3115
2347
  export declare const TcpRouteActionFilterSensitiveLog: (
3116
2348
  obj: TcpRouteAction
3117
2349
  ) => any;
3118
-
3119
2350
  export declare const TcpRouteMatchFilterSensitiveLog: (
3120
2351
  obj: TcpRouteMatch
3121
2352
  ) => any;
3122
-
3123
2353
  export declare const TcpRouteFilterSensitiveLog: (obj: TcpRoute) => any;
3124
-
3125
2354
  export declare const RouteSpecFilterSensitiveLog: (obj: RouteSpec) => any;
3126
-
3127
2355
  export declare const CreateRouteInputFilterSensitiveLog: (
3128
2356
  obj: CreateRouteInput
3129
2357
  ) => any;
3130
-
3131
2358
  export declare const RouteStatusFilterSensitiveLog: (obj: RouteStatus) => any;
3132
-
3133
2359
  export declare const RouteDataFilterSensitiveLog: (obj: RouteData) => any;
3134
-
3135
2360
  export declare const CreateRouteOutputFilterSensitiveLog: (
3136
2361
  obj: CreateRouteOutput
3137
2362
  ) => any;
3138
-
3139
2363
  export declare const DeleteRouteInputFilterSensitiveLog: (
3140
2364
  obj: DeleteRouteInput
3141
2365
  ) => any;
3142
-
3143
2366
  export declare const DeleteRouteOutputFilterSensitiveLog: (
3144
2367
  obj: DeleteRouteOutput
3145
2368
  ) => any;
3146
-
3147
2369
  export declare const DescribeRouteInputFilterSensitiveLog: (
3148
2370
  obj: DescribeRouteInput
3149
2371
  ) => any;
3150
-
3151
2372
  export declare const DescribeRouteOutputFilterSensitiveLog: (
3152
2373
  obj: DescribeRouteOutput
3153
2374
  ) => any;
3154
-
3155
2375
  export declare const ListRoutesInputFilterSensitiveLog: (
3156
2376
  obj: ListRoutesInput
3157
2377
  ) => any;
3158
-
3159
2378
  export declare const RouteRefFilterSensitiveLog: (obj: RouteRef) => any;
3160
-
3161
2379
  export declare const ListRoutesOutputFilterSensitiveLog: (
3162
2380
  obj: ListRoutesOutput
3163
2381
  ) => any;
3164
-
3165
2382
  export declare const UpdateRouteInputFilterSensitiveLog: (
3166
2383
  obj: UpdateRouteInput
3167
2384
  ) => any;
3168
-
3169
2385
  export declare const UpdateRouteOutputFilterSensitiveLog: (
3170
2386
  obj: UpdateRouteOutput
3171
2387
  ) => any;
3172
-
3173
2388
  export declare const UpdateVirtualRouterInputFilterSensitiveLog: (
3174
2389
  obj: UpdateVirtualRouterInput
3175
2390
  ) => any;
3176
-
3177
2391
  export declare const UpdateVirtualRouterOutputFilterSensitiveLog: (
3178
2392
  obj: UpdateVirtualRouterOutput
3179
2393
  ) => any;
3180
-
3181
2394
  export declare const VirtualNodeServiceProviderFilterSensitiveLog: (
3182
2395
  obj: VirtualNodeServiceProvider
3183
2396
  ) => any;
3184
-
3185
2397
  export declare const VirtualRouterServiceProviderFilterSensitiveLog: (
3186
2398
  obj: VirtualRouterServiceProvider
3187
2399
  ) => any;
3188
-
3189
2400
  export declare const VirtualServiceProviderFilterSensitiveLog: (
3190
2401
  obj: VirtualServiceProvider
3191
2402
  ) => any;
3192
-
3193
2403
  export declare const VirtualServiceSpecFilterSensitiveLog: (
3194
2404
  obj: VirtualServiceSpec
3195
2405
  ) => any;
3196
-
3197
2406
  export declare const CreateVirtualServiceInputFilterSensitiveLog: (
3198
2407
  obj: CreateVirtualServiceInput
3199
2408
  ) => any;
3200
-
3201
2409
  export declare const VirtualServiceStatusFilterSensitiveLog: (
3202
2410
  obj: VirtualServiceStatus
3203
2411
  ) => any;
3204
-
3205
2412
  export declare const VirtualServiceDataFilterSensitiveLog: (
3206
2413
  obj: VirtualServiceData
3207
2414
  ) => any;
3208
-
3209
2415
  export declare const CreateVirtualServiceOutputFilterSensitiveLog: (
3210
2416
  obj: CreateVirtualServiceOutput
3211
2417
  ) => any;
3212
-
3213
2418
  export declare const DeleteVirtualServiceInputFilterSensitiveLog: (
3214
2419
  obj: DeleteVirtualServiceInput
3215
2420
  ) => any;
3216
-
3217
2421
  export declare const DeleteVirtualServiceOutputFilterSensitiveLog: (
3218
2422
  obj: DeleteVirtualServiceOutput
3219
2423
  ) => any;
3220
-
3221
2424
  export declare const DescribeVirtualServiceInputFilterSensitiveLog: (
3222
2425
  obj: DescribeVirtualServiceInput
3223
2426
  ) => any;
3224
-
3225
2427
  export declare const DescribeVirtualServiceOutputFilterSensitiveLog: (
3226
2428
  obj: DescribeVirtualServiceOutput
3227
2429
  ) => any;
3228
-
3229
2430
  export declare const ListVirtualServicesInputFilterSensitiveLog: (
3230
2431
  obj: ListVirtualServicesInput
3231
2432
  ) => any;
3232
-
3233
2433
  export declare const VirtualServiceRefFilterSensitiveLog: (
3234
2434
  obj: VirtualServiceRef
3235
2435
  ) => any;
3236
-
3237
2436
  export declare const ListVirtualServicesOutputFilterSensitiveLog: (
3238
2437
  obj: ListVirtualServicesOutput
3239
2438
  ) => any;
3240
-
3241
2439
  export declare const UpdateVirtualServiceInputFilterSensitiveLog: (
3242
2440
  obj: UpdateVirtualServiceInput
3243
2441
  ) => any;
3244
-
3245
2442
  export declare const UpdateVirtualServiceOutputFilterSensitiveLog: (
3246
2443
  obj: UpdateVirtualServiceOutput
3247
2444
  ) => any;
3248
-
3249
2445
  export declare const TagResourceInputFilterSensitiveLog: (
3250
2446
  obj: TagResourceInput
3251
2447
  ) => any;
3252
-
3253
2448
  export declare const TagResourceOutputFilterSensitiveLog: (
3254
2449
  obj: TagResourceOutput
3255
2450
  ) => any;
3256
-
3257
2451
  export declare const UntagResourceInputFilterSensitiveLog: (
3258
2452
  obj: UntagResourceInput
3259
2453
  ) => any;
3260
-
3261
2454
  export declare const UntagResourceOutputFilterSensitiveLog: (
3262
2455
  obj: UntagResourceOutput
3263
2456
  ) => any;