@aws-sdk/client-app-mesh 3.296.0 → 3.297.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 (52) hide show
  1. package/dist-types/AppMesh.d.ts +39 -0
  2. package/dist-types/AppMeshClient.d.ts +24 -4
  3. package/dist-types/commands/CreateGatewayRouteCommand.d.ts +16 -0
  4. package/dist-types/commands/CreateMeshCommand.d.ts +16 -0
  5. package/dist-types/commands/CreateRouteCommand.d.ts +16 -0
  6. package/dist-types/commands/CreateVirtualGatewayCommand.d.ts +16 -0
  7. package/dist-types/commands/CreateVirtualNodeCommand.d.ts +16 -0
  8. package/dist-types/commands/CreateVirtualRouterCommand.d.ts +16 -0
  9. package/dist-types/commands/CreateVirtualServiceCommand.d.ts +16 -0
  10. package/dist-types/commands/DeleteGatewayRouteCommand.d.ts +16 -0
  11. package/dist-types/commands/DeleteMeshCommand.d.ts +16 -0
  12. package/dist-types/commands/DeleteRouteCommand.d.ts +16 -0
  13. package/dist-types/commands/DeleteVirtualGatewayCommand.d.ts +16 -0
  14. package/dist-types/commands/DeleteVirtualNodeCommand.d.ts +16 -0
  15. package/dist-types/commands/DeleteVirtualRouterCommand.d.ts +16 -0
  16. package/dist-types/commands/DeleteVirtualServiceCommand.d.ts +16 -0
  17. package/dist-types/commands/DescribeGatewayRouteCommand.d.ts +16 -0
  18. package/dist-types/commands/DescribeMeshCommand.d.ts +16 -0
  19. package/dist-types/commands/DescribeRouteCommand.d.ts +16 -0
  20. package/dist-types/commands/DescribeVirtualGatewayCommand.d.ts +16 -0
  21. package/dist-types/commands/DescribeVirtualNodeCommand.d.ts +16 -0
  22. package/dist-types/commands/DescribeVirtualRouterCommand.d.ts +16 -0
  23. package/dist-types/commands/DescribeVirtualServiceCommand.d.ts +16 -0
  24. package/dist-types/commands/ListGatewayRoutesCommand.d.ts +16 -0
  25. package/dist-types/commands/ListMeshesCommand.d.ts +16 -0
  26. package/dist-types/commands/ListRoutesCommand.d.ts +16 -0
  27. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  28. package/dist-types/commands/ListVirtualGatewaysCommand.d.ts +16 -0
  29. package/dist-types/commands/ListVirtualNodesCommand.d.ts +16 -0
  30. package/dist-types/commands/ListVirtualRoutersCommand.d.ts +16 -0
  31. package/dist-types/commands/ListVirtualServicesCommand.d.ts +16 -0
  32. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  33. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  34. package/dist-types/commands/UpdateGatewayRouteCommand.d.ts +16 -0
  35. package/dist-types/commands/UpdateMeshCommand.d.ts +16 -0
  36. package/dist-types/commands/UpdateRouteCommand.d.ts +16 -0
  37. package/dist-types/commands/UpdateVirtualGatewayCommand.d.ts +16 -0
  38. package/dist-types/commands/UpdateVirtualNodeCommand.d.ts +16 -0
  39. package/dist-types/commands/UpdateVirtualRouterCommand.d.ts +16 -0
  40. package/dist-types/commands/UpdateVirtualServiceCommand.d.ts +16 -0
  41. package/dist-types/models/AppMeshServiceException.d.ts +2 -0
  42. package/dist-types/models/models_0.d.ts +388 -0
  43. package/dist-types/pagination/Interfaces.d.ts +3 -0
  44. package/dist-types/pagination/ListGatewayRoutesPaginator.d.ts +3 -0
  45. package/dist-types/pagination/ListMeshesPaginator.d.ts +3 -0
  46. package/dist-types/pagination/ListRoutesPaginator.d.ts +3 -0
  47. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListVirtualGatewaysPaginator.d.ts +3 -0
  49. package/dist-types/pagination/ListVirtualNodesPaginator.d.ts +3 -0
  50. package/dist-types/pagination/ListVirtualRoutersPaginator.d.ts +3 -0
  51. package/dist-types/pagination/ListVirtualServicesPaginator.d.ts +3 -0
  52. package/package.json +3 -3
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { AppMeshServiceException as __BaseException } from "./AppMeshServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>An object that represents the key value pairs for the JSON.</p>
5
6
  */
6
7
  export interface JsonFormatRef {
@@ -14,9 +15,13 @@ export interface JsonFormatRef {
14
15
  value: string | undefined;
15
16
  }
16
17
  /**
18
+ * @public
17
19
  * <p>An object that represents the format for the logs.</p>
18
20
  */
19
21
  export type LoggingFormat = LoggingFormat.JsonMember | LoggingFormat.TextMember | LoggingFormat.$UnknownMember;
22
+ /**
23
+ * @public
24
+ */
20
25
  export declare namespace LoggingFormat {
21
26
  /**
22
27
  * <p/>
@@ -47,6 +52,7 @@ export declare namespace LoggingFormat {
47
52
  const visit: <T>(value: LoggingFormat, visitor: Visitor<T>) => T;
48
53
  }
49
54
  /**
55
+ * @public
50
56
  * <p>An object that represents an access log file.</p>
51
57
  */
52
58
  export interface FileAccessLog {
@@ -70,9 +76,13 @@ export interface FileAccessLog {
70
76
  format?: LoggingFormat;
71
77
  }
72
78
  /**
79
+ * @public
73
80
  * <p>An object that represents the access logging information for a virtual node.</p>
74
81
  */
75
82
  export type AccessLog = AccessLog.FileMember | AccessLog.$UnknownMember;
83
+ /**
84
+ * @public
85
+ */
76
86
  export declare namespace AccessLog {
77
87
  /**
78
88
  * <p>The file object to send virtual node access logs to.</p>
@@ -92,6 +102,7 @@ export declare namespace AccessLog {
92
102
  const visit: <T>(value: AccessLog, visitor: Visitor<T>) => T;
93
103
  }
94
104
  /**
105
+ * @public
95
106
  * <p>The request syntax was malformed. Check your request syntax and try again.</p>
96
107
  */
97
108
  export declare class BadRequestException extends __BaseException {
@@ -103,6 +114,7 @@ export declare class BadRequestException extends __BaseException {
103
114
  constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
104
115
  }
105
116
  /**
117
+ * @public
106
118
  * <p>You don't have permissions to perform this action.</p>
107
119
  */
108
120
  export declare class ForbiddenException extends __BaseException {
@@ -114,6 +126,7 @@ export declare class ForbiddenException extends __BaseException {
114
126
  constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
115
127
  }
116
128
  /**
129
+ * @public
117
130
  * <p>The request processing has failed because of an unknown error, exception, or
118
131
  * failure.</p>
119
132
  */
@@ -127,6 +140,7 @@ export declare class InternalServerErrorException extends __BaseException {
127
140
  constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
128
141
  }
129
142
  /**
143
+ * @public
130
144
  *
131
145
  */
132
146
  export interface ListTagsForResourceInput {
@@ -154,6 +168,7 @@ export interface ListTagsForResourceInput {
154
168
  limit?: number;
155
169
  }
156
170
  /**
171
+ * @public
157
172
  * <p>Optional metadata that you apply to a resource to assist with categorization and
158
173
  * organization. Each tag consists of a key and an optional value, both of which you define.
159
174
  * Tag keys can have a maximum character length of 128 characters, and tag values can have
@@ -172,6 +187,7 @@ export interface TagRef {
172
187
  value: string | undefined;
173
188
  }
174
189
  /**
190
+ * @public
175
191
  *
176
192
  */
177
193
  export interface ListTagsForResourceOutput {
@@ -188,6 +204,7 @@ export interface ListTagsForResourceOutput {
188
204
  nextToken?: string;
189
205
  }
190
206
  /**
207
+ * @public
191
208
  * <p>The specified resource doesn't exist. Check your request syntax and try again.</p>
192
209
  */
193
210
  export declare class NotFoundException extends __BaseException {
@@ -199,6 +216,7 @@ export declare class NotFoundException extends __BaseException {
199
216
  constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
200
217
  }
201
218
  /**
219
+ * @public
202
220
  * <p>The request has failed due to a temporary failure of the service.</p>
203
221
  */
204
222
  export declare class ServiceUnavailableException extends __BaseException {
@@ -211,6 +229,7 @@ export declare class ServiceUnavailableException extends __BaseException {
211
229
  constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
212
230
  }
213
231
  /**
232
+ * @public
214
233
  * <p>The maximum request rate permitted by the App Mesh APIs has been exceeded for
215
234
  * your account. For best results, use an increasing or variable sleep interval between
216
235
  * requests.</p>
@@ -227,6 +246,7 @@ export declare class TooManyRequestsException extends __BaseException {
227
246
  constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
228
247
  }
229
248
  /**
249
+ * @public
230
250
  * <p>The request contains a client token that was used for a previous update resource call
231
251
  * with different specifications. Try the request again with a new client token.</p>
232
252
  */
@@ -238,11 +258,15 @@ export declare class ConflictException extends __BaseException {
238
258
  */
239
259
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
240
260
  }
261
+ /**
262
+ * @public
263
+ */
241
264
  export declare enum EgressFilterType {
242
265
  ALLOW_ALL = "ALLOW_ALL",
243
266
  DROP_ALL = "DROP_ALL"
244
267
  }
245
268
  /**
269
+ * @public
246
270
  * <p>An object that represents the egress filter rules for a service mesh.</p>
247
271
  */
248
272
  export interface EgressFilter {
@@ -255,6 +279,9 @@ export interface EgressFilter {
255
279
  */
256
280
  type: EgressFilterType | string | undefined;
257
281
  }
282
+ /**
283
+ * @public
284
+ */
258
285
  export declare enum IpPreference {
259
286
  IPv4_ONLY = "IPv4_ONLY",
260
287
  IPv4_PREFERRED = "IPv4_PREFERRED",
@@ -262,6 +289,7 @@ export declare enum IpPreference {
262
289
  IPv6_PREFERRED = "IPv6_PREFERRED"
263
290
  }
264
291
  /**
292
+ * @public
265
293
  * <p>An object that represents the service discovery information for a service mesh.</p>
266
294
  */
267
295
  export interface MeshServiceDiscovery {
@@ -271,6 +299,7 @@ export interface MeshServiceDiscovery {
271
299
  ipPreference?: IpPreference | string;
272
300
  }
273
301
  /**
302
+ * @public
274
303
  * <p>An object that represents the specification of a service mesh.</p>
275
304
  */
276
305
  export interface MeshSpec {
@@ -284,6 +313,7 @@ export interface MeshSpec {
284
313
  serviceDiscovery?: MeshServiceDiscovery;
285
314
  }
286
315
  /**
316
+ * @public
287
317
  *
288
318
  */
289
319
  export interface CreateMeshInput {
@@ -309,6 +339,7 @@ export interface CreateMeshInput {
309
339
  clientToken?: string;
310
340
  }
311
341
  /**
342
+ * @public
312
343
  * <p>An object that represents metadata for a resource.</p>
313
344
  */
314
345
  export interface ResourceMetadata {
@@ -343,12 +374,16 @@ export interface ResourceMetadata {
343
374
  */
344
375
  resourceOwner: string | undefined;
345
376
  }
377
+ /**
378
+ * @public
379
+ */
346
380
  export declare enum MeshStatusCode {
347
381
  ACTIVE = "ACTIVE",
348
382
  DELETED = "DELETED",
349
383
  INACTIVE = "INACTIVE"
350
384
  }
351
385
  /**
386
+ * @public
352
387
  * <p>An object that represents the status of a service mesh.</p>
353
388
  */
354
389
  export interface MeshStatus {
@@ -358,6 +393,7 @@ export interface MeshStatus {
358
393
  status?: MeshStatusCode | string;
359
394
  }
360
395
  /**
396
+ * @public
361
397
  * <p>An object that represents a service mesh returned by a describe operation.</p>
362
398
  */
363
399
  export interface MeshData {
@@ -379,6 +415,7 @@ export interface MeshData {
379
415
  status: MeshStatus | undefined;
380
416
  }
381
417
  /**
418
+ * @public
382
419
  *
383
420
  */
384
421
  export interface CreateMeshOutput {
@@ -388,6 +425,7 @@ export interface CreateMeshOutput {
388
425
  mesh: MeshData | undefined;
389
426
  }
390
427
  /**
428
+ * @public
391
429
  * <p>You have exceeded a service limit for your account. For more information, see <a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html">Service
392
430
  * Limits</a> in the <i>App Mesh User Guide</i>.</p>
393
431
  */
@@ -400,6 +438,7 @@ export declare class LimitExceededException extends __BaseException {
400
438
  constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
401
439
  }
402
440
  /**
441
+ * @public
403
442
  *
404
443
  */
405
444
  export interface DeleteMeshInput {
@@ -409,6 +448,7 @@ export interface DeleteMeshInput {
409
448
  meshName: string | undefined;
410
449
  }
411
450
  /**
451
+ * @public
412
452
  *
413
453
  */
414
454
  export interface DeleteMeshOutput {
@@ -418,6 +458,7 @@ export interface DeleteMeshOutput {
418
458
  mesh: MeshData | undefined;
419
459
  }
420
460
  /**
461
+ * @public
421
462
  * <p>You can't delete the specified resource because it's in use or required by another
422
463
  * resource.</p>
423
464
  */
@@ -430,6 +471,7 @@ export declare class ResourceInUseException extends __BaseException {
430
471
  constructor(opts: __ExceptionOptionType<ResourceInUseException, __BaseException>);
431
472
  }
432
473
  /**
474
+ * @public
433
475
  *
434
476
  */
435
477
  export interface DescribeMeshInput {
@@ -444,6 +486,7 @@ export interface DescribeMeshInput {
444
486
  meshOwner?: string;
445
487
  }
446
488
  /**
489
+ * @public
447
490
  *
448
491
  */
449
492
  export interface DescribeMeshOutput {
@@ -453,6 +496,7 @@ export interface DescribeMeshOutput {
453
496
  mesh: MeshData | undefined;
454
497
  }
455
498
  /**
499
+ * @public
456
500
  *
457
501
  */
458
502
  export interface ListMeshesInput {
@@ -480,6 +524,7 @@ export interface ListMeshesInput {
480
524
  limit?: number;
481
525
  }
482
526
  /**
527
+ * @public
483
528
  * <p>An object that represents a service mesh returned by a list operation.</p>
484
529
  */
485
530
  export interface MeshRef {
@@ -515,6 +560,7 @@ export interface MeshRef {
515
560
  lastUpdatedAt: Date | undefined;
516
561
  }
517
562
  /**
563
+ * @public
518
564
  *
519
565
  */
520
566
  export interface ListMeshesOutput {
@@ -531,6 +577,7 @@ export interface ListMeshesOutput {
531
577
  nextToken?: string;
532
578
  }
533
579
  /**
580
+ * @public
534
581
  *
535
582
  */
536
583
  export interface UpdateMeshInput {
@@ -549,6 +596,7 @@ export interface UpdateMeshInput {
549
596
  clientToken?: string;
550
597
  }
551
598
  /**
599
+ * @public
552
600
  *
553
601
  */
554
602
  export interface UpdateMeshOutput {
@@ -558,6 +606,7 @@ export interface UpdateMeshOutput {
558
606
  mesh: MeshData | undefined;
559
607
  }
560
608
  /**
609
+ * @public
561
610
  * <p>An object that represents a local file certificate.
562
611
  * The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see <a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html#virtual-node-tls-prerequisites">Transport Layer Security (TLS)</a>.</p>
563
612
  */
@@ -573,6 +622,7 @@ export interface VirtualGatewayListenerTlsFileCertificate {
573
622
  privateKey: string | undefined;
574
623
  }
575
624
  /**
625
+ * @public
576
626
  * <p>An object that represents the virtual gateway's listener's Secret Discovery Service
577
627
  * certificate.The proxy must be configured with a local SDS provider via a Unix Domain
578
628
  * Socket. See App Mesh<a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html">TLS
@@ -587,9 +637,13 @@ export interface VirtualGatewayListenerTlsSdsCertificate {
587
637
  secretName: string | undefined;
588
638
  }
589
639
  /**
640
+ * @public
590
641
  * <p>An object that represents the virtual gateway's client's Transport Layer Security (TLS) certificate.</p>
591
642
  */
592
643
  export type VirtualGatewayClientTlsCertificate = VirtualGatewayClientTlsCertificate.FileMember | VirtualGatewayClientTlsCertificate.SdsMember | VirtualGatewayClientTlsCertificate.$UnknownMember;
644
+ /**
645
+ * @public
646
+ */
593
647
  export declare namespace VirtualGatewayClientTlsCertificate {
594
648
  /**
595
649
  * <p>An object that represents a local file certificate. The certificate must meet specific
@@ -624,6 +678,7 @@ export declare namespace VirtualGatewayClientTlsCertificate {
624
678
  const visit: <T>(value: VirtualGatewayClientTlsCertificate, visitor: Visitor<T>) => T;
625
679
  }
626
680
  /**
681
+ * @public
627
682
  * <p>An object that represents the methods by which a subject alternative name on a peer
628
683
  * Transport Layer Security (TLS) certificate can be matched.</p>
629
684
  */
@@ -634,6 +689,7 @@ export interface SubjectAlternativeNameMatchers {
634
689
  exact: string[] | undefined;
635
690
  }
636
691
  /**
692
+ * @public
637
693
  * <p>An object that represents the subject alternative names secured by the
638
694
  * certificate.</p>
639
695
  */
@@ -644,6 +700,7 @@ export interface SubjectAlternativeNames {
644
700
  match: SubjectAlternativeNameMatchers | undefined;
645
701
  }
646
702
  /**
703
+ * @public
647
704
  * <p>An object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager
648
705
  * certificate.</p>
649
706
  */
@@ -654,6 +711,7 @@ export interface VirtualGatewayTlsValidationContextAcmTrust {
654
711
  certificateAuthorityArns: string[] | undefined;
655
712
  }
656
713
  /**
714
+ * @public
657
715
  * <p>An object that represents a Transport Layer Security (TLS) validation context trust for a local file.</p>
658
716
  */
659
717
  export interface VirtualGatewayTlsValidationContextFileTrust {
@@ -664,6 +722,7 @@ export interface VirtualGatewayTlsValidationContextFileTrust {
664
722
  certificateChain: string | undefined;
665
723
  }
666
724
  /**
725
+ * @public
667
726
  * <p>An object that represents a virtual gateway's listener's Transport Layer Security (TLS) Secret Discovery Service
668
727
  * validation context trust. The proxy must be configured with a local SDS provider via a Unix
669
728
  * Domain Socket. See App Mesh
@@ -678,9 +737,13 @@ export interface VirtualGatewayTlsValidationContextSdsTrust {
678
737
  secretName: string | undefined;
679
738
  }
680
739
  /**
740
+ * @public
681
741
  * <p>An object that represents a Transport Layer Security (TLS) validation context trust.</p>
682
742
  */
683
743
  export type VirtualGatewayTlsValidationContextTrust = VirtualGatewayTlsValidationContextTrust.AcmMember | VirtualGatewayTlsValidationContextTrust.FileMember | VirtualGatewayTlsValidationContextTrust.SdsMember | VirtualGatewayTlsValidationContextTrust.$UnknownMember;
744
+ /**
745
+ * @public
746
+ */
684
747
  export declare namespace VirtualGatewayTlsValidationContextTrust {
685
748
  /**
686
749
  * <p>A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.</p>
@@ -725,6 +788,7 @@ export declare namespace VirtualGatewayTlsValidationContextTrust {
725
788
  const visit: <T>(value: VirtualGatewayTlsValidationContextTrust, visitor: Visitor<T>) => T;
726
789
  }
727
790
  /**
791
+ * @public
728
792
  * <p>An object that represents a Transport Layer Security (TLS) validation context.</p>
729
793
  */
730
794
  export interface VirtualGatewayTlsValidationContext {
@@ -740,6 +804,7 @@ export interface VirtualGatewayTlsValidationContext {
740
804
  subjectAlternativeNames?: SubjectAlternativeNames;
741
805
  }
742
806
  /**
807
+ * @public
743
808
  * <p>An object that represents a Transport Layer Security (TLS) client policy.</p>
744
809
  */
745
810
  export interface VirtualGatewayClientPolicyTls {
@@ -763,6 +828,7 @@ export interface VirtualGatewayClientPolicyTls {
763
828
  validation: VirtualGatewayTlsValidationContext | undefined;
764
829
  }
765
830
  /**
831
+ * @public
766
832
  * <p>An object that represents a client policy.</p>
767
833
  */
768
834
  export interface VirtualGatewayClientPolicy {
@@ -772,6 +838,7 @@ export interface VirtualGatewayClientPolicy {
772
838
  tls?: VirtualGatewayClientPolicyTls;
773
839
  }
774
840
  /**
841
+ * @public
775
842
  * <p>An object that represents the default properties for a backend.</p>
776
843
  */
777
844
  export interface VirtualGatewayBackendDefaults {
@@ -781,6 +848,7 @@ export interface VirtualGatewayBackendDefaults {
781
848
  clientPolicy?: VirtualGatewayClientPolicy;
782
849
  }
783
850
  /**
851
+ * @public
784
852
  * <p>An object that represents a type of connection pool.</p>
785
853
  */
786
854
  export interface VirtualGatewayGrpcConnectionPool {
@@ -791,6 +859,7 @@ export interface VirtualGatewayGrpcConnectionPool {
791
859
  maxRequests: number | undefined;
792
860
  }
793
861
  /**
862
+ * @public
794
863
  * <p>An object that represents a type of connection pool.</p>
795
864
  */
796
865
  export interface VirtualGatewayHttpConnectionPool {
@@ -806,6 +875,7 @@ export interface VirtualGatewayHttpConnectionPool {
806
875
  maxPendingRequests?: number;
807
876
  }
808
877
  /**
878
+ * @public
809
879
  * <p>An object that represents a type of connection pool.</p>
810
880
  */
811
881
  export interface VirtualGatewayHttp2ConnectionPool {
@@ -816,6 +886,7 @@ export interface VirtualGatewayHttp2ConnectionPool {
816
886
  maxRequests: number | undefined;
817
887
  }
818
888
  /**
889
+ * @public
819
890
  * <p>An object that represents the type of virtual gateway connection pool.</p>
820
891
  * <p>Only one protocol is used at a time and should be the same protocol as the one chosen
821
892
  * under port mapping.</p>
@@ -823,6 +894,9 @@ export interface VirtualGatewayHttp2ConnectionPool {
823
894
  * <code>2147483647</code>.</p>
824
895
  */
825
896
  export type VirtualGatewayConnectionPool = VirtualGatewayConnectionPool.GrpcMember | VirtualGatewayConnectionPool.HttpMember | VirtualGatewayConnectionPool.Http2Member | VirtualGatewayConnectionPool.$UnknownMember;
897
+ /**
898
+ * @public
899
+ */
826
900
  export declare namespace VirtualGatewayConnectionPool {
827
901
  /**
828
902
  * <p>An object that represents a type of connection pool.</p>
@@ -865,12 +939,16 @@ export declare namespace VirtualGatewayConnectionPool {
865
939
  }
866
940
  const visit: <T>(value: VirtualGatewayConnectionPool, visitor: Visitor<T>) => T;
867
941
  }
942
+ /**
943
+ * @public
944
+ */
868
945
  export declare enum VirtualGatewayPortProtocol {
869
946
  GRPC = "grpc",
870
947
  HTTP = "http",
871
948
  HTTP2 = "http2"
872
949
  }
873
950
  /**
951
+ * @public
874
952
  * <p>An object that represents the health check policy for a virtual gateway's
875
953
  * listener.</p>
876
954
  */
@@ -912,6 +990,7 @@ export interface VirtualGatewayHealthCheckPolicy {
912
990
  unhealthyThreshold: number | undefined;
913
991
  }
914
992
  /**
993
+ * @public
915
994
  * <p>An object that represents a port mapping.</p>
916
995
  */
917
996
  export interface VirtualGatewayPortMapping {
@@ -925,6 +1004,7 @@ export interface VirtualGatewayPortMapping {
925
1004
  protocol: VirtualGatewayPortProtocol | string | undefined;
926
1005
  }
927
1006
  /**
1007
+ * @public
928
1008
  * <p>An object that represents an Certificate Manager certificate.</p>
929
1009
  */
930
1010
  export interface VirtualGatewayListenerTlsAcmCertificate {
@@ -934,9 +1014,13 @@ export interface VirtualGatewayListenerTlsAcmCertificate {
934
1014
  certificateArn: string | undefined;
935
1015
  }
936
1016
  /**
1017
+ * @public
937
1018
  * <p>An object that represents a listener's Transport Layer Security (TLS) certificate.</p>
938
1019
  */
939
1020
  export type VirtualGatewayListenerTlsCertificate = VirtualGatewayListenerTlsCertificate.AcmMember | VirtualGatewayListenerTlsCertificate.FileMember | VirtualGatewayListenerTlsCertificate.SdsMember | VirtualGatewayListenerTlsCertificate.$UnknownMember;
1021
+ /**
1022
+ * @public
1023
+ */
940
1024
  export declare namespace VirtualGatewayListenerTlsCertificate {
941
1025
  /**
942
1026
  * <p>A reference to an object that represents an Certificate Manager certificate.</p>
@@ -980,16 +1064,23 @@ export declare namespace VirtualGatewayListenerTlsCertificate {
980
1064
  }
981
1065
  const visit: <T>(value: VirtualGatewayListenerTlsCertificate, visitor: Visitor<T>) => T;
982
1066
  }
1067
+ /**
1068
+ * @public
1069
+ */
983
1070
  export declare enum VirtualGatewayListenerTlsMode {
984
1071
  DISABLED = "DISABLED",
985
1072
  PERMISSIVE = "PERMISSIVE",
986
1073
  STRICT = "STRICT"
987
1074
  }
988
1075
  /**
1076
+ * @public
989
1077
  * <p>An object that represents a virtual gateway's listener's Transport Layer Security (TLS) validation context
990
1078
  * trust.</p>
991
1079
  */
992
1080
  export type VirtualGatewayListenerTlsValidationContextTrust = VirtualGatewayListenerTlsValidationContextTrust.FileMember | VirtualGatewayListenerTlsValidationContextTrust.SdsMember | VirtualGatewayListenerTlsValidationContextTrust.$UnknownMember;
1081
+ /**
1082
+ * @public
1083
+ */
993
1084
  export declare namespace VirtualGatewayListenerTlsValidationContextTrust {
994
1085
  /**
995
1086
  * <p>An object that represents a Transport Layer Security (TLS) validation context trust for a local file.</p>
@@ -1021,6 +1112,7 @@ export declare namespace VirtualGatewayListenerTlsValidationContextTrust {
1021
1112
  const visit: <T>(value: VirtualGatewayListenerTlsValidationContextTrust, visitor: Visitor<T>) => T;
1022
1113
  }
1023
1114
  /**
1115
+ * @public
1024
1116
  * <p>An object that represents a virtual gateway's listener's Transport Layer Security (TLS) validation
1025
1117
  * context.</p>
1026
1118
  */
@@ -1037,6 +1129,7 @@ export interface VirtualGatewayListenerTlsValidationContext {
1037
1129
  subjectAlternativeNames?: SubjectAlternativeNames;
1038
1130
  }
1039
1131
  /**
1132
+ * @public
1040
1133
  * <p>An object that represents the Transport Layer Security (TLS) properties for a listener.</p>
1041
1134
  */
1042
1135
  export interface VirtualGatewayListenerTls {
@@ -1072,6 +1165,7 @@ export interface VirtualGatewayListenerTls {
1072
1165
  certificate: VirtualGatewayListenerTlsCertificate | undefined;
1073
1166
  }
1074
1167
  /**
1168
+ * @public
1075
1169
  * <p>An object that represents a listener for a virtual gateway.</p>
1076
1170
  */
1077
1171
  export interface VirtualGatewayListener {
@@ -1093,6 +1187,7 @@ export interface VirtualGatewayListener {
1093
1187
  connectionPool?: VirtualGatewayConnectionPool;
1094
1188
  }
1095
1189
  /**
1190
+ * @public
1096
1191
  * <p>An object that represents an access log file.</p>
1097
1192
  */
1098
1193
  export interface VirtualGatewayFileAccessLog {
@@ -1111,9 +1206,13 @@ export interface VirtualGatewayFileAccessLog {
1111
1206
  format?: LoggingFormat;
1112
1207
  }
1113
1208
  /**
1209
+ * @public
1114
1210
  * <p>The access log configuration for a virtual gateway.</p>
1115
1211
  */
1116
1212
  export type VirtualGatewayAccessLog = VirtualGatewayAccessLog.FileMember | VirtualGatewayAccessLog.$UnknownMember;
1213
+ /**
1214
+ * @public
1215
+ */
1117
1216
  export declare namespace VirtualGatewayAccessLog {
1118
1217
  /**
1119
1218
  * <p>The file object to send virtual gateway access logs to.</p>
@@ -1133,6 +1232,7 @@ export declare namespace VirtualGatewayAccessLog {
1133
1232
  const visit: <T>(value: VirtualGatewayAccessLog, visitor: Visitor<T>) => T;
1134
1233
  }
1135
1234
  /**
1235
+ * @public
1136
1236
  * <p>An object that represents logging information.</p>
1137
1237
  */
1138
1238
  export interface VirtualGatewayLogging {
@@ -1142,6 +1242,7 @@ export interface VirtualGatewayLogging {
1142
1242
  accessLog?: VirtualGatewayAccessLog;
1143
1243
  }
1144
1244
  /**
1245
+ * @public
1145
1246
  * <p>An object that represents the specification of a service mesh resource.</p>
1146
1247
  */
1147
1248
  export interface VirtualGatewaySpec {
@@ -1159,6 +1260,9 @@ export interface VirtualGatewaySpec {
1159
1260
  */
1160
1261
  logging?: VirtualGatewayLogging;
1161
1262
  }
1263
+ /**
1264
+ * @public
1265
+ */
1162
1266
  export interface CreateVirtualGatewayInput {
1163
1267
  /**
1164
1268
  * <p>The name to use for the virtual gateway.</p>
@@ -1191,12 +1295,16 @@ export interface CreateVirtualGatewayInput {
1191
1295
  */
1192
1296
  meshOwner?: string;
1193
1297
  }
1298
+ /**
1299
+ * @public
1300
+ */
1194
1301
  export declare enum VirtualGatewayStatusCode {
1195
1302
  ACTIVE = "ACTIVE",
1196
1303
  DELETED = "DELETED",
1197
1304
  INACTIVE = "INACTIVE"
1198
1305
  }
1199
1306
  /**
1307
+ * @public
1200
1308
  * <p>An object that represents the status of the mesh resource.</p>
1201
1309
  */
1202
1310
  export interface VirtualGatewayStatus {
@@ -1206,6 +1314,7 @@ export interface VirtualGatewayStatus {
1206
1314
  status: VirtualGatewayStatusCode | string | undefined;
1207
1315
  }
1208
1316
  /**
1317
+ * @public
1209
1318
  * <p>An object that represents a virtual gateway returned by a describe operation.</p>
1210
1319
  */
1211
1320
  export interface VirtualGatewayData {
@@ -1230,12 +1339,18 @@ export interface VirtualGatewayData {
1230
1339
  */
1231
1340
  status: VirtualGatewayStatus | undefined;
1232
1341
  }
1342
+ /**
1343
+ * @public
1344
+ */
1233
1345
  export interface CreateVirtualGatewayOutput {
1234
1346
  /**
1235
1347
  * <p>The full description of your virtual gateway following the create call.</p>
1236
1348
  */
1237
1349
  virtualGateway: VirtualGatewayData | undefined;
1238
1350
  }
1351
+ /**
1352
+ * @public
1353
+ */
1239
1354
  export interface DeleteVirtualGatewayInput {
1240
1355
  /**
1241
1356
  * <p>The name of the virtual gateway to delete.</p>
@@ -1251,12 +1366,18 @@ export interface DeleteVirtualGatewayInput {
1251
1366
  */
1252
1367
  meshOwner?: string;
1253
1368
  }
1369
+ /**
1370
+ * @public
1371
+ */
1254
1372
  export interface DeleteVirtualGatewayOutput {
1255
1373
  /**
1256
1374
  * <p>The virtual gateway that was deleted.</p>
1257
1375
  */
1258
1376
  virtualGateway: VirtualGatewayData | undefined;
1259
1377
  }
1378
+ /**
1379
+ * @public
1380
+ */
1260
1381
  export interface DescribeVirtualGatewayInput {
1261
1382
  /**
1262
1383
  * <p>The name of the virtual gateway to describe.</p>
@@ -1272,17 +1393,24 @@ export interface DescribeVirtualGatewayInput {
1272
1393
  */
1273
1394
  meshOwner?: string;
1274
1395
  }
1396
+ /**
1397
+ * @public
1398
+ */
1275
1399
  export interface DescribeVirtualGatewayOutput {
1276
1400
  /**
1277
1401
  * <p>The full description of your virtual gateway.</p>
1278
1402
  */
1279
1403
  virtualGateway: VirtualGatewayData | undefined;
1280
1404
  }
1405
+ /**
1406
+ * @public
1407
+ */
1281
1408
  export declare enum DefaultGatewayRouteRewrite {
1282
1409
  DISABLED = "DISABLED",
1283
1410
  ENABLED = "ENABLED"
1284
1411
  }
1285
1412
  /**
1413
+ * @public
1286
1414
  * <p>An object representing the gateway route host name to rewrite.</p>
1287
1415
  */
1288
1416
  export interface GatewayRouteHostnameRewrite {
@@ -1292,6 +1420,7 @@ export interface GatewayRouteHostnameRewrite {
1292
1420
  defaultTargetHostname?: DefaultGatewayRouteRewrite | string;
1293
1421
  }
1294
1422
  /**
1423
+ * @public
1295
1424
  * <p>An object that represents the gateway route to rewrite.</p>
1296
1425
  */
1297
1426
  export interface GrpcGatewayRouteRewrite {
@@ -1301,6 +1430,7 @@ export interface GrpcGatewayRouteRewrite {
1301
1430
  hostname?: GatewayRouteHostnameRewrite;
1302
1431
  }
1303
1432
  /**
1433
+ * @public
1304
1434
  * <p>An object that represents the virtual service that traffic is routed to.</p>
1305
1435
  */
1306
1436
  export interface GatewayRouteVirtualService {
@@ -1310,6 +1440,7 @@ export interface GatewayRouteVirtualService {
1310
1440
  virtualServiceName: string | undefined;
1311
1441
  }
1312
1442
  /**
1443
+ * @public
1313
1444
  * <p>An object that represents a gateway route target.</p>
1314
1445
  */
1315
1446
  export interface GatewayRouteTarget {
@@ -1323,6 +1454,7 @@ export interface GatewayRouteTarget {
1323
1454
  port?: number;
1324
1455
  }
1325
1456
  /**
1457
+ * @public
1326
1458
  * <p>An object that represents the action to take if a match is determined.</p>
1327
1459
  */
1328
1460
  export interface GrpcGatewayRouteAction {
@@ -1336,6 +1468,7 @@ export interface GrpcGatewayRouteAction {
1336
1468
  rewrite?: GrpcGatewayRouteRewrite;
1337
1469
  }
1338
1470
  /**
1471
+ * @public
1339
1472
  * <p>An object representing the gateway route host name to match.</p>
1340
1473
  */
1341
1474
  export interface GatewayRouteHostnameMatch {
@@ -1349,6 +1482,7 @@ export interface GatewayRouteHostnameMatch {
1349
1482
  suffix?: string;
1350
1483
  }
1351
1484
  /**
1485
+ * @public
1352
1486
  * <p>An object that represents the range of values to match on. The first character of the range is included in the range, though the last character is not. For example, if the range specified were 1-100, only values 1-99 would be matched.</p>
1353
1487
  */
1354
1488
  export interface MatchRange {
@@ -1362,9 +1496,13 @@ export interface MatchRange {
1362
1496
  end: number | undefined;
1363
1497
  }
1364
1498
  /**
1499
+ * @public
1365
1500
  * <p>An object representing the method header to be matched.</p>
1366
1501
  */
1367
1502
  export type GrpcMetadataMatchMethod = GrpcMetadataMatchMethod.ExactMember | GrpcMetadataMatchMethod.PrefixMember | GrpcMetadataMatchMethod.RangeMember | GrpcMetadataMatchMethod.RegexMember | GrpcMetadataMatchMethod.SuffixMember | GrpcMetadataMatchMethod.$UnknownMember;
1503
+ /**
1504
+ * @public
1505
+ */
1368
1506
  export declare namespace GrpcMetadataMatchMethod {
1369
1507
  /**
1370
1508
  * <p>The exact method header to be matched on.</p>
@@ -1440,6 +1578,7 @@ export declare namespace GrpcMetadataMatchMethod {
1440
1578
  const visit: <T>(value: GrpcMetadataMatchMethod, visitor: Visitor<T>) => T;
1441
1579
  }
1442
1580
  /**
1581
+ * @public
1443
1582
  * <p>An object representing the metadata of the gateway route.</p>
1444
1583
  */
1445
1584
  export interface GrpcGatewayRouteMetadata {
@@ -1458,6 +1597,7 @@ export interface GrpcGatewayRouteMetadata {
1458
1597
  match?: GrpcMetadataMatchMethod;
1459
1598
  }
1460
1599
  /**
1600
+ * @public
1461
1601
  * <p>An object that represents the criteria for determining a request match.</p>
1462
1602
  */
1463
1603
  export interface GrpcGatewayRouteMatch {
@@ -1479,6 +1619,7 @@ export interface GrpcGatewayRouteMatch {
1479
1619
  port?: number;
1480
1620
  }
1481
1621
  /**
1622
+ * @public
1482
1623
  * <p>An object that represents a gRPC gateway route.</p>
1483
1624
  */
1484
1625
  export interface GrpcGatewayRoute {
@@ -1492,6 +1633,7 @@ export interface GrpcGatewayRoute {
1492
1633
  action: GrpcGatewayRouteAction | undefined;
1493
1634
  }
1494
1635
  /**
1636
+ * @public
1495
1637
  * <p>An object that represents the path to rewrite.</p>
1496
1638
  */
1497
1639
  export interface HttpGatewayRoutePathRewrite {
@@ -1501,6 +1643,7 @@ export interface HttpGatewayRoutePathRewrite {
1501
1643
  exact?: string;
1502
1644
  }
1503
1645
  /**
1646
+ * @public
1504
1647
  * <p>An object representing the beginning characters of the route to rewrite.</p>
1505
1648
  */
1506
1649
  export interface HttpGatewayRoutePrefixRewrite {
@@ -1514,6 +1657,7 @@ export interface HttpGatewayRoutePrefixRewrite {
1514
1657
  value?: string;
1515
1658
  }
1516
1659
  /**
1660
+ * @public
1517
1661
  * <p>An object representing the gateway route to rewrite.</p>
1518
1662
  */
1519
1663
  export interface HttpGatewayRouteRewrite {
@@ -1531,6 +1675,7 @@ export interface HttpGatewayRouteRewrite {
1531
1675
  hostname?: GatewayRouteHostnameRewrite;
1532
1676
  }
1533
1677
  /**
1678
+ * @public
1534
1679
  * <p>An object that represents the action to take if a match is determined.</p>
1535
1680
  */
1536
1681
  export interface HttpGatewayRouteAction {
@@ -1544,10 +1689,14 @@ export interface HttpGatewayRouteAction {
1544
1689
  rewrite?: HttpGatewayRouteRewrite;
1545
1690
  }
1546
1691
  /**
1692
+ * @public
1547
1693
  * <p>An object that represents the method and value to match with the header value sent in a
1548
1694
  * request. Specify one match method.</p>
1549
1695
  */
1550
1696
  export type HeaderMatchMethod = HeaderMatchMethod.ExactMember | HeaderMatchMethod.PrefixMember | HeaderMatchMethod.RangeMember | HeaderMatchMethod.RegexMember | HeaderMatchMethod.SuffixMember | HeaderMatchMethod.$UnknownMember;
1697
+ /**
1698
+ * @public
1699
+ */
1551
1700
  export declare namespace HeaderMatchMethod {
1552
1701
  /**
1553
1702
  * <p>The value sent by the client must match the specified value exactly.</p>
@@ -1623,6 +1772,7 @@ export declare namespace HeaderMatchMethod {
1623
1772
  const visit: <T>(value: HeaderMatchMethod, visitor: Visitor<T>) => T;
1624
1773
  }
1625
1774
  /**
1775
+ * @public
1626
1776
  * <p>An object that represents the HTTP header in the gateway route.</p>
1627
1777
  */
1628
1778
  export interface HttpGatewayRouteHeader {
@@ -1641,6 +1791,9 @@ export interface HttpGatewayRouteHeader {
1641
1791
  */
1642
1792
  match?: HeaderMatchMethod;
1643
1793
  }
1794
+ /**
1795
+ * @public
1796
+ */
1644
1797
  export declare enum HttpMethod {
1645
1798
  CONNECT = "CONNECT",
1646
1799
  DELETE = "DELETE",
@@ -1653,6 +1806,7 @@ export declare enum HttpMethod {
1653
1806
  TRACE = "TRACE"
1654
1807
  }
1655
1808
  /**
1809
+ * @public
1656
1810
  * <p>An object representing the path to match in the request.</p>
1657
1811
  */
1658
1812
  export interface HttpPathMatch {
@@ -1666,6 +1820,7 @@ export interface HttpPathMatch {
1666
1820
  regex?: string;
1667
1821
  }
1668
1822
  /**
1823
+ * @public
1669
1824
  * <p>An object representing the query parameter to match.</p>
1670
1825
  */
1671
1826
  export interface QueryParameterMatch {
@@ -1675,6 +1830,7 @@ export interface QueryParameterMatch {
1675
1830
  exact?: string;
1676
1831
  }
1677
1832
  /**
1833
+ * @public
1678
1834
  * <p>An object that represents the query parameter in the request.</p>
1679
1835
  */
1680
1836
  export interface HttpQueryParameter {
@@ -1688,6 +1844,7 @@ export interface HttpQueryParameter {
1688
1844
  match?: QueryParameterMatch;
1689
1845
  }
1690
1846
  /**
1847
+ * @public
1691
1848
  * <p>An object that represents the criteria for determining a request match.</p>
1692
1849
  */
1693
1850
  export interface HttpGatewayRouteMatch {
@@ -1726,6 +1883,7 @@ export interface HttpGatewayRouteMatch {
1726
1883
  port?: number;
1727
1884
  }
1728
1885
  /**
1886
+ * @public
1729
1887
  * <p>An object that represents an HTTP gateway route.</p>
1730
1888
  */
1731
1889
  export interface HttpGatewayRoute {
@@ -1739,6 +1897,7 @@ export interface HttpGatewayRoute {
1739
1897
  action: HttpGatewayRouteAction | undefined;
1740
1898
  }
1741
1899
  /**
1900
+ * @public
1742
1901
  * <p>An object that represents a gateway route specification. Specify one gateway route
1743
1902
  * type.</p>
1744
1903
  */
@@ -1760,6 +1919,9 @@ export interface GatewayRouteSpec {
1760
1919
  */
1761
1920
  grpcRoute?: GrpcGatewayRoute;
1762
1921
  }
1922
+ /**
1923
+ * @public
1924
+ */
1763
1925
  export interface CreateGatewayRouteInput {
1764
1926
  /**
1765
1927
  * <p>The name to use for the gateway route.</p>
@@ -1798,12 +1960,16 @@ export interface CreateGatewayRouteInput {
1798
1960
  */
1799
1961
  meshOwner?: string;
1800
1962
  }
1963
+ /**
1964
+ * @public
1965
+ */
1801
1966
  export declare enum GatewayRouteStatusCode {
1802
1967
  ACTIVE = "ACTIVE",
1803
1968
  DELETED = "DELETED",
1804
1969
  INACTIVE = "INACTIVE"
1805
1970
  }
1806
1971
  /**
1972
+ * @public
1807
1973
  * <p>An object that represents the current status of a gateway route.</p>
1808
1974
  */
1809
1975
  export interface GatewayRouteStatus {
@@ -1813,6 +1979,7 @@ export interface GatewayRouteStatus {
1813
1979
  status: GatewayRouteStatusCode | string | undefined;
1814
1980
  }
1815
1981
  /**
1982
+ * @public
1816
1983
  * <p>An object that represents a gateway route returned by a describe operation.</p>
1817
1984
  */
1818
1985
  export interface GatewayRouteData {
@@ -1841,12 +2008,18 @@ export interface GatewayRouteData {
1841
2008
  */
1842
2009
  status: GatewayRouteStatus | undefined;
1843
2010
  }
2011
+ /**
2012
+ * @public
2013
+ */
1844
2014
  export interface CreateGatewayRouteOutput {
1845
2015
  /**
1846
2016
  * <p>The full description of your gateway route following the create call.</p>
1847
2017
  */
1848
2018
  gatewayRoute: GatewayRouteData | undefined;
1849
2019
  }
2020
+ /**
2021
+ * @public
2022
+ */
1850
2023
  export interface DeleteGatewayRouteInput {
1851
2024
  /**
1852
2025
  * <p>The name of the gateway route to delete.</p>
@@ -1866,12 +2039,18 @@ export interface DeleteGatewayRouteInput {
1866
2039
  */
1867
2040
  meshOwner?: string;
1868
2041
  }
2042
+ /**
2043
+ * @public
2044
+ */
1869
2045
  export interface DeleteGatewayRouteOutput {
1870
2046
  /**
1871
2047
  * <p>The gateway route that was deleted.</p>
1872
2048
  */
1873
2049
  gatewayRoute: GatewayRouteData | undefined;
1874
2050
  }
2051
+ /**
2052
+ * @public
2053
+ */
1875
2054
  export interface DescribeGatewayRouteInput {
1876
2055
  /**
1877
2056
  * <p>The name of the gateway route to describe.</p>
@@ -1891,12 +2070,18 @@ export interface DescribeGatewayRouteInput {
1891
2070
  */
1892
2071
  meshOwner?: string;
1893
2072
  }
2073
+ /**
2074
+ * @public
2075
+ */
1894
2076
  export interface DescribeGatewayRouteOutput {
1895
2077
  /**
1896
2078
  * <p>The full description of your gateway route.</p>
1897
2079
  */
1898
2080
  gatewayRoute: GatewayRouteData | undefined;
1899
2081
  }
2082
+ /**
2083
+ * @public
2084
+ */
1900
2085
  export interface ListGatewayRoutesInput {
1901
2086
  /**
1902
2087
  * <p>The name of the service mesh to list gateway routes in.</p>
@@ -1931,6 +2116,7 @@ export interface ListGatewayRoutesInput {
1931
2116
  meshOwner?: string;
1932
2117
  }
1933
2118
  /**
2119
+ * @public
1934
2120
  * <p>An object that represents a gateway route returned by a list operation.</p>
1935
2121
  */
1936
2122
  export interface GatewayRouteRef {
@@ -1973,6 +2159,9 @@ export interface GatewayRouteRef {
1973
2159
  */
1974
2160
  lastUpdatedAt: Date | undefined;
1975
2161
  }
2162
+ /**
2163
+ * @public
2164
+ */
1976
2165
  export interface ListGatewayRoutesOutput {
1977
2166
  /**
1978
2167
  * <p>The list of existing gateway routes for the specified service mesh and virtual
@@ -1987,6 +2176,9 @@ export interface ListGatewayRoutesOutput {
1987
2176
  */
1988
2177
  nextToken?: string;
1989
2178
  }
2179
+ /**
2180
+ * @public
2181
+ */
1990
2182
  export interface UpdateGatewayRouteInput {
1991
2183
  /**
1992
2184
  * <p>The name of the gateway route to update.</p>
@@ -2015,12 +2207,18 @@ export interface UpdateGatewayRouteInput {
2015
2207
  */
2016
2208
  meshOwner?: string;
2017
2209
  }
2210
+ /**
2211
+ * @public
2212
+ */
2018
2213
  export interface UpdateGatewayRouteOutput {
2019
2214
  /**
2020
2215
  * <p>A full description of the gateway route that was updated.</p>
2021
2216
  */
2022
2217
  gatewayRoute: GatewayRouteData | undefined;
2023
2218
  }
2219
+ /**
2220
+ * @public
2221
+ */
2024
2222
  export interface ListVirtualGatewaysInput {
2025
2223
  /**
2026
2224
  * <p>The name of the service mesh to list virtual gateways in.</p>
@@ -2051,6 +2249,7 @@ export interface ListVirtualGatewaysInput {
2051
2249
  meshOwner?: string;
2052
2250
  }
2053
2251
  /**
2252
+ * @public
2054
2253
  * <p>An object that represents a virtual gateway returned by a list operation.</p>
2055
2254
  */
2056
2255
  export interface VirtualGatewayRef {
@@ -2089,6 +2288,9 @@ export interface VirtualGatewayRef {
2089
2288
  */
2090
2289
  lastUpdatedAt: Date | undefined;
2091
2290
  }
2291
+ /**
2292
+ * @public
2293
+ */
2092
2294
  export interface ListVirtualGatewaysOutput {
2093
2295
  /**
2094
2296
  * <p>The list of existing virtual gateways for the specified service mesh.</p>
@@ -2102,6 +2304,9 @@ export interface ListVirtualGatewaysOutput {
2102
2304
  */
2103
2305
  nextToken?: string;
2104
2306
  }
2307
+ /**
2308
+ * @public
2309
+ */
2105
2310
  export interface UpdateVirtualGatewayInput {
2106
2311
  /**
2107
2312
  * <p>The name of the virtual gateway to update.</p>
@@ -2127,6 +2332,9 @@ export interface UpdateVirtualGatewayInput {
2127
2332
  */
2128
2333
  meshOwner?: string;
2129
2334
  }
2335
+ /**
2336
+ * @public
2337
+ */
2130
2338
  export interface UpdateVirtualGatewayOutput {
2131
2339
  /**
2132
2340
  * <p>A full description of the virtual gateway that was updated.</p>
@@ -2134,6 +2342,7 @@ export interface UpdateVirtualGatewayOutput {
2134
2342
  virtualGateway: VirtualGatewayData | undefined;
2135
2343
  }
2136
2344
  /**
2345
+ * @public
2137
2346
  * <p>An object that represents a local file certificate.
2138
2347
  * The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see <a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html#virtual-node-tls-prerequisites">Transport Layer Security (TLS)</a>.</p>
2139
2348
  */
@@ -2149,6 +2358,7 @@ export interface ListenerTlsFileCertificate {
2149
2358
  privateKey: string | undefined;
2150
2359
  }
2151
2360
  /**
2361
+ * @public
2152
2362
  * <p>An object that represents the listener's Secret Discovery Service certificate. The proxy
2153
2363
  * must be configured with a local SDS provider via a Unix Domain Socket. See App Mesh
2154
2364
  * <a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html">TLS
@@ -2163,9 +2373,13 @@ export interface ListenerTlsSdsCertificate {
2163
2373
  secretName: string | undefined;
2164
2374
  }
2165
2375
  /**
2376
+ * @public
2166
2377
  * <p>An object that represents the client's certificate.</p>
2167
2378
  */
2168
2379
  export type ClientTlsCertificate = ClientTlsCertificate.FileMember | ClientTlsCertificate.SdsMember | ClientTlsCertificate.$UnknownMember;
2380
+ /**
2381
+ * @public
2382
+ */
2169
2383
  export declare namespace ClientTlsCertificate {
2170
2384
  /**
2171
2385
  * <p>An object that represents a local file certificate. The certificate must meet specific
@@ -2199,6 +2413,7 @@ export declare namespace ClientTlsCertificate {
2199
2413
  const visit: <T>(value: ClientTlsCertificate, visitor: Visitor<T>) => T;
2200
2414
  }
2201
2415
  /**
2416
+ * @public
2202
2417
  * <p>An object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager
2203
2418
  * certificate.</p>
2204
2419
  */
@@ -2209,6 +2424,7 @@ export interface TlsValidationContextAcmTrust {
2209
2424
  certificateAuthorityArns: string[] | undefined;
2210
2425
  }
2211
2426
  /**
2427
+ * @public
2212
2428
  * <p>An object that represents a Transport Layer Security (TLS) validation context trust for a local file.</p>
2213
2429
  */
2214
2430
  export interface TlsValidationContextFileTrust {
@@ -2219,6 +2435,7 @@ export interface TlsValidationContextFileTrust {
2219
2435
  certificateChain: string | undefined;
2220
2436
  }
2221
2437
  /**
2438
+ * @public
2222
2439
  * <p>An object that represents a Transport Layer Security (TLS) Secret Discovery Service validation context trust. The
2223
2440
  * proxy must be configured with a local SDS provider via a Unix Domain Socket. See App Mesh
2224
2441
  * <a href="https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html">TLS
@@ -2232,9 +2449,13 @@ export interface TlsValidationContextSdsTrust {
2232
2449
  secretName: string | undefined;
2233
2450
  }
2234
2451
  /**
2452
+ * @public
2235
2453
  * <p>An object that represents a Transport Layer Security (TLS) validation context trust.</p>
2236
2454
  */
2237
2455
  export type TlsValidationContextTrust = TlsValidationContextTrust.AcmMember | TlsValidationContextTrust.FileMember | TlsValidationContextTrust.SdsMember | TlsValidationContextTrust.$UnknownMember;
2456
+ /**
2457
+ * @public
2458
+ */
2238
2459
  export declare namespace TlsValidationContextTrust {
2239
2460
  /**
2240
2461
  * <p>A reference to an object that represents a Transport Layer Security (TLS) validation context trust for an Certificate Manager certificate.</p>
@@ -2279,6 +2500,7 @@ export declare namespace TlsValidationContextTrust {
2279
2500
  const visit: <T>(value: TlsValidationContextTrust, visitor: Visitor<T>) => T;
2280
2501
  }
2281
2502
  /**
2503
+ * @public
2282
2504
  * <p>An object that represents how the proxy will validate its peer during Transport Layer Security (TLS)
2283
2505
  * negotiation.</p>
2284
2506
  */
@@ -2300,6 +2522,7 @@ export interface TlsValidationContext {
2300
2522
  subjectAlternativeNames?: SubjectAlternativeNames;
2301
2523
  }
2302
2524
  /**
2525
+ * @public
2303
2526
  * <p>A reference to an object that represents a Transport Layer Security (TLS) client policy.</p>
2304
2527
  */
2305
2528
  export interface ClientPolicyTls {
@@ -2321,6 +2544,7 @@ export interface ClientPolicyTls {
2321
2544
  validation: TlsValidationContext | undefined;
2322
2545
  }
2323
2546
  /**
2547
+ * @public
2324
2548
  * <p>An object that represents a client policy.</p>
2325
2549
  */
2326
2550
  export interface ClientPolicy {
@@ -2330,6 +2554,7 @@ export interface ClientPolicy {
2330
2554
  tls?: ClientPolicyTls;
2331
2555
  }
2332
2556
  /**
2557
+ * @public
2333
2558
  * <p>An object that represents the default properties for a backend.</p>
2334
2559
  */
2335
2560
  export interface BackendDefaults {
@@ -2339,6 +2564,7 @@ export interface BackendDefaults {
2339
2564
  clientPolicy?: ClientPolicy;
2340
2565
  }
2341
2566
  /**
2567
+ * @public
2342
2568
  * <p>An object that represents a virtual service backend for a virtual node.</p>
2343
2569
  */
2344
2570
  export interface VirtualServiceBackend {
@@ -2352,10 +2578,14 @@ export interface VirtualServiceBackend {
2352
2578
  clientPolicy?: ClientPolicy;
2353
2579
  }
2354
2580
  /**
2581
+ * @public
2355
2582
  * <p>An object that represents the backends that a virtual node is expected to send outbound
2356
2583
  * traffic to.</p>
2357
2584
  */
2358
2585
  export type Backend = Backend.VirtualServiceMember | Backend.$UnknownMember;
2586
+ /**
2587
+ * @public
2588
+ */
2359
2589
  export declare namespace Backend {
2360
2590
  /**
2361
2591
  * <p>Specifies a virtual service to use as a backend. </p>
@@ -2375,6 +2605,7 @@ export declare namespace Backend {
2375
2605
  const visit: <T>(value: Backend, visitor: Visitor<T>) => T;
2376
2606
  }
2377
2607
  /**
2608
+ * @public
2378
2609
  * <p>An object that represents a type of connection pool.</p>
2379
2610
  */
2380
2611
  export interface VirtualNodeGrpcConnectionPool {
@@ -2385,6 +2616,7 @@ export interface VirtualNodeGrpcConnectionPool {
2385
2616
  maxRequests: number | undefined;
2386
2617
  }
2387
2618
  /**
2619
+ * @public
2388
2620
  * <p>An object that represents a type of connection pool.</p>
2389
2621
  */
2390
2622
  export interface VirtualNodeHttpConnectionPool {
@@ -2400,6 +2632,7 @@ export interface VirtualNodeHttpConnectionPool {
2400
2632
  maxPendingRequests?: number;
2401
2633
  }
2402
2634
  /**
2635
+ * @public
2403
2636
  * <p>An object that represents a type of connection pool.</p>
2404
2637
  */
2405
2638
  export interface VirtualNodeHttp2ConnectionPool {
@@ -2410,6 +2643,7 @@ export interface VirtualNodeHttp2ConnectionPool {
2410
2643
  maxRequests: number | undefined;
2411
2644
  }
2412
2645
  /**
2646
+ * @public
2413
2647
  * <p>An object that represents a type of connection pool.</p>
2414
2648
  */
2415
2649
  export interface VirtualNodeTcpConnectionPool {
@@ -2420,6 +2654,7 @@ export interface VirtualNodeTcpConnectionPool {
2420
2654
  maxConnections: number | undefined;
2421
2655
  }
2422
2656
  /**
2657
+ * @public
2423
2658
  * <p>An object that represents the type of virtual node connection pool.</p>
2424
2659
  * <p>Only one protocol is used at a time and should be the same protocol as the one chosen
2425
2660
  * under port mapping.</p>
@@ -2428,6 +2663,9 @@ export interface VirtualNodeTcpConnectionPool {
2428
2663
  * <p/>
2429
2664
  */
2430
2665
  export type VirtualNodeConnectionPool = VirtualNodeConnectionPool.GrpcMember | VirtualNodeConnectionPool.HttpMember | VirtualNodeConnectionPool.Http2Member | VirtualNodeConnectionPool.TcpMember | VirtualNodeConnectionPool.$UnknownMember;
2666
+ /**
2667
+ * @public
2668
+ */
2431
2669
  export declare namespace VirtualNodeConnectionPool {
2432
2670
  /**
2433
2671
  * <p>An object that represents a type of connection pool.</p>
@@ -2485,6 +2723,9 @@ export declare namespace VirtualNodeConnectionPool {
2485
2723
  }
2486
2724
  const visit: <T>(value: VirtualNodeConnectionPool, visitor: Visitor<T>) => T;
2487
2725
  }
2726
+ /**
2727
+ * @public
2728
+ */
2488
2729
  export declare enum PortProtocol {
2489
2730
  GRPC = "grpc",
2490
2731
  HTTP = "http",
@@ -2492,6 +2733,7 @@ export declare enum PortProtocol {
2492
2733
  TCP = "tcp"
2493
2734
  }
2494
2735
  /**
2736
+ * @public
2495
2737
  * <p>An object that represents the health check policy for a virtual node's listener.</p>
2496
2738
  */
2497
2739
  export interface HealthCheckPolicy {
@@ -2531,11 +2773,15 @@ export interface HealthCheckPolicy {
2531
2773
  */
2532
2774
  unhealthyThreshold: number | undefined;
2533
2775
  }
2776
+ /**
2777
+ * @public
2778
+ */
2534
2779
  export declare enum DurationUnit {
2535
2780
  MS = "ms",
2536
2781
  S = "s"
2537
2782
  }
2538
2783
  /**
2784
+ * @public
2539
2785
  * <p>An object that represents a duration of time.</p>
2540
2786
  */
2541
2787
  export interface Duration {
@@ -2549,6 +2795,7 @@ export interface Duration {
2549
2795
  unit?: DurationUnit | string;
2550
2796
  }
2551
2797
  /**
2798
+ * @public
2552
2799
  * <p>An object that represents the outlier detection for a virtual node's listener.</p>
2553
2800
  */
2554
2801
  export interface OutlierDetection {
@@ -2571,6 +2818,7 @@ export interface OutlierDetection {
2571
2818
  maxEjectionPercent: number | undefined;
2572
2819
  }
2573
2820
  /**
2821
+ * @public
2574
2822
  * <p>An object that represents a port mapping.</p>
2575
2823
  */
2576
2824
  export interface PortMapping {
@@ -2584,6 +2832,7 @@ export interface PortMapping {
2584
2832
  protocol: PortProtocol | string | undefined;
2585
2833
  }
2586
2834
  /**
2835
+ * @public
2587
2836
  * <p>An object that represents types of timeouts. </p>
2588
2837
  */
2589
2838
  export interface GrpcTimeout {
@@ -2599,6 +2848,7 @@ export interface GrpcTimeout {
2599
2848
  idle?: Duration;
2600
2849
  }
2601
2850
  /**
2851
+ * @public
2602
2852
  * <p>An object that represents types of timeouts. </p>
2603
2853
  */
2604
2854
  export interface HttpTimeout {
@@ -2614,6 +2864,7 @@ export interface HttpTimeout {
2614
2864
  idle?: Duration;
2615
2865
  }
2616
2866
  /**
2867
+ * @public
2617
2868
  * <p>An object that represents types of timeouts. </p>
2618
2869
  */
2619
2870
  export interface TcpTimeout {
@@ -2623,9 +2874,13 @@ export interface TcpTimeout {
2623
2874
  idle?: Duration;
2624
2875
  }
2625
2876
  /**
2877
+ * @public
2626
2878
  * <p>An object that represents timeouts for different protocols.</p>
2627
2879
  */
2628
2880
  export type ListenerTimeout = ListenerTimeout.GrpcMember | ListenerTimeout.HttpMember | ListenerTimeout.Http2Member | ListenerTimeout.TcpMember | ListenerTimeout.$UnknownMember;
2881
+ /**
2882
+ * @public
2883
+ */
2629
2884
  export declare namespace ListenerTimeout {
2630
2885
  /**
2631
2886
  * <p>An object that represents types of timeouts. </p>
@@ -2684,6 +2939,7 @@ export declare namespace ListenerTimeout {
2684
2939
  const visit: <T>(value: ListenerTimeout, visitor: Visitor<T>) => T;
2685
2940
  }
2686
2941
  /**
2942
+ * @public
2687
2943
  * <p>An object that represents an Certificate Manager certificate.</p>
2688
2944
  */
2689
2945
  export interface ListenerTlsAcmCertificate {
@@ -2693,9 +2949,13 @@ export interface ListenerTlsAcmCertificate {
2693
2949
  certificateArn: string | undefined;
2694
2950
  }
2695
2951
  /**
2952
+ * @public
2696
2953
  * <p>An object that represents a listener's Transport Layer Security (TLS) certificate.</p>
2697
2954
  */
2698
2955
  export type ListenerTlsCertificate = ListenerTlsCertificate.AcmMember | ListenerTlsCertificate.FileMember | ListenerTlsCertificate.SdsMember | ListenerTlsCertificate.$UnknownMember;
2956
+ /**
2957
+ * @public
2958
+ */
2699
2959
  export declare namespace ListenerTlsCertificate {
2700
2960
  /**
2701
2961
  * <p>A reference to an object that represents an Certificate Manager certificate.</p>
@@ -2739,15 +2999,22 @@ export declare namespace ListenerTlsCertificate {
2739
2999
  }
2740
3000
  const visit: <T>(value: ListenerTlsCertificate, visitor: Visitor<T>) => T;
2741
3001
  }
3002
+ /**
3003
+ * @public
3004
+ */
2742
3005
  export declare enum ListenerTlsMode {
2743
3006
  DISABLED = "DISABLED",
2744
3007
  PERMISSIVE = "PERMISSIVE",
2745
3008
  STRICT = "STRICT"
2746
3009
  }
2747
3010
  /**
3011
+ * @public
2748
3012
  * <p>An object that represents a listener's Transport Layer Security (TLS) validation context trust.</p>
2749
3013
  */
2750
3014
  export type ListenerTlsValidationContextTrust = ListenerTlsValidationContextTrust.FileMember | ListenerTlsValidationContextTrust.SdsMember | ListenerTlsValidationContextTrust.$UnknownMember;
3015
+ /**
3016
+ * @public
3017
+ */
2751
3018
  export declare namespace ListenerTlsValidationContextTrust {
2752
3019
  /**
2753
3020
  * <p>An object that represents a Transport Layer Security (TLS) validation context trust for a local file.</p>
@@ -2779,6 +3046,7 @@ export declare namespace ListenerTlsValidationContextTrust {
2779
3046
  const visit: <T>(value: ListenerTlsValidationContextTrust, visitor: Visitor<T>) => T;
2780
3047
  }
2781
3048
  /**
3049
+ * @public
2782
3050
  * <p>An object that represents a listener's Transport Layer Security (TLS) validation context.</p>
2783
3051
  */
2784
3052
  export interface ListenerTlsValidationContext {
@@ -2794,6 +3062,7 @@ export interface ListenerTlsValidationContext {
2794
3062
  subjectAlternativeNames?: SubjectAlternativeNames;
2795
3063
  }
2796
3064
  /**
3065
+ * @public
2797
3066
  * <p>An object that represents the Transport Layer Security (TLS) properties for a listener.</p>
2798
3067
  */
2799
3068
  export interface ListenerTls {
@@ -2828,6 +3097,7 @@ export interface ListenerTls {
2828
3097
  validation?: ListenerTlsValidationContext;
2829
3098
  }
2830
3099
  /**
3100
+ * @public
2831
3101
  * <p>An object that represents a listener for a virtual node.</p>
2832
3102
  */
2833
3103
  export interface Listener {
@@ -2857,6 +3127,7 @@ export interface Listener {
2857
3127
  connectionPool?: VirtualNodeConnectionPool;
2858
3128
  }
2859
3129
  /**
3130
+ * @public
2860
3131
  * <p>An object that represents the logging information for a virtual node.</p>
2861
3132
  */
2862
3133
  export interface Logging {
@@ -2866,6 +3137,7 @@ export interface Logging {
2866
3137
  accessLog?: AccessLog;
2867
3138
  }
2868
3139
  /**
3140
+ * @public
2869
3141
  * <p>An object that represents the Cloud Map attribute information for your
2870
3142
  * virtual node.</p>
2871
3143
  * <note>
@@ -2885,6 +3157,7 @@ export interface AwsCloudMapInstanceAttribute {
2885
3157
  value: string | undefined;
2886
3158
  }
2887
3159
  /**
3160
+ * @public
2888
3161
  * <p>An object that represents the Cloud Map service discovery information for
2889
3162
  * your virtual node.</p>
2890
3163
  * <note>
@@ -2913,11 +3186,15 @@ export interface AwsCloudMapServiceDiscovery {
2913
3186
  */
2914
3187
  ipPreference?: IpPreference | string;
2915
3188
  }
3189
+ /**
3190
+ * @public
3191
+ */
2916
3192
  export declare enum DnsResponseType {
2917
3193
  ENDPOINTS = "ENDPOINTS",
2918
3194
  LOADBALANCER = "LOADBALANCER"
2919
3195
  }
2920
3196
  /**
3197
+ * @public
2921
3198
  * <p>An object that represents the DNS service discovery information for your virtual
2922
3199
  * node.</p>
2923
3200
  */
@@ -2938,9 +3215,13 @@ export interface DnsServiceDiscovery {
2938
3215
  ipPreference?: IpPreference | string;
2939
3216
  }
2940
3217
  /**
3218
+ * @public
2941
3219
  * <p>An object that represents the service discovery information for a virtual node.</p>
2942
3220
  */
2943
3221
  export type ServiceDiscovery = ServiceDiscovery.AwsCloudMapMember | ServiceDiscovery.DnsMember | ServiceDiscovery.$UnknownMember;
3222
+ /**
3223
+ * @public
3224
+ */
2944
3225
  export declare namespace ServiceDiscovery {
2945
3226
  /**
2946
3227
  * <p>Specifies the DNS information for the virtual node.</p>
@@ -2971,6 +3252,7 @@ export declare namespace ServiceDiscovery {
2971
3252
  const visit: <T>(value: ServiceDiscovery, visitor: Visitor<T>) => T;
2972
3253
  }
2973
3254
  /**
3255
+ * @public
2974
3256
  * <p>An object that represents the specification of a virtual node.</p>
2975
3257
  */
2976
3258
  export interface VirtualNodeSpec {
@@ -2999,6 +3281,7 @@ export interface VirtualNodeSpec {
2999
3281
  logging?: Logging;
3000
3282
  }
3001
3283
  /**
3284
+ * @public
3002
3285
  *
3003
3286
  */
3004
3287
  export interface CreateVirtualNodeInput {
@@ -3033,12 +3316,16 @@ export interface CreateVirtualNodeInput {
3033
3316
  */
3034
3317
  meshOwner?: string;
3035
3318
  }
3319
+ /**
3320
+ * @public
3321
+ */
3036
3322
  export declare enum VirtualNodeStatusCode {
3037
3323
  ACTIVE = "ACTIVE",
3038
3324
  DELETED = "DELETED",
3039
3325
  INACTIVE = "INACTIVE"
3040
3326
  }
3041
3327
  /**
3328
+ * @public
3042
3329
  * <p>An object that represents the current status of the virtual node.</p>
3043
3330
  */
3044
3331
  export interface VirtualNodeStatus {
@@ -3048,6 +3335,7 @@ export interface VirtualNodeStatus {
3048
3335
  status: VirtualNodeStatusCode | string | undefined;
3049
3336
  }
3050
3337
  /**
3338
+ * @public
3051
3339
  * <p>An object that represents a virtual node returned by a describe operation.</p>
3052
3340
  */
3053
3341
  export interface VirtualNodeData {
@@ -3073,6 +3361,7 @@ export interface VirtualNodeData {
3073
3361
  status: VirtualNodeStatus | undefined;
3074
3362
  }
3075
3363
  /**
3364
+ * @public
3076
3365
  *
3077
3366
  */
3078
3367
  export interface CreateVirtualNodeOutput {
@@ -3082,6 +3371,7 @@ export interface CreateVirtualNodeOutput {
3082
3371
  virtualNode: VirtualNodeData | undefined;
3083
3372
  }
3084
3373
  /**
3374
+ * @public
3085
3375
  * <p>Deletes a virtual node input.</p>
3086
3376
  */
3087
3377
  export interface DeleteVirtualNodeInput {
@@ -3100,6 +3390,7 @@ export interface DeleteVirtualNodeInput {
3100
3390
  meshOwner?: string;
3101
3391
  }
3102
3392
  /**
3393
+ * @public
3103
3394
  *
3104
3395
  */
3105
3396
  export interface DeleteVirtualNodeOutput {
@@ -3109,6 +3400,7 @@ export interface DeleteVirtualNodeOutput {
3109
3400
  virtualNode: VirtualNodeData | undefined;
3110
3401
  }
3111
3402
  /**
3403
+ * @public
3112
3404
  *
3113
3405
  */
3114
3406
  export interface DescribeVirtualNodeInput {
@@ -3127,6 +3419,7 @@ export interface DescribeVirtualNodeInput {
3127
3419
  meshOwner?: string;
3128
3420
  }
3129
3421
  /**
3422
+ * @public
3130
3423
  *
3131
3424
  */
3132
3425
  export interface DescribeVirtualNodeOutput {
@@ -3136,6 +3429,7 @@ export interface DescribeVirtualNodeOutput {
3136
3429
  virtualNode: VirtualNodeData | undefined;
3137
3430
  }
3138
3431
  /**
3432
+ * @public
3139
3433
  *
3140
3434
  */
3141
3435
  export interface ListVirtualNodesInput {
@@ -3168,6 +3462,7 @@ export interface ListVirtualNodesInput {
3168
3462
  meshOwner?: string;
3169
3463
  }
3170
3464
  /**
3465
+ * @public
3171
3466
  * <p>An object that represents a virtual node returned by a list operation.</p>
3172
3467
  */
3173
3468
  export interface VirtualNodeRef {
@@ -3207,6 +3502,7 @@ export interface VirtualNodeRef {
3207
3502
  lastUpdatedAt: Date | undefined;
3208
3503
  }
3209
3504
  /**
3505
+ * @public
3210
3506
  *
3211
3507
  */
3212
3508
  export interface ListVirtualNodesOutput {
@@ -3223,6 +3519,7 @@ export interface ListVirtualNodesOutput {
3223
3519
  nextToken?: string;
3224
3520
  }
3225
3521
  /**
3522
+ * @public
3226
3523
  *
3227
3524
  */
3228
3525
  export interface UpdateVirtualNodeInput {
@@ -3250,6 +3547,7 @@ export interface UpdateVirtualNodeInput {
3250
3547
  meshOwner?: string;
3251
3548
  }
3252
3549
  /**
3550
+ * @public
3253
3551
  *
3254
3552
  */
3255
3553
  export interface UpdateVirtualNodeOutput {
@@ -3259,6 +3557,7 @@ export interface UpdateVirtualNodeOutput {
3259
3557
  virtualNode: VirtualNodeData | undefined;
3260
3558
  }
3261
3559
  /**
3560
+ * @public
3262
3561
  * <p>An object that represents a virtual router listener.</p>
3263
3562
  */
3264
3563
  export interface VirtualRouterListener {
@@ -3268,6 +3567,7 @@ export interface VirtualRouterListener {
3268
3567
  portMapping: PortMapping | undefined;
3269
3568
  }
3270
3569
  /**
3570
+ * @public
3271
3571
  * <p>An object that represents the specification of a virtual router.</p>
3272
3572
  */
3273
3573
  export interface VirtualRouterSpec {
@@ -3278,6 +3578,7 @@ export interface VirtualRouterSpec {
3278
3578
  listeners?: VirtualRouterListener[];
3279
3579
  }
3280
3580
  /**
3581
+ * @public
3281
3582
  *
3282
3583
  */
3283
3584
  export interface CreateVirtualRouterInput {
@@ -3312,12 +3613,16 @@ export interface CreateVirtualRouterInput {
3312
3613
  */
3313
3614
  meshOwner?: string;
3314
3615
  }
3616
+ /**
3617
+ * @public
3618
+ */
3315
3619
  export declare enum VirtualRouterStatusCode {
3316
3620
  ACTIVE = "ACTIVE",
3317
3621
  DELETED = "DELETED",
3318
3622
  INACTIVE = "INACTIVE"
3319
3623
  }
3320
3624
  /**
3625
+ * @public
3321
3626
  * <p>An object that represents the status of a virtual router. </p>
3322
3627
  */
3323
3628
  export interface VirtualRouterStatus {
@@ -3327,6 +3632,7 @@ export interface VirtualRouterStatus {
3327
3632
  status: VirtualRouterStatusCode | string | undefined;
3328
3633
  }
3329
3634
  /**
3635
+ * @public
3330
3636
  * <p>An object that represents a virtual router returned by a describe operation.</p>
3331
3637
  */
3332
3638
  export interface VirtualRouterData {
@@ -3352,6 +3658,7 @@ export interface VirtualRouterData {
3352
3658
  status: VirtualRouterStatus | undefined;
3353
3659
  }
3354
3660
  /**
3661
+ * @public
3355
3662
  *
3356
3663
  */
3357
3664
  export interface CreateVirtualRouterOutput {
@@ -3361,6 +3668,7 @@ export interface CreateVirtualRouterOutput {
3361
3668
  virtualRouter: VirtualRouterData | undefined;
3362
3669
  }
3363
3670
  /**
3671
+ * @public
3364
3672
  *
3365
3673
  */
3366
3674
  export interface DeleteVirtualRouterInput {
@@ -3379,6 +3687,7 @@ export interface DeleteVirtualRouterInput {
3379
3687
  meshOwner?: string;
3380
3688
  }
3381
3689
  /**
3690
+ * @public
3382
3691
  *
3383
3692
  */
3384
3693
  export interface DeleteVirtualRouterOutput {
@@ -3388,6 +3697,7 @@ export interface DeleteVirtualRouterOutput {
3388
3697
  virtualRouter: VirtualRouterData | undefined;
3389
3698
  }
3390
3699
  /**
3700
+ * @public
3391
3701
  *
3392
3702
  */
3393
3703
  export interface DescribeVirtualRouterInput {
@@ -3406,6 +3716,7 @@ export interface DescribeVirtualRouterInput {
3406
3716
  meshOwner?: string;
3407
3717
  }
3408
3718
  /**
3719
+ * @public
3409
3720
  *
3410
3721
  */
3411
3722
  export interface DescribeVirtualRouterOutput {
@@ -3415,6 +3726,7 @@ export interface DescribeVirtualRouterOutput {
3415
3726
  virtualRouter: VirtualRouterData | undefined;
3416
3727
  }
3417
3728
  /**
3729
+ * @public
3418
3730
  *
3419
3731
  */
3420
3732
  export interface ListVirtualRoutersInput {
@@ -3447,6 +3759,7 @@ export interface ListVirtualRoutersInput {
3447
3759
  meshOwner?: string;
3448
3760
  }
3449
3761
  /**
3762
+ * @public
3450
3763
  * <p>An object that represents a virtual router returned by a list operation.</p>
3451
3764
  */
3452
3765
  export interface VirtualRouterRef {
@@ -3486,6 +3799,7 @@ export interface VirtualRouterRef {
3486
3799
  lastUpdatedAt: Date | undefined;
3487
3800
  }
3488
3801
  /**
3802
+ * @public
3489
3803
  *
3490
3804
  */
3491
3805
  export interface ListVirtualRoutersOutput {
@@ -3502,6 +3816,7 @@ export interface ListVirtualRoutersOutput {
3502
3816
  nextToken?: string;
3503
3817
  }
3504
3818
  /**
3819
+ * @public
3505
3820
  * <p>An object that represents a target and its relative weight. Traffic is distributed
3506
3821
  * across targets according to their relative weight. For example, a weighted target with a
3507
3822
  * relative weight of 50 receives five times as much traffic as one with a relative weight of
@@ -3522,6 +3837,7 @@ export interface WeightedTarget {
3522
3837
  port?: number;
3523
3838
  }
3524
3839
  /**
3840
+ * @public
3525
3841
  * <p>An object that represents the action to take if a match is determined.</p>
3526
3842
  */
3527
3843
  export interface GrpcRouteAction {
@@ -3531,9 +3847,13 @@ export interface GrpcRouteAction {
3531
3847
  weightedTargets: WeightedTarget[] | undefined;
3532
3848
  }
3533
3849
  /**
3850
+ * @public
3534
3851
  * <p>An object that represents the match method. Specify one of the match values.</p>
3535
3852
  */
3536
3853
  export type GrpcRouteMetadataMatchMethod = GrpcRouteMetadataMatchMethod.ExactMember | GrpcRouteMetadataMatchMethod.PrefixMember | GrpcRouteMetadataMatchMethod.RangeMember | GrpcRouteMetadataMatchMethod.RegexMember | GrpcRouteMetadataMatchMethod.SuffixMember | GrpcRouteMetadataMatchMethod.$UnknownMember;
3854
+ /**
3855
+ * @public
3856
+ */
3537
3857
  export declare namespace GrpcRouteMetadataMatchMethod {
3538
3858
  /**
3539
3859
  * <p>The value sent by the client must match the specified value exactly.</p>
@@ -3609,6 +3929,7 @@ export declare namespace GrpcRouteMetadataMatchMethod {
3609
3929
  const visit: <T>(value: GrpcRouteMetadataMatchMethod, visitor: Visitor<T>) => T;
3610
3930
  }
3611
3931
  /**
3932
+ * @public
3612
3933
  * <p>An object that represents the match metadata for the route.</p>
3613
3934
  */
3614
3935
  export interface GrpcRouteMetadata {
@@ -3626,6 +3947,7 @@ export interface GrpcRouteMetadata {
3626
3947
  match?: GrpcRouteMetadataMatchMethod;
3627
3948
  }
3628
3949
  /**
3950
+ * @public
3629
3951
  * <p>An object that represents the criteria for determining a request match.</p>
3630
3952
  */
3631
3953
  export interface GrpcRouteMatch {
@@ -3647,6 +3969,9 @@ export interface GrpcRouteMatch {
3647
3969
  */
3648
3970
  port?: number;
3649
3971
  }
3972
+ /**
3973
+ * @public
3974
+ */
3650
3975
  export declare enum GrpcRetryPolicyEvent {
3651
3976
  CANCELLED = "cancelled",
3652
3977
  DEADLINE_EXCEEDED = "deadline-exceeded",
@@ -3654,10 +3979,14 @@ export declare enum GrpcRetryPolicyEvent {
3654
3979
  RESOURCE_EXHAUSTED = "resource-exhausted",
3655
3980
  UNAVAILABLE = "unavailable"
3656
3981
  }
3982
+ /**
3983
+ * @public
3984
+ */
3657
3985
  export declare enum TcpRetryPolicyEvent {
3658
3986
  CONNECTION_ERROR = "connection-error"
3659
3987
  }
3660
3988
  /**
3989
+ * @public
3661
3990
  * <p>An object that represents a retry policy. Specify at least one value for at least one of the types of <code>RetryEvents</code>, a value for <code>maxRetries</code>, and a value for <code>perRetryTimeout</code>.
3662
3991
  * Both <code>server-error</code> and <code>gateway-error</code> under <code>httpRetryEvents</code> include the Envoy <code>reset</code> policy. For more information on the
3663
3992
  * <code>reset</code> policy, see the <a href="https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/router_filter#x-envoy-retry-on">Envoy documentation</a>.</p>
@@ -3706,6 +4035,7 @@ export interface GrpcRetryPolicy {
3706
4035
  grpcRetryEvents?: (GrpcRetryPolicyEvent | string)[];
3707
4036
  }
3708
4037
  /**
4038
+ * @public
3709
4039
  * <p>An object that represents a gRPC route type.</p>
3710
4040
  */
3711
4041
  export interface GrpcRoute {
@@ -3727,6 +4057,7 @@ export interface GrpcRoute {
3727
4057
  timeout?: GrpcTimeout;
3728
4058
  }
3729
4059
  /**
4060
+ * @public
3730
4061
  * <p>An object that represents the action to take if a match is determined.</p>
3731
4062
  */
3732
4063
  export interface HttpRouteAction {
@@ -3736,6 +4067,7 @@ export interface HttpRouteAction {
3736
4067
  weightedTargets: WeightedTarget[] | undefined;
3737
4068
  }
3738
4069
  /**
4070
+ * @public
3739
4071
  * <p>An object that represents the HTTP header in the request.</p>
3740
4072
  */
3741
4073
  export interface HttpRouteHeader {
@@ -3752,11 +4084,15 @@ export interface HttpRouteHeader {
3752
4084
  */
3753
4085
  match?: HeaderMatchMethod;
3754
4086
  }
4087
+ /**
4088
+ * @public
4089
+ */
3755
4090
  export declare enum HttpScheme {
3756
4091
  HTTP = "http",
3757
4092
  HTTPS = "https"
3758
4093
  }
3759
4094
  /**
4095
+ * @public
3760
4096
  * <p>An object that represents the requirements for a route to match HTTP requests for a
3761
4097
  * virtual router.</p>
3762
4098
  */
@@ -3797,6 +4133,7 @@ export interface HttpRouteMatch {
3797
4133
  port?: number;
3798
4134
  }
3799
4135
  /**
4136
+ * @public
3800
4137
  * <p>An object that represents a retry policy. Specify at least one value for at least one of the types of <code>RetryEvents</code>, a value for <code>maxRetries</code>, and a value for <code>perRetryTimeout</code>.
3801
4138
  * Both <code>server-error</code> and <code>gateway-error</code> under <code>httpRetryEvents</code> include the Envoy <code>reset</code> policy. For more information on the
3802
4139
  * <code>reset</code> policy, see the <a href="https://www.envoyproxy.io/docs/envoy/latest/configuration/http/http_filters/router_filter#x-envoy-retry-on">Envoy documentation</a>.</p>
@@ -3841,6 +4178,7 @@ export interface HttpRetryPolicy {
3841
4178
  tcpRetryEvents?: (TcpRetryPolicyEvent | string)[];
3842
4179
  }
3843
4180
  /**
4181
+ * @public
3844
4182
  * <p>An object that represents an HTTP or HTTP/2 route type.</p>
3845
4183
  */
3846
4184
  export interface HttpRoute {
@@ -3862,6 +4200,7 @@ export interface HttpRoute {
3862
4200
  timeout?: HttpTimeout;
3863
4201
  }
3864
4202
  /**
4203
+ * @public
3865
4204
  * <p>An object that represents the action to take if a match is determined.</p>
3866
4205
  */
3867
4206
  export interface TcpRouteAction {
@@ -3871,6 +4210,7 @@ export interface TcpRouteAction {
3871
4210
  weightedTargets: WeightedTarget[] | undefined;
3872
4211
  }
3873
4212
  /**
4213
+ * @public
3874
4214
  * <p>An object representing the TCP route to match.</p>
3875
4215
  */
3876
4216
  export interface TcpRouteMatch {
@@ -3880,6 +4220,7 @@ export interface TcpRouteMatch {
3880
4220
  port?: number;
3881
4221
  }
3882
4222
  /**
4223
+ * @public
3883
4224
  * <p>An object that represents a TCP route type.</p>
3884
4225
  */
3885
4226
  export interface TcpRoute {
@@ -3897,6 +4238,7 @@ export interface TcpRoute {
3897
4238
  match?: TcpRouteMatch;
3898
4239
  }
3899
4240
  /**
4241
+ * @public
3900
4242
  * <p>An object that represents a route specification. Specify one route type.</p>
3901
4243
  */
3902
4244
  export interface RouteSpec {
@@ -3923,6 +4265,7 @@ export interface RouteSpec {
3923
4265
  grpcRoute?: GrpcRoute;
3924
4266
  }
3925
4267
  /**
4268
+ * @public
3926
4269
  *
3927
4270
  */
3928
4271
  export interface CreateRouteInput {
@@ -3962,12 +4305,16 @@ export interface CreateRouteInput {
3962
4305
  */
3963
4306
  meshOwner?: string;
3964
4307
  }
4308
+ /**
4309
+ * @public
4310
+ */
3965
4311
  export declare enum RouteStatusCode {
3966
4312
  ACTIVE = "ACTIVE",
3967
4313
  DELETED = "DELETED",
3968
4314
  INACTIVE = "INACTIVE"
3969
4315
  }
3970
4316
  /**
4317
+ * @public
3971
4318
  * <p>An object that represents the current status of a route.</p>
3972
4319
  */
3973
4320
  export interface RouteStatus {
@@ -3977,6 +4324,7 @@ export interface RouteStatus {
3977
4324
  status: RouteStatusCode | string | undefined;
3978
4325
  }
3979
4326
  /**
4327
+ * @public
3980
4328
  * <p>An object that represents a route returned by a describe operation.</p>
3981
4329
  */
3982
4330
  export interface RouteData {
@@ -4006,6 +4354,7 @@ export interface RouteData {
4006
4354
  status: RouteStatus | undefined;
4007
4355
  }
4008
4356
  /**
4357
+ * @public
4009
4358
  *
4010
4359
  */
4011
4360
  export interface CreateRouteOutput {
@@ -4015,6 +4364,7 @@ export interface CreateRouteOutput {
4015
4364
  route: RouteData | undefined;
4016
4365
  }
4017
4366
  /**
4367
+ * @public
4018
4368
  *
4019
4369
  */
4020
4370
  export interface DeleteRouteInput {
@@ -4037,6 +4387,7 @@ export interface DeleteRouteInput {
4037
4387
  meshOwner?: string;
4038
4388
  }
4039
4389
  /**
4390
+ * @public
4040
4391
  *
4041
4392
  */
4042
4393
  export interface DeleteRouteOutput {
@@ -4046,6 +4397,7 @@ export interface DeleteRouteOutput {
4046
4397
  route: RouteData | undefined;
4047
4398
  }
4048
4399
  /**
4400
+ * @public
4049
4401
  *
4050
4402
  */
4051
4403
  export interface DescribeRouteInput {
@@ -4068,6 +4420,7 @@ export interface DescribeRouteInput {
4068
4420
  virtualRouterName: string | undefined;
4069
4421
  }
4070
4422
  /**
4423
+ * @public
4071
4424
  *
4072
4425
  */
4073
4426
  export interface DescribeRouteOutput {
@@ -4077,6 +4430,7 @@ export interface DescribeRouteOutput {
4077
4430
  route: RouteData | undefined;
4078
4431
  }
4079
4432
  /**
4433
+ * @public
4080
4434
  *
4081
4435
  */
4082
4436
  export interface ListRoutesInput {
@@ -4113,6 +4467,7 @@ export interface ListRoutesInput {
4113
4467
  meshOwner?: string;
4114
4468
  }
4115
4469
  /**
4470
+ * @public
4116
4471
  * <p>An object that represents a route returned by a list operation.</p>
4117
4472
  */
4118
4473
  export interface RouteRef {
@@ -4156,6 +4511,7 @@ export interface RouteRef {
4156
4511
  lastUpdatedAt: Date | undefined;
4157
4512
  }
4158
4513
  /**
4514
+ * @public
4159
4515
  *
4160
4516
  */
4161
4517
  export interface ListRoutesOutput {
@@ -4172,6 +4528,7 @@ export interface ListRoutesOutput {
4172
4528
  nextToken?: string;
4173
4529
  }
4174
4530
  /**
4531
+ * @public
4175
4532
  *
4176
4533
  */
4177
4534
  export interface UpdateRouteInput {
@@ -4203,6 +4560,7 @@ export interface UpdateRouteInput {
4203
4560
  meshOwner?: string;
4204
4561
  }
4205
4562
  /**
4563
+ * @public
4206
4564
  *
4207
4565
  */
4208
4566
  export interface UpdateRouteOutput {
@@ -4212,6 +4570,7 @@ export interface UpdateRouteOutput {
4212
4570
  route: RouteData | undefined;
4213
4571
  }
4214
4572
  /**
4573
+ * @public
4215
4574
  *
4216
4575
  */
4217
4576
  export interface UpdateVirtualRouterInput {
@@ -4239,6 +4598,7 @@ export interface UpdateVirtualRouterInput {
4239
4598
  meshOwner?: string;
4240
4599
  }
4241
4600
  /**
4601
+ * @public
4242
4602
  *
4243
4603
  */
4244
4604
  export interface UpdateVirtualRouterOutput {
@@ -4248,6 +4608,7 @@ export interface UpdateVirtualRouterOutput {
4248
4608
  virtualRouter: VirtualRouterData | undefined;
4249
4609
  }
4250
4610
  /**
4611
+ * @public
4251
4612
  * <p>An object that represents a virtual node service provider.</p>
4252
4613
  */
4253
4614
  export interface VirtualNodeServiceProvider {
@@ -4257,6 +4618,7 @@ export interface VirtualNodeServiceProvider {
4257
4618
  virtualNodeName: string | undefined;
4258
4619
  }
4259
4620
  /**
4621
+ * @public
4260
4622
  * <p>An object that represents a virtual node service provider.</p>
4261
4623
  */
4262
4624
  export interface VirtualRouterServiceProvider {
@@ -4266,9 +4628,13 @@ export interface VirtualRouterServiceProvider {
4266
4628
  virtualRouterName: string | undefined;
4267
4629
  }
4268
4630
  /**
4631
+ * @public
4269
4632
  * <p>An object that represents the provider for a virtual service.</p>
4270
4633
  */
4271
4634
  export type VirtualServiceProvider = VirtualServiceProvider.VirtualNodeMember | VirtualServiceProvider.VirtualRouterMember | VirtualServiceProvider.$UnknownMember;
4635
+ /**
4636
+ * @public
4637
+ */
4272
4638
  export declare namespace VirtualServiceProvider {
4273
4639
  /**
4274
4640
  * <p>The virtual node associated with a virtual service.</p>
@@ -4299,6 +4665,7 @@ export declare namespace VirtualServiceProvider {
4299
4665
  const visit: <T>(value: VirtualServiceProvider, visitor: Visitor<T>) => T;
4300
4666
  }
4301
4667
  /**
4668
+ * @public
4302
4669
  * <p>An object that represents the specification of a virtual service.</p>
4303
4670
  */
4304
4671
  export interface VirtualServiceSpec {
@@ -4309,6 +4676,7 @@ export interface VirtualServiceSpec {
4309
4676
  provider?: VirtualServiceProvider;
4310
4677
  }
4311
4678
  /**
4679
+ * @public
4312
4680
  *
4313
4681
  */
4314
4682
  export interface CreateVirtualServiceInput {
@@ -4343,12 +4711,16 @@ export interface CreateVirtualServiceInput {
4343
4711
  */
4344
4712
  meshOwner?: string;
4345
4713
  }
4714
+ /**
4715
+ * @public
4716
+ */
4346
4717
  export declare enum VirtualServiceStatusCode {
4347
4718
  ACTIVE = "ACTIVE",
4348
4719
  DELETED = "DELETED",
4349
4720
  INACTIVE = "INACTIVE"
4350
4721
  }
4351
4722
  /**
4723
+ * @public
4352
4724
  * <p>An object that represents the status of a virtual service.</p>
4353
4725
  */
4354
4726
  export interface VirtualServiceStatus {
@@ -4358,6 +4730,7 @@ export interface VirtualServiceStatus {
4358
4730
  status: VirtualServiceStatusCode | string | undefined;
4359
4731
  }
4360
4732
  /**
4733
+ * @public
4361
4734
  * <p>An object that represents a virtual service returned by a describe operation.</p>
4362
4735
  */
4363
4736
  export interface VirtualServiceData {
@@ -4383,6 +4756,7 @@ export interface VirtualServiceData {
4383
4756
  status: VirtualServiceStatus | undefined;
4384
4757
  }
4385
4758
  /**
4759
+ * @public
4386
4760
  *
4387
4761
  */
4388
4762
  export interface CreateVirtualServiceOutput {
@@ -4392,6 +4766,7 @@ export interface CreateVirtualServiceOutput {
4392
4766
  virtualService: VirtualServiceData | undefined;
4393
4767
  }
4394
4768
  /**
4769
+ * @public
4395
4770
  *
4396
4771
  */
4397
4772
  export interface DeleteVirtualServiceInput {
@@ -4410,6 +4785,7 @@ export interface DeleteVirtualServiceInput {
4410
4785
  meshOwner?: string;
4411
4786
  }
4412
4787
  /**
4788
+ * @public
4413
4789
  *
4414
4790
  */
4415
4791
  export interface DeleteVirtualServiceOutput {
@@ -4419,6 +4795,7 @@ export interface DeleteVirtualServiceOutput {
4419
4795
  virtualService: VirtualServiceData | undefined;
4420
4796
  }
4421
4797
  /**
4798
+ * @public
4422
4799
  *
4423
4800
  */
4424
4801
  export interface DescribeVirtualServiceInput {
@@ -4437,6 +4814,7 @@ export interface DescribeVirtualServiceInput {
4437
4814
  meshOwner?: string;
4438
4815
  }
4439
4816
  /**
4817
+ * @public
4440
4818
  *
4441
4819
  */
4442
4820
  export interface DescribeVirtualServiceOutput {
@@ -4446,6 +4824,7 @@ export interface DescribeVirtualServiceOutput {
4446
4824
  virtualService: VirtualServiceData | undefined;
4447
4825
  }
4448
4826
  /**
4827
+ * @public
4449
4828
  *
4450
4829
  */
4451
4830
  export interface ListVirtualServicesInput {
@@ -4478,6 +4857,7 @@ export interface ListVirtualServicesInput {
4478
4857
  meshOwner?: string;
4479
4858
  }
4480
4859
  /**
4860
+ * @public
4481
4861
  * <p>An object that represents a virtual service returned by a list operation.</p>
4482
4862
  */
4483
4863
  export interface VirtualServiceRef {
@@ -4517,6 +4897,7 @@ export interface VirtualServiceRef {
4517
4897
  lastUpdatedAt: Date | undefined;
4518
4898
  }
4519
4899
  /**
4900
+ * @public
4520
4901
  *
4521
4902
  */
4522
4903
  export interface ListVirtualServicesOutput {
@@ -4533,6 +4914,7 @@ export interface ListVirtualServicesOutput {
4533
4914
  nextToken?: string;
4534
4915
  }
4535
4916
  /**
4917
+ * @public
4536
4918
  *
4537
4919
  */
4538
4920
  export interface UpdateVirtualServiceInput {
@@ -4561,6 +4943,7 @@ export interface UpdateVirtualServiceInput {
4561
4943
  meshOwner?: string;
4562
4944
  }
4563
4945
  /**
4946
+ * @public
4564
4947
  *
4565
4948
  */
4566
4949
  export interface UpdateVirtualServiceOutput {
@@ -4570,6 +4953,7 @@ export interface UpdateVirtualServiceOutput {
4570
4953
  virtualService: VirtualServiceData | undefined;
4571
4954
  }
4572
4955
  /**
4956
+ * @public
4573
4957
  *
4574
4958
  */
4575
4959
  export interface TagResourceInput {
@@ -4585,11 +4969,13 @@ export interface TagResourceInput {
4585
4969
  tags: TagRef[] | undefined;
4586
4970
  }
4587
4971
  /**
4972
+ * @public
4588
4973
  *
4589
4974
  */
4590
4975
  export interface TagResourceOutput {
4591
4976
  }
4592
4977
  /**
4978
+ * @public
4593
4979
  * <p>The request exceeds the maximum allowed number of tags allowed per resource. The current
4594
4980
  * limit is 50 user tags per resource. You must reduce the number of tags in the request. None
4595
4981
  * of the tags in this request were applied.</p>
@@ -4603,6 +4989,7 @@ export declare class TooManyTagsException extends __BaseException {
4603
4989
  constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
4604
4990
  }
4605
4991
  /**
4992
+ * @public
4606
4993
  *
4607
4994
  */
4608
4995
  export interface UntagResourceInput {
@@ -4616,6 +5003,7 @@ export interface UntagResourceInput {
4616
5003
  tagKeys: string[] | undefined;
4617
5004
  }
4618
5005
  /**
5006
+ * @public
4619
5007
  *
4620
5008
  */
4621
5009
  export interface UntagResourceOutput {