aws-sdk-memorydb 1.43.0 → 1.44.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-memorydb/client.rb +113 -17
- data/lib/aws-sdk-memorydb/client_api.rb +12 -0
- data/lib/aws-sdk-memorydb/types.rb +77 -7
- data/lib/aws-sdk-memorydb.rb +1 -1
- data/sig/client.rbs +5 -2
- data/sig/types.rbs +7 -0
- 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: 00aad1f0930e62d790104e45cb9e5a856ef2f2cae9b248bc6ac4d67cec0df121
|
4
|
+
data.tar.gz: 27523aa1c82b9730dda7fccb8aeed7a12ce09e13aeb880dbe28dbf8abf573d76
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9721936793c4bbe825d8f2b87db04d5c9cb7cc6adf962bfbf3f702a398138f884ee314d2a71d8aa6198c195eef2de93fafa8d69d7ae1210cd30e1b6eac2ebc4e
|
7
|
+
data.tar.gz: eca14e69a7c1fafb87384bc4ac62129bf294d56f3aa4fe0b276956ba658154d689c74213bc7b7008af2344269b0ddf373c4dcac5b1b65e3ec91b3e8ed6d7c8bc
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.44.0 (2025-04-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Added support for IPv6 and dual stack for Valkey and Redis clusters. Customers can now launch new Valkey and Redis clusters with IPv6 and dual stack networking support.
|
8
|
+
|
4
9
|
1.43.0 (2025-02-18)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.44.0
|
@@ -554,6 +554,8 @@ module Aws::MemoryDB
|
|
554
554
|
# resp.processed_clusters[0].acl_name #=> String
|
555
555
|
# resp.processed_clusters[0].auto_minor_version_upgrade #=> Boolean
|
556
556
|
# resp.processed_clusters[0].data_tiering #=> String, one of "true", "false"
|
557
|
+
# resp.processed_clusters[0].network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
558
|
+
# resp.processed_clusters[0].ip_discovery #=> String, one of "ipv4", "ipv6"
|
557
559
|
# resp.unprocessed_clusters #=> Array
|
558
560
|
# resp.unprocessed_clusters[0].cluster_name #=> String
|
559
561
|
# resp.unprocessed_clusters[0].error_type #=> String
|
@@ -838,6 +840,23 @@ module Aws::MemoryDB
|
|
838
840
|
#
|
839
841
|
# [1]: https://docs.aws.amazon.com/memorydb/latest/devguide/data-tiering.html
|
840
842
|
#
|
843
|
+
# @option params [String] :network_type
|
844
|
+
# Specifies the IP address type for the cluster. Valid values are
|
845
|
+
# 'ipv4', 'ipv6', or 'dual\_stack'. When set to 'ipv4', the
|
846
|
+
# cluster will only be accessible via IPv4 addresses. When set to
|
847
|
+
# 'ipv6', the cluster will only be accessible via IPv6 addresses. When
|
848
|
+
# set to 'dual\_stack', the cluster will be accessible via both IPv4
|
849
|
+
# and IPv6 addresses. If not specified, the default is 'ipv4'.
|
850
|
+
#
|
851
|
+
# @option params [String] :ip_discovery
|
852
|
+
# The mechanism for discovering IP addresses for the cluster discovery
|
853
|
+
# protocol. Valid values are 'ipv4' or 'ipv6'. When set to 'ipv4',
|
854
|
+
# cluster discovery functions such as cluster slots, cluster shards, and
|
855
|
+
# cluster nodes return IPv4 addresses for cluster nodes. When set to
|
856
|
+
# 'ipv6', the cluster discovery functions return IPv6 addresses for
|
857
|
+
# cluster nodes. The value must be compatible with the NetworkType
|
858
|
+
# parameter. If not specified, the default is 'ipv4'.
|
859
|
+
#
|
841
860
|
# @return [Types::CreateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
842
861
|
#
|
843
862
|
# * {Types::CreateClusterResponse#cluster #cluster} => Types::Cluster
|
@@ -874,6 +893,8 @@ module Aws::MemoryDB
|
|
874
893
|
# engine_version: "String",
|
875
894
|
# auto_minor_version_upgrade: false,
|
876
895
|
# data_tiering: false,
|
896
|
+
# network_type: "ipv4", # accepts ipv4, ipv6, dual_stack
|
897
|
+
# ip_discovery: "ipv4", # accepts ipv4, ipv6
|
877
898
|
# })
|
878
899
|
#
|
879
900
|
# @example Response structure
|
@@ -924,6 +945,8 @@ module Aws::MemoryDB
|
|
924
945
|
# resp.cluster.acl_name #=> String
|
925
946
|
# resp.cluster.auto_minor_version_upgrade #=> Boolean
|
926
947
|
# resp.cluster.data_tiering #=> String, one of "true", "false"
|
948
|
+
# resp.cluster.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
949
|
+
# resp.cluster.ip_discovery #=> String, one of "ipv4", "ipv6"
|
927
950
|
#
|
928
951
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/CreateCluster AWS API Documentation
|
929
952
|
#
|
@@ -937,7 +960,13 @@ module Aws::MemoryDB
|
|
937
960
|
# Creates a new multi-Region cluster.
|
938
961
|
#
|
939
962
|
# @option params [required, String] :multi_region_cluster_name_suffix
|
940
|
-
# A suffix to be added to the
|
963
|
+
# A suffix to be added to the Multi-Region cluster name. Amazon MemoryDB
|
964
|
+
# automatically applies a prefix to the Multi-Region cluster Name when
|
965
|
+
# it is created. Each Amazon Region has its own prefix. For instance, a
|
966
|
+
# Multi-Region cluster Name created in the US-West-1 region will begin
|
967
|
+
# with "virxk", along with the suffix name you provide. The suffix
|
968
|
+
# guarantees uniqueness of the Multi-Region cluster name across multiple
|
969
|
+
# regions.
|
941
970
|
#
|
942
971
|
# @option params [String] :description
|
943
972
|
# A description for the multi-Region cluster.
|
@@ -1198,7 +1227,11 @@ module Aws::MemoryDB
|
|
1198
1227
|
# resp.subnet_group.subnets #=> Array
|
1199
1228
|
# resp.subnet_group.subnets[0].identifier #=> String
|
1200
1229
|
# resp.subnet_group.subnets[0].availability_zone.name #=> String
|
1230
|
+
# resp.subnet_group.subnets[0].supported_network_types #=> Array
|
1231
|
+
# resp.subnet_group.subnets[0].supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
|
1201
1232
|
# resp.subnet_group.arn #=> String
|
1233
|
+
# resp.subnet_group.supported_network_types #=> Array
|
1234
|
+
# resp.subnet_group.supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
|
1202
1235
|
#
|
1203
1236
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/CreateSubnetGroup AWS API Documentation
|
1204
1237
|
#
|
@@ -1399,6 +1432,8 @@ module Aws::MemoryDB
|
|
1399
1432
|
# resp.cluster.acl_name #=> String
|
1400
1433
|
# resp.cluster.auto_minor_version_upgrade #=> Boolean
|
1401
1434
|
# resp.cluster.data_tiering #=> String, one of "true", "false"
|
1435
|
+
# resp.cluster.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
1436
|
+
# resp.cluster.ip_discovery #=> String, one of "ipv4", "ipv6"
|
1402
1437
|
#
|
1403
1438
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DeleteCluster AWS API Documentation
|
1404
1439
|
#
|
@@ -1565,7 +1600,11 @@ module Aws::MemoryDB
|
|
1565
1600
|
# resp.subnet_group.subnets #=> Array
|
1566
1601
|
# resp.subnet_group.subnets[0].identifier #=> String
|
1567
1602
|
# resp.subnet_group.subnets[0].availability_zone.name #=> String
|
1603
|
+
# resp.subnet_group.subnets[0].supported_network_types #=> Array
|
1604
|
+
# resp.subnet_group.subnets[0].supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
|
1568
1605
|
# resp.subnet_group.arn #=> String
|
1606
|
+
# resp.subnet_group.supported_network_types #=> Array
|
1607
|
+
# resp.subnet_group.supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
|
1569
1608
|
#
|
1570
1609
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DeleteSubnetGroup AWS API Documentation
|
1571
1610
|
#
|
@@ -1760,6 +1799,8 @@ module Aws::MemoryDB
|
|
1760
1799
|
# resp.clusters[0].acl_name #=> String
|
1761
1800
|
# resp.clusters[0].auto_minor_version_upgrade #=> Boolean
|
1762
1801
|
# resp.clusters[0].data_tiering #=> String, one of "true", "false"
|
1802
|
+
# resp.clusters[0].network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
1803
|
+
# resp.clusters[0].ip_discovery #=> String, one of "ipv4", "ipv6"
|
1763
1804
|
#
|
1764
1805
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DescribeClusters AWS API Documentation
|
1765
1806
|
#
|
@@ -2435,7 +2476,11 @@ module Aws::MemoryDB
|
|
2435
2476
|
# resp.subnet_groups[0].subnets #=> Array
|
2436
2477
|
# resp.subnet_groups[0].subnets[0].identifier #=> String
|
2437
2478
|
# resp.subnet_groups[0].subnets[0].availability_zone.name #=> String
|
2479
|
+
# resp.subnet_groups[0].subnets[0].supported_network_types #=> Array
|
2480
|
+
# resp.subnet_groups[0].subnets[0].supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
|
2438
2481
|
# resp.subnet_groups[0].arn #=> String
|
2482
|
+
# resp.subnet_groups[0].supported_network_types #=> Array
|
2483
|
+
# resp.subnet_groups[0].supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
|
2439
2484
|
#
|
2440
2485
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/DescribeSubnetGroups AWS API Documentation
|
2441
2486
|
#
|
@@ -2582,6 +2627,8 @@ module Aws::MemoryDB
|
|
2582
2627
|
# resp.cluster.acl_name #=> String
|
2583
2628
|
# resp.cluster.auto_minor_version_upgrade #=> Boolean
|
2584
2629
|
# resp.cluster.data_tiering #=> String, one of "true", "false"
|
2630
|
+
# resp.cluster.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
2631
|
+
# resp.cluster.ip_discovery #=> String, one of "ipv4", "ipv6"
|
2585
2632
|
#
|
2586
2633
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/FailoverShard AWS API Documentation
|
2587
2634
|
#
|
@@ -2666,6 +2713,14 @@ module Aws::MemoryDB
|
|
2666
2713
|
# categorize and track your MemoryDB resources. For more information,
|
2667
2714
|
# see [Tagging your MemoryDB resources][1].
|
2668
2715
|
#
|
2716
|
+
# When you add or remove tags from multi region clusters, you might not
|
2717
|
+
# immediately see the latest effective tags in the ListTags API response
|
2718
|
+
# due to it being eventually consistent specifically for multi region
|
2719
|
+
# clusters. For more information, see [Tagging your MemoryDB
|
2720
|
+
# resources][1].
|
2721
|
+
#
|
2722
|
+
#
|
2723
|
+
#
|
2669
2724
|
#
|
2670
2725
|
#
|
2671
2726
|
# [1]: https://docs.aws.amazon.com/MemoryDB/latest/devguide/Tagging-Resources.html
|
@@ -2805,23 +2860,26 @@ module Aws::MemoryDB
|
|
2805
2860
|
req.send_request(options)
|
2806
2861
|
end
|
2807
2862
|
|
2808
|
-
#
|
2809
|
-
#
|
2810
|
-
#
|
2811
|
-
#
|
2812
|
-
#
|
2863
|
+
# Use this operation to add tags to a resource. A tag is a key-value
|
2864
|
+
# pair where the key and value are case-sensitive. You can use tags to
|
2865
|
+
# categorize and track all your MemoryDB resources. For more
|
2866
|
+
# information, see [Tagging your MemoryDB resources][1].
|
2867
|
+
#
|
2868
|
+
# When you add tags to multi region clusters, you might not immediately
|
2869
|
+
# see the latest effective tags in the ListTags API response due to it
|
2870
|
+
# being eventually consistent specifically for multi region clusters.
|
2871
|
+
# For more information, see [Tagging your MemoryDB resources][1].
|
2813
2872
|
#
|
2814
|
-
#
|
2815
|
-
#
|
2816
|
-
#
|
2817
|
-
#
|
2818
|
-
#
|
2819
|
-
#
|
2820
|
-
# Allocation Tags][2].
|
2873
|
+
# You can specify cost-allocation tags for your MemoryDB resources,
|
2874
|
+
# Amazon generates a cost allocation report as a comma-separated value
|
2875
|
+
# (CSV) file with your usage and costs aggregated by your tags. You can
|
2876
|
+
# apply tags that represent business categories (such as cost centers,
|
2877
|
+
# application names, or owners) to organize your costs across multiple
|
2878
|
+
# services. For more information, see [Using Cost Allocation Tags][2].
|
2821
2879
|
#
|
2822
2880
|
#
|
2823
2881
|
#
|
2824
|
-
# [1]: https://docs.aws.amazon.com/MemoryDB/latest/devguide/
|
2882
|
+
# [1]: https://docs.aws.amazon.com/MemoryDB/latest/devguide/Tagging-Resources.html
|
2825
2883
|
# [2]: https://docs.aws.amazon.com/MemoryDB/latest/devguide/tagging.html
|
2826
2884
|
#
|
2827
2885
|
# @option params [required, String] :resource_arn
|
@@ -2864,7 +2922,28 @@ module Aws::MemoryDB
|
|
2864
2922
|
req.send_request(options)
|
2865
2923
|
end
|
2866
2924
|
|
2867
|
-
# Use this operation to remove tags on a resource.
|
2925
|
+
# Use this operation to remove tags on a resource. A tag is a key-value
|
2926
|
+
# pair where the key and value are case-sensitive. You can use tags to
|
2927
|
+
# categorize and track all your MemoryDB resources. For more
|
2928
|
+
# information, see [Tagging your MemoryDB resources][1].
|
2929
|
+
#
|
2930
|
+
# When you remove tags from multi region clusters, you might not
|
2931
|
+
# immediately see the latest effective tags in the ListTags API response
|
2932
|
+
# due to it being eventually consistent specifically for multi region
|
2933
|
+
# clusters. For more information, see [Tagging your MemoryDB
|
2934
|
+
# resources][1].
|
2935
|
+
#
|
2936
|
+
# You can specify cost-allocation tags for your MemoryDB resources,
|
2937
|
+
# Amazon generates a cost allocation report as a comma-separated value
|
2938
|
+
# (CSV) file with your usage and costs aggregated by your tags. You can
|
2939
|
+
# apply tags that represent business categories (such as cost centers,
|
2940
|
+
# application names, or owners) to organize your costs across multiple
|
2941
|
+
# services. For more information, see [Using Cost Allocation Tags][2].
|
2942
|
+
#
|
2943
|
+
#
|
2944
|
+
#
|
2945
|
+
# [1]: https://docs.aws.amazon.com/MemoryDB/latest/devguide/Tagging-Resources.html
|
2946
|
+
# [2]: https://docs.aws.amazon.com/MemoryDB/latest/devguide/tagging.html
|
2868
2947
|
#
|
2869
2948
|
# @option params [required, String] :resource_arn
|
2870
2949
|
# The Amazon Resource Name (ARN) of the resource to which the tags are
|
@@ -3025,6 +3104,15 @@ module Aws::MemoryDB
|
|
3025
3104
|
# @option params [String] :acl_name
|
3026
3105
|
# The Access Control List that is associated with the cluster.
|
3027
3106
|
#
|
3107
|
+
# @option params [String] :ip_discovery
|
3108
|
+
# The mechanism for discovering IP addresses for the cluster discovery
|
3109
|
+
# protocol. Valid values are 'ipv4' or 'ipv6'. When set to 'ipv4',
|
3110
|
+
# cluster discovery functions such as cluster slots, cluster shards, and
|
3111
|
+
# cluster nodes will return IPv4 addresses for cluster nodes. When set
|
3112
|
+
# to 'ipv6', the cluster discovery functions return IPv6 addresses for
|
3113
|
+
# cluster nodes. The value must be compatible with the NetworkType
|
3114
|
+
# parameter. If not specified, the default is 'ipv4'.
|
3115
|
+
#
|
3028
3116
|
# @return [Types::UpdateClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3029
3117
|
#
|
3030
3118
|
# * {Types::UpdateClusterResponse#cluster #cluster} => Types::Cluster
|
@@ -3051,6 +3139,7 @@ module Aws::MemoryDB
|
|
3051
3139
|
# shard_count: 1,
|
3052
3140
|
# },
|
3053
3141
|
# acl_name: "ACLName",
|
3142
|
+
# ip_discovery: "ipv4", # accepts ipv4, ipv6
|
3054
3143
|
# })
|
3055
3144
|
#
|
3056
3145
|
# @example Response structure
|
@@ -3101,6 +3190,8 @@ module Aws::MemoryDB
|
|
3101
3190
|
# resp.cluster.acl_name #=> String
|
3102
3191
|
# resp.cluster.auto_minor_version_upgrade #=> Boolean
|
3103
3192
|
# resp.cluster.data_tiering #=> String, one of "true", "false"
|
3193
|
+
# resp.cluster.network_type #=> String, one of "ipv4", "ipv6", "dual_stack"
|
3194
|
+
# resp.cluster.ip_discovery #=> String, one of "ipv4", "ipv6"
|
3104
3195
|
#
|
3105
3196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UpdateCluster AWS API Documentation
|
3106
3197
|
#
|
@@ -3133,7 +3224,8 @@ module Aws::MemoryDB
|
|
3133
3224
|
# cluster.
|
3134
3225
|
#
|
3135
3226
|
# @option params [String] :update_strategy
|
3136
|
-
#
|
3227
|
+
# The strategy to use for the update operation. Supported values are
|
3228
|
+
# "coordinated" or "uncoordinated".
|
3137
3229
|
#
|
3138
3230
|
# @return [Types::UpdateMultiRegionClusterResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3139
3231
|
#
|
@@ -3261,7 +3353,11 @@ module Aws::MemoryDB
|
|
3261
3353
|
# resp.subnet_group.subnets #=> Array
|
3262
3354
|
# resp.subnet_group.subnets[0].identifier #=> String
|
3263
3355
|
# resp.subnet_group.subnets[0].availability_zone.name #=> String
|
3356
|
+
# resp.subnet_group.subnets[0].supported_network_types #=> Array
|
3357
|
+
# resp.subnet_group.subnets[0].supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
|
3264
3358
|
# resp.subnet_group.arn #=> String
|
3359
|
+
# resp.subnet_group.supported_network_types #=> Array
|
3360
|
+
# resp.subnet_group.supported_network_types[0] #=> String, one of "ipv4", "ipv6", "dual_stack"
|
3265
3361
|
#
|
3266
3362
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UpdateSubnetGroup AWS API Documentation
|
3267
3363
|
#
|
@@ -3338,7 +3434,7 @@ module Aws::MemoryDB
|
|
3338
3434
|
tracer: tracer
|
3339
3435
|
)
|
3340
3436
|
context[:gem_name] = 'aws-sdk-memorydb'
|
3341
|
-
context[:gem_version] = '1.
|
3437
|
+
context[:gem_version] = '1.44.0'
|
3342
3438
|
Seahorse::Client::Request.new(handlers, context)
|
3343
3439
|
end
|
3344
3440
|
|
@@ -134,6 +134,7 @@ module Aws::MemoryDB
|
|
134
134
|
InvalidSubnet = Shapes::StructureShape.new(name: 'InvalidSubnet')
|
135
135
|
InvalidUserStateFault = Shapes::StructureShape.new(name: 'InvalidUserStateFault')
|
136
136
|
InvalidVPCNetworkStateFault = Shapes::StructureShape.new(name: 'InvalidVPCNetworkStateFault')
|
137
|
+
IpDiscovery = Shapes::StringShape.new(name: 'IpDiscovery')
|
137
138
|
KeyList = Shapes::ListShape.new(name: 'KeyList')
|
138
139
|
KmsKeyId = Shapes::StringShape.new(name: 'KmsKeyId')
|
139
140
|
ListAllowedMultiRegionClusterUpdatesRequest = Shapes::StructureShape.new(name: 'ListAllowedMultiRegionClusterUpdatesRequest')
|
@@ -147,6 +148,8 @@ module Aws::MemoryDB
|
|
147
148
|
MultiRegionClusterList = Shapes::ListShape.new(name: 'MultiRegionClusterList')
|
148
149
|
MultiRegionClusterNotFoundFault = Shapes::StructureShape.new(name: 'MultiRegionClusterNotFoundFault')
|
149
150
|
MultiRegionParameterGroupNotFoundFault = Shapes::StructureShape.new(name: 'MultiRegionParameterGroupNotFoundFault')
|
151
|
+
NetworkType = Shapes::StringShape.new(name: 'NetworkType')
|
152
|
+
NetworkTypeList = Shapes::ListShape.new(name: 'NetworkTypeList')
|
150
153
|
NoOperationFault = Shapes::StructureShape.new(name: 'NoOperationFault')
|
151
154
|
Node = Shapes::StructureShape.new(name: 'Node')
|
152
155
|
NodeList = Shapes::ListShape.new(name: 'NodeList')
|
@@ -336,6 +339,8 @@ module Aws::MemoryDB
|
|
336
339
|
Cluster.add_member(:acl_name, Shapes::ShapeRef.new(shape: ACLName, location_name: "ACLName"))
|
337
340
|
Cluster.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoMinorVersionUpgrade"))
|
338
341
|
Cluster.add_member(:data_tiering, Shapes::ShapeRef.new(shape: DataTieringStatus, location_name: "DataTiering"))
|
342
|
+
Cluster.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
|
343
|
+
Cluster.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
|
339
344
|
Cluster.struct_class = Types::Cluster
|
340
345
|
|
341
346
|
ClusterAlreadyExistsFault.struct_class = Types::ClusterAlreadyExistsFault
|
@@ -414,6 +419,8 @@ module Aws::MemoryDB
|
|
414
419
|
CreateClusterRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: String, location_name: "EngineVersion"))
|
415
420
|
CreateClusterRequest.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoMinorVersionUpgrade"))
|
416
421
|
CreateClusterRequest.add_member(:data_tiering, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DataTiering"))
|
422
|
+
CreateClusterRequest.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "NetworkType"))
|
423
|
+
CreateClusterRequest.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
|
417
424
|
CreateClusterRequest.struct_class = Types::CreateClusterRequest
|
418
425
|
|
419
426
|
CreateClusterResponse.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
|
@@ -766,6 +773,8 @@ module Aws::MemoryDB
|
|
766
773
|
|
767
774
|
MultiRegionParameterGroupNotFoundFault.struct_class = Types::MultiRegionParameterGroupNotFoundFault
|
768
775
|
|
776
|
+
NetworkTypeList.member = Shapes::ShapeRef.new(shape: NetworkType)
|
777
|
+
|
769
778
|
NoOperationFault.struct_class = Types::NoOperationFault
|
770
779
|
|
771
780
|
Node.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
@@ -975,6 +984,7 @@ module Aws::MemoryDB
|
|
975
984
|
|
976
985
|
Subnet.add_member(:identifier, Shapes::ShapeRef.new(shape: String, location_name: "Identifier"))
|
977
986
|
Subnet.add_member(:availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZone, location_name: "AvailabilityZone"))
|
987
|
+
Subnet.add_member(:supported_network_types, Shapes::ShapeRef.new(shape: NetworkTypeList, location_name: "SupportedNetworkTypes"))
|
978
988
|
Subnet.struct_class = Types::Subnet
|
979
989
|
|
980
990
|
SubnetGroup.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
|
@@ -982,6 +992,7 @@ module Aws::MemoryDB
|
|
982
992
|
SubnetGroup.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "VpcId"))
|
983
993
|
SubnetGroup.add_member(:subnets, Shapes::ShapeRef.new(shape: SubnetList, location_name: "Subnets"))
|
984
994
|
SubnetGroup.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "ARN"))
|
995
|
+
SubnetGroup.add_member(:supported_network_types, Shapes::ShapeRef.new(shape: NetworkTypeList, location_name: "SupportedNetworkTypes"))
|
985
996
|
SubnetGroup.struct_class = Types::SubnetGroup
|
986
997
|
|
987
998
|
SubnetGroupAlreadyExistsFault.struct_class = Types::SubnetGroupAlreadyExistsFault
|
@@ -1060,6 +1071,7 @@ module Aws::MemoryDB
|
|
1060
1071
|
UpdateClusterRequest.add_member(:replica_configuration, Shapes::ShapeRef.new(shape: ReplicaConfigurationRequest, location_name: "ReplicaConfiguration"))
|
1061
1072
|
UpdateClusterRequest.add_member(:shard_configuration, Shapes::ShapeRef.new(shape: ShardConfigurationRequest, location_name: "ShardConfiguration"))
|
1062
1073
|
UpdateClusterRequest.add_member(:acl_name, Shapes::ShapeRef.new(shape: ACLName, location_name: "ACLName"))
|
1074
|
+
UpdateClusterRequest.add_member(:ip_discovery, Shapes::ShapeRef.new(shape: IpDiscovery, location_name: "IpDiscovery"))
|
1063
1075
|
UpdateClusterRequest.struct_class = Types::UpdateClusterRequest
|
1064
1076
|
|
1065
1077
|
UpdateClusterResponse.add_member(:cluster, Shapes::ShapeRef.new(shape: Cluster, location_name: "Cluster"))
|
@@ -331,6 +331,18 @@ module Aws::MemoryDB
|
|
331
331
|
# [1]: https://docs.aws.amazon.com/memorydb/latest/devguide/data-tiering.html
|
332
332
|
# @return [String]
|
333
333
|
#
|
334
|
+
# @!attribute [rw] network_type
|
335
|
+
# The IP address type for the cluster. Returns 'ipv4' for IPv4 only,
|
336
|
+
# 'ipv6' for IPv6 only, or 'dual-stack' if the cluster supports
|
337
|
+
# both IPv4 and IPv6 addressing.
|
338
|
+
# @return [String]
|
339
|
+
#
|
340
|
+
# @!attribute [rw] ip_discovery
|
341
|
+
# The mechanism that the cluster uses to discover IP addresses.
|
342
|
+
# Returns 'ipv4' when DNS endpoints resolve to IPv4 addresses, or
|
343
|
+
# 'ipv6' when DNS endpoints resolve to IPv6 addresses.
|
344
|
+
# @return [String]
|
345
|
+
#
|
334
346
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/Cluster AWS API Documentation
|
335
347
|
#
|
336
348
|
class Cluster < Struct.new(
|
@@ -361,7 +373,9 @@ module Aws::MemoryDB
|
|
361
373
|
:snapshot_window,
|
362
374
|
:acl_name,
|
363
375
|
:auto_minor_version_upgrade,
|
364
|
-
:data_tiering
|
376
|
+
:data_tiering,
|
377
|
+
:network_type,
|
378
|
+
:ip_discovery)
|
365
379
|
SENSITIVE = []
|
366
380
|
include Aws::Structure
|
367
381
|
end
|
@@ -739,6 +753,25 @@ module Aws::MemoryDB
|
|
739
753
|
# [1]: https://docs.aws.amazon.com/memorydb/latest/devguide/data-tiering.html
|
740
754
|
# @return [Boolean]
|
741
755
|
#
|
756
|
+
# @!attribute [rw] network_type
|
757
|
+
# Specifies the IP address type for the cluster. Valid values are
|
758
|
+
# 'ipv4', 'ipv6', or 'dual\_stack'. When set to 'ipv4', the
|
759
|
+
# cluster will only be accessible via IPv4 addresses. When set to
|
760
|
+
# 'ipv6', the cluster will only be accessible via IPv6 addresses.
|
761
|
+
# When set to 'dual\_stack', the cluster will be accessible via both
|
762
|
+
# IPv4 and IPv6 addresses. If not specified, the default is 'ipv4'.
|
763
|
+
# @return [String]
|
764
|
+
#
|
765
|
+
# @!attribute [rw] ip_discovery
|
766
|
+
# The mechanism for discovering IP addresses for the cluster discovery
|
767
|
+
# protocol. Valid values are 'ipv4' or 'ipv6'. When set to
|
768
|
+
# 'ipv4', cluster discovery functions such as cluster slots, cluster
|
769
|
+
# shards, and cluster nodes return IPv4 addresses for cluster nodes.
|
770
|
+
# When set to 'ipv6', the cluster discovery functions return IPv6
|
771
|
+
# addresses for cluster nodes. The value must be compatible with the
|
772
|
+
# NetworkType parameter. If not specified, the default is 'ipv4'.
|
773
|
+
# @return [String]
|
774
|
+
#
|
742
775
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/CreateClusterRequest AWS API Documentation
|
743
776
|
#
|
744
777
|
class CreateClusterRequest < Struct.new(
|
@@ -765,7 +798,9 @@ module Aws::MemoryDB
|
|
765
798
|
:engine,
|
766
799
|
:engine_version,
|
767
800
|
:auto_minor_version_upgrade,
|
768
|
-
:data_tiering
|
801
|
+
:data_tiering,
|
802
|
+
:network_type,
|
803
|
+
:ip_discovery)
|
769
804
|
SENSITIVE = []
|
770
805
|
include Aws::Structure
|
771
806
|
end
|
@@ -783,7 +818,13 @@ module Aws::MemoryDB
|
|
783
818
|
end
|
784
819
|
|
785
820
|
# @!attribute [rw] multi_region_cluster_name_suffix
|
786
|
-
# A suffix to be added to the
|
821
|
+
# A suffix to be added to the Multi-Region cluster name. Amazon
|
822
|
+
# MemoryDB automatically applies a prefix to the Multi-Region cluster
|
823
|
+
# Name when it is created. Each Amazon Region has its own prefix. For
|
824
|
+
# instance, a Multi-Region cluster Name created in the US-West-1
|
825
|
+
# region will begin with "virxk", along with the suffix name you
|
826
|
+
# provide. The suffix guarantees uniqueness of the Multi-Region
|
827
|
+
# cluster name across multiple regions.
|
787
828
|
# @return [String]
|
788
829
|
#
|
789
830
|
# @!attribute [rw] description
|
@@ -3149,11 +3190,19 @@ module Aws::MemoryDB
|
|
3149
3190
|
# The Availability Zone where the subnet resides
|
3150
3191
|
# @return [Types::AvailabilityZone]
|
3151
3192
|
#
|
3193
|
+
# @!attribute [rw] supported_network_types
|
3194
|
+
# The network types supported by this subnet. Returns an array of
|
3195
|
+
# strings that can include 'ipv4', 'ipv6', or both, indicating
|
3196
|
+
# whether the subnet supports IPv4 only, IPv6 only, or dual-stack
|
3197
|
+
# deployments.
|
3198
|
+
# @return [Array<String>]
|
3199
|
+
#
|
3152
3200
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/Subnet AWS API Documentation
|
3153
3201
|
#
|
3154
3202
|
class Subnet < Struct.new(
|
3155
3203
|
:identifier,
|
3156
|
-
:availability_zone
|
3204
|
+
:availability_zone,
|
3205
|
+
:supported_network_types)
|
3157
3206
|
SENSITIVE = []
|
3158
3207
|
include Aws::Structure
|
3159
3208
|
end
|
@@ -3189,6 +3238,13 @@ module Aws::MemoryDB
|
|
3189
3238
|
# The ARN (Amazon Resource Name) of the subnet group.
|
3190
3239
|
# @return [String]
|
3191
3240
|
#
|
3241
|
+
# @!attribute [rw] supported_network_types
|
3242
|
+
# The network types supported by this subnet group. Returns an array
|
3243
|
+
# of strings that can include 'ipv4', 'ipv6', or both, indicating
|
3244
|
+
# the IP address types that can be used for clusters deployed in this
|
3245
|
+
# subnet group.
|
3246
|
+
# @return [Array<String>]
|
3247
|
+
#
|
3192
3248
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/SubnetGroup AWS API Documentation
|
3193
3249
|
#
|
3194
3250
|
class SubnetGroup < Struct.new(
|
@@ -3196,7 +3252,8 @@ module Aws::MemoryDB
|
|
3196
3252
|
:description,
|
3197
3253
|
:vpc_id,
|
3198
3254
|
:subnets,
|
3199
|
-
:arn
|
3255
|
+
:arn,
|
3256
|
+
:supported_network_types)
|
3200
3257
|
SENSITIVE = []
|
3201
3258
|
include Aws::Structure
|
3202
3259
|
end
|
@@ -3479,6 +3536,17 @@ module Aws::MemoryDB
|
|
3479
3536
|
# The Access Control List that is associated with the cluster.
|
3480
3537
|
# @return [String]
|
3481
3538
|
#
|
3539
|
+
# @!attribute [rw] ip_discovery
|
3540
|
+
# The mechanism for discovering IP addresses for the cluster discovery
|
3541
|
+
# protocol. Valid values are 'ipv4' or 'ipv6'. When set to
|
3542
|
+
# 'ipv4', cluster discovery functions such as cluster slots, cluster
|
3543
|
+
# shards, and cluster nodes will return IPv4 addresses for cluster
|
3544
|
+
# nodes. When set to 'ipv6', the cluster discovery functions return
|
3545
|
+
# IPv6 addresses for cluster nodes. The value must be compatible with
|
3546
|
+
# the NetworkType parameter. If not specified, the default is
|
3547
|
+
# 'ipv4'.
|
3548
|
+
# @return [String]
|
3549
|
+
#
|
3482
3550
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UpdateClusterRequest AWS API Documentation
|
3483
3551
|
#
|
3484
3552
|
class UpdateClusterRequest < Struct.new(
|
@@ -3496,7 +3564,8 @@ module Aws::MemoryDB
|
|
3496
3564
|
:engine_version,
|
3497
3565
|
:replica_configuration,
|
3498
3566
|
:shard_configuration,
|
3499
|
-
:acl_name
|
3567
|
+
:acl_name,
|
3568
|
+
:ip_discovery)
|
3500
3569
|
SENSITIVE = []
|
3501
3570
|
include Aws::Structure
|
3502
3571
|
end
|
@@ -3539,7 +3608,8 @@ module Aws::MemoryDB
|
|
3539
3608
|
# @return [String]
|
3540
3609
|
#
|
3541
3610
|
# @!attribute [rw] update_strategy
|
3542
|
-
#
|
3611
|
+
# The strategy to use for the update operation. Supported values are
|
3612
|
+
# "coordinated" or "uncoordinated".
|
3543
3613
|
# @return [String]
|
3544
3614
|
#
|
3545
3615
|
# @see http://docs.aws.amazon.com/goto/WebAPI/memorydb-2021-01-01/UpdateMultiRegionClusterRequest AWS API Documentation
|
data/lib/aws-sdk-memorydb.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -162,7 +162,9 @@ module Aws
|
|
162
162
|
?engine: ::String,
|
163
163
|
?engine_version: ::String,
|
164
164
|
?auto_minor_version_upgrade: bool,
|
165
|
-
?data_tiering: bool
|
165
|
+
?data_tiering: bool,
|
166
|
+
?network_type: ("ipv4" | "ipv6" | "dual_stack"),
|
167
|
+
?ip_discovery: ("ipv4" | "ipv6")
|
166
168
|
) -> _CreateClusterResponseSuccess
|
167
169
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateClusterResponseSuccess
|
168
170
|
|
@@ -668,7 +670,8 @@ module Aws
|
|
668
670
|
?shard_configuration: {
|
669
671
|
shard_count: ::Integer?
|
670
672
|
},
|
671
|
-
?acl_name: ::String
|
673
|
+
?acl_name: ::String,
|
674
|
+
?ip_discovery: ("ipv4" | "ipv6")
|
672
675
|
) -> _UpdateClusterResponseSuccess
|
673
676
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateClusterResponseSuccess
|
674
677
|
|
data/sig/types.rbs
CHANGED
@@ -100,6 +100,8 @@ module Aws::MemoryDB
|
|
100
100
|
attr_accessor acl_name: ::String
|
101
101
|
attr_accessor auto_minor_version_upgrade: bool
|
102
102
|
attr_accessor data_tiering: ("true" | "false")
|
103
|
+
attr_accessor network_type: ("ipv4" | "ipv6" | "dual_stack")
|
104
|
+
attr_accessor ip_discovery: ("ipv4" | "ipv6")
|
103
105
|
SENSITIVE: []
|
104
106
|
end
|
105
107
|
|
@@ -191,6 +193,8 @@ module Aws::MemoryDB
|
|
191
193
|
attr_accessor engine_version: ::String
|
192
194
|
attr_accessor auto_minor_version_upgrade: bool
|
193
195
|
attr_accessor data_tiering: bool
|
196
|
+
attr_accessor network_type: ("ipv4" | "ipv6" | "dual_stack")
|
197
|
+
attr_accessor ip_discovery: ("ipv4" | "ipv6")
|
194
198
|
SENSITIVE: []
|
195
199
|
end
|
196
200
|
|
@@ -917,6 +921,7 @@ module Aws::MemoryDB
|
|
917
921
|
class Subnet
|
918
922
|
attr_accessor identifier: ::String
|
919
923
|
attr_accessor availability_zone: Types::AvailabilityZone
|
924
|
+
attr_accessor supported_network_types: ::Array[("ipv4" | "ipv6" | "dual_stack")]
|
920
925
|
SENSITIVE: []
|
921
926
|
end
|
922
927
|
|
@@ -926,6 +931,7 @@ module Aws::MemoryDB
|
|
926
931
|
attr_accessor vpc_id: ::String
|
927
932
|
attr_accessor subnets: ::Array[Types::Subnet]
|
928
933
|
attr_accessor arn: ::String
|
934
|
+
attr_accessor supported_network_types: ::Array[("ipv4" | "ipv6" | "dual_stack")]
|
929
935
|
SENSITIVE: []
|
930
936
|
end
|
931
937
|
|
@@ -1022,6 +1028,7 @@ module Aws::MemoryDB
|
|
1022
1028
|
attr_accessor replica_configuration: Types::ReplicaConfigurationRequest
|
1023
1029
|
attr_accessor shard_configuration: Types::ShardConfigurationRequest
|
1024
1030
|
attr_accessor acl_name: ::String
|
1031
|
+
attr_accessor ip_discovery: ("ipv4" | "ipv6")
|
1025
1032
|
SENSITIVE: []
|
1026
1033
|
end
|
1027
1034
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-memorydb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.44.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: 2025-
|
11
|
+
date: 2025-04-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|