aws-sdk-appmesh 1.22.0 → 1.27.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.
- checksums.yaml +4 -4
- data/lib/aws-sdk-appmesh.rb +3 -1
- data/lib/aws-sdk-appmesh/client.rb +332 -50
- data/lib/aws-sdk-appmesh/client_api.rb +43 -0
- data/lib/aws-sdk-appmesh/errors.rb +2 -0
- data/lib/aws-sdk-appmesh/resource.rb +2 -0
- data/lib/aws-sdk-appmesh/types.rb +721 -47
- metadata +4 -4
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -77,6 +79,7 @@ module Aws::AppMesh
|
|
77
79
|
GrpcRouteMetadata = Shapes::StructureShape.new(name: 'GrpcRouteMetadata')
|
78
80
|
GrpcRouteMetadataList = Shapes::ListShape.new(name: 'GrpcRouteMetadataList')
|
79
81
|
GrpcRouteMetadataMatchMethod = Shapes::StructureShape.new(name: 'GrpcRouteMetadataMatchMethod')
|
82
|
+
GrpcTimeout = Shapes::StructureShape.new(name: 'GrpcTimeout')
|
80
83
|
HeaderMatch = Shapes::StringShape.new(name: 'HeaderMatch')
|
81
84
|
HeaderMatchMethod = Shapes::StructureShape.new(name: 'HeaderMatchMethod')
|
82
85
|
HeaderName = Shapes::StringShape.new(name: 'HeaderName')
|
@@ -95,6 +98,7 @@ module Aws::AppMesh
|
|
95
98
|
HttpRouteHeaders = Shapes::ListShape.new(name: 'HttpRouteHeaders')
|
96
99
|
HttpRouteMatch = Shapes::StructureShape.new(name: 'HttpRouteMatch')
|
97
100
|
HttpScheme = Shapes::StringShape.new(name: 'HttpScheme')
|
101
|
+
HttpTimeout = Shapes::StructureShape.new(name: 'HttpTimeout')
|
98
102
|
InternalServerErrorException = Shapes::StructureShape.new(name: 'InternalServerErrorException')
|
99
103
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
100
104
|
ListMeshesInput = Shapes::StructureShape.new(name: 'ListMeshesInput')
|
@@ -115,6 +119,7 @@ module Aws::AppMesh
|
|
115
119
|
ListVirtualServicesLimit = Shapes::IntegerShape.new(name: 'ListVirtualServicesLimit')
|
116
120
|
ListVirtualServicesOutput = Shapes::StructureShape.new(name: 'ListVirtualServicesOutput')
|
117
121
|
Listener = Shapes::StructureShape.new(name: 'Listener')
|
122
|
+
ListenerTimeout = Shapes::StructureShape.new(name: 'ListenerTimeout')
|
118
123
|
ListenerTls = Shapes::StructureShape.new(name: 'ListenerTls')
|
119
124
|
ListenerTlsAcmCertificate = Shapes::StructureShape.new(name: 'ListenerTlsAcmCertificate')
|
120
125
|
ListenerTlsCertificate = Shapes::StructureShape.new(name: 'ListenerTlsCertificate')
|
@@ -164,6 +169,7 @@ module Aws::AppMesh
|
|
164
169
|
TcpRetryPolicyEvents = Shapes::ListShape.new(name: 'TcpRetryPolicyEvents')
|
165
170
|
TcpRoute = Shapes::StructureShape.new(name: 'TcpRoute')
|
166
171
|
TcpRouteAction = Shapes::StructureShape.new(name: 'TcpRouteAction')
|
172
|
+
TcpTimeout = Shapes::StructureShape.new(name: 'TcpTimeout')
|
167
173
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
168
174
|
TlsValidationContext = Shapes::StructureShape.new(name: 'TlsValidationContext')
|
169
175
|
TlsValidationContextAcmTrust = Shapes::StructureShape.new(name: 'TlsValidationContextAcmTrust')
|
@@ -439,6 +445,7 @@ module Aws::AppMesh
|
|
439
445
|
GrpcRoute.add_member(:action, Shapes::ShapeRef.new(shape: GrpcRouteAction, required: true, location_name: "action"))
|
440
446
|
GrpcRoute.add_member(:match, Shapes::ShapeRef.new(shape: GrpcRouteMatch, required: true, location_name: "match"))
|
441
447
|
GrpcRoute.add_member(:retry_policy, Shapes::ShapeRef.new(shape: GrpcRetryPolicy, location_name: "retryPolicy"))
|
448
|
+
GrpcRoute.add_member(:timeout, Shapes::ShapeRef.new(shape: GrpcTimeout, location_name: "timeout"))
|
442
449
|
GrpcRoute.struct_class = Types::GrpcRoute
|
443
450
|
|
444
451
|
GrpcRouteAction.add_member(:weighted_targets, Shapes::ShapeRef.new(shape: WeightedTargets, required: true, location_name: "weightedTargets"))
|
@@ -463,6 +470,10 @@ module Aws::AppMesh
|
|
463
470
|
GrpcRouteMetadataMatchMethod.add_member(:suffix, Shapes::ShapeRef.new(shape: HeaderMatch, location_name: "suffix"))
|
464
471
|
GrpcRouteMetadataMatchMethod.struct_class = Types::GrpcRouteMetadataMatchMethod
|
465
472
|
|
473
|
+
GrpcTimeout.add_member(:idle, Shapes::ShapeRef.new(shape: Duration, location_name: "idle"))
|
474
|
+
GrpcTimeout.add_member(:per_request, Shapes::ShapeRef.new(shape: Duration, location_name: "perRequest"))
|
475
|
+
GrpcTimeout.struct_class = Types::GrpcTimeout
|
476
|
+
|
466
477
|
HeaderMatchMethod.add_member(:exact, Shapes::ShapeRef.new(shape: HeaderMatch, location_name: "exact"))
|
467
478
|
HeaderMatchMethod.add_member(:prefix, Shapes::ShapeRef.new(shape: HeaderMatch, location_name: "prefix"))
|
468
479
|
HeaderMatchMethod.add_member(:range, Shapes::ShapeRef.new(shape: MatchRange, location_name: "range"))
|
@@ -490,6 +501,7 @@ module Aws::AppMesh
|
|
490
501
|
HttpRoute.add_member(:action, Shapes::ShapeRef.new(shape: HttpRouteAction, required: true, location_name: "action"))
|
491
502
|
HttpRoute.add_member(:match, Shapes::ShapeRef.new(shape: HttpRouteMatch, required: true, location_name: "match"))
|
492
503
|
HttpRoute.add_member(:retry_policy, Shapes::ShapeRef.new(shape: HttpRetryPolicy, location_name: "retryPolicy"))
|
504
|
+
HttpRoute.add_member(:timeout, Shapes::ShapeRef.new(shape: HttpTimeout, location_name: "timeout"))
|
493
505
|
HttpRoute.struct_class = Types::HttpRoute
|
494
506
|
|
495
507
|
HttpRouteAction.add_member(:weighted_targets, Shapes::ShapeRef.new(shape: WeightedTargets, required: true, location_name: "weightedTargets"))
|
@@ -508,6 +520,10 @@ module Aws::AppMesh
|
|
508
520
|
HttpRouteMatch.add_member(:scheme, Shapes::ShapeRef.new(shape: HttpScheme, location_name: "scheme"))
|
509
521
|
HttpRouteMatch.struct_class = Types::HttpRouteMatch
|
510
522
|
|
523
|
+
HttpTimeout.add_member(:idle, Shapes::ShapeRef.new(shape: Duration, location_name: "idle"))
|
524
|
+
HttpTimeout.add_member(:per_request, Shapes::ShapeRef.new(shape: Duration, location_name: "perRequest"))
|
525
|
+
HttpTimeout.struct_class = Types::HttpTimeout
|
526
|
+
|
511
527
|
InternalServerErrorException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
512
528
|
InternalServerErrorException.struct_class = Types::InternalServerErrorException
|
513
529
|
|
@@ -574,9 +590,16 @@ module Aws::AppMesh
|
|
574
590
|
|
575
591
|
Listener.add_member(:health_check, Shapes::ShapeRef.new(shape: HealthCheckPolicy, location_name: "healthCheck"))
|
576
592
|
Listener.add_member(:port_mapping, Shapes::ShapeRef.new(shape: PortMapping, required: true, location_name: "portMapping"))
|
593
|
+
Listener.add_member(:timeout, Shapes::ShapeRef.new(shape: ListenerTimeout, location_name: "timeout"))
|
577
594
|
Listener.add_member(:tls, Shapes::ShapeRef.new(shape: ListenerTls, location_name: "tls"))
|
578
595
|
Listener.struct_class = Types::Listener
|
579
596
|
|
597
|
+
ListenerTimeout.add_member(:grpc, Shapes::ShapeRef.new(shape: GrpcTimeout, location_name: "grpc"))
|
598
|
+
ListenerTimeout.add_member(:http, Shapes::ShapeRef.new(shape: HttpTimeout, location_name: "http"))
|
599
|
+
ListenerTimeout.add_member(:http2, Shapes::ShapeRef.new(shape: HttpTimeout, location_name: "http2"))
|
600
|
+
ListenerTimeout.add_member(:tcp, Shapes::ShapeRef.new(shape: TcpTimeout, location_name: "tcp"))
|
601
|
+
ListenerTimeout.struct_class = Types::ListenerTimeout
|
602
|
+
|
580
603
|
ListenerTls.add_member(:certificate, Shapes::ShapeRef.new(shape: ListenerTlsCertificate, required: true, location_name: "certificate"))
|
581
604
|
ListenerTls.add_member(:mode, Shapes::ShapeRef.new(shape: ListenerTlsMode, required: true, location_name: "mode"))
|
582
605
|
ListenerTls.struct_class = Types::ListenerTls
|
@@ -610,9 +633,12 @@ module Aws::AppMesh
|
|
610
633
|
MeshList.member = Shapes::ShapeRef.new(shape: MeshRef)
|
611
634
|
|
612
635
|
MeshRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
636
|
+
MeshRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
637
|
+
MeshRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
613
638
|
MeshRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
614
639
|
MeshRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
615
640
|
MeshRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
641
|
+
MeshRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
616
642
|
MeshRef.struct_class = Types::MeshRef
|
617
643
|
|
618
644
|
MeshSpec.add_member(:egress_filter, Shapes::ShapeRef.new(shape: EgressFilter, location_name: "egressFilter"))
|
@@ -653,10 +679,13 @@ module Aws::AppMesh
|
|
653
679
|
RouteList.member = Shapes::ShapeRef.new(shape: RouteRef)
|
654
680
|
|
655
681
|
RouteRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
682
|
+
RouteRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
683
|
+
RouteRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
656
684
|
RouteRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
657
685
|
RouteRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
658
686
|
RouteRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
659
687
|
RouteRef.add_member(:route_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "routeName"))
|
688
|
+
RouteRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
660
689
|
RouteRef.add_member(:virtual_router_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualRouterName"))
|
661
690
|
RouteRef.struct_class = Types::RouteRef
|
662
691
|
|
@@ -694,11 +723,15 @@ module Aws::AppMesh
|
|
694
723
|
TcpRetryPolicyEvents.member = Shapes::ShapeRef.new(shape: TcpRetryPolicyEvent)
|
695
724
|
|
696
725
|
TcpRoute.add_member(:action, Shapes::ShapeRef.new(shape: TcpRouteAction, required: true, location_name: "action"))
|
726
|
+
TcpRoute.add_member(:timeout, Shapes::ShapeRef.new(shape: TcpTimeout, location_name: "timeout"))
|
697
727
|
TcpRoute.struct_class = Types::TcpRoute
|
698
728
|
|
699
729
|
TcpRouteAction.add_member(:weighted_targets, Shapes::ShapeRef.new(shape: WeightedTargets, required: true, location_name: "weightedTargets"))
|
700
730
|
TcpRouteAction.struct_class = Types::TcpRouteAction
|
701
731
|
|
732
|
+
TcpTimeout.add_member(:idle, Shapes::ShapeRef.new(shape: Duration, location_name: "idle"))
|
733
|
+
TcpTimeout.struct_class = Types::TcpTimeout
|
734
|
+
|
702
735
|
TlsValidationContext.add_member(:trust, Shapes::ShapeRef.new(shape: TlsValidationContextTrust, required: true, location_name: "trust"))
|
703
736
|
TlsValidationContext.struct_class = Types::TlsValidationContext
|
704
737
|
|
@@ -793,9 +826,12 @@ module Aws::AppMesh
|
|
793
826
|
VirtualNodeList.member = Shapes::ShapeRef.new(shape: VirtualNodeRef)
|
794
827
|
|
795
828
|
VirtualNodeRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
829
|
+
VirtualNodeRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
830
|
+
VirtualNodeRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
796
831
|
VirtualNodeRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
797
832
|
VirtualNodeRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
798
833
|
VirtualNodeRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
834
|
+
VirtualNodeRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
799
835
|
VirtualNodeRef.add_member(:virtual_node_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualNodeName"))
|
800
836
|
VirtualNodeRef.struct_class = Types::VirtualNodeRef
|
801
837
|
|
@@ -827,9 +863,12 @@ module Aws::AppMesh
|
|
827
863
|
VirtualRouterListeners.member = Shapes::ShapeRef.new(shape: VirtualRouterListener)
|
828
864
|
|
829
865
|
VirtualRouterRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
866
|
+
VirtualRouterRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
867
|
+
VirtualRouterRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
830
868
|
VirtualRouterRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
831
869
|
VirtualRouterRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
832
870
|
VirtualRouterRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
871
|
+
VirtualRouterRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
833
872
|
VirtualRouterRef.add_member(:virtual_router_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualRouterName"))
|
834
873
|
VirtualRouterRef.struct_class = Types::VirtualRouterRef
|
835
874
|
|
@@ -860,9 +899,12 @@ module Aws::AppMesh
|
|
860
899
|
VirtualServiceProvider.struct_class = Types::VirtualServiceProvider
|
861
900
|
|
862
901
|
VirtualServiceRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
902
|
+
VirtualServiceRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
903
|
+
VirtualServiceRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
863
904
|
VirtualServiceRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
864
905
|
VirtualServiceRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
865
906
|
VirtualServiceRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
907
|
+
VirtualServiceRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
866
908
|
VirtualServiceRef.add_member(:virtual_service_name, Shapes::ShapeRef.new(shape: ServiceName, required: true, location_name: "virtualServiceName"))
|
867
909
|
VirtualServiceRef.struct_class = Types::VirtualServiceRef
|
868
910
|
|
@@ -1046,6 +1088,7 @@ module Aws::AppMesh
|
|
1046
1088
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1047
1089
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1048
1090
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1091
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1049
1092
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1050
1093
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1051
1094
|
end)
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -28,6 +30,7 @@ module Aws::AppMesh
|
|
28
30
|
#
|
29
31
|
class VirtualRouterListener < Struct.new(
|
30
32
|
:port_mapping)
|
33
|
+
SENSITIVE = []
|
31
34
|
include Aws::Structure
|
32
35
|
end
|
33
36
|
|
@@ -86,6 +89,7 @@ module Aws::AppMesh
|
|
86
89
|
:max_retries,
|
87
90
|
:per_retry_timeout,
|
88
91
|
:tcp_retry_events)
|
92
|
+
SENSITIVE = []
|
89
93
|
include Aws::Structure
|
90
94
|
end
|
91
95
|
|
@@ -97,6 +101,7 @@ module Aws::AppMesh
|
|
97
101
|
#
|
98
102
|
class CreateVirtualNodeOutput < Struct.new(
|
99
103
|
:virtual_node)
|
104
|
+
SENSITIVE = []
|
100
105
|
include Aws::Structure
|
101
106
|
end
|
102
107
|
|
@@ -121,6 +126,7 @@ module Aws::AppMesh
|
|
121
126
|
#
|
122
127
|
class Logging < Struct.new(
|
123
128
|
:access_log)
|
129
|
+
SENSITIVE = []
|
124
130
|
include Aws::Structure
|
125
131
|
end
|
126
132
|
|
@@ -132,6 +138,7 @@ module Aws::AppMesh
|
|
132
138
|
#
|
133
139
|
class UpdateVirtualRouterOutput < Struct.new(
|
134
140
|
:virtual_router)
|
141
|
+
SENSITIVE = []
|
135
142
|
include Aws::Structure
|
136
143
|
end
|
137
144
|
|
@@ -152,6 +159,7 @@ module Aws::AppMesh
|
|
152
159
|
class ListVirtualRoutersOutput < Struct.new(
|
153
160
|
:next_token,
|
154
161
|
:virtual_routers)
|
162
|
+
SENSITIVE = []
|
155
163
|
include Aws::Structure
|
156
164
|
end
|
157
165
|
|
@@ -175,7 +183,7 @@ module Aws::AppMesh
|
|
175
183
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
176
184
|
# is not your own, then it's the ID of the account that shared the
|
177
185
|
# mesh with your account. For more information about mesh sharing, see
|
178
|
-
# [Working with
|
186
|
+
# [Working with shared meshes][1].
|
179
187
|
#
|
180
188
|
#
|
181
189
|
#
|
@@ -184,9 +192,9 @@ module Aws::AppMesh
|
|
184
192
|
#
|
185
193
|
# @!attribute [rw] resource_owner
|
186
194
|
# The AWS IAM account ID of the resource owner. If the account ID is
|
187
|
-
# not your own, then it's the ID of the mesh owner
|
195
|
+
# not your own, then it's the ID of the mesh owner or of another
|
188
196
|
# account that the mesh is shared with. For more information about
|
189
|
-
# mesh sharing, see [Working with
|
197
|
+
# mesh sharing, see [Working with shared meshes][1].
|
190
198
|
#
|
191
199
|
#
|
192
200
|
#
|
@@ -212,6 +220,7 @@ module Aws::AppMesh
|
|
212
220
|
:resource_owner,
|
213
221
|
:uid,
|
214
222
|
:version)
|
223
|
+
SENSITIVE = []
|
215
224
|
include Aws::Structure
|
216
225
|
end
|
217
226
|
|
@@ -225,6 +234,7 @@ module Aws::AppMesh
|
|
225
234
|
#
|
226
235
|
class ResourceInUseException < Struct.new(
|
227
236
|
:message)
|
237
|
+
SENSITIVE = []
|
228
238
|
include Aws::Structure
|
229
239
|
end
|
230
240
|
|
@@ -236,6 +246,7 @@ module Aws::AppMesh
|
|
236
246
|
#
|
237
247
|
class UpdateVirtualNodeOutput < Struct.new(
|
238
248
|
:virtual_node)
|
249
|
+
SENSITIVE = []
|
239
250
|
include Aws::Structure
|
240
251
|
end
|
241
252
|
|
@@ -256,6 +267,7 @@ module Aws::AppMesh
|
|
256
267
|
class ListRoutesOutput < Struct.new(
|
257
268
|
:next_token,
|
258
269
|
:routes)
|
270
|
+
SENSITIVE = []
|
259
271
|
include Aws::Structure
|
260
272
|
end
|
261
273
|
|
@@ -300,6 +312,7 @@ module Aws::AppMesh
|
|
300
312
|
class VirtualServiceBackend < Struct.new(
|
301
313
|
:client_policy,
|
302
314
|
:virtual_service_name)
|
315
|
+
SENSITIVE = []
|
303
316
|
include Aws::Structure
|
304
317
|
end
|
305
318
|
|
@@ -313,6 +326,7 @@ module Aws::AppMesh
|
|
313
326
|
#
|
314
327
|
class BadRequestException < Struct.new(
|
315
328
|
:message)
|
329
|
+
SENSITIVE = []
|
316
330
|
include Aws::Structure
|
317
331
|
end
|
318
332
|
|
@@ -382,6 +396,7 @@ module Aws::AppMesh
|
|
382
396
|
:protocol,
|
383
397
|
:timeout_millis,
|
384
398
|
:unhealthy_threshold)
|
399
|
+
SENSITIVE = []
|
385
400
|
include Aws::Structure
|
386
401
|
end
|
387
402
|
|
@@ -406,6 +421,7 @@ module Aws::AppMesh
|
|
406
421
|
#
|
407
422
|
class EgressFilter < Struct.new(
|
408
423
|
:type)
|
424
|
+
SENSITIVE = []
|
409
425
|
include Aws::Structure
|
410
426
|
end
|
411
427
|
|
@@ -440,6 +456,7 @@ module Aws::AppMesh
|
|
440
456
|
#
|
441
457
|
class ClientPolicy < Struct.new(
|
442
458
|
:tls)
|
459
|
+
SENSITIVE = []
|
443
460
|
include Aws::Structure
|
444
461
|
end
|
445
462
|
|
@@ -451,6 +468,7 @@ module Aws::AppMesh
|
|
451
468
|
#
|
452
469
|
class DescribeVirtualServiceOutput < Struct.new(
|
453
470
|
:virtual_service)
|
471
|
+
SENSITIVE = []
|
454
472
|
include Aws::Structure
|
455
473
|
end
|
456
474
|
|
@@ -462,6 +480,7 @@ module Aws::AppMesh
|
|
462
480
|
#
|
463
481
|
class DescribeVirtualNodeOutput < Struct.new(
|
464
482
|
:virtual_node)
|
483
|
+
SENSITIVE = []
|
465
484
|
include Aws::Structure
|
466
485
|
end
|
467
486
|
|
@@ -473,6 +492,7 @@ module Aws::AppMesh
|
|
473
492
|
#
|
474
493
|
class CreateRouteOutput < Struct.new(
|
475
494
|
:route)
|
495
|
+
SENSITIVE = []
|
476
496
|
include Aws::Structure
|
477
497
|
end
|
478
498
|
|
@@ -494,6 +514,7 @@ module Aws::AppMesh
|
|
494
514
|
#
|
495
515
|
class DnsServiceDiscovery < Struct.new(
|
496
516
|
:hostname)
|
517
|
+
SENSITIVE = []
|
497
518
|
include Aws::Structure
|
498
519
|
end
|
499
520
|
|
@@ -515,7 +536,7 @@ module Aws::AppMesh
|
|
515
536
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
516
537
|
# is not your own, then it's the ID of the account that shared the
|
517
538
|
# mesh with your account. For more information about mesh sharing, see
|
518
|
-
# [Working with
|
539
|
+
# [Working with shared meshes][1].
|
519
540
|
#
|
520
541
|
#
|
521
542
|
#
|
@@ -537,6 +558,7 @@ module Aws::AppMesh
|
|
537
558
|
:mesh_owner,
|
538
559
|
:route_name,
|
539
560
|
:virtual_router_name)
|
561
|
+
SENSITIVE = []
|
540
562
|
include Aws::Structure
|
541
563
|
end
|
542
564
|
|
@@ -571,6 +593,7 @@ module Aws::AppMesh
|
|
571
593
|
:spec,
|
572
594
|
:status,
|
573
595
|
:virtual_node_name)
|
596
|
+
SENSITIVE = []
|
574
597
|
include Aws::Structure
|
575
598
|
end
|
576
599
|
|
@@ -614,6 +637,7 @@ module Aws::AppMesh
|
|
614
637
|
#
|
615
638
|
class Backend < Struct.new(
|
616
639
|
:virtual_service)
|
640
|
+
SENSITIVE = []
|
617
641
|
include Aws::Structure
|
618
642
|
end
|
619
643
|
|
@@ -654,6 +678,7 @@ module Aws::AppMesh
|
|
654
678
|
class ListMeshesInput < Struct.new(
|
655
679
|
:limit,
|
656
680
|
:next_token)
|
681
|
+
SENSITIVE = []
|
657
682
|
include Aws::Structure
|
658
683
|
end
|
659
684
|
|
@@ -688,6 +713,7 @@ module Aws::AppMesh
|
|
688
713
|
:spec,
|
689
714
|
:status,
|
690
715
|
:virtual_router_name)
|
716
|
+
SENSITIVE = []
|
691
717
|
include Aws::Structure
|
692
718
|
end
|
693
719
|
|
@@ -727,6 +753,7 @@ module Aws::AppMesh
|
|
727
753
|
:client_token,
|
728
754
|
:mesh_name,
|
729
755
|
:spec)
|
756
|
+
SENSITIVE = []
|
730
757
|
include Aws::Structure
|
731
758
|
end
|
732
759
|
|
@@ -774,7 +801,7 @@ module Aws::AppMesh
|
|
774
801
|
# is not your own, then the account that you specify must share the
|
775
802
|
# mesh with your account before you can create the resource in the
|
776
803
|
# service mesh. For more information about mesh sharing, see [Working
|
777
|
-
# with
|
804
|
+
# with shared meshes][1].
|
778
805
|
#
|
779
806
|
#
|
780
807
|
#
|
@@ -806,6 +833,7 @@ module Aws::AppMesh
|
|
806
833
|
:spec,
|
807
834
|
:tags,
|
808
835
|
:virtual_router_name)
|
836
|
+
SENSITIVE = []
|
809
837
|
include Aws::Structure
|
810
838
|
end
|
811
839
|
|
@@ -817,6 +845,7 @@ module Aws::AppMesh
|
|
817
845
|
#
|
818
846
|
class DescribeVirtualRouterOutput < Struct.new(
|
819
847
|
:virtual_router)
|
848
|
+
SENSITIVE = []
|
820
849
|
include Aws::Structure
|
821
850
|
end
|
822
851
|
|
@@ -828,6 +857,7 @@ module Aws::AppMesh
|
|
828
857
|
#
|
829
858
|
class CreateMeshOutput < Struct.new(
|
830
859
|
:mesh)
|
860
|
+
SENSITIVE = []
|
831
861
|
include Aws::Structure
|
832
862
|
end
|
833
863
|
|
@@ -840,6 +870,7 @@ module Aws::AppMesh
|
|
840
870
|
#
|
841
871
|
class CreateVirtualRouterOutput < Struct.new(
|
842
872
|
:virtual_router)
|
873
|
+
SENSITIVE = []
|
843
874
|
include Aws::Structure
|
844
875
|
end
|
845
876
|
|
@@ -853,6 +884,7 @@ module Aws::AppMesh
|
|
853
884
|
#
|
854
885
|
class VirtualServiceStatus < Struct.new(
|
855
886
|
:status)
|
887
|
+
SENSITIVE = []
|
856
888
|
include Aws::Structure
|
857
889
|
end
|
858
890
|
|
@@ -886,6 +918,7 @@ module Aws::AppMesh
|
|
886
918
|
class ListenerTlsCertificate < Struct.new(
|
887
919
|
:acm,
|
888
920
|
:file)
|
921
|
+
SENSITIVE = []
|
889
922
|
include Aws::Structure
|
890
923
|
end
|
891
924
|
|
@@ -914,6 +947,7 @@ module Aws::AppMesh
|
|
914
947
|
#
|
915
948
|
class VirtualRouterSpec < Struct.new(
|
916
949
|
:listeners)
|
950
|
+
SENSITIVE = []
|
917
951
|
include Aws::Structure
|
918
952
|
end
|
919
953
|
|
@@ -979,6 +1013,44 @@ module Aws::AppMesh
|
|
979
1013
|
# port: 1, # required
|
980
1014
|
# protocol: "grpc", # required, accepts grpc, http, http2, tcp
|
981
1015
|
# },
|
1016
|
+
# timeout: {
|
1017
|
+
# grpc: {
|
1018
|
+
# idle: {
|
1019
|
+
# unit: "ms", # accepts ms, s
|
1020
|
+
# value: 1,
|
1021
|
+
# },
|
1022
|
+
# per_request: {
|
1023
|
+
# unit: "ms", # accepts ms, s
|
1024
|
+
# value: 1,
|
1025
|
+
# },
|
1026
|
+
# },
|
1027
|
+
# http: {
|
1028
|
+
# idle: {
|
1029
|
+
# unit: "ms", # accepts ms, s
|
1030
|
+
# value: 1,
|
1031
|
+
# },
|
1032
|
+
# per_request: {
|
1033
|
+
# unit: "ms", # accepts ms, s
|
1034
|
+
# value: 1,
|
1035
|
+
# },
|
1036
|
+
# },
|
1037
|
+
# http2: {
|
1038
|
+
# idle: {
|
1039
|
+
# unit: "ms", # accepts ms, s
|
1040
|
+
# value: 1,
|
1041
|
+
# },
|
1042
|
+
# per_request: {
|
1043
|
+
# unit: "ms", # accepts ms, s
|
1044
|
+
# value: 1,
|
1045
|
+
# },
|
1046
|
+
# },
|
1047
|
+
# tcp: {
|
1048
|
+
# idle: {
|
1049
|
+
# unit: "ms", # accepts ms, s
|
1050
|
+
# value: 1,
|
1051
|
+
# },
|
1052
|
+
# },
|
1053
|
+
# },
|
982
1054
|
# tls: {
|
983
1055
|
# certificate: { # required
|
984
1056
|
# acm: {
|
@@ -1051,6 +1123,7 @@ module Aws::AppMesh
|
|
1051
1123
|
:listeners,
|
1052
1124
|
:logging,
|
1053
1125
|
:service_discovery)
|
1126
|
+
SENSITIVE = []
|
1054
1127
|
include Aws::Structure
|
1055
1128
|
end
|
1056
1129
|
|
@@ -1070,6 +1143,7 @@ module Aws::AppMesh
|
|
1070
1143
|
class ListMeshesOutput < Struct.new(
|
1071
1144
|
:meshes,
|
1072
1145
|
:next_token)
|
1146
|
+
SENSITIVE = []
|
1073
1147
|
include Aws::Structure
|
1074
1148
|
end
|
1075
1149
|
|
@@ -1084,6 +1158,72 @@ module Aws::AppMesh
|
|
1084
1158
|
#
|
1085
1159
|
class ConflictException < Struct.new(
|
1086
1160
|
:message)
|
1161
|
+
SENSITIVE = []
|
1162
|
+
include Aws::Structure
|
1163
|
+
end
|
1164
|
+
|
1165
|
+
# @note When making an API call, you may pass ListenerTimeout
|
1166
|
+
# data as a hash:
|
1167
|
+
#
|
1168
|
+
# {
|
1169
|
+
# grpc: {
|
1170
|
+
# idle: {
|
1171
|
+
# unit: "ms", # accepts ms, s
|
1172
|
+
# value: 1,
|
1173
|
+
# },
|
1174
|
+
# per_request: {
|
1175
|
+
# unit: "ms", # accepts ms, s
|
1176
|
+
# value: 1,
|
1177
|
+
# },
|
1178
|
+
# },
|
1179
|
+
# http: {
|
1180
|
+
# idle: {
|
1181
|
+
# unit: "ms", # accepts ms, s
|
1182
|
+
# value: 1,
|
1183
|
+
# },
|
1184
|
+
# per_request: {
|
1185
|
+
# unit: "ms", # accepts ms, s
|
1186
|
+
# value: 1,
|
1187
|
+
# },
|
1188
|
+
# },
|
1189
|
+
# http2: {
|
1190
|
+
# idle: {
|
1191
|
+
# unit: "ms", # accepts ms, s
|
1192
|
+
# value: 1,
|
1193
|
+
# },
|
1194
|
+
# per_request: {
|
1195
|
+
# unit: "ms", # accepts ms, s
|
1196
|
+
# value: 1,
|
1197
|
+
# },
|
1198
|
+
# },
|
1199
|
+
# tcp: {
|
1200
|
+
# idle: {
|
1201
|
+
# unit: "ms", # accepts ms, s
|
1202
|
+
# value: 1,
|
1203
|
+
# },
|
1204
|
+
# },
|
1205
|
+
# }
|
1206
|
+
#
|
1207
|
+
# @!attribute [rw] grpc
|
1208
|
+
# @return [Types::GrpcTimeout]
|
1209
|
+
#
|
1210
|
+
# @!attribute [rw] http
|
1211
|
+
# @return [Types::HttpTimeout]
|
1212
|
+
#
|
1213
|
+
# @!attribute [rw] http2
|
1214
|
+
# @return [Types::HttpTimeout]
|
1215
|
+
#
|
1216
|
+
# @!attribute [rw] tcp
|
1217
|
+
# @return [Types::TcpTimeout]
|
1218
|
+
#
|
1219
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListenerTimeout AWS API Documentation
|
1220
|
+
#
|
1221
|
+
class ListenerTimeout < Struct.new(
|
1222
|
+
:grpc,
|
1223
|
+
:http,
|
1224
|
+
:http2,
|
1225
|
+
:tcp)
|
1226
|
+
SENSITIVE = []
|
1087
1227
|
include Aws::Structure
|
1088
1228
|
end
|
1089
1229
|
|
@@ -1117,6 +1257,7 @@ module Aws::AppMesh
|
|
1117
1257
|
class TlsValidationContextTrust < Struct.new(
|
1118
1258
|
:acm,
|
1119
1259
|
:file)
|
1260
|
+
SENSITIVE = []
|
1120
1261
|
include Aws::Structure
|
1121
1262
|
end
|
1122
1263
|
|
@@ -1143,6 +1284,7 @@ module Aws::AppMesh
|
|
1143
1284
|
class PortMapping < Struct.new(
|
1144
1285
|
:port,
|
1145
1286
|
:protocol)
|
1287
|
+
SENSITIVE = []
|
1146
1288
|
include Aws::Structure
|
1147
1289
|
end
|
1148
1290
|
|
@@ -1164,6 +1306,7 @@ module Aws::AppMesh
|
|
1164
1306
|
class ListVirtualServicesOutput < Struct.new(
|
1165
1307
|
:next_token,
|
1166
1308
|
:virtual_services)
|
1309
|
+
SENSITIVE = []
|
1167
1310
|
include Aws::Structure
|
1168
1311
|
end
|
1169
1312
|
|
@@ -1194,6 +1337,7 @@ module Aws::AppMesh
|
|
1194
1337
|
class WeightedTarget < Struct.new(
|
1195
1338
|
:virtual_node,
|
1196
1339
|
:weight)
|
1340
|
+
SENSITIVE = []
|
1197
1341
|
include Aws::Structure
|
1198
1342
|
end
|
1199
1343
|
|
@@ -1203,6 +1347,16 @@ module Aws::AppMesh
|
|
1203
1347
|
# The full Amazon Resource Name (ARN) for the route.
|
1204
1348
|
# @return [String]
|
1205
1349
|
#
|
1350
|
+
# @!attribute [rw] created_at
|
1351
|
+
# The Unix epoch timestamp in seconds for when the resource was
|
1352
|
+
# created.
|
1353
|
+
# @return [Time]
|
1354
|
+
#
|
1355
|
+
# @!attribute [rw] last_updated_at
|
1356
|
+
# The Unix epoch timestamp in seconds for when the resource was last
|
1357
|
+
# updated.
|
1358
|
+
# @return [Time]
|
1359
|
+
#
|
1206
1360
|
# @!attribute [rw] mesh_name
|
1207
1361
|
# The name of the service mesh that the route resides in.
|
1208
1362
|
# @return [String]
|
@@ -1211,7 +1365,7 @@ module Aws::AppMesh
|
|
1211
1365
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
1212
1366
|
# is not your own, then it's the ID of the account that shared the
|
1213
1367
|
# mesh with your account. For more information about mesh sharing, see
|
1214
|
-
# [Working with
|
1368
|
+
# [Working with shared meshes][1].
|
1215
1369
|
#
|
1216
1370
|
#
|
1217
1371
|
#
|
@@ -1220,9 +1374,9 @@ module Aws::AppMesh
|
|
1220
1374
|
#
|
1221
1375
|
# @!attribute [rw] resource_owner
|
1222
1376
|
# The AWS IAM account ID of the resource owner. If the account ID is
|
1223
|
-
# not your own, then it's the ID of the mesh owner
|
1377
|
+
# not your own, then it's the ID of the mesh owner or of another
|
1224
1378
|
# account that the mesh is shared with. For more information about
|
1225
|
-
# mesh sharing, see [Working with
|
1379
|
+
# mesh sharing, see [Working with shared meshes][1].
|
1226
1380
|
#
|
1227
1381
|
#
|
1228
1382
|
#
|
@@ -1233,6 +1387,11 @@ module Aws::AppMesh
|
|
1233
1387
|
# The name of the route.
|
1234
1388
|
# @return [String]
|
1235
1389
|
#
|
1390
|
+
# @!attribute [rw] version
|
1391
|
+
# The version of the resource. Resources are created at version 1, and
|
1392
|
+
# this version is incremented each time that they're updated.
|
1393
|
+
# @return [Integer]
|
1394
|
+
#
|
1236
1395
|
# @!attribute [rw] virtual_router_name
|
1237
1396
|
# The virtual router that the route is associated with.
|
1238
1397
|
# @return [String]
|
@@ -1241,11 +1400,15 @@ module Aws::AppMesh
|
|
1241
1400
|
#
|
1242
1401
|
class RouteRef < Struct.new(
|
1243
1402
|
:arn,
|
1403
|
+
:created_at,
|
1404
|
+
:last_updated_at,
|
1244
1405
|
:mesh_name,
|
1245
1406
|
:mesh_owner,
|
1246
1407
|
:resource_owner,
|
1247
1408
|
:route_name,
|
1409
|
+
:version,
|
1248
1410
|
:virtual_router_name)
|
1411
|
+
SENSITIVE = []
|
1249
1412
|
include Aws::Structure
|
1250
1413
|
end
|
1251
1414
|
|
@@ -1266,7 +1429,7 @@ module Aws::AppMesh
|
|
1266
1429
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
1267
1430
|
# is not your own, then it's the ID of the account that shared the
|
1268
1431
|
# mesh with your account. For more information about mesh sharing, see
|
1269
|
-
# [Working with
|
1432
|
+
# [Working with shared meshes][1].
|
1270
1433
|
#
|
1271
1434
|
#
|
1272
1435
|
#
|
@@ -1283,6 +1446,7 @@ module Aws::AppMesh
|
|
1283
1446
|
:mesh_name,
|
1284
1447
|
:mesh_owner,
|
1285
1448
|
:virtual_node_name)
|
1449
|
+
SENSITIVE = []
|
1286
1450
|
include Aws::Structure
|
1287
1451
|
end
|
1288
1452
|
|
@@ -1321,6 +1485,7 @@ module Aws::AppMesh
|
|
1321
1485
|
:spec,
|
1322
1486
|
:status,
|
1323
1487
|
:virtual_router_name)
|
1488
|
+
SENSITIVE = []
|
1324
1489
|
include Aws::Structure
|
1325
1490
|
end
|
1326
1491
|
|
@@ -1334,6 +1499,7 @@ module Aws::AppMesh
|
|
1334
1499
|
#
|
1335
1500
|
class InternalServerErrorException < Struct.new(
|
1336
1501
|
:message)
|
1502
|
+
SENSITIVE = []
|
1337
1503
|
include Aws::Structure
|
1338
1504
|
end
|
1339
1505
|
|
@@ -1355,6 +1521,7 @@ module Aws::AppMesh
|
|
1355
1521
|
#
|
1356
1522
|
class TlsValidationContextAcmTrust < Struct.new(
|
1357
1523
|
:certificate_authority_arns)
|
1524
|
+
SENSITIVE = []
|
1358
1525
|
include Aws::Structure
|
1359
1526
|
end
|
1360
1527
|
|
@@ -1367,6 +1534,7 @@ module Aws::AppMesh
|
|
1367
1534
|
#
|
1368
1535
|
class ForbiddenException < Struct.new(
|
1369
1536
|
:message)
|
1537
|
+
SENSITIVE = []
|
1370
1538
|
include Aws::Structure
|
1371
1539
|
end
|
1372
1540
|
|
@@ -1416,6 +1584,7 @@ module Aws::AppMesh
|
|
1416
1584
|
:range,
|
1417
1585
|
:regex,
|
1418
1586
|
:suffix)
|
1587
|
+
SENSITIVE = []
|
1419
1588
|
include Aws::Structure
|
1420
1589
|
end
|
1421
1590
|
|
@@ -1427,6 +1596,7 @@ module Aws::AppMesh
|
|
1427
1596
|
#
|
1428
1597
|
class DeleteMeshOutput < Struct.new(
|
1429
1598
|
:mesh)
|
1599
|
+
SENSITIVE = []
|
1430
1600
|
include Aws::Structure
|
1431
1601
|
end
|
1432
1602
|
|
@@ -1459,6 +1629,7 @@ module Aws::AppMesh
|
|
1459
1629
|
class TagResourceInput < Struct.new(
|
1460
1630
|
:resource_arn,
|
1461
1631
|
:tags)
|
1632
|
+
SENSITIVE = []
|
1462
1633
|
include Aws::Structure
|
1463
1634
|
end
|
1464
1635
|
|
@@ -1489,6 +1660,7 @@ module Aws::AppMesh
|
|
1489
1660
|
class VirtualServiceProvider < Struct.new(
|
1490
1661
|
:virtual_node,
|
1491
1662
|
:virtual_router)
|
1663
|
+
SENSITIVE = []
|
1492
1664
|
include Aws::Structure
|
1493
1665
|
end
|
1494
1666
|
|
@@ -1539,6 +1711,7 @@ module Aws::AppMesh
|
|
1539
1711
|
:metadata,
|
1540
1712
|
:method_name,
|
1541
1713
|
:service_name)
|
1714
|
+
SENSITIVE = []
|
1542
1715
|
include Aws::Structure
|
1543
1716
|
end
|
1544
1717
|
|
@@ -1580,6 +1753,7 @@ module Aws::AppMesh
|
|
1580
1753
|
:attributes,
|
1581
1754
|
:namespace_name,
|
1582
1755
|
:service_name)
|
1756
|
+
SENSITIVE = []
|
1583
1757
|
include Aws::Structure
|
1584
1758
|
end
|
1585
1759
|
|
@@ -1591,6 +1765,7 @@ module Aws::AppMesh
|
|
1591
1765
|
#
|
1592
1766
|
class UpdateVirtualServiceOutput < Struct.new(
|
1593
1767
|
:virtual_service)
|
1768
|
+
SENSITIVE = []
|
1594
1769
|
include Aws::Structure
|
1595
1770
|
end
|
1596
1771
|
|
@@ -1604,6 +1779,7 @@ module Aws::AppMesh
|
|
1604
1779
|
#
|
1605
1780
|
class MeshStatus < Struct.new(
|
1606
1781
|
:status)
|
1782
|
+
SENSITIVE = []
|
1607
1783
|
include Aws::Structure
|
1608
1784
|
end
|
1609
1785
|
|
@@ -1671,6 +1847,44 @@ module Aws::AppMesh
|
|
1671
1847
|
# port: 1, # required
|
1672
1848
|
# protocol: "grpc", # required, accepts grpc, http, http2, tcp
|
1673
1849
|
# },
|
1850
|
+
# timeout: {
|
1851
|
+
# grpc: {
|
1852
|
+
# idle: {
|
1853
|
+
# unit: "ms", # accepts ms, s
|
1854
|
+
# value: 1,
|
1855
|
+
# },
|
1856
|
+
# per_request: {
|
1857
|
+
# unit: "ms", # accepts ms, s
|
1858
|
+
# value: 1,
|
1859
|
+
# },
|
1860
|
+
# },
|
1861
|
+
# http: {
|
1862
|
+
# idle: {
|
1863
|
+
# unit: "ms", # accepts ms, s
|
1864
|
+
# value: 1,
|
1865
|
+
# },
|
1866
|
+
# per_request: {
|
1867
|
+
# unit: "ms", # accepts ms, s
|
1868
|
+
# value: 1,
|
1869
|
+
# },
|
1870
|
+
# },
|
1871
|
+
# http2: {
|
1872
|
+
# idle: {
|
1873
|
+
# unit: "ms", # accepts ms, s
|
1874
|
+
# value: 1,
|
1875
|
+
# },
|
1876
|
+
# per_request: {
|
1877
|
+
# unit: "ms", # accepts ms, s
|
1878
|
+
# value: 1,
|
1879
|
+
# },
|
1880
|
+
# },
|
1881
|
+
# tcp: {
|
1882
|
+
# idle: {
|
1883
|
+
# unit: "ms", # accepts ms, s
|
1884
|
+
# value: 1,
|
1885
|
+
# },
|
1886
|
+
# },
|
1887
|
+
# },
|
1674
1888
|
# tls: {
|
1675
1889
|
# certificate: { # required
|
1676
1890
|
# acm: {
|
@@ -1735,7 +1949,7 @@ module Aws::AppMesh
|
|
1735
1949
|
# is not your own, then the account that you specify must share the
|
1736
1950
|
# mesh with your account before you can create the resource in the
|
1737
1951
|
# service mesh. For more information about mesh sharing, see [Working
|
1738
|
-
# with
|
1952
|
+
# with shared meshes][1].
|
1739
1953
|
#
|
1740
1954
|
#
|
1741
1955
|
#
|
@@ -1767,6 +1981,7 @@ module Aws::AppMesh
|
|
1767
1981
|
:spec,
|
1768
1982
|
:tags,
|
1769
1983
|
:virtual_node_name)
|
1984
|
+
SENSITIVE = []
|
1770
1985
|
include Aws::Structure
|
1771
1986
|
end
|
1772
1987
|
|
@@ -1780,6 +1995,7 @@ module Aws::AppMesh
|
|
1780
1995
|
#
|
1781
1996
|
class NotFoundException < Struct.new(
|
1782
1997
|
:message)
|
1998
|
+
SENSITIVE = []
|
1783
1999
|
include Aws::Structure
|
1784
2000
|
end
|
1785
2001
|
|
@@ -1829,6 +2045,16 @@ module Aws::AppMesh
|
|
1829
2045
|
# },
|
1830
2046
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
1831
2047
|
# },
|
2048
|
+
# timeout: {
|
2049
|
+
# idle: {
|
2050
|
+
# unit: "ms", # accepts ms, s
|
2051
|
+
# value: 1,
|
2052
|
+
# },
|
2053
|
+
# per_request: {
|
2054
|
+
# unit: "ms", # accepts ms, s
|
2055
|
+
# value: 1,
|
2056
|
+
# },
|
2057
|
+
# },
|
1832
2058
|
# },
|
1833
2059
|
# http2_route: {
|
1834
2060
|
# action: { # required
|
@@ -1869,6 +2095,16 @@ module Aws::AppMesh
|
|
1869
2095
|
# },
|
1870
2096
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
1871
2097
|
# },
|
2098
|
+
# timeout: {
|
2099
|
+
# idle: {
|
2100
|
+
# unit: "ms", # accepts ms, s
|
2101
|
+
# value: 1,
|
2102
|
+
# },
|
2103
|
+
# per_request: {
|
2104
|
+
# unit: "ms", # accepts ms, s
|
2105
|
+
# value: 1,
|
2106
|
+
# },
|
2107
|
+
# },
|
1872
2108
|
# },
|
1873
2109
|
# http_route: {
|
1874
2110
|
# action: { # required
|
@@ -1909,6 +2145,16 @@ module Aws::AppMesh
|
|
1909
2145
|
# },
|
1910
2146
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
1911
2147
|
# },
|
2148
|
+
# timeout: {
|
2149
|
+
# idle: {
|
2150
|
+
# unit: "ms", # accepts ms, s
|
2151
|
+
# value: 1,
|
2152
|
+
# },
|
2153
|
+
# per_request: {
|
2154
|
+
# unit: "ms", # accepts ms, s
|
2155
|
+
# value: 1,
|
2156
|
+
# },
|
2157
|
+
# },
|
1912
2158
|
# },
|
1913
2159
|
# priority: 1,
|
1914
2160
|
# tcp_route: {
|
@@ -1920,6 +2166,12 @@ module Aws::AppMesh
|
|
1920
2166
|
# },
|
1921
2167
|
# ],
|
1922
2168
|
# },
|
2169
|
+
# timeout: {
|
2170
|
+
# idle: {
|
2171
|
+
# unit: "ms", # accepts ms, s
|
2172
|
+
# value: 1,
|
2173
|
+
# },
|
2174
|
+
# },
|
1923
2175
|
# },
|
1924
2176
|
# }
|
1925
2177
|
#
|
@@ -1952,6 +2204,7 @@ module Aws::AppMesh
|
|
1952
2204
|
:http_route,
|
1953
2205
|
:priority,
|
1954
2206
|
:tcp_route)
|
2207
|
+
SENSITIVE = []
|
1955
2208
|
include Aws::Structure
|
1956
2209
|
end
|
1957
2210
|
|
@@ -1964,6 +2217,7 @@ module Aws::AppMesh
|
|
1964
2217
|
#
|
1965
2218
|
class CreateVirtualServiceOutput < Struct.new(
|
1966
2219
|
:virtual_service)
|
2220
|
+
SENSITIVE = []
|
1967
2221
|
include Aws::Structure
|
1968
2222
|
end
|
1969
2223
|
|
@@ -1994,6 +2248,7 @@ module Aws::AppMesh
|
|
1994
2248
|
#
|
1995
2249
|
class FileAccessLog < Struct.new(
|
1996
2250
|
:path)
|
2251
|
+
SENSITIVE = []
|
1997
2252
|
include Aws::Structure
|
1998
2253
|
end
|
1999
2254
|
|
@@ -2014,6 +2269,38 @@ module Aws::AppMesh
|
|
2014
2269
|
#
|
2015
2270
|
class VirtualRouterServiceProvider < Struct.new(
|
2016
2271
|
:virtual_router_name)
|
2272
|
+
SENSITIVE = []
|
2273
|
+
include Aws::Structure
|
2274
|
+
end
|
2275
|
+
|
2276
|
+
# @note When making an API call, you may pass HttpTimeout
|
2277
|
+
# data as a hash:
|
2278
|
+
#
|
2279
|
+
# {
|
2280
|
+
# idle: {
|
2281
|
+
# unit: "ms", # accepts ms, s
|
2282
|
+
# value: 1,
|
2283
|
+
# },
|
2284
|
+
# per_request: {
|
2285
|
+
# unit: "ms", # accepts ms, s
|
2286
|
+
# value: 1,
|
2287
|
+
# },
|
2288
|
+
# }
|
2289
|
+
#
|
2290
|
+
# @!attribute [rw] idle
|
2291
|
+
# An object that represents a duration of time.
|
2292
|
+
# @return [Types::Duration]
|
2293
|
+
#
|
2294
|
+
# @!attribute [rw] per_request
|
2295
|
+
# An object that represents a duration of time.
|
2296
|
+
# @return [Types::Duration]
|
2297
|
+
#
|
2298
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/HttpTimeout AWS API Documentation
|
2299
|
+
#
|
2300
|
+
class HttpTimeout < Struct.new(
|
2301
|
+
:idle,
|
2302
|
+
:per_request)
|
2303
|
+
SENSITIVE = []
|
2017
2304
|
include Aws::Structure
|
2018
2305
|
end
|
2019
2306
|
|
@@ -2034,7 +2321,7 @@ module Aws::AppMesh
|
|
2034
2321
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
2035
2322
|
# is not your own, then it's the ID of the account that shared the
|
2036
2323
|
# mesh with your account. For more information about mesh sharing, see
|
2037
|
-
# [Working with
|
2324
|
+
# [Working with shared meshes][1].
|
2038
2325
|
#
|
2039
2326
|
#
|
2040
2327
|
#
|
@@ -2051,6 +2338,7 @@ module Aws::AppMesh
|
|
2051
2338
|
:mesh_name,
|
2052
2339
|
:mesh_owner,
|
2053
2340
|
:virtual_service_name)
|
2341
|
+
SENSITIVE = []
|
2054
2342
|
include Aws::Structure
|
2055
2343
|
end
|
2056
2344
|
|
@@ -2080,6 +2368,7 @@ module Aws::AppMesh
|
|
2080
2368
|
#
|
2081
2369
|
class TlsValidationContext < Struct.new(
|
2082
2370
|
:trust)
|
2371
|
+
SENSITIVE = []
|
2083
2372
|
include Aws::Structure
|
2084
2373
|
end
|
2085
2374
|
|
@@ -2091,6 +2380,7 @@ module Aws::AppMesh
|
|
2091
2380
|
#
|
2092
2381
|
class DeleteVirtualRouterOutput < Struct.new(
|
2093
2382
|
:virtual_router)
|
2383
|
+
SENSITIVE = []
|
2094
2384
|
include Aws::Structure
|
2095
2385
|
end
|
2096
2386
|
|
@@ -2102,6 +2392,7 @@ module Aws::AppMesh
|
|
2102
2392
|
#
|
2103
2393
|
class DeleteVirtualNodeOutput < Struct.new(
|
2104
2394
|
:virtual_node)
|
2395
|
+
SENSITIVE = []
|
2105
2396
|
include Aws::Structure
|
2106
2397
|
end
|
2107
2398
|
|
@@ -2169,6 +2460,44 @@ module Aws::AppMesh
|
|
2169
2460
|
# port: 1, # required
|
2170
2461
|
# protocol: "grpc", # required, accepts grpc, http, http2, tcp
|
2171
2462
|
# },
|
2463
|
+
# timeout: {
|
2464
|
+
# grpc: {
|
2465
|
+
# idle: {
|
2466
|
+
# unit: "ms", # accepts ms, s
|
2467
|
+
# value: 1,
|
2468
|
+
# },
|
2469
|
+
# per_request: {
|
2470
|
+
# unit: "ms", # accepts ms, s
|
2471
|
+
# value: 1,
|
2472
|
+
# },
|
2473
|
+
# },
|
2474
|
+
# http: {
|
2475
|
+
# idle: {
|
2476
|
+
# unit: "ms", # accepts ms, s
|
2477
|
+
# value: 1,
|
2478
|
+
# },
|
2479
|
+
# per_request: {
|
2480
|
+
# unit: "ms", # accepts ms, s
|
2481
|
+
# value: 1,
|
2482
|
+
# },
|
2483
|
+
# },
|
2484
|
+
# http2: {
|
2485
|
+
# idle: {
|
2486
|
+
# unit: "ms", # accepts ms, s
|
2487
|
+
# value: 1,
|
2488
|
+
# },
|
2489
|
+
# per_request: {
|
2490
|
+
# unit: "ms", # accepts ms, s
|
2491
|
+
# value: 1,
|
2492
|
+
# },
|
2493
|
+
# },
|
2494
|
+
# tcp: {
|
2495
|
+
# idle: {
|
2496
|
+
# unit: "ms", # accepts ms, s
|
2497
|
+
# value: 1,
|
2498
|
+
# },
|
2499
|
+
# },
|
2500
|
+
# },
|
2172
2501
|
# tls: {
|
2173
2502
|
# certificate: { # required
|
2174
2503
|
# acm: {
|
@@ -2226,7 +2555,7 @@ module Aws::AppMesh
|
|
2226
2555
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
2227
2556
|
# is not your own, then it's the ID of the account that shared the
|
2228
2557
|
# mesh with your account. For more information about mesh sharing, see
|
2229
|
-
# [Working with
|
2558
|
+
# [Working with shared meshes][1].
|
2230
2559
|
#
|
2231
2560
|
#
|
2232
2561
|
#
|
@@ -2250,6 +2579,7 @@ module Aws::AppMesh
|
|
2250
2579
|
:mesh_owner,
|
2251
2580
|
:spec,
|
2252
2581
|
:virtual_node_name)
|
2582
|
+
SENSITIVE = []
|
2253
2583
|
include Aws::Structure
|
2254
2584
|
end
|
2255
2585
|
|
@@ -2293,6 +2623,7 @@ module Aws::AppMesh
|
|
2293
2623
|
class ListenerTls < Struct.new(
|
2294
2624
|
:certificate,
|
2295
2625
|
:mode)
|
2626
|
+
SENSITIVE = []
|
2296
2627
|
include Aws::Structure
|
2297
2628
|
end
|
2298
2629
|
|
@@ -2311,6 +2642,7 @@ module Aws::AppMesh
|
|
2311
2642
|
#
|
2312
2643
|
class DeleteMeshInput < Struct.new(
|
2313
2644
|
:mesh_name)
|
2645
|
+
SENSITIVE = []
|
2314
2646
|
include Aws::Structure
|
2315
2647
|
end
|
2316
2648
|
|
@@ -2358,7 +2690,7 @@ module Aws::AppMesh
|
|
2358
2690
|
# is not your own, then the account that you specify must share the
|
2359
2691
|
# mesh with your account before you can create the resource in the
|
2360
2692
|
# service mesh. For more information about mesh sharing, see [Working
|
2361
|
-
# with
|
2693
|
+
# with shared meshes][1].
|
2362
2694
|
#
|
2363
2695
|
#
|
2364
2696
|
#
|
@@ -2390,6 +2722,7 @@ module Aws::AppMesh
|
|
2390
2722
|
:spec,
|
2391
2723
|
:tags,
|
2392
2724
|
:virtual_service_name)
|
2725
|
+
SENSITIVE = []
|
2393
2726
|
include Aws::Structure
|
2394
2727
|
end
|
2395
2728
|
|
@@ -2430,7 +2763,7 @@ module Aws::AppMesh
|
|
2430
2763
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
2431
2764
|
# is not your own, then it's the ID of the account that shared the
|
2432
2765
|
# mesh with your account. For more information about mesh sharing, see
|
2433
|
-
# [Working with
|
2766
|
+
# [Working with shared meshes][1].
|
2434
2767
|
#
|
2435
2768
|
#
|
2436
2769
|
#
|
@@ -2454,6 +2787,7 @@ module Aws::AppMesh
|
|
2454
2787
|
:mesh_owner,
|
2455
2788
|
:spec,
|
2456
2789
|
:virtual_router_name)
|
2790
|
+
SENSITIVE = []
|
2457
2791
|
include Aws::Structure
|
2458
2792
|
end
|
2459
2793
|
|
@@ -2496,6 +2830,7 @@ module Aws::AppMesh
|
|
2496
2830
|
:limit,
|
2497
2831
|
:next_token,
|
2498
2832
|
:resource_arn)
|
2833
|
+
SENSITIVE = []
|
2499
2834
|
include Aws::Structure
|
2500
2835
|
end
|
2501
2836
|
|
@@ -2508,6 +2843,7 @@ module Aws::AppMesh
|
|
2508
2843
|
#
|
2509
2844
|
class ServiceUnavailableException < Struct.new(
|
2510
2845
|
:message)
|
2846
|
+
SENSITIVE = []
|
2511
2847
|
include Aws::Structure
|
2512
2848
|
end
|
2513
2849
|
|
@@ -2519,6 +2855,7 @@ module Aws::AppMesh
|
|
2519
2855
|
#
|
2520
2856
|
class DescribeMeshOutput < Struct.new(
|
2521
2857
|
:mesh)
|
2858
|
+
SENSITIVE = []
|
2522
2859
|
include Aws::Structure
|
2523
2860
|
end
|
2524
2861
|
|
@@ -2539,7 +2876,7 @@ module Aws::AppMesh
|
|
2539
2876
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
2540
2877
|
# is not your own, then it's the ID of the account that shared the
|
2541
2878
|
# mesh with your account. For more information about mesh sharing, see
|
2542
|
-
# [Working with
|
2879
|
+
# [Working with shared meshes][1].
|
2543
2880
|
#
|
2544
2881
|
#
|
2545
2882
|
#
|
@@ -2556,6 +2893,7 @@ module Aws::AppMesh
|
|
2556
2893
|
:mesh_name,
|
2557
2894
|
:mesh_owner,
|
2558
2895
|
:virtual_router_name)
|
2896
|
+
SENSITIVE = []
|
2559
2897
|
include Aws::Structure
|
2560
2898
|
end
|
2561
2899
|
|
@@ -2577,7 +2915,7 @@ module Aws::AppMesh
|
|
2577
2915
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
2578
2916
|
# is not your own, then it's the ID of the account that shared the
|
2579
2917
|
# mesh with your account. For more information about mesh sharing, see
|
2580
|
-
# [Working with
|
2918
|
+
# [Working with shared meshes][1].
|
2581
2919
|
#
|
2582
2920
|
#
|
2583
2921
|
#
|
@@ -2599,6 +2937,7 @@ module Aws::AppMesh
|
|
2599
2937
|
:mesh_owner,
|
2600
2938
|
:route_name,
|
2601
2939
|
:virtual_router_name)
|
2940
|
+
SENSITIVE = []
|
2602
2941
|
include Aws::Structure
|
2603
2942
|
end
|
2604
2943
|
|
@@ -2610,6 +2949,7 @@ module Aws::AppMesh
|
|
2610
2949
|
#
|
2611
2950
|
class DeleteRouteOutput < Struct.new(
|
2612
2951
|
:route)
|
2952
|
+
SENSITIVE = []
|
2613
2953
|
include Aws::Structure
|
2614
2954
|
end
|
2615
2955
|
|
@@ -2650,7 +2990,7 @@ module Aws::AppMesh
|
|
2650
2990
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
2651
2991
|
# is not your own, then it's the ID of the account that shared the
|
2652
2992
|
# mesh with your account. For more information about mesh sharing, see
|
2653
|
-
# [Working with
|
2993
|
+
# [Working with shared meshes][1].
|
2654
2994
|
#
|
2655
2995
|
#
|
2656
2996
|
#
|
@@ -2674,6 +3014,7 @@ module Aws::AppMesh
|
|
2674
3014
|
:mesh_owner,
|
2675
3015
|
:spec,
|
2676
3016
|
:virtual_service_name)
|
3017
|
+
SENSITIVE = []
|
2677
3018
|
include Aws::Structure
|
2678
3019
|
end
|
2679
3020
|
|
@@ -2685,6 +3026,7 @@ module Aws::AppMesh
|
|
2685
3026
|
#
|
2686
3027
|
class UpdateRouteOutput < Struct.new(
|
2687
3028
|
:route)
|
3029
|
+
SENSITIVE = []
|
2688
3030
|
include Aws::Structure
|
2689
3031
|
end
|
2690
3032
|
|
@@ -2711,6 +3053,7 @@ module Aws::AppMesh
|
|
2711
3053
|
#
|
2712
3054
|
class HttpRouteAction < Struct.new(
|
2713
3055
|
:weighted_targets)
|
3056
|
+
SENSITIVE = []
|
2714
3057
|
include Aws::Structure
|
2715
3058
|
end
|
2716
3059
|
|
@@ -2744,7 +3087,7 @@ module Aws::AppMesh
|
|
2744
3087
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
2745
3088
|
# is not your own, then it's the ID of the account that shared the
|
2746
3089
|
# mesh with your account. For more information about mesh sharing, see
|
2747
|
-
# [Working with
|
3090
|
+
# [Working with shared meshes][1].
|
2748
3091
|
#
|
2749
3092
|
#
|
2750
3093
|
#
|
@@ -2770,6 +3113,7 @@ module Aws::AppMesh
|
|
2770
3113
|
:mesh_owner,
|
2771
3114
|
:next_token,
|
2772
3115
|
:virtual_router_name)
|
3116
|
+
SENSITIVE = []
|
2773
3117
|
include Aws::Structure
|
2774
3118
|
end
|
2775
3119
|
|
@@ -2780,6 +3124,16 @@ module Aws::AppMesh
|
|
2780
3124
|
# The full Amazon Resource Name (ARN) for the virtual service.
|
2781
3125
|
# @return [String]
|
2782
3126
|
#
|
3127
|
+
# @!attribute [rw] created_at
|
3128
|
+
# The Unix epoch timestamp in seconds for when the resource was
|
3129
|
+
# created.
|
3130
|
+
# @return [Time]
|
3131
|
+
#
|
3132
|
+
# @!attribute [rw] last_updated_at
|
3133
|
+
# The Unix epoch timestamp in seconds for when the resource was last
|
3134
|
+
# updated.
|
3135
|
+
# @return [Time]
|
3136
|
+
#
|
2783
3137
|
# @!attribute [rw] mesh_name
|
2784
3138
|
# The name of the service mesh that the virtual service resides in.
|
2785
3139
|
# @return [String]
|
@@ -2788,7 +3142,7 @@ module Aws::AppMesh
|
|
2788
3142
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
2789
3143
|
# is not your own, then it's the ID of the account that shared the
|
2790
3144
|
# mesh with your account. For more information about mesh sharing, see
|
2791
|
-
# [Working with
|
3145
|
+
# [Working with shared meshes][1].
|
2792
3146
|
#
|
2793
3147
|
#
|
2794
3148
|
#
|
@@ -2797,15 +3151,20 @@ module Aws::AppMesh
|
|
2797
3151
|
#
|
2798
3152
|
# @!attribute [rw] resource_owner
|
2799
3153
|
# The AWS IAM account ID of the resource owner. If the account ID is
|
2800
|
-
# not your own, then it's the ID of the mesh owner
|
3154
|
+
# not your own, then it's the ID of the mesh owner or of another
|
2801
3155
|
# account that the mesh is shared with. For more information about
|
2802
|
-
# mesh sharing, see [Working with
|
3156
|
+
# mesh sharing, see [Working with shared meshes][1].
|
2803
3157
|
#
|
2804
3158
|
#
|
2805
3159
|
#
|
2806
3160
|
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
|
2807
3161
|
# @return [String]
|
2808
3162
|
#
|
3163
|
+
# @!attribute [rw] version
|
3164
|
+
# The version of the resource. Resources are created at version 1, and
|
3165
|
+
# this version is incremented each time that they're updated.
|
3166
|
+
# @return [Integer]
|
3167
|
+
#
|
2809
3168
|
# @!attribute [rw] virtual_service_name
|
2810
3169
|
# The name of the virtual service.
|
2811
3170
|
# @return [String]
|
@@ -2814,10 +3173,45 @@ module Aws::AppMesh
|
|
2814
3173
|
#
|
2815
3174
|
class VirtualServiceRef < Struct.new(
|
2816
3175
|
:arn,
|
3176
|
+
:created_at,
|
3177
|
+
:last_updated_at,
|
2817
3178
|
:mesh_name,
|
2818
3179
|
:mesh_owner,
|
2819
3180
|
:resource_owner,
|
3181
|
+
:version,
|
2820
3182
|
:virtual_service_name)
|
3183
|
+
SENSITIVE = []
|
3184
|
+
include Aws::Structure
|
3185
|
+
end
|
3186
|
+
|
3187
|
+
# @note When making an API call, you may pass GrpcTimeout
|
3188
|
+
# data as a hash:
|
3189
|
+
#
|
3190
|
+
# {
|
3191
|
+
# idle: {
|
3192
|
+
# unit: "ms", # accepts ms, s
|
3193
|
+
# value: 1,
|
3194
|
+
# },
|
3195
|
+
# per_request: {
|
3196
|
+
# unit: "ms", # accepts ms, s
|
3197
|
+
# value: 1,
|
3198
|
+
# },
|
3199
|
+
# }
|
3200
|
+
#
|
3201
|
+
# @!attribute [rw] idle
|
3202
|
+
# An object that represents a duration of time.
|
3203
|
+
# @return [Types::Duration]
|
3204
|
+
#
|
3205
|
+
# @!attribute [rw] per_request
|
3206
|
+
# An object that represents a duration of time.
|
3207
|
+
# @return [Types::Duration]
|
3208
|
+
#
|
3209
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/GrpcTimeout AWS API Documentation
|
3210
|
+
#
|
3211
|
+
class GrpcTimeout < Struct.new(
|
3212
|
+
:idle,
|
3213
|
+
:per_request)
|
3214
|
+
SENSITIVE = []
|
2821
3215
|
include Aws::Structure
|
2822
3216
|
end
|
2823
3217
|
|
@@ -2831,6 +3225,7 @@ module Aws::AppMesh
|
|
2831
3225
|
#
|
2832
3226
|
class VirtualNodeStatus < Struct.new(
|
2833
3227
|
:status)
|
3228
|
+
SENSITIVE = []
|
2834
3229
|
include Aws::Structure
|
2835
3230
|
end
|
2836
3231
|
|
@@ -2841,6 +3236,16 @@ module Aws::AppMesh
|
|
2841
3236
|
# The full Amazon Resource Name (ARN) for the virtual router.
|
2842
3237
|
# @return [String]
|
2843
3238
|
#
|
3239
|
+
# @!attribute [rw] created_at
|
3240
|
+
# The Unix epoch timestamp in seconds for when the resource was
|
3241
|
+
# created.
|
3242
|
+
# @return [Time]
|
3243
|
+
#
|
3244
|
+
# @!attribute [rw] last_updated_at
|
3245
|
+
# The Unix epoch timestamp in seconds for when the resource was last
|
3246
|
+
# updated.
|
3247
|
+
# @return [Time]
|
3248
|
+
#
|
2844
3249
|
# @!attribute [rw] mesh_name
|
2845
3250
|
# The name of the service mesh that the virtual router resides in.
|
2846
3251
|
# @return [String]
|
@@ -2849,7 +3254,7 @@ module Aws::AppMesh
|
|
2849
3254
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
2850
3255
|
# is not your own, then it's the ID of the account that shared the
|
2851
3256
|
# mesh with your account. For more information about mesh sharing, see
|
2852
|
-
# [Working with
|
3257
|
+
# [Working with shared meshes][1].
|
2853
3258
|
#
|
2854
3259
|
#
|
2855
3260
|
#
|
@@ -2858,15 +3263,20 @@ module Aws::AppMesh
|
|
2858
3263
|
#
|
2859
3264
|
# @!attribute [rw] resource_owner
|
2860
3265
|
# The AWS IAM account ID of the resource owner. If the account ID is
|
2861
|
-
# not your own, then it's the ID of the mesh owner
|
3266
|
+
# not your own, then it's the ID of the mesh owner or of another
|
2862
3267
|
# account that the mesh is shared with. For more information about
|
2863
|
-
# mesh sharing, see [Working with
|
3268
|
+
# mesh sharing, see [Working with shared meshes][1].
|
2864
3269
|
#
|
2865
3270
|
#
|
2866
3271
|
#
|
2867
3272
|
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
|
2868
3273
|
# @return [String]
|
2869
3274
|
#
|
3275
|
+
# @!attribute [rw] version
|
3276
|
+
# The version of the resource. Resources are created at version 1, and
|
3277
|
+
# this version is incremented each time that they're updated.
|
3278
|
+
# @return [Integer]
|
3279
|
+
#
|
2870
3280
|
# @!attribute [rw] virtual_router_name
|
2871
3281
|
# The name of the virtual router.
|
2872
3282
|
# @return [String]
|
@@ -2875,10 +3285,14 @@ module Aws::AppMesh
|
|
2875
3285
|
#
|
2876
3286
|
class VirtualRouterRef < Struct.new(
|
2877
3287
|
:arn,
|
3288
|
+
:created_at,
|
3289
|
+
:last_updated_at,
|
2878
3290
|
:mesh_name,
|
2879
3291
|
:mesh_owner,
|
2880
3292
|
:resource_owner,
|
3293
|
+
:version,
|
2881
3294
|
:virtual_router_name)
|
3295
|
+
SENSITIVE = []
|
2882
3296
|
include Aws::Structure
|
2883
3297
|
end
|
2884
3298
|
|
@@ -2913,6 +3327,7 @@ module Aws::AppMesh
|
|
2913
3327
|
:spec,
|
2914
3328
|
:status,
|
2915
3329
|
:virtual_service_name)
|
3330
|
+
SENSITIVE = []
|
2916
3331
|
include Aws::Structure
|
2917
3332
|
end
|
2918
3333
|
|
@@ -2956,6 +3371,7 @@ module Aws::AppMesh
|
|
2956
3371
|
:invert,
|
2957
3372
|
:match,
|
2958
3373
|
:name)
|
3374
|
+
SENSITIVE = []
|
2959
3375
|
include Aws::Structure
|
2960
3376
|
end
|
2961
3377
|
|
@@ -2965,6 +3381,16 @@ module Aws::AppMesh
|
|
2965
3381
|
# The full Amazon Resource Name (ARN) for the virtual node.
|
2966
3382
|
# @return [String]
|
2967
3383
|
#
|
3384
|
+
# @!attribute [rw] created_at
|
3385
|
+
# The Unix epoch timestamp in seconds for when the resource was
|
3386
|
+
# created.
|
3387
|
+
# @return [Time]
|
3388
|
+
#
|
3389
|
+
# @!attribute [rw] last_updated_at
|
3390
|
+
# The Unix epoch timestamp in seconds for when the resource was last
|
3391
|
+
# updated.
|
3392
|
+
# @return [Time]
|
3393
|
+
#
|
2968
3394
|
# @!attribute [rw] mesh_name
|
2969
3395
|
# The name of the service mesh that the virtual node resides in.
|
2970
3396
|
# @return [String]
|
@@ -2973,7 +3399,7 @@ module Aws::AppMesh
|
|
2973
3399
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
2974
3400
|
# is not your own, then it's the ID of the account that shared the
|
2975
3401
|
# mesh with your account. For more information about mesh sharing, see
|
2976
|
-
# [Working with
|
3402
|
+
# [Working with shared meshes][1].
|
2977
3403
|
#
|
2978
3404
|
#
|
2979
3405
|
#
|
@@ -2982,15 +3408,20 @@ module Aws::AppMesh
|
|
2982
3408
|
#
|
2983
3409
|
# @!attribute [rw] resource_owner
|
2984
3410
|
# The AWS IAM account ID of the resource owner. If the account ID is
|
2985
|
-
# not your own, then it's the ID of the mesh owner
|
3411
|
+
# not your own, then it's the ID of the mesh owner or of another
|
2986
3412
|
# account that the mesh is shared with. For more information about
|
2987
|
-
# mesh sharing, see [Working with
|
3413
|
+
# mesh sharing, see [Working with shared meshes][1].
|
2988
3414
|
#
|
2989
3415
|
#
|
2990
3416
|
#
|
2991
3417
|
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
|
2992
3418
|
# @return [String]
|
2993
3419
|
#
|
3420
|
+
# @!attribute [rw] version
|
3421
|
+
# The version of the resource. Resources are created at version 1, and
|
3422
|
+
# this version is incremented each time that they're updated.
|
3423
|
+
# @return [Integer]
|
3424
|
+
#
|
2994
3425
|
# @!attribute [rw] virtual_node_name
|
2995
3426
|
# The name of the virtual node.
|
2996
3427
|
# @return [String]
|
@@ -2999,10 +3430,14 @@ module Aws::AppMesh
|
|
2999
3430
|
#
|
3000
3431
|
class VirtualNodeRef < Struct.new(
|
3001
3432
|
:arn,
|
3433
|
+
:created_at,
|
3434
|
+
:last_updated_at,
|
3002
3435
|
:mesh_name,
|
3003
3436
|
:mesh_owner,
|
3004
3437
|
:resource_owner,
|
3438
|
+
:version,
|
3005
3439
|
:virtual_node_name)
|
3440
|
+
SENSITIVE = []
|
3006
3441
|
include Aws::Structure
|
3007
3442
|
end
|
3008
3443
|
|
@@ -3057,6 +3492,7 @@ module Aws::AppMesh
|
|
3057
3492
|
:mesh_name,
|
3058
3493
|
:spec,
|
3059
3494
|
:tags)
|
3495
|
+
SENSITIVE = []
|
3060
3496
|
include Aws::Structure
|
3061
3497
|
end
|
3062
3498
|
|
@@ -3083,6 +3519,7 @@ module Aws::AppMesh
|
|
3083
3519
|
#
|
3084
3520
|
class GrpcRouteAction < Struct.new(
|
3085
3521
|
:weighted_targets)
|
3522
|
+
SENSITIVE = []
|
3086
3523
|
include Aws::Structure
|
3087
3524
|
end
|
3088
3525
|
|
@@ -3091,7 +3528,7 @@ module Aws::AppMesh
|
|
3091
3528
|
#
|
3092
3529
|
#
|
3093
3530
|
#
|
3094
|
-
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/
|
3531
|
+
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html
|
3095
3532
|
#
|
3096
3533
|
# @!attribute [rw] message
|
3097
3534
|
# @return [String]
|
@@ -3100,6 +3537,7 @@ module Aws::AppMesh
|
|
3100
3537
|
#
|
3101
3538
|
class LimitExceededException < Struct.new(
|
3102
3539
|
:message)
|
3540
|
+
SENSITIVE = []
|
3103
3541
|
include Aws::Structure
|
3104
3542
|
end
|
3105
3543
|
|
@@ -3112,6 +3550,7 @@ module Aws::AppMesh
|
|
3112
3550
|
#
|
3113
3551
|
class UpdateMeshOutput < Struct.new(
|
3114
3552
|
:mesh)
|
3553
|
+
SENSITIVE = []
|
3115
3554
|
include Aws::Structure
|
3116
3555
|
end
|
3117
3556
|
|
@@ -3161,6 +3600,7 @@ module Aws::AppMesh
|
|
3161
3600
|
:range,
|
3162
3601
|
:regex,
|
3163
3602
|
:suffix)
|
3603
|
+
SENSITIVE = []
|
3164
3604
|
include Aws::Structure
|
3165
3605
|
end
|
3166
3606
|
|
@@ -3181,7 +3621,7 @@ module Aws::AppMesh
|
|
3181
3621
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
3182
3622
|
# is not your own, then it's the ID of the account that shared the
|
3183
3623
|
# mesh with your account. For more information about mesh sharing, see
|
3184
|
-
# [Working with
|
3624
|
+
# [Working with shared meshes][1].
|
3185
3625
|
#
|
3186
3626
|
#
|
3187
3627
|
#
|
@@ -3198,6 +3638,7 @@ module Aws::AppMesh
|
|
3198
3638
|
:mesh_name,
|
3199
3639
|
:mesh_owner,
|
3200
3640
|
:virtual_service_name)
|
3641
|
+
SENSITIVE = []
|
3201
3642
|
include Aws::Structure
|
3202
3643
|
end
|
3203
3644
|
|
@@ -3229,6 +3670,7 @@ module Aws::AppMesh
|
|
3229
3670
|
class AwsCloudMapInstanceAttribute < Struct.new(
|
3230
3671
|
:key,
|
3231
3672
|
:value)
|
3673
|
+
SENSITIVE = []
|
3232
3674
|
include Aws::Structure
|
3233
3675
|
end
|
3234
3676
|
|
@@ -3257,6 +3699,7 @@ module Aws::AppMesh
|
|
3257
3699
|
#
|
3258
3700
|
class VirtualServiceSpec < Struct.new(
|
3259
3701
|
:provider)
|
3702
|
+
SENSITIVE = []
|
3260
3703
|
include Aws::Structure
|
3261
3704
|
end
|
3262
3705
|
|
@@ -3286,6 +3729,7 @@ module Aws::AppMesh
|
|
3286
3729
|
class MatchRange < Struct.new(
|
3287
3730
|
:end,
|
3288
3731
|
:start)
|
3732
|
+
SENSITIVE = []
|
3289
3733
|
include Aws::Structure
|
3290
3734
|
end
|
3291
3735
|
|
@@ -3303,16 +3747,27 @@ module Aws::AppMesh
|
|
3303
3747
|
# },
|
3304
3748
|
# ],
|
3305
3749
|
# },
|
3750
|
+
# timeout: {
|
3751
|
+
# idle: {
|
3752
|
+
# unit: "ms", # accepts ms, s
|
3753
|
+
# value: 1,
|
3754
|
+
# },
|
3755
|
+
# },
|
3306
3756
|
# }
|
3307
3757
|
#
|
3308
3758
|
# @!attribute [rw] action
|
3309
3759
|
# The action to take if a match is determined.
|
3310
3760
|
# @return [Types::TcpRouteAction]
|
3311
3761
|
#
|
3762
|
+
# @!attribute [rw] timeout
|
3763
|
+
# @return [Types::TcpTimeout]
|
3764
|
+
#
|
3312
3765
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/TcpRoute AWS API Documentation
|
3313
3766
|
#
|
3314
3767
|
class TcpRoute < Struct.new(
|
3315
|
-
:action
|
3768
|
+
:action,
|
3769
|
+
:timeout)
|
3770
|
+
SENSITIVE = []
|
3316
3771
|
include Aws::Structure
|
3317
3772
|
end
|
3318
3773
|
|
@@ -3345,7 +3800,7 @@ module Aws::AppMesh
|
|
3345
3800
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
3346
3801
|
# is not your own, then it's the ID of the account that shared the
|
3347
3802
|
# mesh with your account. For more information about mesh sharing, see
|
3348
|
-
# [Working with
|
3803
|
+
# [Working with shared meshes][1].
|
3349
3804
|
#
|
3350
3805
|
#
|
3351
3806
|
#
|
@@ -3366,6 +3821,7 @@ module Aws::AppMesh
|
|
3366
3821
|
:mesh_name,
|
3367
3822
|
:mesh_owner,
|
3368
3823
|
:next_token)
|
3824
|
+
SENSITIVE = []
|
3369
3825
|
include Aws::Structure
|
3370
3826
|
end
|
3371
3827
|
|
@@ -3398,7 +3854,7 @@ module Aws::AppMesh
|
|
3398
3854
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
3399
3855
|
# is not your own, then it's the ID of the account that shared the
|
3400
3856
|
# mesh with your account. For more information about mesh sharing, see
|
3401
|
-
# [Working with
|
3857
|
+
# [Working with shared meshes][1].
|
3402
3858
|
#
|
3403
3859
|
#
|
3404
3860
|
#
|
@@ -3419,6 +3875,7 @@ module Aws::AppMesh
|
|
3419
3875
|
:mesh_name,
|
3420
3876
|
:mesh_owner,
|
3421
3877
|
:next_token)
|
3878
|
+
SENSITIVE = []
|
3422
3879
|
include Aws::Structure
|
3423
3880
|
end
|
3424
3881
|
|
@@ -3442,6 +3899,7 @@ module Aws::AppMesh
|
|
3442
3899
|
#
|
3443
3900
|
class AccessLog < Struct.new(
|
3444
3901
|
:file)
|
3902
|
+
SENSITIVE = []
|
3445
3903
|
include Aws::Structure
|
3446
3904
|
end
|
3447
3905
|
|
@@ -3474,7 +3932,7 @@ module Aws::AppMesh
|
|
3474
3932
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
3475
3933
|
# is not your own, then it's the ID of the account that shared the
|
3476
3934
|
# mesh with your account. For more information about mesh sharing, see
|
3477
|
-
# [Working with
|
3935
|
+
# [Working with shared meshes][1].
|
3478
3936
|
#
|
3479
3937
|
#
|
3480
3938
|
#
|
@@ -3495,6 +3953,7 @@ module Aws::AppMesh
|
|
3495
3953
|
:mesh_name,
|
3496
3954
|
:mesh_owner,
|
3497
3955
|
:next_token)
|
3956
|
+
SENSITIVE = []
|
3498
3957
|
include Aws::Structure
|
3499
3958
|
end
|
3500
3959
|
|
@@ -3509,6 +3968,7 @@ module Aws::AppMesh
|
|
3509
3968
|
#
|
3510
3969
|
class TooManyRequestsException < Struct.new(
|
3511
3970
|
:message)
|
3971
|
+
SENSITIVE = []
|
3512
3972
|
include Aws::Structure
|
3513
3973
|
end
|
3514
3974
|
|
@@ -3535,6 +3995,7 @@ module Aws::AppMesh
|
|
3535
3995
|
class Duration < Struct.new(
|
3536
3996
|
:unit,
|
3537
3997
|
:value)
|
3998
|
+
SENSITIVE = []
|
3538
3999
|
include Aws::Structure
|
3539
4000
|
end
|
3540
4001
|
|
@@ -3546,6 +4007,7 @@ module Aws::AppMesh
|
|
3546
4007
|
#
|
3547
4008
|
class DescribeRouteOutput < Struct.new(
|
3548
4009
|
:route)
|
4010
|
+
SENSITIVE = []
|
3549
4011
|
include Aws::Structure
|
3550
4012
|
end
|
3551
4013
|
|
@@ -3605,6 +4067,7 @@ module Aws::AppMesh
|
|
3605
4067
|
:method,
|
3606
4068
|
:prefix,
|
3607
4069
|
:scheme)
|
4070
|
+
SENSITIVE = []
|
3608
4071
|
include Aws::Structure
|
3609
4072
|
end
|
3610
4073
|
|
@@ -3638,6 +4101,7 @@ module Aws::AppMesh
|
|
3638
4101
|
class TagRef < Struct.new(
|
3639
4102
|
:key,
|
3640
4103
|
:value)
|
4104
|
+
SENSITIVE = []
|
3641
4105
|
include Aws::Structure
|
3642
4106
|
end
|
3643
4107
|
|
@@ -3647,6 +4111,16 @@ module Aws::AppMesh
|
|
3647
4111
|
# The full Amazon Resource Name (ARN) of the service mesh.
|
3648
4112
|
# @return [String]
|
3649
4113
|
#
|
4114
|
+
# @!attribute [rw] created_at
|
4115
|
+
# The Unix epoch timestamp in seconds for when the resource was
|
4116
|
+
# created.
|
4117
|
+
# @return [Time]
|
4118
|
+
#
|
4119
|
+
# @!attribute [rw] last_updated_at
|
4120
|
+
# The Unix epoch timestamp in seconds for when the resource was last
|
4121
|
+
# updated.
|
4122
|
+
# @return [Time]
|
4123
|
+
#
|
3650
4124
|
# @!attribute [rw] mesh_name
|
3651
4125
|
# The name of the service mesh.
|
3652
4126
|
# @return [String]
|
@@ -3655,7 +4129,7 @@ module Aws::AppMesh
|
|
3655
4129
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
3656
4130
|
# is not your own, then it's the ID of the account that shared the
|
3657
4131
|
# mesh with your account. For more information about mesh sharing, see
|
3658
|
-
# [Working with
|
4132
|
+
# [Working with shared meshes][1].
|
3659
4133
|
#
|
3660
4134
|
#
|
3661
4135
|
#
|
@@ -3664,22 +4138,31 @@ module Aws::AppMesh
|
|
3664
4138
|
#
|
3665
4139
|
# @!attribute [rw] resource_owner
|
3666
4140
|
# The AWS IAM account ID of the resource owner. If the account ID is
|
3667
|
-
# not your own, then it's the ID of the mesh owner
|
4141
|
+
# not your own, then it's the ID of the mesh owner or of another
|
3668
4142
|
# account that the mesh is shared with. For more information about
|
3669
|
-
# mesh sharing, see [Working with
|
4143
|
+
# mesh sharing, see [Working with shared meshes][1].
|
3670
4144
|
#
|
3671
4145
|
#
|
3672
4146
|
#
|
3673
4147
|
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
|
3674
4148
|
# @return [String]
|
3675
4149
|
#
|
4150
|
+
# @!attribute [rw] version
|
4151
|
+
# The version of the resource. Resources are created at version 1, and
|
4152
|
+
# this version is incremented each time that they're updated.
|
4153
|
+
# @return [Integer]
|
4154
|
+
#
|
3676
4155
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/MeshRef AWS API Documentation
|
3677
4156
|
#
|
3678
4157
|
class MeshRef < Struct.new(
|
3679
4158
|
:arn,
|
4159
|
+
:created_at,
|
4160
|
+
:last_updated_at,
|
3680
4161
|
:mesh_name,
|
3681
4162
|
:mesh_owner,
|
3682
|
-
:resource_owner
|
4163
|
+
:resource_owner,
|
4164
|
+
:version)
|
4165
|
+
SENSITIVE = []
|
3683
4166
|
include Aws::Structure
|
3684
4167
|
end
|
3685
4168
|
|
@@ -3709,6 +4192,7 @@ module Aws::AppMesh
|
|
3709
4192
|
:metadata,
|
3710
4193
|
:spec,
|
3711
4194
|
:status)
|
4195
|
+
SENSITIVE = []
|
3712
4196
|
include Aws::Structure
|
3713
4197
|
end
|
3714
4198
|
|
@@ -3722,6 +4206,7 @@ module Aws::AppMesh
|
|
3722
4206
|
#
|
3723
4207
|
class VirtualRouterStatus < Struct.new(
|
3724
4208
|
:status)
|
4209
|
+
SENSITIVE = []
|
3725
4210
|
include Aws::Structure
|
3726
4211
|
end
|
3727
4212
|
|
@@ -3748,6 +4233,7 @@ module Aws::AppMesh
|
|
3748
4233
|
#
|
3749
4234
|
class TcpRouteAction < Struct.new(
|
3750
4235
|
:weighted_targets)
|
4236
|
+
SENSITIVE = []
|
3751
4237
|
include Aws::Structure
|
3752
4238
|
end
|
3753
4239
|
|
@@ -3768,7 +4254,7 @@ module Aws::AppMesh
|
|
3768
4254
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
3769
4255
|
# is not your own, then it's the ID of the account that shared the
|
3770
4256
|
# mesh with your account. For more information about mesh sharing, see
|
3771
|
-
# [Working with
|
4257
|
+
# [Working with shared meshes][1].
|
3772
4258
|
#
|
3773
4259
|
#
|
3774
4260
|
#
|
@@ -3785,6 +4271,7 @@ module Aws::AppMesh
|
|
3785
4271
|
:mesh_name,
|
3786
4272
|
:mesh_owner,
|
3787
4273
|
:virtual_node_name)
|
4274
|
+
SENSITIVE = []
|
3788
4275
|
include Aws::Structure
|
3789
4276
|
end
|
3790
4277
|
|
@@ -3798,6 +4285,7 @@ module Aws::AppMesh
|
|
3798
4285
|
#
|
3799
4286
|
class RouteStatus < Struct.new(
|
3800
4287
|
:status)
|
4288
|
+
SENSITIVE = []
|
3801
4289
|
include Aws::Structure
|
3802
4290
|
end
|
3803
4291
|
|
@@ -3820,6 +4308,44 @@ module Aws::AppMesh
|
|
3820
4308
|
# port: 1, # required
|
3821
4309
|
# protocol: "grpc", # required, accepts grpc, http, http2, tcp
|
3822
4310
|
# },
|
4311
|
+
# timeout: {
|
4312
|
+
# grpc: {
|
4313
|
+
# idle: {
|
4314
|
+
# unit: "ms", # accepts ms, s
|
4315
|
+
# value: 1,
|
4316
|
+
# },
|
4317
|
+
# per_request: {
|
4318
|
+
# unit: "ms", # accepts ms, s
|
4319
|
+
# value: 1,
|
4320
|
+
# },
|
4321
|
+
# },
|
4322
|
+
# http: {
|
4323
|
+
# idle: {
|
4324
|
+
# unit: "ms", # accepts ms, s
|
4325
|
+
# value: 1,
|
4326
|
+
# },
|
4327
|
+
# per_request: {
|
4328
|
+
# unit: "ms", # accepts ms, s
|
4329
|
+
# value: 1,
|
4330
|
+
# },
|
4331
|
+
# },
|
4332
|
+
# http2: {
|
4333
|
+
# idle: {
|
4334
|
+
# unit: "ms", # accepts ms, s
|
4335
|
+
# value: 1,
|
4336
|
+
# },
|
4337
|
+
# per_request: {
|
4338
|
+
# unit: "ms", # accepts ms, s
|
4339
|
+
# value: 1,
|
4340
|
+
# },
|
4341
|
+
# },
|
4342
|
+
# tcp: {
|
4343
|
+
# idle: {
|
4344
|
+
# unit: "ms", # accepts ms, s
|
4345
|
+
# value: 1,
|
4346
|
+
# },
|
4347
|
+
# },
|
4348
|
+
# },
|
3823
4349
|
# tls: {
|
3824
4350
|
# certificate: { # required
|
3825
4351
|
# acm: {
|
@@ -3842,6 +4368,9 @@ module Aws::AppMesh
|
|
3842
4368
|
# The port mapping information for the listener.
|
3843
4369
|
# @return [Types::PortMapping]
|
3844
4370
|
#
|
4371
|
+
# @!attribute [rw] timeout
|
4372
|
+
# @return [Types::ListenerTimeout]
|
4373
|
+
#
|
3845
4374
|
# @!attribute [rw] tls
|
3846
4375
|
# A reference to an object that represents the Transport Layer
|
3847
4376
|
# Security (TLS) properties for a listener.
|
@@ -3852,7 +4381,9 @@ module Aws::AppMesh
|
|
3852
4381
|
class Listener < Struct.new(
|
3853
4382
|
:health_check,
|
3854
4383
|
:port_mapping,
|
4384
|
+
:timeout,
|
3855
4385
|
:tls)
|
4386
|
+
SENSITIVE = []
|
3856
4387
|
include Aws::Structure
|
3857
4388
|
end
|
3858
4389
|
|
@@ -3900,6 +4431,16 @@ module Aws::AppMesh
|
|
3900
4431
|
# },
|
3901
4432
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
3902
4433
|
# },
|
4434
|
+
# timeout: {
|
4435
|
+
# idle: {
|
4436
|
+
# unit: "ms", # accepts ms, s
|
4437
|
+
# value: 1,
|
4438
|
+
# },
|
4439
|
+
# per_request: {
|
4440
|
+
# unit: "ms", # accepts ms, s
|
4441
|
+
# value: 1,
|
4442
|
+
# },
|
4443
|
+
# },
|
3903
4444
|
# }
|
3904
4445
|
#
|
3905
4446
|
# @!attribute [rw] action
|
@@ -3916,12 +4457,17 @@ module Aws::AppMesh
|
|
3916
4457
|
# An object that represents a retry policy.
|
3917
4458
|
# @return [Types::GrpcRetryPolicy]
|
3918
4459
|
#
|
4460
|
+
# @!attribute [rw] timeout
|
4461
|
+
# @return [Types::GrpcTimeout]
|
4462
|
+
#
|
3919
4463
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/GrpcRoute AWS API Documentation
|
3920
4464
|
#
|
3921
4465
|
class GrpcRoute < Struct.new(
|
3922
4466
|
:action,
|
3923
4467
|
:match,
|
3924
|
-
:retry_policy
|
4468
|
+
:retry_policy,
|
4469
|
+
:timeout)
|
4470
|
+
SENSITIVE = []
|
3925
4471
|
include Aws::Structure
|
3926
4472
|
end
|
3927
4473
|
|
@@ -3952,7 +4498,7 @@ module Aws::AppMesh
|
|
3952
4498
|
# @return [Boolean]
|
3953
4499
|
#
|
3954
4500
|
# @!attribute [rw] ports
|
3955
|
-
#
|
4501
|
+
# One or more ports that the policy is enforced for.
|
3956
4502
|
# @return [Array<Integer>]
|
3957
4503
|
#
|
3958
4504
|
# @!attribute [rw] validation
|
@@ -3965,6 +4511,7 @@ module Aws::AppMesh
|
|
3965
4511
|
:enforce,
|
3966
4512
|
:ports,
|
3967
4513
|
:validation)
|
4514
|
+
SENSITIVE = []
|
3968
4515
|
include Aws::Structure
|
3969
4516
|
end
|
3970
4517
|
|
@@ -3976,6 +4523,7 @@ module Aws::AppMesh
|
|
3976
4523
|
#
|
3977
4524
|
class DeleteVirtualServiceOutput < Struct.new(
|
3978
4525
|
:virtual_service)
|
4526
|
+
SENSITIVE = []
|
3979
4527
|
include Aws::Structure
|
3980
4528
|
end
|
3981
4529
|
|
@@ -3996,6 +4544,7 @@ module Aws::AppMesh
|
|
3996
4544
|
#
|
3997
4545
|
class VirtualNodeServiceProvider < Struct.new(
|
3998
4546
|
:virtual_node_name)
|
4547
|
+
SENSITIVE = []
|
3999
4548
|
include Aws::Structure
|
4000
4549
|
end
|
4001
4550
|
|
@@ -4031,6 +4580,7 @@ module Aws::AppMesh
|
|
4031
4580
|
#
|
4032
4581
|
class BackendDefaults < Struct.new(
|
4033
4582
|
:client_policy)
|
4583
|
+
SENSITIVE = []
|
4034
4584
|
include Aws::Structure
|
4035
4585
|
end
|
4036
4586
|
|
@@ -4041,7 +4591,7 @@ module Aws::AppMesh
|
|
4041
4591
|
#
|
4042
4592
|
#
|
4043
4593
|
#
|
4044
|
-
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/
|
4594
|
+
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html#virtual-node-tls-prerequisites
|
4045
4595
|
#
|
4046
4596
|
# @note When making an API call, you may pass ListenerTlsFileCertificate
|
4047
4597
|
# data as a hash:
|
@@ -4065,6 +4615,7 @@ module Aws::AppMesh
|
|
4065
4615
|
class ListenerTlsFileCertificate < Struct.new(
|
4066
4616
|
:certificate_chain,
|
4067
4617
|
:private_key)
|
4618
|
+
SENSITIVE = []
|
4068
4619
|
include Aws::Structure
|
4069
4620
|
end
|
4070
4621
|
|
@@ -4117,6 +4668,7 @@ module Aws::AppMesh
|
|
4117
4668
|
:max_retries,
|
4118
4669
|
:per_retry_timeout,
|
4119
4670
|
:tcp_retry_events)
|
4671
|
+
SENSITIVE = []
|
4120
4672
|
include Aws::Structure
|
4121
4673
|
end
|
4122
4674
|
|
@@ -4137,7 +4689,7 @@ module Aws::AppMesh
|
|
4137
4689
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
4138
4690
|
# is not your own, then it's the ID of the account that shared the
|
4139
4691
|
# mesh with your account. For more information about mesh sharing, see
|
4140
|
-
# [Working with
|
4692
|
+
# [Working with shared meshes][1].
|
4141
4693
|
#
|
4142
4694
|
#
|
4143
4695
|
#
|
@@ -4154,6 +4706,7 @@ module Aws::AppMesh
|
|
4154
4706
|
:mesh_name,
|
4155
4707
|
:mesh_owner,
|
4156
4708
|
:virtual_router_name)
|
4709
|
+
SENSITIVE = []
|
4157
4710
|
include Aws::Structure
|
4158
4711
|
end
|
4159
4712
|
|
@@ -4173,6 +4726,7 @@ module Aws::AppMesh
|
|
4173
4726
|
#
|
4174
4727
|
class TooManyTagsException < Struct.new(
|
4175
4728
|
:message)
|
4729
|
+
SENSITIVE = []
|
4176
4730
|
include Aws::Structure
|
4177
4731
|
end
|
4178
4732
|
|
@@ -4195,6 +4749,7 @@ module Aws::AppMesh
|
|
4195
4749
|
#
|
4196
4750
|
class TlsValidationContextFileTrust < Struct.new(
|
4197
4751
|
:certificate_chain)
|
4752
|
+
SENSITIVE = []
|
4198
4753
|
include Aws::Structure
|
4199
4754
|
end
|
4200
4755
|
|
@@ -4237,6 +4792,7 @@ module Aws::AppMesh
|
|
4237
4792
|
:invert,
|
4238
4793
|
:match,
|
4239
4794
|
:name)
|
4795
|
+
SENSITIVE = []
|
4240
4796
|
include Aws::Structure
|
4241
4797
|
end
|
4242
4798
|
|
@@ -4288,6 +4844,16 @@ module Aws::AppMesh
|
|
4288
4844
|
# },
|
4289
4845
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
4290
4846
|
# },
|
4847
|
+
# timeout: {
|
4848
|
+
# idle: {
|
4849
|
+
# unit: "ms", # accepts ms, s
|
4850
|
+
# value: 1,
|
4851
|
+
# },
|
4852
|
+
# per_request: {
|
4853
|
+
# unit: "ms", # accepts ms, s
|
4854
|
+
# value: 1,
|
4855
|
+
# },
|
4856
|
+
# },
|
4291
4857
|
# },
|
4292
4858
|
# http2_route: {
|
4293
4859
|
# action: { # required
|
@@ -4328,6 +4894,16 @@ module Aws::AppMesh
|
|
4328
4894
|
# },
|
4329
4895
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
4330
4896
|
# },
|
4897
|
+
# timeout: {
|
4898
|
+
# idle: {
|
4899
|
+
# unit: "ms", # accepts ms, s
|
4900
|
+
# value: 1,
|
4901
|
+
# },
|
4902
|
+
# per_request: {
|
4903
|
+
# unit: "ms", # accepts ms, s
|
4904
|
+
# value: 1,
|
4905
|
+
# },
|
4906
|
+
# },
|
4331
4907
|
# },
|
4332
4908
|
# http_route: {
|
4333
4909
|
# action: { # required
|
@@ -4368,6 +4944,16 @@ module Aws::AppMesh
|
|
4368
4944
|
# },
|
4369
4945
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
4370
4946
|
# },
|
4947
|
+
# timeout: {
|
4948
|
+
# idle: {
|
4949
|
+
# unit: "ms", # accepts ms, s
|
4950
|
+
# value: 1,
|
4951
|
+
# },
|
4952
|
+
# per_request: {
|
4953
|
+
# unit: "ms", # accepts ms, s
|
4954
|
+
# value: 1,
|
4955
|
+
# },
|
4956
|
+
# },
|
4371
4957
|
# },
|
4372
4958
|
# priority: 1,
|
4373
4959
|
# tcp_route: {
|
@@ -4379,6 +4965,12 @@ module Aws::AppMesh
|
|
4379
4965
|
# },
|
4380
4966
|
# ],
|
4381
4967
|
# },
|
4968
|
+
# timeout: {
|
4969
|
+
# idle: {
|
4970
|
+
# unit: "ms", # accepts ms, s
|
4971
|
+
# value: 1,
|
4972
|
+
# },
|
4973
|
+
# },
|
4382
4974
|
# },
|
4383
4975
|
# },
|
4384
4976
|
# tags: [
|
@@ -4408,7 +5000,7 @@ module Aws::AppMesh
|
|
4408
5000
|
# is not your own, then the account that you specify must share the
|
4409
5001
|
# mesh with your account before you can create the resource in the
|
4410
5002
|
# service mesh. For more information about mesh sharing, see [Working
|
4411
|
-
# with
|
5003
|
+
# with shared meshes][1].
|
4412
5004
|
#
|
4413
5005
|
#
|
4414
5006
|
#
|
@@ -4447,6 +5039,29 @@ module Aws::AppMesh
|
|
4447
5039
|
:spec,
|
4448
5040
|
:tags,
|
4449
5041
|
:virtual_router_name)
|
5042
|
+
SENSITIVE = []
|
5043
|
+
include Aws::Structure
|
5044
|
+
end
|
5045
|
+
|
5046
|
+
# @note When making an API call, you may pass TcpTimeout
|
5047
|
+
# data as a hash:
|
5048
|
+
#
|
5049
|
+
# {
|
5050
|
+
# idle: {
|
5051
|
+
# unit: "ms", # accepts ms, s
|
5052
|
+
# value: 1,
|
5053
|
+
# },
|
5054
|
+
# }
|
5055
|
+
#
|
5056
|
+
# @!attribute [rw] idle
|
5057
|
+
# An object that represents a duration of time.
|
5058
|
+
# @return [Types::Duration]
|
5059
|
+
#
|
5060
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/TcpTimeout AWS API Documentation
|
5061
|
+
#
|
5062
|
+
class TcpTimeout < Struct.new(
|
5063
|
+
:idle)
|
5064
|
+
SENSITIVE = []
|
4450
5065
|
include Aws::Structure
|
4451
5066
|
end
|
4452
5067
|
|
@@ -4498,6 +5113,16 @@ module Aws::AppMesh
|
|
4498
5113
|
# },
|
4499
5114
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
4500
5115
|
# },
|
5116
|
+
# timeout: {
|
5117
|
+
# idle: {
|
5118
|
+
# unit: "ms", # accepts ms, s
|
5119
|
+
# value: 1,
|
5120
|
+
# },
|
5121
|
+
# per_request: {
|
5122
|
+
# unit: "ms", # accepts ms, s
|
5123
|
+
# value: 1,
|
5124
|
+
# },
|
5125
|
+
# },
|
4501
5126
|
# },
|
4502
5127
|
# http2_route: {
|
4503
5128
|
# action: { # required
|
@@ -4538,6 +5163,16 @@ module Aws::AppMesh
|
|
4538
5163
|
# },
|
4539
5164
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
4540
5165
|
# },
|
5166
|
+
# timeout: {
|
5167
|
+
# idle: {
|
5168
|
+
# unit: "ms", # accepts ms, s
|
5169
|
+
# value: 1,
|
5170
|
+
# },
|
5171
|
+
# per_request: {
|
5172
|
+
# unit: "ms", # accepts ms, s
|
5173
|
+
# value: 1,
|
5174
|
+
# },
|
5175
|
+
# },
|
4541
5176
|
# },
|
4542
5177
|
# http_route: {
|
4543
5178
|
# action: { # required
|
@@ -4578,6 +5213,16 @@ module Aws::AppMesh
|
|
4578
5213
|
# },
|
4579
5214
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
4580
5215
|
# },
|
5216
|
+
# timeout: {
|
5217
|
+
# idle: {
|
5218
|
+
# unit: "ms", # accepts ms, s
|
5219
|
+
# value: 1,
|
5220
|
+
# },
|
5221
|
+
# per_request: {
|
5222
|
+
# unit: "ms", # accepts ms, s
|
5223
|
+
# value: 1,
|
5224
|
+
# },
|
5225
|
+
# },
|
4581
5226
|
# },
|
4582
5227
|
# priority: 1,
|
4583
5228
|
# tcp_route: {
|
@@ -4589,6 +5234,12 @@ module Aws::AppMesh
|
|
4589
5234
|
# },
|
4590
5235
|
# ],
|
4591
5236
|
# },
|
5237
|
+
# timeout: {
|
5238
|
+
# idle: {
|
5239
|
+
# unit: "ms", # accepts ms, s
|
5240
|
+
# value: 1,
|
5241
|
+
# },
|
5242
|
+
# },
|
4592
5243
|
# },
|
4593
5244
|
# },
|
4594
5245
|
# virtual_router_name: "ResourceName", # required
|
@@ -4611,7 +5262,7 @@ module Aws::AppMesh
|
|
4611
5262
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
4612
5263
|
# is not your own, then it's the ID of the account that shared the
|
4613
5264
|
# mesh with your account. For more information about mesh sharing, see
|
4614
|
-
# [Working with
|
5265
|
+
# [Working with shared meshes][1].
|
4615
5266
|
#
|
4616
5267
|
#
|
4617
5268
|
#
|
@@ -4640,6 +5291,7 @@ module Aws::AppMesh
|
|
4640
5291
|
:route_name,
|
4641
5292
|
:spec,
|
4642
5293
|
:virtual_router_name)
|
5294
|
+
SENSITIVE = []
|
4643
5295
|
include Aws::Structure
|
4644
5296
|
end
|
4645
5297
|
|
@@ -4687,6 +5339,16 @@ module Aws::AppMesh
|
|
4687
5339
|
# },
|
4688
5340
|
# tcp_retry_events: ["connection-error"], # accepts connection-error
|
4689
5341
|
# },
|
5342
|
+
# timeout: {
|
5343
|
+
# idle: {
|
5344
|
+
# unit: "ms", # accepts ms, s
|
5345
|
+
# value: 1,
|
5346
|
+
# },
|
5347
|
+
# per_request: {
|
5348
|
+
# unit: "ms", # accepts ms, s
|
5349
|
+
# value: 1,
|
5350
|
+
# },
|
5351
|
+
# },
|
4690
5352
|
# }
|
4691
5353
|
#
|
4692
5354
|
# @!attribute [rw] action
|
@@ -4703,12 +5365,17 @@ module Aws::AppMesh
|
|
4703
5365
|
# An object that represents a retry policy.
|
4704
5366
|
# @return [Types::HttpRetryPolicy]
|
4705
5367
|
#
|
5368
|
+
# @!attribute [rw] timeout
|
5369
|
+
# @return [Types::HttpTimeout]
|
5370
|
+
#
|
4706
5371
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/HttpRoute AWS API Documentation
|
4707
5372
|
#
|
4708
5373
|
class HttpRoute < Struct.new(
|
4709
5374
|
:action,
|
4710
5375
|
:match,
|
4711
|
-
:retry_policy
|
5376
|
+
:retry_policy,
|
5377
|
+
:timeout)
|
5378
|
+
SENSITIVE = []
|
4712
5379
|
include Aws::Structure
|
4713
5380
|
end
|
4714
5381
|
|
@@ -4728,7 +5395,7 @@ module Aws::AppMesh
|
|
4728
5395
|
# The AWS IAM account ID of the service mesh owner. If the account ID
|
4729
5396
|
# is not your own, then it's the ID of the account that shared the
|
4730
5397
|
# mesh with your account. For more information about mesh sharing, see
|
4731
|
-
# [Working with
|
5398
|
+
# [Working with shared meshes][1].
|
4732
5399
|
#
|
4733
5400
|
#
|
4734
5401
|
#
|
@@ -4740,6 +5407,7 @@ module Aws::AppMesh
|
|
4740
5407
|
class DescribeMeshInput < Struct.new(
|
4741
5408
|
:mesh_name,
|
4742
5409
|
:mesh_owner)
|
5410
|
+
SENSITIVE = []
|
4743
5411
|
include Aws::Structure
|
4744
5412
|
end
|
4745
5413
|
|
@@ -4762,6 +5430,7 @@ module Aws::AppMesh
|
|
4762
5430
|
#
|
4763
5431
|
class MeshSpec < Struct.new(
|
4764
5432
|
:egress_filter)
|
5433
|
+
SENSITIVE = []
|
4765
5434
|
include Aws::Structure
|
4766
5435
|
end
|
4767
5436
|
|
@@ -4782,6 +5451,7 @@ module Aws::AppMesh
|
|
4782
5451
|
class ListTagsForResourceOutput < Struct.new(
|
4783
5452
|
:next_token,
|
4784
5453
|
:tags)
|
5454
|
+
SENSITIVE = []
|
4785
5455
|
include Aws::Structure
|
4786
5456
|
end
|
4787
5457
|
|
@@ -4820,6 +5490,7 @@ module Aws::AppMesh
|
|
4820
5490
|
class ServiceDiscovery < Struct.new(
|
4821
5491
|
:aws_cloud_map,
|
4822
5492
|
:dns)
|
5493
|
+
SENSITIVE = []
|
4823
5494
|
include Aws::Structure
|
4824
5495
|
end
|
4825
5496
|
|
@@ -4840,6 +5511,7 @@ module Aws::AppMesh
|
|
4840
5511
|
class ListVirtualNodesOutput < Struct.new(
|
4841
5512
|
:next_token,
|
4842
5513
|
:virtual_nodes)
|
5514
|
+
SENSITIVE = []
|
4843
5515
|
include Aws::Structure
|
4844
5516
|
end
|
4845
5517
|
|
@@ -4864,6 +5536,7 @@ module Aws::AppMesh
|
|
4864
5536
|
class UntagResourceInput < Struct.new(
|
4865
5537
|
:resource_arn,
|
4866
5538
|
:tag_keys)
|
5539
|
+
SENSITIVE = []
|
4867
5540
|
include Aws::Structure
|
4868
5541
|
end
|
4869
5542
|
|
@@ -4884,13 +5557,14 @@ module Aws::AppMesh
|
|
4884
5557
|
#
|
4885
5558
|
#
|
4886
5559
|
#
|
4887
|
-
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/
|
5560
|
+
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html#virtual-node-tls-prerequisites
|
4888
5561
|
# @return [String]
|
4889
5562
|
#
|
4890
5563
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListenerTlsAcmCertificate AWS API Documentation
|
4891
5564
|
#
|
4892
5565
|
class ListenerTlsAcmCertificate < Struct.new(
|
4893
5566
|
:certificate_arn)
|
5567
|
+
SENSITIVE = []
|
4894
5568
|
include Aws::Structure
|
4895
5569
|
end
|
4896
5570
|
|