aws-sdk-appmesh 1.22.0 → 1.23.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 +1 -1
- data/lib/aws-sdk-appmesh/client.rb +45 -27
- data/lib/aws-sdk-appmesh/client_api.rb +16 -0
- data/lib/aws-sdk-appmesh/types.rb +71 -11
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0ab82228a2edf519c8c76641f32d9c15e9ad2d82c356fb278d690dd234bc714e
|
4
|
+
data.tar.gz: afb22324fe01ca5835d0389e7452565ad33f16bc8a7059b592ebcc1e0edb70d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16801252ba8a7f734fdfccf9fda3bb7e0e5029a00665b779dfd65952f4e9dc297d0e4fd9270314bd9f3f44d0b6ccd332d85c18ee2a58a2a44c93700f21211dc8
|
7
|
+
data.tar.gz: 6eda00ce46ea636cf9ee75c090ce354028f38e168819a91f225780a62636e924ff9cde53d922e66cd1199872ea3618d748d97cf5993c2d73d2956ce9b708ef1a
|
data/lib/aws-sdk-appmesh.rb
CHANGED
@@ -308,12 +308,19 @@ module Aws::AppMesh
|
|
308
308
|
|
309
309
|
# @!group API Operations
|
310
310
|
|
311
|
-
# Creates a service mesh.
|
312
|
-
# network traffic between the services that reside within it.
|
311
|
+
# Creates a service mesh.
|
313
312
|
#
|
314
|
-
#
|
315
|
-
#
|
316
|
-
#
|
313
|
+
# A service mesh is a logical boundary for network traffic between
|
314
|
+
# services that are represented by resources within the mesh. After you
|
315
|
+
# create your service mesh, you can create virtual services, virtual
|
316
|
+
# nodes, virtual routers, and routes to distribute traffic between the
|
317
|
+
# applications in your mesh.
|
318
|
+
#
|
319
|
+
# For more information about service meshes, see [Service meshes][1].
|
320
|
+
#
|
321
|
+
#
|
322
|
+
#
|
323
|
+
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/meshes.html
|
317
324
|
#
|
318
325
|
# @option params [String] :client_token
|
319
326
|
# Unique, case-sensitive identifier that you provide to ensure the
|
@@ -382,13 +389,8 @@ module Aws::AppMesh
|
|
382
389
|
|
383
390
|
# Creates a route that is associated with a virtual router.
|
384
391
|
#
|
385
|
-
# You can
|
386
|
-
#
|
387
|
-
# name is `my-service.local` and you want the route to match requests to
|
388
|
-
# `my-service.local/metrics`, your prefix should be `/metrics`.
|
389
|
-
#
|
390
|
-
# If your route matches a request, you can distribute traffic to one or
|
391
|
-
# more target virtual nodes with relative weighting.
|
392
|
+
# You can route several different protocols and define a retry policy
|
393
|
+
# for a route. Traffic can be routed to one or more virtual nodes.
|
392
394
|
#
|
393
395
|
# For more information about routes, see [Routes][1].
|
394
396
|
#
|
@@ -688,11 +690,13 @@ module Aws::AppMesh
|
|
688
690
|
# A virtual node acts as a logical pointer to a particular task group,
|
689
691
|
# such as an Amazon ECS service or a Kubernetes deployment. When you
|
690
692
|
# create a virtual node, you can specify the service discovery
|
691
|
-
# information for your task group
|
693
|
+
# information for your task group, and whether the proxy running in a
|
694
|
+
# task group will communicate with other proxies using Transport Layer
|
695
|
+
# Security (TLS).
|
692
696
|
#
|
693
|
-
#
|
694
|
-
#
|
695
|
-
# to
|
697
|
+
# You define a `listener` for any inbound traffic that your virtual node
|
698
|
+
# expects. Any virtual service that your virtual node expects to
|
699
|
+
# communicate to is specified as a `backend`.
|
696
700
|
#
|
697
701
|
# The response metadata for your new virtual node contains the `arn`
|
698
702
|
# that is associated with the virtual node. Set this value (either the
|
@@ -710,7 +714,7 @@ module Aws::AppMesh
|
|
710
714
|
#
|
711
715
|
# </note>
|
712
716
|
#
|
713
|
-
# For more information about virtual nodes, see [Virtual
|
717
|
+
# For more information about virtual nodes, see [Virtual nodes][1].
|
714
718
|
#
|
715
719
|
#
|
716
720
|
#
|
@@ -923,15 +927,14 @@ module Aws::AppMesh
|
|
923
927
|
|
924
928
|
# Creates a virtual router within a service mesh.
|
925
929
|
#
|
926
|
-
#
|
927
|
-
#
|
928
|
-
#
|
929
|
-
#
|
930
|
-
#
|
931
|
-
#
|
932
|
-
# different virtual nodes.
|
930
|
+
# Specify a `listener` for any inbound traffic that your virtual router
|
931
|
+
# receives. Create a virtual router for each protocol and port that you
|
932
|
+
# need to route. Virtual routers handle traffic for one or more virtual
|
933
|
+
# services within your mesh. After you create your virtual router,
|
934
|
+
# create and associate routes for your virtual router that direct
|
935
|
+
# incoming requests to different virtual nodes.
|
933
936
|
#
|
934
|
-
# For more information about virtual routers, see [Virtual
|
937
|
+
# For more information about virtual routers, see [Virtual routers][1].
|
935
938
|
#
|
936
939
|
#
|
937
940
|
#
|
@@ -1036,7 +1039,7 @@ module Aws::AppMesh
|
|
1036
1039
|
# virtual service.
|
1037
1040
|
#
|
1038
1041
|
# For more information about virtual services, see [Virtual
|
1039
|
-
#
|
1042
|
+
# services][1].
|
1040
1043
|
#
|
1041
1044
|
#
|
1042
1045
|
#
|
@@ -1915,9 +1918,12 @@ module Aws::AppMesh
|
|
1915
1918
|
#
|
1916
1919
|
# resp.meshes #=> Array
|
1917
1920
|
# resp.meshes[0].arn #=> String
|
1921
|
+
# resp.meshes[0].created_at #=> Time
|
1922
|
+
# resp.meshes[0].last_updated_at #=> Time
|
1918
1923
|
# resp.meshes[0].mesh_name #=> String
|
1919
1924
|
# resp.meshes[0].mesh_owner #=> String
|
1920
1925
|
# resp.meshes[0].resource_owner #=> String
|
1926
|
+
# resp.meshes[0].version #=> Integer
|
1921
1927
|
# resp.next_token #=> String
|
1922
1928
|
#
|
1923
1929
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListMeshes AWS API Documentation
|
@@ -1985,10 +1991,13 @@ module Aws::AppMesh
|
|
1985
1991
|
# resp.next_token #=> String
|
1986
1992
|
# resp.routes #=> Array
|
1987
1993
|
# resp.routes[0].arn #=> String
|
1994
|
+
# resp.routes[0].created_at #=> Time
|
1995
|
+
# resp.routes[0].last_updated_at #=> Time
|
1988
1996
|
# resp.routes[0].mesh_name #=> String
|
1989
1997
|
# resp.routes[0].mesh_owner #=> String
|
1990
1998
|
# resp.routes[0].resource_owner #=> String
|
1991
1999
|
# resp.routes[0].route_name #=> String
|
2000
|
+
# resp.routes[0].version #=> Integer
|
1992
2001
|
# resp.routes[0].virtual_router_name #=> String
|
1993
2002
|
#
|
1994
2003
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListRoutes AWS API Documentation
|
@@ -2105,9 +2114,12 @@ module Aws::AppMesh
|
|
2105
2114
|
# resp.next_token #=> String
|
2106
2115
|
# resp.virtual_nodes #=> Array
|
2107
2116
|
# resp.virtual_nodes[0].arn #=> String
|
2117
|
+
# resp.virtual_nodes[0].created_at #=> Time
|
2118
|
+
# resp.virtual_nodes[0].last_updated_at #=> Time
|
2108
2119
|
# resp.virtual_nodes[0].mesh_name #=> String
|
2109
2120
|
# resp.virtual_nodes[0].mesh_owner #=> String
|
2110
2121
|
# resp.virtual_nodes[0].resource_owner #=> String
|
2122
|
+
# resp.virtual_nodes[0].version #=> Integer
|
2111
2123
|
# resp.virtual_nodes[0].virtual_node_name #=> String
|
2112
2124
|
#
|
2113
2125
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualNodes AWS API Documentation
|
@@ -2171,9 +2183,12 @@ module Aws::AppMesh
|
|
2171
2183
|
# resp.next_token #=> String
|
2172
2184
|
# resp.virtual_routers #=> Array
|
2173
2185
|
# resp.virtual_routers[0].arn #=> String
|
2186
|
+
# resp.virtual_routers[0].created_at #=> Time
|
2187
|
+
# resp.virtual_routers[0].last_updated_at #=> Time
|
2174
2188
|
# resp.virtual_routers[0].mesh_name #=> String
|
2175
2189
|
# resp.virtual_routers[0].mesh_owner #=> String
|
2176
2190
|
# resp.virtual_routers[0].resource_owner #=> String
|
2191
|
+
# resp.virtual_routers[0].version #=> Integer
|
2177
2192
|
# resp.virtual_routers[0].virtual_router_name #=> String
|
2178
2193
|
#
|
2179
2194
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualRouters AWS API Documentation
|
@@ -2237,9 +2252,12 @@ module Aws::AppMesh
|
|
2237
2252
|
# resp.next_token #=> String
|
2238
2253
|
# resp.virtual_services #=> Array
|
2239
2254
|
# resp.virtual_services[0].arn #=> String
|
2255
|
+
# resp.virtual_services[0].created_at #=> Time
|
2256
|
+
# resp.virtual_services[0].last_updated_at #=> Time
|
2240
2257
|
# resp.virtual_services[0].mesh_name #=> String
|
2241
2258
|
# resp.virtual_services[0].mesh_owner #=> String
|
2242
2259
|
# resp.virtual_services[0].resource_owner #=> String
|
2260
|
+
# resp.virtual_services[0].version #=> Integer
|
2243
2261
|
# resp.virtual_services[0].virtual_service_name #=> String
|
2244
2262
|
#
|
2245
2263
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualServices AWS API Documentation
|
@@ -3004,7 +3022,7 @@ module Aws::AppMesh
|
|
3004
3022
|
params: params,
|
3005
3023
|
config: config)
|
3006
3024
|
context[:gem_name] = 'aws-sdk-appmesh'
|
3007
|
-
context[:gem_version] = '1.
|
3025
|
+
context[:gem_version] = '1.23.0'
|
3008
3026
|
Seahorse::Client::Request.new(handlers, context)
|
3009
3027
|
end
|
3010
3028
|
|
@@ -610,9 +610,12 @@ module Aws::AppMesh
|
|
610
610
|
MeshList.member = Shapes::ShapeRef.new(shape: MeshRef)
|
611
611
|
|
612
612
|
MeshRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
613
|
+
MeshRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
614
|
+
MeshRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
613
615
|
MeshRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
614
616
|
MeshRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
615
617
|
MeshRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
618
|
+
MeshRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
616
619
|
MeshRef.struct_class = Types::MeshRef
|
617
620
|
|
618
621
|
MeshSpec.add_member(:egress_filter, Shapes::ShapeRef.new(shape: EgressFilter, location_name: "egressFilter"))
|
@@ -653,10 +656,13 @@ module Aws::AppMesh
|
|
653
656
|
RouteList.member = Shapes::ShapeRef.new(shape: RouteRef)
|
654
657
|
|
655
658
|
RouteRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
659
|
+
RouteRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
660
|
+
RouteRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
656
661
|
RouteRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
657
662
|
RouteRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
658
663
|
RouteRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
659
664
|
RouteRef.add_member(:route_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "routeName"))
|
665
|
+
RouteRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
660
666
|
RouteRef.add_member(:virtual_router_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualRouterName"))
|
661
667
|
RouteRef.struct_class = Types::RouteRef
|
662
668
|
|
@@ -793,9 +799,12 @@ module Aws::AppMesh
|
|
793
799
|
VirtualNodeList.member = Shapes::ShapeRef.new(shape: VirtualNodeRef)
|
794
800
|
|
795
801
|
VirtualNodeRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
802
|
+
VirtualNodeRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
803
|
+
VirtualNodeRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
796
804
|
VirtualNodeRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
797
805
|
VirtualNodeRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
798
806
|
VirtualNodeRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
807
|
+
VirtualNodeRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
799
808
|
VirtualNodeRef.add_member(:virtual_node_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualNodeName"))
|
800
809
|
VirtualNodeRef.struct_class = Types::VirtualNodeRef
|
801
810
|
|
@@ -827,9 +836,12 @@ module Aws::AppMesh
|
|
827
836
|
VirtualRouterListeners.member = Shapes::ShapeRef.new(shape: VirtualRouterListener)
|
828
837
|
|
829
838
|
VirtualRouterRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
839
|
+
VirtualRouterRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
840
|
+
VirtualRouterRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
830
841
|
VirtualRouterRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
831
842
|
VirtualRouterRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
832
843
|
VirtualRouterRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
844
|
+
VirtualRouterRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
833
845
|
VirtualRouterRef.add_member(:virtual_router_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualRouterName"))
|
834
846
|
VirtualRouterRef.struct_class = Types::VirtualRouterRef
|
835
847
|
|
@@ -860,9 +872,12 @@ module Aws::AppMesh
|
|
860
872
|
VirtualServiceProvider.struct_class = Types::VirtualServiceProvider
|
861
873
|
|
862
874
|
VirtualServiceRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
875
|
+
VirtualServiceRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
876
|
+
VirtualServiceRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
863
877
|
VirtualServiceRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
864
878
|
VirtualServiceRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
865
879
|
VirtualServiceRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
880
|
+
VirtualServiceRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
866
881
|
VirtualServiceRef.add_member(:virtual_service_name, Shapes::ShapeRef.new(shape: ServiceName, required: true, location_name: "virtualServiceName"))
|
867
882
|
VirtualServiceRef.struct_class = Types::VirtualServiceRef
|
868
883
|
|
@@ -1046,6 +1061,7 @@ module Aws::AppMesh
|
|
1046
1061
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1047
1062
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1048
1063
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1064
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1049
1065
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1050
1066
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1051
1067
|
end)
|
@@ -184,7 +184,7 @@ module Aws::AppMesh
|
|
184
184
|
#
|
185
185
|
# @!attribute [rw] resource_owner
|
186
186
|
# 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
|
187
|
+
# not your own, then it's the ID of the mesh owner or of another
|
188
188
|
# account that the mesh is shared with. For more information about
|
189
189
|
# mesh sharing, see [Working with Shared Meshes][1].
|
190
190
|
#
|
@@ -1203,6 +1203,12 @@ module Aws::AppMesh
|
|
1203
1203
|
# The full Amazon Resource Name (ARN) for the route.
|
1204
1204
|
# @return [String]
|
1205
1205
|
#
|
1206
|
+
# @!attribute [rw] created_at
|
1207
|
+
# @return [Time]
|
1208
|
+
#
|
1209
|
+
# @!attribute [rw] last_updated_at
|
1210
|
+
# @return [Time]
|
1211
|
+
#
|
1206
1212
|
# @!attribute [rw] mesh_name
|
1207
1213
|
# The name of the service mesh that the route resides in.
|
1208
1214
|
# @return [String]
|
@@ -1220,7 +1226,7 @@ module Aws::AppMesh
|
|
1220
1226
|
#
|
1221
1227
|
# @!attribute [rw] resource_owner
|
1222
1228
|
# 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
|
1229
|
+
# not your own, then it's the ID of the mesh owner or of another
|
1224
1230
|
# account that the mesh is shared with. For more information about
|
1225
1231
|
# mesh sharing, see [Working with Shared Meshes][1].
|
1226
1232
|
#
|
@@ -1233,6 +1239,9 @@ module Aws::AppMesh
|
|
1233
1239
|
# The name of the route.
|
1234
1240
|
# @return [String]
|
1235
1241
|
#
|
1242
|
+
# @!attribute [rw] version
|
1243
|
+
# @return [Integer]
|
1244
|
+
#
|
1236
1245
|
# @!attribute [rw] virtual_router_name
|
1237
1246
|
# The virtual router that the route is associated with.
|
1238
1247
|
# @return [String]
|
@@ -1241,10 +1250,13 @@ module Aws::AppMesh
|
|
1241
1250
|
#
|
1242
1251
|
class RouteRef < Struct.new(
|
1243
1252
|
:arn,
|
1253
|
+
:created_at,
|
1254
|
+
:last_updated_at,
|
1244
1255
|
:mesh_name,
|
1245
1256
|
:mesh_owner,
|
1246
1257
|
:resource_owner,
|
1247
1258
|
:route_name,
|
1259
|
+
:version,
|
1248
1260
|
:virtual_router_name)
|
1249
1261
|
include Aws::Structure
|
1250
1262
|
end
|
@@ -2780,6 +2792,12 @@ module Aws::AppMesh
|
|
2780
2792
|
# The full Amazon Resource Name (ARN) for the virtual service.
|
2781
2793
|
# @return [String]
|
2782
2794
|
#
|
2795
|
+
# @!attribute [rw] created_at
|
2796
|
+
# @return [Time]
|
2797
|
+
#
|
2798
|
+
# @!attribute [rw] last_updated_at
|
2799
|
+
# @return [Time]
|
2800
|
+
#
|
2783
2801
|
# @!attribute [rw] mesh_name
|
2784
2802
|
# The name of the service mesh that the virtual service resides in.
|
2785
2803
|
# @return [String]
|
@@ -2797,7 +2815,7 @@ module Aws::AppMesh
|
|
2797
2815
|
#
|
2798
2816
|
# @!attribute [rw] resource_owner
|
2799
2817
|
# 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
|
2818
|
+
# not your own, then it's the ID of the mesh owner or of another
|
2801
2819
|
# account that the mesh is shared with. For more information about
|
2802
2820
|
# mesh sharing, see [Working with Shared Meshes][1].
|
2803
2821
|
#
|
@@ -2806,6 +2824,9 @@ module Aws::AppMesh
|
|
2806
2824
|
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
|
2807
2825
|
# @return [String]
|
2808
2826
|
#
|
2827
|
+
# @!attribute [rw] version
|
2828
|
+
# @return [Integer]
|
2829
|
+
#
|
2809
2830
|
# @!attribute [rw] virtual_service_name
|
2810
2831
|
# The name of the virtual service.
|
2811
2832
|
# @return [String]
|
@@ -2814,9 +2835,12 @@ module Aws::AppMesh
|
|
2814
2835
|
#
|
2815
2836
|
class VirtualServiceRef < Struct.new(
|
2816
2837
|
:arn,
|
2838
|
+
:created_at,
|
2839
|
+
:last_updated_at,
|
2817
2840
|
:mesh_name,
|
2818
2841
|
:mesh_owner,
|
2819
2842
|
:resource_owner,
|
2843
|
+
:version,
|
2820
2844
|
:virtual_service_name)
|
2821
2845
|
include Aws::Structure
|
2822
2846
|
end
|
@@ -2841,6 +2865,12 @@ module Aws::AppMesh
|
|
2841
2865
|
# The full Amazon Resource Name (ARN) for the virtual router.
|
2842
2866
|
# @return [String]
|
2843
2867
|
#
|
2868
|
+
# @!attribute [rw] created_at
|
2869
|
+
# @return [Time]
|
2870
|
+
#
|
2871
|
+
# @!attribute [rw] last_updated_at
|
2872
|
+
# @return [Time]
|
2873
|
+
#
|
2844
2874
|
# @!attribute [rw] mesh_name
|
2845
2875
|
# The name of the service mesh that the virtual router resides in.
|
2846
2876
|
# @return [String]
|
@@ -2858,7 +2888,7 @@ module Aws::AppMesh
|
|
2858
2888
|
#
|
2859
2889
|
# @!attribute [rw] resource_owner
|
2860
2890
|
# 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
|
2891
|
+
# not your own, then it's the ID of the mesh owner or of another
|
2862
2892
|
# account that the mesh is shared with. For more information about
|
2863
2893
|
# mesh sharing, see [Working with Shared Meshes][1].
|
2864
2894
|
#
|
@@ -2867,6 +2897,9 @@ module Aws::AppMesh
|
|
2867
2897
|
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
|
2868
2898
|
# @return [String]
|
2869
2899
|
#
|
2900
|
+
# @!attribute [rw] version
|
2901
|
+
# @return [Integer]
|
2902
|
+
#
|
2870
2903
|
# @!attribute [rw] virtual_router_name
|
2871
2904
|
# The name of the virtual router.
|
2872
2905
|
# @return [String]
|
@@ -2875,9 +2908,12 @@ module Aws::AppMesh
|
|
2875
2908
|
#
|
2876
2909
|
class VirtualRouterRef < Struct.new(
|
2877
2910
|
:arn,
|
2911
|
+
:created_at,
|
2912
|
+
:last_updated_at,
|
2878
2913
|
:mesh_name,
|
2879
2914
|
:mesh_owner,
|
2880
2915
|
:resource_owner,
|
2916
|
+
:version,
|
2881
2917
|
:virtual_router_name)
|
2882
2918
|
include Aws::Structure
|
2883
2919
|
end
|
@@ -2965,6 +3001,12 @@ module Aws::AppMesh
|
|
2965
3001
|
# The full Amazon Resource Name (ARN) for the virtual node.
|
2966
3002
|
# @return [String]
|
2967
3003
|
#
|
3004
|
+
# @!attribute [rw] created_at
|
3005
|
+
# @return [Time]
|
3006
|
+
#
|
3007
|
+
# @!attribute [rw] last_updated_at
|
3008
|
+
# @return [Time]
|
3009
|
+
#
|
2968
3010
|
# @!attribute [rw] mesh_name
|
2969
3011
|
# The name of the service mesh that the virtual node resides in.
|
2970
3012
|
# @return [String]
|
@@ -2982,7 +3024,7 @@ module Aws::AppMesh
|
|
2982
3024
|
#
|
2983
3025
|
# @!attribute [rw] resource_owner
|
2984
3026
|
# 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
|
3027
|
+
# not your own, then it's the ID of the mesh owner or of another
|
2986
3028
|
# account that the mesh is shared with. For more information about
|
2987
3029
|
# mesh sharing, see [Working with Shared Meshes][1].
|
2988
3030
|
#
|
@@ -2991,6 +3033,9 @@ module Aws::AppMesh
|
|
2991
3033
|
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
|
2992
3034
|
# @return [String]
|
2993
3035
|
#
|
3036
|
+
# @!attribute [rw] version
|
3037
|
+
# @return [Integer]
|
3038
|
+
#
|
2994
3039
|
# @!attribute [rw] virtual_node_name
|
2995
3040
|
# The name of the virtual node.
|
2996
3041
|
# @return [String]
|
@@ -2999,9 +3044,12 @@ module Aws::AppMesh
|
|
2999
3044
|
#
|
3000
3045
|
class VirtualNodeRef < Struct.new(
|
3001
3046
|
:arn,
|
3047
|
+
:created_at,
|
3048
|
+
:last_updated_at,
|
3002
3049
|
:mesh_name,
|
3003
3050
|
:mesh_owner,
|
3004
3051
|
:resource_owner,
|
3052
|
+
:version,
|
3005
3053
|
:virtual_node_name)
|
3006
3054
|
include Aws::Structure
|
3007
3055
|
end
|
@@ -3091,7 +3139,7 @@ module Aws::AppMesh
|
|
3091
3139
|
#
|
3092
3140
|
#
|
3093
3141
|
#
|
3094
|
-
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/
|
3142
|
+
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html
|
3095
3143
|
#
|
3096
3144
|
# @!attribute [rw] message
|
3097
3145
|
# @return [String]
|
@@ -3647,6 +3695,12 @@ module Aws::AppMesh
|
|
3647
3695
|
# The full Amazon Resource Name (ARN) of the service mesh.
|
3648
3696
|
# @return [String]
|
3649
3697
|
#
|
3698
|
+
# @!attribute [rw] created_at
|
3699
|
+
# @return [Time]
|
3700
|
+
#
|
3701
|
+
# @!attribute [rw] last_updated_at
|
3702
|
+
# @return [Time]
|
3703
|
+
#
|
3650
3704
|
# @!attribute [rw] mesh_name
|
3651
3705
|
# The name of the service mesh.
|
3652
3706
|
# @return [String]
|
@@ -3664,7 +3718,7 @@ module Aws::AppMesh
|
|
3664
3718
|
#
|
3665
3719
|
# @!attribute [rw] resource_owner
|
3666
3720
|
# 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
|
3721
|
+
# not your own, then it's the ID of the mesh owner or of another
|
3668
3722
|
# account that the mesh is shared with. For more information about
|
3669
3723
|
# mesh sharing, see [Working with Shared Meshes][1].
|
3670
3724
|
#
|
@@ -3673,13 +3727,19 @@ module Aws::AppMesh
|
|
3673
3727
|
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
|
3674
3728
|
# @return [String]
|
3675
3729
|
#
|
3730
|
+
# @!attribute [rw] version
|
3731
|
+
# @return [Integer]
|
3732
|
+
#
|
3676
3733
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/MeshRef AWS API Documentation
|
3677
3734
|
#
|
3678
3735
|
class MeshRef < Struct.new(
|
3679
3736
|
:arn,
|
3737
|
+
:created_at,
|
3738
|
+
:last_updated_at,
|
3680
3739
|
:mesh_name,
|
3681
3740
|
:mesh_owner,
|
3682
|
-
:resource_owner
|
3741
|
+
:resource_owner,
|
3742
|
+
:version)
|
3683
3743
|
include Aws::Structure
|
3684
3744
|
end
|
3685
3745
|
|
@@ -3952,7 +4012,7 @@ module Aws::AppMesh
|
|
3952
4012
|
# @return [Boolean]
|
3953
4013
|
#
|
3954
4014
|
# @!attribute [rw] ports
|
3955
|
-
#
|
4015
|
+
# One or more ports that the policy is enforced for.
|
3956
4016
|
# @return [Array<Integer>]
|
3957
4017
|
#
|
3958
4018
|
# @!attribute [rw] validation
|
@@ -4041,7 +4101,7 @@ module Aws::AppMesh
|
|
4041
4101
|
#
|
4042
4102
|
#
|
4043
4103
|
#
|
4044
|
-
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/
|
4104
|
+
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html#virtual-node-tls-prerequisites
|
4045
4105
|
#
|
4046
4106
|
# @note When making an API call, you may pass ListenerTlsFileCertificate
|
4047
4107
|
# data as a hash:
|
@@ -4884,7 +4944,7 @@ module Aws::AppMesh
|
|
4884
4944
|
#
|
4885
4945
|
#
|
4886
4946
|
#
|
4887
|
-
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/
|
4947
|
+
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html#virtual-node-tls-prerequisites
|
4888
4948
|
# @return [String]
|
4889
4949
|
#
|
4890
4950
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListenerTlsAcmCertificate AWS API Documentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-appmesh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.23.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-05-
|
11
|
+
date: 2020-05-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|