aws-sdk-appmesh 1.19.1 → 1.20.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 91e8cc5300f6d8387308b04870e5187acbeaebfa
4
- data.tar.gz: 292b44b84ab6d0c9a5830588f33fb50bdef917a8
3
+ metadata.gz: d3d4d5586bbc847ed7d734d98a222b3f7a16322b
4
+ data.tar.gz: 22b646003a7e8bcb6c6e108a779cb1abb934067e
5
5
  SHA512:
6
- metadata.gz: 8b95c6a7c98f230fae48c2a7a1208de2628e98ac318456a490c0de3cc31d2ee5e25d3f36322c78b13c88ec8b046680e03d861dd81a71293affd7aae3e154c21b
7
- data.tar.gz: f64d16da91da184b2d272554e88094b5d192c6ce3e2727c647197219d0ec5ade881e8b79f1c7235c90cc86832b9ba4006d3f7245b7669184e17115ff285b7441
6
+ metadata.gz: ad495190244e51c8e0ce7e7e57a1da7f5cb442ba59b960a3731f5cd87bf6abaf01d5450af73739c834a89379ffb07134d3b41fbc5e091b363f93c2de1dedb5bb
7
+ data.tar.gz: 47bfd62aba18b8352cb052448d178f3d2176076dc2971ed34243bf09dbfc7c530f394c865624b4e575bf0639848d3d159105c219c3fef6c45685b384834d4e96
@@ -24,17 +24,20 @@ require_relative 'aws-sdk-appmesh/customizations'
24
24
  # methods each accept a hash of request parameters and return a response
25
25
  # structure.
26
26
  #
27
+ # app_mesh = Aws::AppMesh::Client.new
28
+ # resp = app_mesh.create_mesh(params)
29
+ #
27
30
  # See {Client} for more information.
28
31
  #
29
32
  # # Errors
30
33
  #
31
- # Errors returned from AWS App Mesh all
32
- # extend {Errors::ServiceError}.
34
+ # Errors returned from AWS App Mesh are defined in the
35
+ # {Errors} module and all extend {Errors::ServiceError}.
33
36
  #
34
37
  # begin
35
38
  # # do stuff
36
39
  # rescue Aws::AppMesh::Errors::ServiceError
37
- # # rescues all service API errors
40
+ # # rescues all AWS App Mesh API errors
38
41
  # end
39
42
  #
40
43
  # See {Errors} for more information.
@@ -42,6 +45,6 @@ require_relative 'aws-sdk-appmesh/customizations'
42
45
  # @service
43
46
  module Aws::AppMesh
44
47
 
45
- GEM_VERSION = '1.19.1'
48
+ GEM_VERSION = '1.20.0'
46
49
 
47
50
  end
@@ -30,6 +30,16 @@ require 'aws-sdk-core/plugins/protocols/rest_json.rb'
30
30
  Aws::Plugins::GlobalConfiguration.add_identifier(:appmesh)
31
31
 
32
32
  module Aws::AppMesh
33
+ # An API client for AppMesh. To construct a client, you need to configure a +:region+ and +:credentials+.
34
+ # client = Aws::AppMesh::Client.new(
35
+ # region: region_name,
36
+ # credentials: credentials,
37
+ # # ...
38
+ # )
39
+ # For details on configuring region and credentials see
40
+ # the {developer-guide}[https://docs.aws.amazon.com/sdk-for-ruby/v3/developer-guide/setup-config.html].
41
+ #
42
+ # See {#initialize} for a full list of supported configuration options.
33
43
  class Client < Seahorse::Client::Base
34
44
 
35
45
  include Aws::ClientStubs
@@ -209,16 +219,16 @@ module Aws::AppMesh
209
219
  # requests through. Formatted like 'http://proxy.com:123'.
210
220
  #
211
221
  # @option options [Float] :http_open_timeout (15) The number of
212
- # seconds to wait when opening a HTTP session before rasing a
222
+ # seconds to wait when opening a HTTP session before raising a
213
223
  # `Timeout::Error`.
214
224
  #
215
225
  # @option options [Integer] :http_read_timeout (60) The default
216
226
  # number of seconds to wait for response data. This value can
217
227
  # safely be set
218
- # per-request on the session yeidled by {#session_for}.
228
+ # per-request on the session yielded by {#session_for}.
219
229
  #
220
230
  # @option options [Float] :http_idle_timeout (5) The number of
221
- # seconds a connection is allowed to sit idble before it is
231
+ # seconds a connection is allowed to sit idle before it is
222
232
  # considered stale. Stale connections are closed and removed
223
233
  # from the pool before making a request.
224
234
  #
@@ -227,7 +237,7 @@ module Aws::AppMesh
227
237
  # request body. This option has no effect unless the request has
228
238
  # "Expect" header set to "100-continue". Defaults to `nil` which
229
239
  # disables this behaviour. This value can safely be set per
230
- # request on the session yeidled by {#session_for}.
240
+ # request on the session yielded by {#session_for}.
231
241
  #
232
242
  # @option options [Boolean] :http_wire_trace (false) When `true`,
233
243
  # HTTP debug output will be sent to the `:logger`.
@@ -310,6 +320,8 @@ module Aws::AppMesh
310
320
  # resp.mesh.metadata.arn #=> String
311
321
  # resp.mesh.metadata.created_at #=> Time
312
322
  # resp.mesh.metadata.last_updated_at #=> Time
323
+ # resp.mesh.metadata.mesh_owner #=> String
324
+ # resp.mesh.metadata.resource_owner #=> String
313
325
  # resp.mesh.metadata.uid #=> String
314
326
  # resp.mesh.metadata.version #=> Integer
315
327
  # resp.mesh.spec.egress_filter.type #=> String, one of "ALLOW_ALL", "DROP_ALL"
@@ -338,7 +350,7 @@ module Aws::AppMesh
338
350
  #
339
351
  #
340
352
  #
341
- # [1]: https://docs.aws.amazon.com//app-mesh/latest/userguide/routes.html
353
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/routes.html
342
354
  #
343
355
  # @option params [String] :client_token
344
356
  # Unique, case-sensitive identifier that you provide to ensure the
@@ -351,6 +363,17 @@ module Aws::AppMesh
351
363
  # @option params [required, String] :mesh_name
352
364
  # The name of the service mesh to create the route in.
353
365
  #
366
+ # @option params [String] :mesh_owner
367
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
368
+ # not your own, then the account that you specify must share the mesh
369
+ # with your account before you can create the resource in the service
370
+ # mesh. For more information about mesh sharing, see [Working with
371
+ # Shared Meshes][1].
372
+ #
373
+ #
374
+ #
375
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
376
+ #
354
377
  # @option params [required, String] :route_name
355
378
  # The name to use for the route.
356
379
  #
@@ -365,7 +388,9 @@ module Aws::AppMesh
365
388
  # length of 256 characters.
366
389
  #
367
390
  # @option params [required, String] :virtual_router_name
368
- # The name of the virtual router in which to create the route.
391
+ # The name of the virtual router in which to create the route. If the
392
+ # virtual router is in a shared mesh, then you must be the owner of the
393
+ # virtual router resource.
369
394
  #
370
395
  # @return [Types::CreateRouteOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
371
396
  #
@@ -376,6 +401,7 @@ module Aws::AppMesh
376
401
  # resp = client.create_route({
377
402
  # client_token: "String",
378
403
  # mesh_name: "ResourceName", # required
404
+ # mesh_owner: "AccountId",
379
405
  # route_name: "ResourceName", # required
380
406
  # spec: { # required
381
407
  # grpc_route: {
@@ -525,6 +551,8 @@ module Aws::AppMesh
525
551
  # resp.route.metadata.arn #=> String
526
552
  # resp.route.metadata.created_at #=> Time
527
553
  # resp.route.metadata.last_updated_at #=> Time
554
+ # resp.route.metadata.mesh_owner #=> String
555
+ # resp.route.metadata.resource_owner #=> String
528
556
  # resp.route.metadata.uid #=> String
529
557
  # resp.route.metadata.version #=> Integer
530
558
  # resp.route.route_name #=> String
@@ -642,7 +670,7 @@ module Aws::AppMesh
642
670
  #
643
671
  #
644
672
  #
645
- # [1]: https://docs.aws.amazon.com//app-mesh/latest/userguide/virtual_nodes.html
673
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/virtual_nodes.html
646
674
  #
647
675
  # @option params [String] :client_token
648
676
  # Unique, case-sensitive identifier that you provide to ensure the
@@ -655,6 +683,17 @@ module Aws::AppMesh
655
683
  # @option params [required, String] :mesh_name
656
684
  # The name of the service mesh to create the virtual node in.
657
685
  #
686
+ # @option params [String] :mesh_owner
687
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
688
+ # not your own, then the account that you specify must share the mesh
689
+ # with your account before you can create the resource in the service
690
+ # mesh. For more information about mesh sharing, see [Working with
691
+ # Shared Meshes][1].
692
+ #
693
+ #
694
+ #
695
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
696
+ #
658
697
  # @option params [required, Types::VirtualNodeSpec] :spec
659
698
  # The virtual node specification to apply.
660
699
  #
@@ -677,6 +716,7 @@ module Aws::AppMesh
677
716
  # resp = client.create_virtual_node({
678
717
  # client_token: "String",
679
718
  # mesh_name: "ResourceName", # required
719
+ # mesh_owner: "AccountId",
680
720
  # spec: { # required
681
721
  # backend_defaults: {
682
722
  # client_policy: {
@@ -786,6 +826,8 @@ module Aws::AppMesh
786
826
  # resp.virtual_node.metadata.arn #=> String
787
827
  # resp.virtual_node.metadata.created_at #=> Time
788
828
  # resp.virtual_node.metadata.last_updated_at #=> Time
829
+ # resp.virtual_node.metadata.mesh_owner #=> String
830
+ # resp.virtual_node.metadata.resource_owner #=> String
789
831
  # resp.virtual_node.metadata.uid #=> String
790
832
  # resp.virtual_node.metadata.version #=> Integer
791
833
  # resp.virtual_node.spec.backend_defaults.client_policy.tls.enforce #=> Boolean
@@ -849,7 +891,7 @@ module Aws::AppMesh
849
891
  #
850
892
  #
851
893
  #
852
- # [1]: https://docs.aws.amazon.com//app-mesh/latest/userguide/virtual_routers.html
894
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/virtual_routers.html
853
895
  #
854
896
  # @option params [String] :client_token
855
897
  # Unique, case-sensitive identifier that you provide to ensure the
@@ -862,6 +904,17 @@ module Aws::AppMesh
862
904
  # @option params [required, String] :mesh_name
863
905
  # The name of the service mesh to create the virtual router in.
864
906
  #
907
+ # @option params [String] :mesh_owner
908
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
909
+ # not your own, then the account that you specify must share the mesh
910
+ # with your account before you can create the resource in the service
911
+ # mesh. For more information about mesh sharing, see [Working with
912
+ # Shared Meshes][1].
913
+ #
914
+ #
915
+ #
916
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
917
+ #
865
918
  # @option params [required, Types::VirtualRouterSpec] :spec
866
919
  # The virtual router specification to apply.
867
920
  #
@@ -884,6 +937,7 @@ module Aws::AppMesh
884
937
  # resp = client.create_virtual_router({
885
938
  # client_token: "String",
886
939
  # mesh_name: "ResourceName", # required
940
+ # mesh_owner: "AccountId",
887
941
  # spec: { # required
888
942
  # listeners: [
889
943
  # {
@@ -909,6 +963,8 @@ module Aws::AppMesh
909
963
  # resp.virtual_router.metadata.arn #=> String
910
964
  # resp.virtual_router.metadata.created_at #=> Time
911
965
  # resp.virtual_router.metadata.last_updated_at #=> Time
966
+ # resp.virtual_router.metadata.mesh_owner #=> String
967
+ # resp.virtual_router.metadata.resource_owner #=> String
912
968
  # resp.virtual_router.metadata.uid #=> String
913
969
  # resp.virtual_router.metadata.version #=> Integer
914
970
  # resp.virtual_router.spec.listeners #=> Array
@@ -940,7 +996,7 @@ module Aws::AppMesh
940
996
  #
941
997
  #
942
998
  #
943
- # [1]: https://docs.aws.amazon.com//app-mesh/latest/userguide/virtual_services.html
999
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/virtual_services.html
944
1000
  #
945
1001
  # @option params [String] :client_token
946
1002
  # Unique, case-sensitive identifier that you provide to ensure the
@@ -953,6 +1009,17 @@ module Aws::AppMesh
953
1009
  # @option params [required, String] :mesh_name
954
1010
  # The name of the service mesh to create the virtual service in.
955
1011
  #
1012
+ # @option params [String] :mesh_owner
1013
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
1014
+ # not your own, then the account that you specify must share the mesh
1015
+ # with your account before you can create the resource in the service
1016
+ # mesh. For more information about mesh sharing, see [Working with
1017
+ # Shared Meshes][1].
1018
+ #
1019
+ #
1020
+ #
1021
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
1022
+ #
956
1023
  # @option params [required, Types::VirtualServiceSpec] :spec
957
1024
  # The virtual service specification to apply.
958
1025
  #
@@ -975,6 +1042,7 @@ module Aws::AppMesh
975
1042
  # resp = client.create_virtual_service({
976
1043
  # client_token: "String",
977
1044
  # mesh_name: "ResourceName", # required
1045
+ # mesh_owner: "AccountId",
978
1046
  # spec: { # required
979
1047
  # provider: {
980
1048
  # virtual_node: {
@@ -1000,6 +1068,8 @@ module Aws::AppMesh
1000
1068
  # resp.virtual_service.metadata.arn #=> String
1001
1069
  # resp.virtual_service.metadata.created_at #=> Time
1002
1070
  # resp.virtual_service.metadata.last_updated_at #=> Time
1071
+ # resp.virtual_service.metadata.mesh_owner #=> String
1072
+ # resp.virtual_service.metadata.resource_owner #=> String
1003
1073
  # resp.virtual_service.metadata.uid #=> String
1004
1074
  # resp.virtual_service.metadata.version #=> Integer
1005
1075
  # resp.virtual_service.spec.provider.virtual_node.virtual_node_name #=> String
@@ -1041,6 +1111,8 @@ module Aws::AppMesh
1041
1111
  # resp.mesh.metadata.arn #=> String
1042
1112
  # resp.mesh.metadata.created_at #=> Time
1043
1113
  # resp.mesh.metadata.last_updated_at #=> Time
1114
+ # resp.mesh.metadata.mesh_owner #=> String
1115
+ # resp.mesh.metadata.resource_owner #=> String
1044
1116
  # resp.mesh.metadata.uid #=> String
1045
1117
  # resp.mesh.metadata.version #=> Integer
1046
1118
  # resp.mesh.spec.egress_filter.type #=> String, one of "ALLOW_ALL", "DROP_ALL"
@@ -1060,6 +1132,16 @@ module Aws::AppMesh
1060
1132
  # @option params [required, String] :mesh_name
1061
1133
  # The name of the service mesh to delete the route in.
1062
1134
  #
1135
+ # @option params [String] :mesh_owner
1136
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
1137
+ # not your own, then it's the ID of the account that shared the mesh
1138
+ # with your account. For more information about mesh sharing, see
1139
+ # [Working with Shared Meshes][1].
1140
+ #
1141
+ #
1142
+ #
1143
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
1144
+ #
1063
1145
  # @option params [required, String] :route_name
1064
1146
  # The name of the route to delete.
1065
1147
  #
@@ -1074,6 +1156,7 @@ module Aws::AppMesh
1074
1156
  #
1075
1157
  # resp = client.delete_route({
1076
1158
  # mesh_name: "ResourceName", # required
1159
+ # mesh_owner: "AccountId",
1077
1160
  # route_name: "ResourceName", # required
1078
1161
  # virtual_router_name: "ResourceName", # required
1079
1162
  # })
@@ -1084,6 +1167,8 @@ module Aws::AppMesh
1084
1167
  # resp.route.metadata.arn #=> String
1085
1168
  # resp.route.metadata.created_at #=> Time
1086
1169
  # resp.route.metadata.last_updated_at #=> Time
1170
+ # resp.route.metadata.mesh_owner #=> String
1171
+ # resp.route.metadata.resource_owner #=> String
1087
1172
  # resp.route.metadata.uid #=> String
1088
1173
  # resp.route.metadata.version #=> Integer
1089
1174
  # resp.route.route_name #=> String
@@ -1178,6 +1263,16 @@ module Aws::AppMesh
1178
1263
  # @option params [required, String] :mesh_name
1179
1264
  # The name of the service mesh to delete the virtual node in.
1180
1265
  #
1266
+ # @option params [String] :mesh_owner
1267
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
1268
+ # not your own, then it's the ID of the account that shared the mesh
1269
+ # with your account. For more information about mesh sharing, see
1270
+ # [Working with Shared Meshes][1].
1271
+ #
1272
+ #
1273
+ #
1274
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
1275
+ #
1181
1276
  # @option params [required, String] :virtual_node_name
1182
1277
  # The name of the virtual node to delete.
1183
1278
  #
@@ -1189,6 +1284,7 @@ module Aws::AppMesh
1189
1284
  #
1190
1285
  # resp = client.delete_virtual_node({
1191
1286
  # mesh_name: "ResourceName", # required
1287
+ # mesh_owner: "AccountId",
1192
1288
  # virtual_node_name: "ResourceName", # required
1193
1289
  # })
1194
1290
  #
@@ -1198,6 +1294,8 @@ module Aws::AppMesh
1198
1294
  # resp.virtual_node.metadata.arn #=> String
1199
1295
  # resp.virtual_node.metadata.created_at #=> Time
1200
1296
  # resp.virtual_node.metadata.last_updated_at #=> Time
1297
+ # resp.virtual_node.metadata.mesh_owner #=> String
1298
+ # resp.virtual_node.metadata.resource_owner #=> String
1201
1299
  # resp.virtual_node.metadata.uid #=> String
1202
1300
  # resp.virtual_node.metadata.version #=> Integer
1203
1301
  # resp.virtual_node.spec.backend_defaults.client_policy.tls.enforce #=> Boolean
@@ -1255,6 +1353,16 @@ module Aws::AppMesh
1255
1353
  # @option params [required, String] :mesh_name
1256
1354
  # The name of the service mesh to delete the virtual router in.
1257
1355
  #
1356
+ # @option params [String] :mesh_owner
1357
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
1358
+ # not your own, then it's the ID of the account that shared the mesh
1359
+ # with your account. For more information about mesh sharing, see
1360
+ # [Working with Shared Meshes][1].
1361
+ #
1362
+ #
1363
+ #
1364
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
1365
+ #
1258
1366
  # @option params [required, String] :virtual_router_name
1259
1367
  # The name of the virtual router to delete.
1260
1368
  #
@@ -1266,6 +1374,7 @@ module Aws::AppMesh
1266
1374
  #
1267
1375
  # resp = client.delete_virtual_router({
1268
1376
  # mesh_name: "ResourceName", # required
1377
+ # mesh_owner: "AccountId",
1269
1378
  # virtual_router_name: "ResourceName", # required
1270
1379
  # })
1271
1380
  #
@@ -1275,6 +1384,8 @@ module Aws::AppMesh
1275
1384
  # resp.virtual_router.metadata.arn #=> String
1276
1385
  # resp.virtual_router.metadata.created_at #=> Time
1277
1386
  # resp.virtual_router.metadata.last_updated_at #=> Time
1387
+ # resp.virtual_router.metadata.mesh_owner #=> String
1388
+ # resp.virtual_router.metadata.resource_owner #=> String
1278
1389
  # resp.virtual_router.metadata.uid #=> String
1279
1390
  # resp.virtual_router.metadata.version #=> Integer
1280
1391
  # resp.virtual_router.spec.listeners #=> Array
@@ -1297,6 +1408,16 @@ module Aws::AppMesh
1297
1408
  # @option params [required, String] :mesh_name
1298
1409
  # The name of the service mesh to delete the virtual service in.
1299
1410
  #
1411
+ # @option params [String] :mesh_owner
1412
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
1413
+ # not your own, then it's the ID of the account that shared the mesh
1414
+ # with your account. For more information about mesh sharing, see
1415
+ # [Working with Shared Meshes][1].
1416
+ #
1417
+ #
1418
+ #
1419
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
1420
+ #
1300
1421
  # @option params [required, String] :virtual_service_name
1301
1422
  # The name of the virtual service to delete.
1302
1423
  #
@@ -1308,6 +1429,7 @@ module Aws::AppMesh
1308
1429
  #
1309
1430
  # resp = client.delete_virtual_service({
1310
1431
  # mesh_name: "ResourceName", # required
1432
+ # mesh_owner: "AccountId",
1311
1433
  # virtual_service_name: "ServiceName", # required
1312
1434
  # })
1313
1435
  #
@@ -1317,6 +1439,8 @@ module Aws::AppMesh
1317
1439
  # resp.virtual_service.metadata.arn #=> String
1318
1440
  # resp.virtual_service.metadata.created_at #=> Time
1319
1441
  # resp.virtual_service.metadata.last_updated_at #=> Time
1442
+ # resp.virtual_service.metadata.mesh_owner #=> String
1443
+ # resp.virtual_service.metadata.resource_owner #=> String
1320
1444
  # resp.virtual_service.metadata.uid #=> String
1321
1445
  # resp.virtual_service.metadata.version #=> Integer
1322
1446
  # resp.virtual_service.spec.provider.virtual_node.virtual_node_name #=> String
@@ -1338,6 +1462,16 @@ module Aws::AppMesh
1338
1462
  # @option params [required, String] :mesh_name
1339
1463
  # The name of the service mesh to describe.
1340
1464
  #
1465
+ # @option params [String] :mesh_owner
1466
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
1467
+ # not your own, then it's the ID of the account that shared the mesh
1468
+ # with your account. For more information about mesh sharing, see
1469
+ # [Working with Shared Meshes][1].
1470
+ #
1471
+ #
1472
+ #
1473
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
1474
+ #
1341
1475
  # @return [Types::DescribeMeshOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1342
1476
  #
1343
1477
  # * {Types::DescribeMeshOutput#mesh #mesh} => Types::MeshData
@@ -1346,6 +1480,7 @@ module Aws::AppMesh
1346
1480
  #
1347
1481
  # resp = client.describe_mesh({
1348
1482
  # mesh_name: "ResourceName", # required
1483
+ # mesh_owner: "AccountId",
1349
1484
  # })
1350
1485
  #
1351
1486
  # @example Response structure
@@ -1354,6 +1489,8 @@ module Aws::AppMesh
1354
1489
  # resp.mesh.metadata.arn #=> String
1355
1490
  # resp.mesh.metadata.created_at #=> Time
1356
1491
  # resp.mesh.metadata.last_updated_at #=> Time
1492
+ # resp.mesh.metadata.mesh_owner #=> String
1493
+ # resp.mesh.metadata.resource_owner #=> String
1357
1494
  # resp.mesh.metadata.uid #=> String
1358
1495
  # resp.mesh.metadata.version #=> Integer
1359
1496
  # resp.mesh.spec.egress_filter.type #=> String, one of "ALLOW_ALL", "DROP_ALL"
@@ -1373,6 +1510,16 @@ module Aws::AppMesh
1373
1510
  # @option params [required, String] :mesh_name
1374
1511
  # The name of the service mesh that the route resides in.
1375
1512
  #
1513
+ # @option params [String] :mesh_owner
1514
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
1515
+ # not your own, then it's the ID of the account that shared the mesh
1516
+ # with your account. For more information about mesh sharing, see
1517
+ # [Working with Shared Meshes][1].
1518
+ #
1519
+ #
1520
+ #
1521
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
1522
+ #
1376
1523
  # @option params [required, String] :route_name
1377
1524
  # The name of the route to describe.
1378
1525
  #
@@ -1387,6 +1534,7 @@ module Aws::AppMesh
1387
1534
  #
1388
1535
  # resp = client.describe_route({
1389
1536
  # mesh_name: "ResourceName", # required
1537
+ # mesh_owner: "AccountId",
1390
1538
  # route_name: "ResourceName", # required
1391
1539
  # virtual_router_name: "ResourceName", # required
1392
1540
  # })
@@ -1397,6 +1545,8 @@ module Aws::AppMesh
1397
1545
  # resp.route.metadata.arn #=> String
1398
1546
  # resp.route.metadata.created_at #=> Time
1399
1547
  # resp.route.metadata.last_updated_at #=> Time
1548
+ # resp.route.metadata.mesh_owner #=> String
1549
+ # resp.route.metadata.resource_owner #=> String
1400
1550
  # resp.route.metadata.uid #=> String
1401
1551
  # resp.route.metadata.version #=> Integer
1402
1552
  # resp.route.route_name #=> String
@@ -1488,6 +1638,16 @@ module Aws::AppMesh
1488
1638
  # @option params [required, String] :mesh_name
1489
1639
  # The name of the service mesh that the virtual node resides in.
1490
1640
  #
1641
+ # @option params [String] :mesh_owner
1642
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
1643
+ # not your own, then it's the ID of the account that shared the mesh
1644
+ # with your account. For more information about mesh sharing, see
1645
+ # [Working with Shared Meshes][1].
1646
+ #
1647
+ #
1648
+ #
1649
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
1650
+ #
1491
1651
  # @option params [required, String] :virtual_node_name
1492
1652
  # The name of the virtual node to describe.
1493
1653
  #
@@ -1499,6 +1659,7 @@ module Aws::AppMesh
1499
1659
  #
1500
1660
  # resp = client.describe_virtual_node({
1501
1661
  # mesh_name: "ResourceName", # required
1662
+ # mesh_owner: "AccountId",
1502
1663
  # virtual_node_name: "ResourceName", # required
1503
1664
  # })
1504
1665
  #
@@ -1508,6 +1669,8 @@ module Aws::AppMesh
1508
1669
  # resp.virtual_node.metadata.arn #=> String
1509
1670
  # resp.virtual_node.metadata.created_at #=> Time
1510
1671
  # resp.virtual_node.metadata.last_updated_at #=> Time
1672
+ # resp.virtual_node.metadata.mesh_owner #=> String
1673
+ # resp.virtual_node.metadata.resource_owner #=> String
1511
1674
  # resp.virtual_node.metadata.uid #=> String
1512
1675
  # resp.virtual_node.metadata.version #=> Integer
1513
1676
  # resp.virtual_node.spec.backend_defaults.client_policy.tls.enforce #=> Boolean
@@ -1562,6 +1725,16 @@ module Aws::AppMesh
1562
1725
  # @option params [required, String] :mesh_name
1563
1726
  # The name of the service mesh that the virtual router resides in.
1564
1727
  #
1728
+ # @option params [String] :mesh_owner
1729
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
1730
+ # not your own, then it's the ID of the account that shared the mesh
1731
+ # with your account. For more information about mesh sharing, see
1732
+ # [Working with Shared Meshes][1].
1733
+ #
1734
+ #
1735
+ #
1736
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
1737
+ #
1565
1738
  # @option params [required, String] :virtual_router_name
1566
1739
  # The name of the virtual router to describe.
1567
1740
  #
@@ -1573,6 +1746,7 @@ module Aws::AppMesh
1573
1746
  #
1574
1747
  # resp = client.describe_virtual_router({
1575
1748
  # mesh_name: "ResourceName", # required
1749
+ # mesh_owner: "AccountId",
1576
1750
  # virtual_router_name: "ResourceName", # required
1577
1751
  # })
1578
1752
  #
@@ -1582,6 +1756,8 @@ module Aws::AppMesh
1582
1756
  # resp.virtual_router.metadata.arn #=> String
1583
1757
  # resp.virtual_router.metadata.created_at #=> Time
1584
1758
  # resp.virtual_router.metadata.last_updated_at #=> Time
1759
+ # resp.virtual_router.metadata.mesh_owner #=> String
1760
+ # resp.virtual_router.metadata.resource_owner #=> String
1585
1761
  # resp.virtual_router.metadata.uid #=> String
1586
1762
  # resp.virtual_router.metadata.version #=> Integer
1587
1763
  # resp.virtual_router.spec.listeners #=> Array
@@ -1604,6 +1780,16 @@ module Aws::AppMesh
1604
1780
  # @option params [required, String] :mesh_name
1605
1781
  # The name of the service mesh that the virtual service resides in.
1606
1782
  #
1783
+ # @option params [String] :mesh_owner
1784
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
1785
+ # not your own, then it's the ID of the account that shared the mesh
1786
+ # with your account. For more information about mesh sharing, see
1787
+ # [Working with Shared Meshes][1].
1788
+ #
1789
+ #
1790
+ #
1791
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
1792
+ #
1607
1793
  # @option params [required, String] :virtual_service_name
1608
1794
  # The name of the virtual service to describe.
1609
1795
  #
@@ -1615,6 +1801,7 @@ module Aws::AppMesh
1615
1801
  #
1616
1802
  # resp = client.describe_virtual_service({
1617
1803
  # mesh_name: "ResourceName", # required
1804
+ # mesh_owner: "AccountId",
1618
1805
  # virtual_service_name: "ServiceName", # required
1619
1806
  # })
1620
1807
  #
@@ -1624,6 +1811,8 @@ module Aws::AppMesh
1624
1811
  # resp.virtual_service.metadata.arn #=> String
1625
1812
  # resp.virtual_service.metadata.created_at #=> Time
1626
1813
  # resp.virtual_service.metadata.last_updated_at #=> Time
1814
+ # resp.virtual_service.metadata.mesh_owner #=> String
1815
+ # resp.virtual_service.metadata.resource_owner #=> String
1627
1816
  # resp.virtual_service.metadata.uid #=> String
1628
1817
  # resp.virtual_service.metadata.version #=> Integer
1629
1818
  # resp.virtual_service.spec.provider.virtual_node.virtual_node_name #=> String
@@ -1681,6 +1870,8 @@ module Aws::AppMesh
1681
1870
  # resp.meshes #=> Array
1682
1871
  # resp.meshes[0].arn #=> String
1683
1872
  # resp.meshes[0].mesh_name #=> String
1873
+ # resp.meshes[0].mesh_owner #=> String
1874
+ # resp.meshes[0].resource_owner #=> String
1684
1875
  # resp.next_token #=> String
1685
1876
  #
1686
1877
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListMeshes AWS API Documentation
@@ -1707,6 +1898,16 @@ module Aws::AppMesh
1707
1898
  # @option params [required, String] :mesh_name
1708
1899
  # The name of the service mesh to list routes in.
1709
1900
  #
1901
+ # @option params [String] :mesh_owner
1902
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
1903
+ # not your own, then it's the ID of the account that shared the mesh
1904
+ # with your account. For more information about mesh sharing, see
1905
+ # [Working with Shared Meshes][1].
1906
+ #
1907
+ #
1908
+ #
1909
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
1910
+ #
1710
1911
  # @option params [String] :next_token
1711
1912
  # The `nextToken` value returned from a previous paginated `ListRoutes`
1712
1913
  # request where `limit` was used and the results exceeded the value of
@@ -1726,6 +1927,7 @@ module Aws::AppMesh
1726
1927
  # resp = client.list_routes({
1727
1928
  # limit: 1,
1728
1929
  # mesh_name: "ResourceName", # required
1930
+ # mesh_owner: "AccountId",
1729
1931
  # next_token: "String",
1730
1932
  # virtual_router_name: "ResourceName", # required
1731
1933
  # })
@@ -1736,6 +1938,8 @@ module Aws::AppMesh
1736
1938
  # resp.routes #=> Array
1737
1939
  # resp.routes[0].arn #=> String
1738
1940
  # resp.routes[0].mesh_name #=> String
1941
+ # resp.routes[0].mesh_owner #=> String
1942
+ # resp.routes[0].resource_owner #=> String
1739
1943
  # resp.routes[0].route_name #=> String
1740
1944
  # resp.routes[0].virtual_router_name #=> String
1741
1945
  #
@@ -1814,6 +2018,16 @@ module Aws::AppMesh
1814
2018
  # @option params [required, String] :mesh_name
1815
2019
  # The name of the service mesh to list virtual nodes in.
1816
2020
  #
2021
+ # @option params [String] :mesh_owner
2022
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
2023
+ # not your own, then it's the ID of the account that shared the mesh
2024
+ # with your account. For more information about mesh sharing, see
2025
+ # [Working with Shared Meshes][1].
2026
+ #
2027
+ #
2028
+ #
2029
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
2030
+ #
1817
2031
  # @option params [String] :next_token
1818
2032
  # The `nextToken` value returned from a previous paginated
1819
2033
  # `ListVirtualNodes` request where `limit` was used and the results
@@ -1830,6 +2044,7 @@ module Aws::AppMesh
1830
2044
  # resp = client.list_virtual_nodes({
1831
2045
  # limit: 1,
1832
2046
  # mesh_name: "ResourceName", # required
2047
+ # mesh_owner: "AccountId",
1833
2048
  # next_token: "String",
1834
2049
  # })
1835
2050
  #
@@ -1839,6 +2054,8 @@ module Aws::AppMesh
1839
2054
  # resp.virtual_nodes #=> Array
1840
2055
  # resp.virtual_nodes[0].arn #=> String
1841
2056
  # resp.virtual_nodes[0].mesh_name #=> String
2057
+ # resp.virtual_nodes[0].mesh_owner #=> String
2058
+ # resp.virtual_nodes[0].resource_owner #=> String
1842
2059
  # resp.virtual_nodes[0].virtual_node_name #=> String
1843
2060
  #
1844
2061
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualNodes AWS API Documentation
@@ -1865,6 +2082,16 @@ module Aws::AppMesh
1865
2082
  # @option params [required, String] :mesh_name
1866
2083
  # The name of the service mesh to list virtual routers in.
1867
2084
  #
2085
+ # @option params [String] :mesh_owner
2086
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
2087
+ # not your own, then it's the ID of the account that shared the mesh
2088
+ # with your account. For more information about mesh sharing, see
2089
+ # [Working with Shared Meshes][1].
2090
+ #
2091
+ #
2092
+ #
2093
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
2094
+ #
1868
2095
  # @option params [String] :next_token
1869
2096
  # The `nextToken` value returned from a previous paginated
1870
2097
  # `ListVirtualRouters` request where `limit` was used and the results
@@ -1881,6 +2108,7 @@ module Aws::AppMesh
1881
2108
  # resp = client.list_virtual_routers({
1882
2109
  # limit: 1,
1883
2110
  # mesh_name: "ResourceName", # required
2111
+ # mesh_owner: "AccountId",
1884
2112
  # next_token: "String",
1885
2113
  # })
1886
2114
  #
@@ -1890,6 +2118,8 @@ module Aws::AppMesh
1890
2118
  # resp.virtual_routers #=> Array
1891
2119
  # resp.virtual_routers[0].arn #=> String
1892
2120
  # resp.virtual_routers[0].mesh_name #=> String
2121
+ # resp.virtual_routers[0].mesh_owner #=> String
2122
+ # resp.virtual_routers[0].resource_owner #=> String
1893
2123
  # resp.virtual_routers[0].virtual_router_name #=> String
1894
2124
  #
1895
2125
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualRouters AWS API Documentation
@@ -1916,6 +2146,16 @@ module Aws::AppMesh
1916
2146
  # @option params [required, String] :mesh_name
1917
2147
  # The name of the service mesh to list virtual services in.
1918
2148
  #
2149
+ # @option params [String] :mesh_owner
2150
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
2151
+ # not your own, then it's the ID of the account that shared the mesh
2152
+ # with your account. For more information about mesh sharing, see
2153
+ # [Working with Shared Meshes][1].
2154
+ #
2155
+ #
2156
+ #
2157
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
2158
+ #
1919
2159
  # @option params [String] :next_token
1920
2160
  # The `nextToken` value returned from a previous paginated
1921
2161
  # `ListVirtualServices` request where `limit` was used and the results
@@ -1932,6 +2172,7 @@ module Aws::AppMesh
1932
2172
  # resp = client.list_virtual_services({
1933
2173
  # limit: 1,
1934
2174
  # mesh_name: "ResourceName", # required
2175
+ # mesh_owner: "AccountId",
1935
2176
  # next_token: "String",
1936
2177
  # })
1937
2178
  #
@@ -1941,6 +2182,8 @@ module Aws::AppMesh
1941
2182
  # resp.virtual_services #=> Array
1942
2183
  # resp.virtual_services[0].arn #=> String
1943
2184
  # resp.virtual_services[0].mesh_name #=> String
2185
+ # resp.virtual_services[0].mesh_owner #=> String
2186
+ # resp.virtual_services[0].resource_owner #=> String
1944
2187
  # resp.virtual_services[0].virtual_service_name #=> String
1945
2188
  #
1946
2189
  # @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualServices AWS API Documentation
@@ -2052,6 +2295,8 @@ module Aws::AppMesh
2052
2295
  # resp.mesh.metadata.arn #=> String
2053
2296
  # resp.mesh.metadata.created_at #=> Time
2054
2297
  # resp.mesh.metadata.last_updated_at #=> Time
2298
+ # resp.mesh.metadata.mesh_owner #=> String
2299
+ # resp.mesh.metadata.resource_owner #=> String
2055
2300
  # resp.mesh.metadata.uid #=> String
2056
2301
  # resp.mesh.metadata.version #=> Integer
2057
2302
  # resp.mesh.spec.egress_filter.type #=> String, one of "ALLOW_ALL", "DROP_ALL"
@@ -2080,6 +2325,16 @@ module Aws::AppMesh
2080
2325
  # @option params [required, String] :mesh_name
2081
2326
  # The name of the service mesh that the route resides in.
2082
2327
  #
2328
+ # @option params [String] :mesh_owner
2329
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
2330
+ # not your own, then it's the ID of the account that shared the mesh
2331
+ # with your account. For more information about mesh sharing, see
2332
+ # [Working with Shared Meshes][1].
2333
+ #
2334
+ #
2335
+ #
2336
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
2337
+ #
2083
2338
  # @option params [required, String] :route_name
2084
2339
  # The name of the route to update.
2085
2340
  #
@@ -2099,6 +2354,7 @@ module Aws::AppMesh
2099
2354
  # resp = client.update_route({
2100
2355
  # client_token: "String",
2101
2356
  # mesh_name: "ResourceName", # required
2357
+ # mesh_owner: "AccountId",
2102
2358
  # route_name: "ResourceName", # required
2103
2359
  # spec: { # required
2104
2360
  # grpc_route: {
@@ -2242,6 +2498,8 @@ module Aws::AppMesh
2242
2498
  # resp.route.metadata.arn #=> String
2243
2499
  # resp.route.metadata.created_at #=> Time
2244
2500
  # resp.route.metadata.last_updated_at #=> Time
2501
+ # resp.route.metadata.mesh_owner #=> String
2502
+ # resp.route.metadata.resource_owner #=> String
2245
2503
  # resp.route.metadata.uid #=> String
2246
2504
  # resp.route.metadata.version #=> Integer
2247
2505
  # resp.route.route_name #=> String
@@ -2341,6 +2599,16 @@ module Aws::AppMesh
2341
2599
  # @option params [required, String] :mesh_name
2342
2600
  # The name of the service mesh that the virtual node resides in.
2343
2601
  #
2602
+ # @option params [String] :mesh_owner
2603
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
2604
+ # not your own, then it's the ID of the account that shared the mesh
2605
+ # with your account. For more information about mesh sharing, see
2606
+ # [Working with Shared Meshes][1].
2607
+ #
2608
+ #
2609
+ #
2610
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
2611
+ #
2344
2612
  # @option params [required, Types::VirtualNodeSpec] :spec
2345
2613
  # The new virtual node specification to apply. This overwrites the
2346
2614
  # existing data.
@@ -2357,6 +2625,7 @@ module Aws::AppMesh
2357
2625
  # resp = client.update_virtual_node({
2358
2626
  # client_token: "String",
2359
2627
  # mesh_name: "ResourceName", # required
2628
+ # mesh_owner: "AccountId",
2360
2629
  # spec: { # required
2361
2630
  # backend_defaults: {
2362
2631
  # client_policy: {
@@ -2460,6 +2729,8 @@ module Aws::AppMesh
2460
2729
  # resp.virtual_node.metadata.arn #=> String
2461
2730
  # resp.virtual_node.metadata.created_at #=> Time
2462
2731
  # resp.virtual_node.metadata.last_updated_at #=> Time
2732
+ # resp.virtual_node.metadata.mesh_owner #=> String
2733
+ # resp.virtual_node.metadata.resource_owner #=> String
2463
2734
  # resp.virtual_node.metadata.uid #=> String
2464
2735
  # resp.virtual_node.metadata.version #=> Integer
2465
2736
  # resp.virtual_node.spec.backend_defaults.client_policy.tls.enforce #=> Boolean
@@ -2522,6 +2793,16 @@ module Aws::AppMesh
2522
2793
  # @option params [required, String] :mesh_name
2523
2794
  # The name of the service mesh that the virtual router resides in.
2524
2795
  #
2796
+ # @option params [String] :mesh_owner
2797
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
2798
+ # not your own, then it's the ID of the account that shared the mesh
2799
+ # with your account. For more information about mesh sharing, see
2800
+ # [Working with Shared Meshes][1].
2801
+ #
2802
+ #
2803
+ #
2804
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
2805
+ #
2525
2806
  # @option params [required, Types::VirtualRouterSpec] :spec
2526
2807
  # The new virtual router specification to apply. This overwrites the
2527
2808
  # existing data.
@@ -2538,6 +2819,7 @@ module Aws::AppMesh
2538
2819
  # resp = client.update_virtual_router({
2539
2820
  # client_token: "String",
2540
2821
  # mesh_name: "ResourceName", # required
2822
+ # mesh_owner: "AccountId",
2541
2823
  # spec: { # required
2542
2824
  # listeners: [
2543
2825
  # {
@@ -2557,6 +2839,8 @@ module Aws::AppMesh
2557
2839
  # resp.virtual_router.metadata.arn #=> String
2558
2840
  # resp.virtual_router.metadata.created_at #=> Time
2559
2841
  # resp.virtual_router.metadata.last_updated_at #=> Time
2842
+ # resp.virtual_router.metadata.mesh_owner #=> String
2843
+ # resp.virtual_router.metadata.resource_owner #=> String
2560
2844
  # resp.virtual_router.metadata.uid #=> String
2561
2845
  # resp.virtual_router.metadata.version #=> Integer
2562
2846
  # resp.virtual_router.spec.listeners #=> Array
@@ -2587,6 +2871,16 @@ module Aws::AppMesh
2587
2871
  # @option params [required, String] :mesh_name
2588
2872
  # The name of the service mesh that the virtual service resides in.
2589
2873
  #
2874
+ # @option params [String] :mesh_owner
2875
+ # The AWS IAM account ID of the service mesh owner. If the account ID is
2876
+ # not your own, then it's the ID of the account that shared the mesh
2877
+ # with your account. For more information about mesh sharing, see
2878
+ # [Working with Shared Meshes][1].
2879
+ #
2880
+ #
2881
+ #
2882
+ # [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
2883
+ #
2590
2884
  # @option params [required, Types::VirtualServiceSpec] :spec
2591
2885
  # The new virtual service specification to apply. This overwrites the
2592
2886
  # existing data.
@@ -2603,6 +2897,7 @@ module Aws::AppMesh
2603
2897
  # resp = client.update_virtual_service({
2604
2898
  # client_token: "String",
2605
2899
  # mesh_name: "ResourceName", # required
2900
+ # mesh_owner: "AccountId",
2606
2901
  # spec: { # required
2607
2902
  # provider: {
2608
2903
  # virtual_node: {
@@ -2622,6 +2917,8 @@ module Aws::AppMesh
2622
2917
  # resp.virtual_service.metadata.arn #=> String
2623
2918
  # resp.virtual_service.metadata.created_at #=> Time
2624
2919
  # resp.virtual_service.metadata.last_updated_at #=> Time
2920
+ # resp.virtual_service.metadata.mesh_owner #=> String
2921
+ # resp.virtual_service.metadata.resource_owner #=> String
2625
2922
  # resp.virtual_service.metadata.uid #=> String
2626
2923
  # resp.virtual_service.metadata.version #=> Integer
2627
2924
  # resp.virtual_service.spec.provider.virtual_node.virtual_node_name #=> String
@@ -2651,7 +2948,7 @@ module Aws::AppMesh
2651
2948
  params: params,
2652
2949
  config: config)
2653
2950
  context[:gem_name] = 'aws-sdk-appmesh'
2654
- context[:gem_version] = '1.19.1'
2951
+ context[:gem_version] = '1.20.0'
2655
2952
  Seahorse::Client::Request.new(handlers, context)
2656
2953
  end
2657
2954