aws-sdk-appmesh 1.45.0 → 1.46.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/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appmesh/client.rb +154 -132
- data/lib/aws-sdk-appmesh/client_api.rb +8 -0
- data/lib/aws-sdk-appmesh/types.rb +256 -204
- data/lib/aws-sdk-appmesh.rb +1 -1
- 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: 291c81fff0b8a7fd4ef85429eedbd1a08b0fdbaee46f93f63718fa7e21d494d7
|
4
|
+
data.tar.gz: 2dc58b79a152311945beb3b3ef5ed0332e3d8bf069e2f7153ea99ffd65335b03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc51ab26374af84a7fdddaab2ec65b0d2706802862bb1fcf75ab01dcfb3c95904adaa9044d2c368db33e0c3f9fed46acbaae7b327007f03fe5375a1255508291
|
7
|
+
data.tar.gz: 3ab4d89e1efd1e37bc62652425da04b2e43ab719df0d23083569e2fd41f4cba5d85b9c12c110d7956f2d5aac7dfe17750c04272d19a7af624f13472e8f91ab0c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.46.0 (2022-05-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release updates the existing Create and Update APIs for meshes and virtual nodes by adding a new IP preference field. This new IP preference field can be used to control the IP versions being used with the mesh and allows for IPv6 support within App Mesh.
|
8
|
+
|
4
9
|
1.45.0 (2022-02-24)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.46.0
|
@@ -378,11 +378,11 @@ module Aws::AppMesh
|
|
378
378
|
# The name of the service mesh to create the gateway route in.
|
379
379
|
#
|
380
380
|
# @option params [String] :mesh_owner
|
381
|
-
# The
|
382
|
-
# not your own, then the account that you specify must
|
383
|
-
# with your account before you can create the resource in
|
384
|
-
# mesh. For more information about mesh sharing, see
|
385
|
-
# shared meshes][1].
|
381
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
382
|
+
# the account ID is not your own, then the account that you specify must
|
383
|
+
# share the mesh with your account before you can create the resource in
|
384
|
+
# the service mesh. For more information about mesh sharing, see
|
385
|
+
# [Working with shared meshes][1].
|
386
386
|
#
|
387
387
|
#
|
388
388
|
#
|
@@ -709,6 +709,9 @@ module Aws::AppMesh
|
|
709
709
|
# egress_filter: {
|
710
710
|
# type: "ALLOW_ALL", # required, accepts ALLOW_ALL, DROP_ALL
|
711
711
|
# },
|
712
|
+
# service_discovery: {
|
713
|
+
# ip_preference: "IPv6_PREFERRED", # accepts IPv6_PREFERRED, IPv4_PREFERRED, IPv4_ONLY, IPv6_ONLY
|
714
|
+
# },
|
712
715
|
# },
|
713
716
|
# tags: [
|
714
717
|
# {
|
@@ -729,6 +732,7 @@ module Aws::AppMesh
|
|
729
732
|
# resp.mesh.metadata.uid #=> String
|
730
733
|
# resp.mesh.metadata.version #=> Integer
|
731
734
|
# resp.mesh.spec.egress_filter.type #=> String, one of "ALLOW_ALL", "DROP_ALL"
|
735
|
+
# resp.mesh.spec.service_discovery.ip_preference #=> String, one of "IPv6_PREFERRED", "IPv4_PREFERRED", "IPv4_ONLY", "IPv6_ONLY"
|
732
736
|
# resp.mesh.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
733
737
|
#
|
734
738
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/CreateMesh AWS API Documentation
|
@@ -763,11 +767,11 @@ module Aws::AppMesh
|
|
763
767
|
# The name of the service mesh to create the route in.
|
764
768
|
#
|
765
769
|
# @option params [String] :mesh_owner
|
766
|
-
# The
|
767
|
-
# not your own, then the account that you specify must
|
768
|
-
# with your account before you can create the resource in
|
769
|
-
# mesh. For more information about mesh sharing, see
|
770
|
-
# shared meshes][1].
|
770
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
771
|
+
# the account ID is not your own, then the account that you specify must
|
772
|
+
# share the mesh with your account before you can create the resource in
|
773
|
+
# the service mesh. For more information about mesh sharing, see
|
774
|
+
# [Working with shared meshes][1].
|
771
775
|
#
|
772
776
|
#
|
773
777
|
#
|
@@ -1150,11 +1154,11 @@ module Aws::AppMesh
|
|
1150
1154
|
# The name of the service mesh to create the virtual gateway in.
|
1151
1155
|
#
|
1152
1156
|
# @option params [String] :mesh_owner
|
1153
|
-
# The
|
1154
|
-
# not your own, then the account that you specify must
|
1155
|
-
# with your account before you can create the resource in
|
1156
|
-
# mesh. For more information about mesh sharing, see
|
1157
|
-
# shared meshes][1].
|
1157
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
1158
|
+
# the account ID is not your own, then the account that you specify must
|
1159
|
+
# share the mesh with your account before you can create the resource in
|
1160
|
+
# the service mesh. For more information about mesh sharing, see
|
1161
|
+
# [Working with shared meshes][1].
|
1158
1162
|
#
|
1159
1163
|
#
|
1160
1164
|
#
|
@@ -1385,7 +1389,7 @@ module Aws::AppMesh
|
|
1385
1389
|
# For more information about virtual nodes, see [Virtual nodes][1]. You
|
1386
1390
|
# must be using `1.15.0` or later of the Envoy image when setting these
|
1387
1391
|
# variables. For more information aboutApp Mesh Envoy variables, see
|
1388
|
-
# [Envoy image][2] in the
|
1392
|
+
# [Envoy image][2] in the App Mesh User Guide.
|
1389
1393
|
#
|
1390
1394
|
#
|
1391
1395
|
#
|
@@ -1404,11 +1408,11 @@ module Aws::AppMesh
|
|
1404
1408
|
# The name of the service mesh to create the virtual node in.
|
1405
1409
|
#
|
1406
1410
|
# @option params [String] :mesh_owner
|
1407
|
-
# The
|
1408
|
-
# not your own, then the account that you specify must
|
1409
|
-
# with your account before you can create the resource in
|
1410
|
-
# mesh. For more information about mesh sharing, see
|
1411
|
-
# shared meshes][1].
|
1411
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
1412
|
+
# the account ID is not your own, then the account that you specify must
|
1413
|
+
# share the mesh with your account before you can create the resource in
|
1414
|
+
# the service mesh. For more information about mesh sharing, see
|
1415
|
+
# [Working with shared meshes][1].
|
1412
1416
|
#
|
1413
1417
|
#
|
1414
1418
|
#
|
@@ -1640,11 +1644,13 @@ module Aws::AppMesh
|
|
1640
1644
|
# value: "AwsCloudMapInstanceAttributeValue", # required
|
1641
1645
|
# },
|
1642
1646
|
# ],
|
1647
|
+
# ip_preference: "IPv6_PREFERRED", # accepts IPv6_PREFERRED, IPv4_PREFERRED, IPv4_ONLY, IPv6_ONLY
|
1643
1648
|
# namespace_name: "AwsCloudMapName", # required
|
1644
1649
|
# service_name: "AwsCloudMapName", # required
|
1645
1650
|
# },
|
1646
1651
|
# dns: {
|
1647
1652
|
# hostname: "Hostname", # required
|
1653
|
+
# ip_preference: "IPv6_PREFERRED", # accepts IPv6_PREFERRED, IPv4_PREFERRED, IPv4_ONLY, IPv6_ONLY
|
1648
1654
|
# response_type: "LOADBALANCER", # accepts LOADBALANCER, ENDPOINTS
|
1649
1655
|
# },
|
1650
1656
|
# },
|
@@ -1742,9 +1748,11 @@ module Aws::AppMesh
|
|
1742
1748
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
|
1743
1749
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
|
1744
1750
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].value #=> String
|
1751
|
+
# resp.virtual_node.spec.service_discovery.aws_cloud_map.ip_preference #=> String, one of "IPv6_PREFERRED", "IPv4_PREFERRED", "IPv4_ONLY", "IPv6_ONLY"
|
1745
1752
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.namespace_name #=> String
|
1746
1753
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.service_name #=> String
|
1747
1754
|
# resp.virtual_node.spec.service_discovery.dns.hostname #=> String
|
1755
|
+
# resp.virtual_node.spec.service_discovery.dns.ip_preference #=> String, one of "IPv6_PREFERRED", "IPv4_PREFERRED", "IPv4_ONLY", "IPv6_ONLY"
|
1748
1756
|
# resp.virtual_node.spec.service_discovery.dns.response_type #=> String, one of "LOADBALANCER", "ENDPOINTS"
|
1749
1757
|
# resp.virtual_node.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
1750
1758
|
# resp.virtual_node.virtual_node_name #=> String
|
@@ -1785,11 +1793,11 @@ module Aws::AppMesh
|
|
1785
1793
|
# The name of the service mesh to create the virtual router in.
|
1786
1794
|
#
|
1787
1795
|
# @option params [String] :mesh_owner
|
1788
|
-
# The
|
1789
|
-
# not your own, then the account that you specify must
|
1790
|
-
# with your account before you can create the resource in
|
1791
|
-
# mesh. For more information about mesh sharing, see
|
1792
|
-
# shared meshes][1].
|
1796
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
1797
|
+
# the account ID is not your own, then the account that you specify must
|
1798
|
+
# share the mesh with your account before you can create the resource in
|
1799
|
+
# the service mesh. For more information about mesh sharing, see
|
1800
|
+
# [Working with shared meshes][1].
|
1793
1801
|
#
|
1794
1802
|
#
|
1795
1803
|
#
|
@@ -1890,11 +1898,11 @@ module Aws::AppMesh
|
|
1890
1898
|
# The name of the service mesh to create the virtual service in.
|
1891
1899
|
#
|
1892
1900
|
# @option params [String] :mesh_owner
|
1893
|
-
# The
|
1894
|
-
# not your own, then the account that you specify must
|
1895
|
-
# with your account before you can create the resource in
|
1896
|
-
# mesh. For more information about mesh sharing, see
|
1897
|
-
# shared meshes][1].
|
1901
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
1902
|
+
# the account ID is not your own, then the account that you specify must
|
1903
|
+
# share the mesh with your account before you can create the resource in
|
1904
|
+
# the service mesh. For more information about mesh sharing, see
|
1905
|
+
# [Working with shared meshes][1].
|
1898
1906
|
#
|
1899
1907
|
#
|
1900
1908
|
#
|
@@ -1975,10 +1983,10 @@ module Aws::AppMesh
|
|
1975
1983
|
# The name of the service mesh to delete the gateway route from.
|
1976
1984
|
#
|
1977
1985
|
# @option params [String] :mesh_owner
|
1978
|
-
# The
|
1979
|
-
# not your own, then it's the ID of the account that
|
1980
|
-
# with your account. For more information about mesh
|
1981
|
-
# [Working with shared meshes][1].
|
1986
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
1987
|
+
# the account ID is not your own, then it's the ID of the account that
|
1988
|
+
# shared the mesh with your account. For more information about mesh
|
1989
|
+
# sharing, see [Working with shared meshes][1].
|
1982
1990
|
#
|
1983
1991
|
#
|
1984
1992
|
#
|
@@ -2114,6 +2122,7 @@ module Aws::AppMesh
|
|
2114
2122
|
# resp.mesh.metadata.uid #=> String
|
2115
2123
|
# resp.mesh.metadata.version #=> Integer
|
2116
2124
|
# resp.mesh.spec.egress_filter.type #=> String, one of "ALLOW_ALL", "DROP_ALL"
|
2125
|
+
# resp.mesh.spec.service_discovery.ip_preference #=> String, one of "IPv6_PREFERRED", "IPv4_PREFERRED", "IPv4_ONLY", "IPv6_ONLY"
|
2117
2126
|
# resp.mesh.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
2118
2127
|
#
|
2119
2128
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DeleteMesh AWS API Documentation
|
@@ -2131,10 +2140,10 @@ module Aws::AppMesh
|
|
2131
2140
|
# The name of the service mesh to delete the route in.
|
2132
2141
|
#
|
2133
2142
|
# @option params [String] :mesh_owner
|
2134
|
-
# The
|
2135
|
-
# not your own, then it's the ID of the account that
|
2136
|
-
# with your account. For more information about mesh
|
2137
|
-
# [Working with shared meshes][1].
|
2143
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
2144
|
+
# the account ID is not your own, then it's the ID of the account that
|
2145
|
+
# shared the mesh with your account. For more information about mesh
|
2146
|
+
# sharing, see [Working with shared meshes][1].
|
2138
2147
|
#
|
2139
2148
|
#
|
2140
2149
|
#
|
@@ -2284,10 +2293,10 @@ module Aws::AppMesh
|
|
2284
2293
|
# The name of the service mesh to delete the virtual gateway from.
|
2285
2294
|
#
|
2286
2295
|
# @option params [String] :mesh_owner
|
2287
|
-
# The
|
2288
|
-
# not your own, then it's the ID of the account that
|
2289
|
-
# with your account. For more information about mesh
|
2290
|
-
# [Working with shared meshes][1].
|
2296
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
2297
|
+
# the account ID is not your own, then it's the ID of the account that
|
2298
|
+
# shared the mesh with your account. For more information about mesh
|
2299
|
+
# sharing, see [Working with shared meshes][1].
|
2291
2300
|
#
|
2292
2301
|
#
|
2293
2302
|
#
|
@@ -2375,10 +2384,10 @@ module Aws::AppMesh
|
|
2375
2384
|
# The name of the service mesh to delete the virtual node in.
|
2376
2385
|
#
|
2377
2386
|
# @option params [String] :mesh_owner
|
2378
|
-
# The
|
2379
|
-
# not your own, then it's the ID of the account that
|
2380
|
-
# with your account. For more information about mesh
|
2381
|
-
# [Working with shared meshes][1].
|
2387
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
2388
|
+
# the account ID is not your own, then it's the ID of the account that
|
2389
|
+
# shared the mesh with your account. For more information about mesh
|
2390
|
+
# sharing, see [Working with shared meshes][1].
|
2382
2391
|
#
|
2383
2392
|
#
|
2384
2393
|
#
|
@@ -2483,9 +2492,11 @@ module Aws::AppMesh
|
|
2483
2492
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
|
2484
2493
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
|
2485
2494
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].value #=> String
|
2495
|
+
# resp.virtual_node.spec.service_discovery.aws_cloud_map.ip_preference #=> String, one of "IPv6_PREFERRED", "IPv4_PREFERRED", "IPv4_ONLY", "IPv6_ONLY"
|
2486
2496
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.namespace_name #=> String
|
2487
2497
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.service_name #=> String
|
2488
2498
|
# resp.virtual_node.spec.service_discovery.dns.hostname #=> String
|
2499
|
+
# resp.virtual_node.spec.service_discovery.dns.ip_preference #=> String, one of "IPv6_PREFERRED", "IPv4_PREFERRED", "IPv4_ONLY", "IPv6_ONLY"
|
2489
2500
|
# resp.virtual_node.spec.service_discovery.dns.response_type #=> String, one of "LOADBALANCER", "ENDPOINTS"
|
2490
2501
|
# resp.virtual_node.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
2491
2502
|
# resp.virtual_node.virtual_node_name #=> String
|
@@ -2508,10 +2519,10 @@ module Aws::AppMesh
|
|
2508
2519
|
# The name of the service mesh to delete the virtual router in.
|
2509
2520
|
#
|
2510
2521
|
# @option params [String] :mesh_owner
|
2511
|
-
# The
|
2512
|
-
# not your own, then it's the ID of the account that
|
2513
|
-
# with your account. For more information about mesh
|
2514
|
-
# [Working with shared meshes][1].
|
2522
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
2523
|
+
# the account ID is not your own, then it's the ID of the account that
|
2524
|
+
# shared the mesh with your account. For more information about mesh
|
2525
|
+
# sharing, see [Working with shared meshes][1].
|
2515
2526
|
#
|
2516
2527
|
#
|
2517
2528
|
#
|
@@ -2563,10 +2574,10 @@ module Aws::AppMesh
|
|
2563
2574
|
# The name of the service mesh to delete the virtual service in.
|
2564
2575
|
#
|
2565
2576
|
# @option params [String] :mesh_owner
|
2566
|
-
# The
|
2567
|
-
# not your own, then it's the ID of the account that
|
2568
|
-
# with your account. For more information about mesh
|
2569
|
-
# [Working with shared meshes][1].
|
2577
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
2578
|
+
# the account ID is not your own, then it's the ID of the account that
|
2579
|
+
# shared the mesh with your account. For more information about mesh
|
2580
|
+
# sharing, see [Working with shared meshes][1].
|
2570
2581
|
#
|
2571
2582
|
#
|
2572
2583
|
#
|
@@ -2620,10 +2631,10 @@ module Aws::AppMesh
|
|
2620
2631
|
# The name of the service mesh that the gateway route resides in.
|
2621
2632
|
#
|
2622
2633
|
# @option params [String] :mesh_owner
|
2623
|
-
# The
|
2624
|
-
# not your own, then it's the ID of the account that
|
2625
|
-
# with your account. For more information about mesh
|
2626
|
-
# [Working with shared meshes][1].
|
2634
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
2635
|
+
# the account ID is not your own, then it's the ID of the account that
|
2636
|
+
# shared the mesh with your account. For more information about mesh
|
2637
|
+
# sharing, see [Working with shared meshes][1].
|
2627
2638
|
#
|
2628
2639
|
#
|
2629
2640
|
#
|
@@ -2736,10 +2747,10 @@ module Aws::AppMesh
|
|
2736
2747
|
# The name of the service mesh to describe.
|
2737
2748
|
#
|
2738
2749
|
# @option params [String] :mesh_owner
|
2739
|
-
# The
|
2740
|
-
# not your own, then it's the ID of the account that
|
2741
|
-
# with your account. For more information about mesh
|
2742
|
-
# [Working with shared meshes][1].
|
2750
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
2751
|
+
# the account ID is not your own, then it's the ID of the account that
|
2752
|
+
# shared the mesh with your account. For more information about mesh
|
2753
|
+
# sharing, see [Working with shared meshes][1].
|
2743
2754
|
#
|
2744
2755
|
#
|
2745
2756
|
#
|
@@ -2767,6 +2778,7 @@ module Aws::AppMesh
|
|
2767
2778
|
# resp.mesh.metadata.uid #=> String
|
2768
2779
|
# resp.mesh.metadata.version #=> Integer
|
2769
2780
|
# resp.mesh.spec.egress_filter.type #=> String, one of "ALLOW_ALL", "DROP_ALL"
|
2781
|
+
# resp.mesh.spec.service_discovery.ip_preference #=> String, one of "IPv6_PREFERRED", "IPv4_PREFERRED", "IPv4_ONLY", "IPv6_ONLY"
|
2770
2782
|
# resp.mesh.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
2771
2783
|
#
|
2772
2784
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/DescribeMesh AWS API Documentation
|
@@ -2784,10 +2796,10 @@ module Aws::AppMesh
|
|
2784
2796
|
# The name of the service mesh that the route resides in.
|
2785
2797
|
#
|
2786
2798
|
# @option params [String] :mesh_owner
|
2787
|
-
# The
|
2788
|
-
# not your own, then it's the ID of the account that
|
2789
|
-
# with your account. For more information about mesh
|
2790
|
-
# [Working with shared meshes][1].
|
2799
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
2800
|
+
# the account ID is not your own, then it's the ID of the account that
|
2801
|
+
# shared the mesh with your account. For more information about mesh
|
2802
|
+
# sharing, see [Working with shared meshes][1].
|
2791
2803
|
#
|
2792
2804
|
#
|
2793
2805
|
#
|
@@ -2936,10 +2948,10 @@ module Aws::AppMesh
|
|
2936
2948
|
# The name of the service mesh that the gateway route resides in.
|
2937
2949
|
#
|
2938
2950
|
# @option params [String] :mesh_owner
|
2939
|
-
# The
|
2940
|
-
# not your own, then it's the ID of the account that
|
2941
|
-
# with your account. For more information about mesh
|
2942
|
-
# [Working with shared meshes][1].
|
2951
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
2952
|
+
# the account ID is not your own, then it's the ID of the account that
|
2953
|
+
# shared the mesh with your account. For more information about mesh
|
2954
|
+
# sharing, see [Working with shared meshes][1].
|
2943
2955
|
#
|
2944
2956
|
#
|
2945
2957
|
#
|
@@ -3024,10 +3036,10 @@ module Aws::AppMesh
|
|
3024
3036
|
# The name of the service mesh that the virtual node resides in.
|
3025
3037
|
#
|
3026
3038
|
# @option params [String] :mesh_owner
|
3027
|
-
# The
|
3028
|
-
# not your own, then it's the ID of the account that
|
3029
|
-
# with your account. For more information about mesh
|
3030
|
-
# [Working with shared meshes][1].
|
3039
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
3040
|
+
# the account ID is not your own, then it's the ID of the account that
|
3041
|
+
# shared the mesh with your account. For more information about mesh
|
3042
|
+
# sharing, see [Working with shared meshes][1].
|
3031
3043
|
#
|
3032
3044
|
#
|
3033
3045
|
#
|
@@ -3132,9 +3144,11 @@ module Aws::AppMesh
|
|
3132
3144
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
|
3133
3145
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
|
3134
3146
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].value #=> String
|
3147
|
+
# resp.virtual_node.spec.service_discovery.aws_cloud_map.ip_preference #=> String, one of "IPv6_PREFERRED", "IPv4_PREFERRED", "IPv4_ONLY", "IPv6_ONLY"
|
3135
3148
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.namespace_name #=> String
|
3136
3149
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.service_name #=> String
|
3137
3150
|
# resp.virtual_node.spec.service_discovery.dns.hostname #=> String
|
3151
|
+
# resp.virtual_node.spec.service_discovery.dns.ip_preference #=> String, one of "IPv6_PREFERRED", "IPv4_PREFERRED", "IPv4_ONLY", "IPv6_ONLY"
|
3138
3152
|
# resp.virtual_node.spec.service_discovery.dns.response_type #=> String, one of "LOADBALANCER", "ENDPOINTS"
|
3139
3153
|
# resp.virtual_node.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
3140
3154
|
# resp.virtual_node.virtual_node_name #=> String
|
@@ -3154,10 +3168,10 @@ module Aws::AppMesh
|
|
3154
3168
|
# The name of the service mesh that the virtual router resides in.
|
3155
3169
|
#
|
3156
3170
|
# @option params [String] :mesh_owner
|
3157
|
-
# The
|
3158
|
-
# not your own, then it's the ID of the account that
|
3159
|
-
# with your account. For more information about mesh
|
3160
|
-
# [Working with shared meshes][1].
|
3171
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
3172
|
+
# the account ID is not your own, then it's the ID of the account that
|
3173
|
+
# shared the mesh with your account. For more information about mesh
|
3174
|
+
# sharing, see [Working with shared meshes][1].
|
3161
3175
|
#
|
3162
3176
|
#
|
3163
3177
|
#
|
@@ -3209,10 +3223,10 @@ module Aws::AppMesh
|
|
3209
3223
|
# The name of the service mesh that the virtual service resides in.
|
3210
3224
|
#
|
3211
3225
|
# @option params [String] :mesh_owner
|
3212
|
-
# The
|
3213
|
-
# not your own, then it's the ID of the account that
|
3214
|
-
# with your account. For more information about mesh
|
3215
|
-
# [Working with shared meshes][1].
|
3226
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
3227
|
+
# the account ID is not your own, then it's the ID of the account that
|
3228
|
+
# shared the mesh with your account. For more information about mesh
|
3229
|
+
# sharing, see [Working with shared meshes][1].
|
3216
3230
|
#
|
3217
3231
|
#
|
3218
3232
|
#
|
@@ -3274,10 +3288,10 @@ module Aws::AppMesh
|
|
3274
3288
|
# The name of the service mesh to list gateway routes in.
|
3275
3289
|
#
|
3276
3290
|
# @option params [String] :mesh_owner
|
3277
|
-
# The
|
3278
|
-
# not your own, then it's the ID of the account that
|
3279
|
-
# with your account. For more information about mesh
|
3280
|
-
# [Working with shared meshes][1].
|
3291
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
3292
|
+
# the account ID is not your own, then it's the ID of the account that
|
3293
|
+
# shared the mesh with your account. For more information about mesh
|
3294
|
+
# sharing, see [Working with shared meshes][1].
|
3281
3295
|
#
|
3282
3296
|
#
|
3283
3297
|
#
|
@@ -3407,10 +3421,10 @@ module Aws::AppMesh
|
|
3407
3421
|
# The name of the service mesh to list routes in.
|
3408
3422
|
#
|
3409
3423
|
# @option params [String] :mesh_owner
|
3410
|
-
# The
|
3411
|
-
# not your own, then it's the ID of the account that
|
3412
|
-
# with your account. For more information about mesh
|
3413
|
-
# [Working with shared meshes][1].
|
3424
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
3425
|
+
# the account ID is not your own, then it's the ID of the account that
|
3426
|
+
# shared the mesh with your account. For more information about mesh
|
3427
|
+
# sharing, see [Working with shared meshes][1].
|
3414
3428
|
#
|
3415
3429
|
#
|
3416
3430
|
#
|
@@ -3534,10 +3548,10 @@ module Aws::AppMesh
|
|
3534
3548
|
# The name of the service mesh to list virtual gateways in.
|
3535
3549
|
#
|
3536
3550
|
# @option params [String] :mesh_owner
|
3537
|
-
# The
|
3538
|
-
# not your own, then it's the ID of the account that
|
3539
|
-
# with your account. For more information about mesh
|
3540
|
-
# [Working with shared meshes][1].
|
3551
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
3552
|
+
# the account ID is not your own, then it's the ID of the account that
|
3553
|
+
# shared the mesh with your account. For more information about mesh
|
3554
|
+
# sharing, see [Working with shared meshes][1].
|
3541
3555
|
#
|
3542
3556
|
#
|
3543
3557
|
#
|
@@ -3603,10 +3617,10 @@ module Aws::AppMesh
|
|
3603
3617
|
# The name of the service mesh to list virtual nodes in.
|
3604
3618
|
#
|
3605
3619
|
# @option params [String] :mesh_owner
|
3606
|
-
# The
|
3607
|
-
# not your own, then it's the ID of the account that
|
3608
|
-
# with your account. For more information about mesh
|
3609
|
-
# [Working with shared meshes][1].
|
3620
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
3621
|
+
# the account ID is not your own, then it's the ID of the account that
|
3622
|
+
# shared the mesh with your account. For more information about mesh
|
3623
|
+
# sharing, see [Working with shared meshes][1].
|
3610
3624
|
#
|
3611
3625
|
#
|
3612
3626
|
#
|
@@ -3672,10 +3686,10 @@ module Aws::AppMesh
|
|
3672
3686
|
# The name of the service mesh to list virtual routers in.
|
3673
3687
|
#
|
3674
3688
|
# @option params [String] :mesh_owner
|
3675
|
-
# The
|
3676
|
-
# not your own, then it's the ID of the account that
|
3677
|
-
# with your account. For more information about mesh
|
3678
|
-
# [Working with shared meshes][1].
|
3689
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
3690
|
+
# the account ID is not your own, then it's the ID of the account that
|
3691
|
+
# shared the mesh with your account. For more information about mesh
|
3692
|
+
# sharing, see [Working with shared meshes][1].
|
3679
3693
|
#
|
3680
3694
|
#
|
3681
3695
|
#
|
@@ -3741,10 +3755,10 @@ module Aws::AppMesh
|
|
3741
3755
|
# The name of the service mesh to list virtual services in.
|
3742
3756
|
#
|
3743
3757
|
# @option params [String] :mesh_owner
|
3744
|
-
# The
|
3745
|
-
# not your own, then it's the ID of the account that
|
3746
|
-
# with your account. For more information about mesh
|
3747
|
-
# [Working with shared meshes][1].
|
3758
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
3759
|
+
# the account ID is not your own, then it's the ID of the account that
|
3760
|
+
# shared the mesh with your account. For more information about mesh
|
3761
|
+
# sharing, see [Working with shared meshes][1].
|
3748
3762
|
#
|
3749
3763
|
#
|
3750
3764
|
#
|
@@ -3874,10 +3888,10 @@ module Aws::AppMesh
|
|
3874
3888
|
# The name of the service mesh that the gateway route resides in.
|
3875
3889
|
#
|
3876
3890
|
# @option params [String] :mesh_owner
|
3877
|
-
# The
|
3878
|
-
# not your own, then it's the ID of the account that
|
3879
|
-
# with your account. For more information about mesh
|
3880
|
-
# [Working with shared meshes][1].
|
3891
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
3892
|
+
# the account ID is not your own, then it's the ID of the account that
|
3893
|
+
# shared the mesh with your account. For more information about mesh
|
3894
|
+
# sharing, see [Working with shared meshes][1].
|
3881
3895
|
#
|
3882
3896
|
#
|
3883
3897
|
#
|
@@ -4172,6 +4186,9 @@ module Aws::AppMesh
|
|
4172
4186
|
# egress_filter: {
|
4173
4187
|
# type: "ALLOW_ALL", # required, accepts ALLOW_ALL, DROP_ALL
|
4174
4188
|
# },
|
4189
|
+
# service_discovery: {
|
4190
|
+
# ip_preference: "IPv6_PREFERRED", # accepts IPv6_PREFERRED, IPv4_PREFERRED, IPv4_ONLY, IPv6_ONLY
|
4191
|
+
# },
|
4175
4192
|
# },
|
4176
4193
|
# })
|
4177
4194
|
#
|
@@ -4186,6 +4203,7 @@ module Aws::AppMesh
|
|
4186
4203
|
# resp.mesh.metadata.uid #=> String
|
4187
4204
|
# resp.mesh.metadata.version #=> Integer
|
4188
4205
|
# resp.mesh.spec.egress_filter.type #=> String, one of "ALLOW_ALL", "DROP_ALL"
|
4206
|
+
# resp.mesh.spec.service_discovery.ip_preference #=> String, one of "IPv6_PREFERRED", "IPv4_PREFERRED", "IPv4_ONLY", "IPv6_ONLY"
|
4189
4207
|
# resp.mesh.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
4190
4208
|
#
|
4191
4209
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/UpdateMesh AWS API Documentation
|
@@ -4212,10 +4230,10 @@ module Aws::AppMesh
|
|
4212
4230
|
# The name of the service mesh that the route resides in.
|
4213
4231
|
#
|
4214
4232
|
# @option params [String] :mesh_owner
|
4215
|
-
# The
|
4216
|
-
# not your own, then it's the ID of the account that
|
4217
|
-
# with your account. For more information about mesh
|
4218
|
-
# [Working with shared meshes][1].
|
4233
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
4234
|
+
# the account ID is not your own, then it's the ID of the account that
|
4235
|
+
# shared the mesh with your account. For more information about mesh
|
4236
|
+
# sharing, see [Working with shared meshes][1].
|
4219
4237
|
#
|
4220
4238
|
#
|
4221
4239
|
#
|
@@ -4570,10 +4588,10 @@ module Aws::AppMesh
|
|
4570
4588
|
# The name of the service mesh that the virtual gateway resides in.
|
4571
4589
|
#
|
4572
4590
|
# @option params [String] :mesh_owner
|
4573
|
-
# The
|
4574
|
-
# not your own, then it's the ID of the account that
|
4575
|
-
# with your account. For more information about mesh
|
4576
|
-
# [Working with shared meshes][1].
|
4591
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
4592
|
+
# the account ID is not your own, then it's the ID of the account that
|
4593
|
+
# shared the mesh with your account. For more information about mesh
|
4594
|
+
# sharing, see [Working with shared meshes][1].
|
4577
4595
|
#
|
4578
4596
|
#
|
4579
4597
|
#
|
@@ -4774,10 +4792,10 @@ module Aws::AppMesh
|
|
4774
4792
|
# The name of the service mesh that the virtual node resides in.
|
4775
4793
|
#
|
4776
4794
|
# @option params [String] :mesh_owner
|
4777
|
-
# The
|
4778
|
-
# not your own, then it's the ID of the account that
|
4779
|
-
# with your account. For more information about mesh
|
4780
|
-
# [Working with shared meshes][1].
|
4795
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
4796
|
+
# the account ID is not your own, then it's the ID of the account that
|
4797
|
+
# shared the mesh with your account. For more information about mesh
|
4798
|
+
# sharing, see [Working with shared meshes][1].
|
4781
4799
|
#
|
4782
4800
|
#
|
4783
4801
|
#
|
@@ -5003,11 +5021,13 @@ module Aws::AppMesh
|
|
5003
5021
|
# value: "AwsCloudMapInstanceAttributeValue", # required
|
5004
5022
|
# },
|
5005
5023
|
# ],
|
5024
|
+
# ip_preference: "IPv6_PREFERRED", # accepts IPv6_PREFERRED, IPv4_PREFERRED, IPv4_ONLY, IPv6_ONLY
|
5006
5025
|
# namespace_name: "AwsCloudMapName", # required
|
5007
5026
|
# service_name: "AwsCloudMapName", # required
|
5008
5027
|
# },
|
5009
5028
|
# dns: {
|
5010
5029
|
# hostname: "Hostname", # required
|
5030
|
+
# ip_preference: "IPv6_PREFERRED", # accepts IPv6_PREFERRED, IPv4_PREFERRED, IPv4_ONLY, IPv6_ONLY
|
5011
5031
|
# response_type: "LOADBALANCER", # accepts LOADBALANCER, ENDPOINTS
|
5012
5032
|
# },
|
5013
5033
|
# },
|
@@ -5099,9 +5119,11 @@ module Aws::AppMesh
|
|
5099
5119
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes #=> Array
|
5100
5120
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].key #=> String
|
5101
5121
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.attributes[0].value #=> String
|
5122
|
+
# resp.virtual_node.spec.service_discovery.aws_cloud_map.ip_preference #=> String, one of "IPv6_PREFERRED", "IPv4_PREFERRED", "IPv4_ONLY", "IPv6_ONLY"
|
5102
5123
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.namespace_name #=> String
|
5103
5124
|
# resp.virtual_node.spec.service_discovery.aws_cloud_map.service_name #=> String
|
5104
5125
|
# resp.virtual_node.spec.service_discovery.dns.hostname #=> String
|
5126
|
+
# resp.virtual_node.spec.service_discovery.dns.ip_preference #=> String, one of "IPv6_PREFERRED", "IPv4_PREFERRED", "IPv4_ONLY", "IPv6_ONLY"
|
5105
5127
|
# resp.virtual_node.spec.service_discovery.dns.response_type #=> String, one of "LOADBALANCER", "ENDPOINTS"
|
5106
5128
|
# resp.virtual_node.status.status #=> String, one of "ACTIVE", "INACTIVE", "DELETED"
|
5107
5129
|
# resp.virtual_node.virtual_node_name #=> String
|
@@ -5129,10 +5151,10 @@ module Aws::AppMesh
|
|
5129
5151
|
# The name of the service mesh that the virtual router resides in.
|
5130
5152
|
#
|
5131
5153
|
# @option params [String] :mesh_owner
|
5132
|
-
# The
|
5133
|
-
# not your own, then it's the ID of the account that
|
5134
|
-
# with your account. For more information about mesh
|
5135
|
-
# [Working with shared meshes][1].
|
5154
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
5155
|
+
# the account ID is not your own, then it's the ID of the account that
|
5156
|
+
# shared the mesh with your account. For more information about mesh
|
5157
|
+
# sharing, see [Working with shared meshes][1].
|
5136
5158
|
#
|
5137
5159
|
#
|
5138
5160
|
#
|
@@ -5207,10 +5229,10 @@ module Aws::AppMesh
|
|
5207
5229
|
# The name of the service mesh that the virtual service resides in.
|
5208
5230
|
#
|
5209
5231
|
# @option params [String] :mesh_owner
|
5210
|
-
# The
|
5211
|
-
# not your own, then it's the ID of the account that
|
5212
|
-
# with your account. For more information about mesh
|
5213
|
-
# [Working with shared meshes][1].
|
5232
|
+
# The Amazon Web Services IAM account ID of the service mesh owner. If
|
5233
|
+
# the account ID is not your own, then it's the ID of the account that
|
5234
|
+
# shared the mesh with your account. For more information about mesh
|
5235
|
+
# sharing, see [Working with shared meshes][1].
|
5214
5236
|
#
|
5215
5237
|
#
|
5216
5238
|
#
|
@@ -5283,7 +5305,7 @@ module Aws::AppMesh
|
|
5283
5305
|
params: params,
|
5284
5306
|
config: config)
|
5285
5307
|
context[:gem_name] = 'aws-sdk-appmesh'
|
5286
|
-
context[:gem_version] = '1.
|
5308
|
+
context[:gem_version] = '1.46.0'
|
5287
5309
|
Seahorse::Client::Request.new(handlers, context)
|
5288
5310
|
end
|
5289
5311
|
|