aws-sdk-rds 1.152.0 → 1.153.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-rds/client.rb +208 -10
- data/lib/aws-sdk-rds/client_api.rb +6 -0
- data/lib/aws-sdk-rds/db_cluster.rb +91 -0
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +22 -0
- data/lib/aws-sdk-rds/resource.rb +22 -0
- data/lib/aws-sdk-rds/types.rb +152 -5
- data/lib/aws-sdk-rds.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: d931fe7c993d95db66d33dd1ad4a1e36c86772cd9638caff6e0c8634adc0ab40
|
|
4
|
+
data.tar.gz: 152641beab5edabc14be6ac44e8cd63aa946514f6e7b7cc8ed9112d0def22007
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1cd865007446476de379c2f64d375ff88e6ecdf6880e790f7b83da4b37d0322aa17b39fdf4e061e8a692df9074b68ab400d523ebc6f604e0e836dae93b110675
|
|
7
|
+
data.tar.gz: de69a794a9b50ba4b5f3b48bb95ff0d2750bd9cfae2acd398266ed0e159e31ef2f773a07a0215b48b16f9ee85e0d4e4aa485a1927a54a7879e94f02b01d148d8
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.153.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -665,18 +665,28 @@ module Aws::RDS
|
|
|
665
665
|
# EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either
|
|
666
666
|
# EC2SecurityGroupName or EC2SecurityGroupId for non-VPC).
|
|
667
667
|
#
|
|
668
|
-
#
|
|
668
|
+
# You can't authorize ingress from an EC2 security group in one Amazon
|
|
669
669
|
# Web Services Region to an Amazon RDS DB instance in another. You
|
|
670
670
|
# can't authorize ingress from a VPC security group in one VPC to an
|
|
671
671
|
# Amazon RDS DB instance in another.
|
|
672
672
|
#
|
|
673
|
-
# </note>
|
|
674
|
-
#
|
|
675
673
|
# For an overview of CIDR ranges, go to the [Wikipedia Tutorial][1].
|
|
676
674
|
#
|
|
675
|
+
# <note markdown="1"> EC2-Classic was retired on August 15, 2022. If you haven't migrated
|
|
676
|
+
# from EC2-Classic to a VPC, we recommend that you migrate as soon as
|
|
677
|
+
# possible. For more information, see [Migrate from EC2-Classic to a
|
|
678
|
+
# VPC][2] in the *Amazon EC2 User Guide*, the blog [EC2-Classic
|
|
679
|
+
# Networking is Retiring – Here’s How to Prepare][3], and [Moving a DB
|
|
680
|
+
# instance not in a VPC into a VPC][4] in the *Amazon RDS User Guide*.
|
|
681
|
+
#
|
|
682
|
+
# </note>
|
|
683
|
+
#
|
|
677
684
|
#
|
|
678
685
|
#
|
|
679
686
|
# [1]: http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing
|
|
687
|
+
# [2]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
|
688
|
+
# [3]: http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/
|
|
689
|
+
# [4]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html
|
|
680
690
|
#
|
|
681
691
|
# @option params [required, String] :db_security_group_name
|
|
682
692
|
# The name of the DB security group to add authorization to.
|
|
@@ -2762,6 +2772,28 @@ module Aws::RDS
|
|
|
2762
2772
|
#
|
|
2763
2773
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
2764
2774
|
#
|
|
2775
|
+
# @option params [String] :network_type
|
|
2776
|
+
# The network type of the DB cluster.
|
|
2777
|
+
#
|
|
2778
|
+
# Valid values:
|
|
2779
|
+
#
|
|
2780
|
+
# * `IPV4`
|
|
2781
|
+
#
|
|
2782
|
+
# * `DUAL`
|
|
2783
|
+
#
|
|
2784
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
2785
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
2786
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
2787
|
+
#
|
|
2788
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
|
2789
|
+
# the *Amazon Aurora User Guide.*
|
|
2790
|
+
#
|
|
2791
|
+
# Valid for: Aurora DB clusters only
|
|
2792
|
+
#
|
|
2793
|
+
#
|
|
2794
|
+
#
|
|
2795
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
2796
|
+
#
|
|
2765
2797
|
# @option params [String] :source_region
|
|
2766
2798
|
# The source region of the snapshot. This is only needed when the
|
|
2767
2799
|
# shapshot is encrypted and in a different region.
|
|
@@ -2860,6 +2892,7 @@ module Aws::RDS
|
|
|
2860
2892
|
# min_capacity: 1.0,
|
|
2861
2893
|
# max_capacity: 1.0,
|
|
2862
2894
|
# },
|
|
2895
|
+
# network_type: "String",
|
|
2863
2896
|
# source_region: "String",
|
|
2864
2897
|
# })
|
|
2865
2898
|
#
|
|
@@ -2967,6 +3000,7 @@ module Aws::RDS
|
|
|
2967
3000
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
2968
3001
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
2969
3002
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
3003
|
+
# resp.db_cluster.network_type #=> String
|
|
2970
3004
|
#
|
|
2971
3005
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
|
2972
3006
|
#
|
|
@@ -5852,11 +5886,24 @@ module Aws::RDS
|
|
|
5852
5886
|
# Creates a new DB security group. DB security groups control access to
|
|
5853
5887
|
# a DB instance.
|
|
5854
5888
|
#
|
|
5855
|
-
#
|
|
5889
|
+
# A DB security group controls access to EC2-Classic DB instances that
|
|
5856
5890
|
# are not in a VPC.
|
|
5857
5891
|
#
|
|
5892
|
+
# <note markdown="1"> EC2-Classic was retired on August 15, 2022. If you haven't migrated
|
|
5893
|
+
# from EC2-Classic to a VPC, we recommend that you migrate as soon as
|
|
5894
|
+
# possible. For more information, see [Migrate from EC2-Classic to a
|
|
5895
|
+
# VPC][1] in the *Amazon EC2 User Guide*, the blog [EC2-Classic
|
|
5896
|
+
# Networking is Retiring – Here’s How to Prepare][2], and [Moving a DB
|
|
5897
|
+
# instance not in a VPC into a VPC][3] in the *Amazon RDS User Guide*.
|
|
5898
|
+
#
|
|
5858
5899
|
# </note>
|
|
5859
5900
|
#
|
|
5901
|
+
#
|
|
5902
|
+
#
|
|
5903
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
|
5904
|
+
# [2]: http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/
|
|
5905
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html
|
|
5906
|
+
#
|
|
5860
5907
|
# @option params [required, String] :db_security_group_name
|
|
5861
5908
|
# The name for the DB security group. This value is stored as a
|
|
5862
5909
|
# lowercase string.
|
|
@@ -6165,11 +6212,18 @@ module Aws::RDS
|
|
|
6165
6212
|
# `SourceIds`, you are notified of events generated from all RDS sources
|
|
6166
6213
|
# belonging to your customer account.
|
|
6167
6214
|
#
|
|
6168
|
-
#
|
|
6169
|
-
#
|
|
6170
|
-
#
|
|
6215
|
+
# For more information about subscribing to an event for RDS DB engines,
|
|
6216
|
+
# see [ Subscribing to Amazon RDS event notification][1] in the *Amazon
|
|
6217
|
+
# RDS User Guide*.
|
|
6171
6218
|
#
|
|
6172
|
-
#
|
|
6219
|
+
# For more information about subscribing to an event for Aurora DB
|
|
6220
|
+
# engines, see [ Subscribing to Amazon RDS event notification][2] in the
|
|
6221
|
+
# *Amazon Aurora User Guide*.
|
|
6222
|
+
#
|
|
6223
|
+
#
|
|
6224
|
+
#
|
|
6225
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Events.Subscribing.html
|
|
6226
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Events.Subscribing.html
|
|
6173
6227
|
#
|
|
6174
6228
|
# @option params [required, String] :subscription_name
|
|
6175
6229
|
# The name of the subscription.
|
|
@@ -6861,6 +6915,7 @@ module Aws::RDS
|
|
|
6861
6915
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
6862
6916
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
6863
6917
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
6918
|
+
# resp.db_cluster.network_type #=> String
|
|
6864
6919
|
#
|
|
6865
6920
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
|
6866
6921
|
#
|
|
@@ -7539,11 +7594,24 @@ module Aws::RDS
|
|
|
7539
7594
|
|
|
7540
7595
|
# Deletes a DB security group.
|
|
7541
7596
|
#
|
|
7542
|
-
#
|
|
7597
|
+
# The specified DB security group must not be associated with any DB
|
|
7543
7598
|
# instances.
|
|
7544
7599
|
#
|
|
7600
|
+
# <note markdown="1"> EC2-Classic was retired on August 15, 2022. If you haven't migrated
|
|
7601
|
+
# from EC2-Classic to a VPC, we recommend that you migrate as soon as
|
|
7602
|
+
# possible. For more information, see [Migrate from EC2-Classic to a
|
|
7603
|
+
# VPC][1] in the *Amazon EC2 User Guide*, the blog [EC2-Classic
|
|
7604
|
+
# Networking is Retiring – Here’s How to Prepare][2], and [Moving a DB
|
|
7605
|
+
# instance not in a VPC into a VPC][3] in the *Amazon RDS User Guide*.
|
|
7606
|
+
#
|
|
7545
7607
|
# </note>
|
|
7546
7608
|
#
|
|
7609
|
+
#
|
|
7610
|
+
#
|
|
7611
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
|
7612
|
+
# [2]: http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/
|
|
7613
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html
|
|
7614
|
+
#
|
|
7547
7615
|
# @option params [required, String] :db_security_group_name
|
|
7548
7616
|
# The name of the DB security group to delete.
|
|
7549
7617
|
#
|
|
@@ -8922,6 +8990,7 @@ module Aws::RDS
|
|
|
8922
8990
|
# resp.db_clusters[0].performance_insights_retention_period #=> Integer
|
|
8923
8991
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
8924
8992
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
8993
|
+
# resp.db_clusters[0].network_type #=> String
|
|
8925
8994
|
#
|
|
8926
8995
|
#
|
|
8927
8996
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -10161,6 +10230,21 @@ module Aws::RDS
|
|
|
10161
10230
|
# `DBSecurityGroupName` is specified, the list will contain only the
|
|
10162
10231
|
# descriptions of the specified DB security group.
|
|
10163
10232
|
#
|
|
10233
|
+
# <note markdown="1"> EC2-Classic was retired on August 15, 2022. If you haven't migrated
|
|
10234
|
+
# from EC2-Classic to a VPC, we recommend that you migrate as soon as
|
|
10235
|
+
# possible. For more information, see [Migrate from EC2-Classic to a
|
|
10236
|
+
# VPC][1] in the *Amazon EC2 User Guide*, the blog [EC2-Classic
|
|
10237
|
+
# Networking is Retiring – Here’s How to Prepare][2], and [Moving a DB
|
|
10238
|
+
# instance not in a VPC into a VPC][3] in the *Amazon RDS User Guide*.
|
|
10239
|
+
#
|
|
10240
|
+
# </note>
|
|
10241
|
+
#
|
|
10242
|
+
#
|
|
10243
|
+
#
|
|
10244
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
|
10245
|
+
# [2]: http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/
|
|
10246
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html
|
|
10247
|
+
#
|
|
10164
10248
|
# @option params [String] :db_security_group_name
|
|
10165
10249
|
# The name of the DB security group to return details for.
|
|
10166
10250
|
#
|
|
@@ -12683,6 +12767,7 @@ module Aws::RDS
|
|
|
12683
12767
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
12684
12768
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
12685
12769
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
12770
|
+
# resp.db_cluster.network_type #=> String
|
|
12686
12771
|
#
|
|
12687
12772
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
|
12688
12773
|
#
|
|
@@ -13757,6 +13842,28 @@ module Aws::RDS
|
|
|
13757
13842
|
#
|
|
13758
13843
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
13759
13844
|
#
|
|
13845
|
+
# @option params [String] :network_type
|
|
13846
|
+
# The network type of the DB cluster.
|
|
13847
|
+
#
|
|
13848
|
+
# Valid values:
|
|
13849
|
+
#
|
|
13850
|
+
# * `IPV4`
|
|
13851
|
+
#
|
|
13852
|
+
# * `DUAL`
|
|
13853
|
+
#
|
|
13854
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
13855
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
13856
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
13857
|
+
#
|
|
13858
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
|
13859
|
+
# the *Amazon Aurora User Guide.*
|
|
13860
|
+
#
|
|
13861
|
+
# Valid for: Aurora DB clusters only
|
|
13862
|
+
#
|
|
13863
|
+
#
|
|
13864
|
+
#
|
|
13865
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
13866
|
+
#
|
|
13760
13867
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
13761
13868
|
#
|
|
13762
13869
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -13832,6 +13939,7 @@ module Aws::RDS
|
|
|
13832
13939
|
# min_capacity: 1.0,
|
|
13833
13940
|
# max_capacity: 1.0,
|
|
13834
13941
|
# },
|
|
13942
|
+
# network_type: "String",
|
|
13835
13943
|
# })
|
|
13836
13944
|
#
|
|
13837
13945
|
# @example Response structure
|
|
@@ -13938,6 +14046,7 @@ module Aws::RDS
|
|
|
13938
14046
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
13939
14047
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
13940
14048
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
14049
|
+
# resp.db_cluster.network_type #=> String
|
|
13941
14050
|
#
|
|
13942
14051
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
|
13943
14052
|
#
|
|
@@ -16677,6 +16786,7 @@ module Aws::RDS
|
|
|
16677
16786
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
16678
16787
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
16679
16788
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
16789
|
+
# resp.db_cluster.network_type #=> String
|
|
16680
16790
|
#
|
|
16681
16791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
|
16682
16792
|
#
|
|
@@ -16919,6 +17029,7 @@ module Aws::RDS
|
|
|
16919
17029
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
16920
17030
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
16921
17031
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
17032
|
+
# resp.db_cluster.network_type #=> String
|
|
16922
17033
|
#
|
|
16923
17034
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
|
|
16924
17035
|
#
|
|
@@ -17981,6 +18092,26 @@ module Aws::RDS
|
|
|
17981
18092
|
#
|
|
17982
18093
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
17983
18094
|
#
|
|
18095
|
+
# @option params [String] :network_type
|
|
18096
|
+
# The network type of the DB cluster.
|
|
18097
|
+
#
|
|
18098
|
+
# Valid values:
|
|
18099
|
+
#
|
|
18100
|
+
# * `IPV4`
|
|
18101
|
+
#
|
|
18102
|
+
# * `DUAL`
|
|
18103
|
+
#
|
|
18104
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
18105
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
18106
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
18107
|
+
#
|
|
18108
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
|
18109
|
+
# the *Amazon Aurora User Guide.*
|
|
18110
|
+
#
|
|
18111
|
+
#
|
|
18112
|
+
#
|
|
18113
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
18114
|
+
#
|
|
17984
18115
|
# @return [Types::RestoreDBClusterFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
17985
18116
|
#
|
|
17986
18117
|
# * {Types::RestoreDBClusterFromS3Result#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -18028,6 +18159,7 @@ module Aws::RDS
|
|
|
18028
18159
|
# min_capacity: 1.0,
|
|
18029
18160
|
# max_capacity: 1.0,
|
|
18030
18161
|
# },
|
|
18162
|
+
# network_type: "String",
|
|
18031
18163
|
# })
|
|
18032
18164
|
#
|
|
18033
18165
|
# @example Response structure
|
|
@@ -18134,6 +18266,7 @@ module Aws::RDS
|
|
|
18134
18266
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
18135
18267
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
18136
18268
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
18269
|
+
# resp.db_cluster.network_type #=> String
|
|
18137
18270
|
#
|
|
18138
18271
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
|
18139
18272
|
#
|
|
@@ -18573,6 +18706,28 @@ module Aws::RDS
|
|
|
18573
18706
|
#
|
|
18574
18707
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
18575
18708
|
#
|
|
18709
|
+
# @option params [String] :network_type
|
|
18710
|
+
# The network type of the DB cluster.
|
|
18711
|
+
#
|
|
18712
|
+
# Valid values:
|
|
18713
|
+
#
|
|
18714
|
+
# * `IPV4`
|
|
18715
|
+
#
|
|
18716
|
+
# * `DUAL`
|
|
18717
|
+
#
|
|
18718
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
18719
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
18720
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
18721
|
+
#
|
|
18722
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
|
18723
|
+
# the *Amazon Aurora User Guide.*
|
|
18724
|
+
#
|
|
18725
|
+
# Valid for: Aurora DB clusters only
|
|
18726
|
+
#
|
|
18727
|
+
#
|
|
18728
|
+
#
|
|
18729
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
18730
|
+
#
|
|
18576
18731
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
18577
18732
|
#
|
|
18578
18733
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -18639,6 +18794,7 @@ module Aws::RDS
|
|
|
18639
18794
|
# min_capacity: 1.0,
|
|
18640
18795
|
# max_capacity: 1.0,
|
|
18641
18796
|
# },
|
|
18797
|
+
# network_type: "String",
|
|
18642
18798
|
# })
|
|
18643
18799
|
#
|
|
18644
18800
|
# @example Response structure
|
|
@@ -18745,6 +18901,7 @@ module Aws::RDS
|
|
|
18745
18901
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
18746
18902
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
18747
18903
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
18904
|
+
# resp.db_cluster.network_type #=> String
|
|
18748
18905
|
#
|
|
18749
18906
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
|
18750
18907
|
#
|
|
@@ -19154,6 +19311,28 @@ module Aws::RDS
|
|
|
19154
19311
|
#
|
|
19155
19312
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
19156
19313
|
#
|
|
19314
|
+
# @option params [String] :network_type
|
|
19315
|
+
# The network type of the DB cluster.
|
|
19316
|
+
#
|
|
19317
|
+
# Valid values:
|
|
19318
|
+
#
|
|
19319
|
+
# * `IPV4`
|
|
19320
|
+
#
|
|
19321
|
+
# * `DUAL`
|
|
19322
|
+
#
|
|
19323
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
19324
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
19325
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
19326
|
+
#
|
|
19327
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
|
19328
|
+
# the *Amazon Aurora User Guide.*
|
|
19329
|
+
#
|
|
19330
|
+
# Valid for: Aurora DB clusters only
|
|
19331
|
+
#
|
|
19332
|
+
#
|
|
19333
|
+
#
|
|
19334
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
19335
|
+
#
|
|
19157
19336
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
19158
19337
|
#
|
|
19159
19338
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -19219,6 +19398,7 @@ module Aws::RDS
|
|
|
19219
19398
|
# min_capacity: 1.0,
|
|
19220
19399
|
# max_capacity: 1.0,
|
|
19221
19400
|
# },
|
|
19401
|
+
# network_type: "String",
|
|
19222
19402
|
# })
|
|
19223
19403
|
#
|
|
19224
19404
|
# @example Response structure
|
|
@@ -19325,6 +19505,7 @@ module Aws::RDS
|
|
|
19325
19505
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
19326
19506
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
19327
19507
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
19508
|
+
# resp.db_cluster.network_type #=> String
|
|
19328
19509
|
#
|
|
19329
19510
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
|
19330
19511
|
#
|
|
@@ -21448,6 +21629,21 @@ module Aws::RDS
|
|
|
21448
21629
|
# (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or
|
|
21449
21630
|
# EC2SecurityGroupId).
|
|
21450
21631
|
#
|
|
21632
|
+
# <note markdown="1"> EC2-Classic was retired on August 15, 2022. If you haven't migrated
|
|
21633
|
+
# from EC2-Classic to a VPC, we recommend that you migrate as soon as
|
|
21634
|
+
# possible. For more information, see [Migrate from EC2-Classic to a
|
|
21635
|
+
# VPC][1] in the *Amazon EC2 User Guide*, the blog [EC2-Classic
|
|
21636
|
+
# Networking is Retiring – Here’s How to Prepare][2], and [Moving a DB
|
|
21637
|
+
# instance not in a VPC into a VPC][3] in the *Amazon RDS User Guide*.
|
|
21638
|
+
#
|
|
21639
|
+
# </note>
|
|
21640
|
+
#
|
|
21641
|
+
#
|
|
21642
|
+
#
|
|
21643
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/vpc-migrate.html
|
|
21644
|
+
# [2]: http://aws.amazon.com/blogs/aws/ec2-classic-is-retiring-heres-how-to-prepare/
|
|
21645
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.Non-VPC2VPC.html
|
|
21646
|
+
#
|
|
21451
21647
|
# @option params [required, String] :db_security_group_name
|
|
21452
21648
|
# The name of the DB security group to revoke ingress from.
|
|
21453
21649
|
#
|
|
@@ -21735,6 +21931,7 @@ module Aws::RDS
|
|
|
21735
21931
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
21736
21932
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
21737
21933
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
21934
|
+
# resp.db_cluster.network_type #=> String
|
|
21738
21935
|
#
|
|
21739
21936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
|
21740
21937
|
#
|
|
@@ -22353,6 +22550,7 @@ module Aws::RDS
|
|
|
22353
22550
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
22354
22551
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
22355
22552
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
22553
|
+
# resp.db_cluster.network_type #=> String
|
|
22356
22554
|
#
|
|
22357
22555
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
|
22358
22556
|
#
|
|
@@ -22632,7 +22830,7 @@ module Aws::RDS
|
|
|
22632
22830
|
params: params,
|
|
22633
22831
|
config: config)
|
|
22634
22832
|
context[:gem_name] = 'aws-sdk-rds'
|
|
22635
|
-
context[:gem_version] = '1.
|
|
22833
|
+
context[:gem_version] = '1.153.0'
|
|
22636
22834
|
Seahorse::Client::Request.new(handlers, context)
|
|
22637
22835
|
end
|
|
22638
22836
|
|
|
@@ -854,6 +854,7 @@ module Aws::RDS
|
|
|
854
854
|
CreateDBClusterMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
855
855
|
CreateDBClusterMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
856
856
|
CreateDBClusterMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
857
|
+
CreateDBClusterMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
857
858
|
CreateDBClusterMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
|
858
859
|
CreateDBClusterMessage.struct_class = Types::CreateDBClusterMessage
|
|
859
860
|
|
|
@@ -1143,6 +1144,7 @@ module Aws::RDS
|
|
|
1143
1144
|
DBCluster.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
1144
1145
|
DBCluster.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
1145
1146
|
DBCluster.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfigurationInfo, location_name: "ServerlessV2ScalingConfiguration"))
|
|
1147
|
+
DBCluster.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
1146
1148
|
DBCluster.struct_class = Types::DBCluster
|
|
1147
1149
|
|
|
1148
1150
|
DBClusterAlreadyExistsFault.struct_class = Types::DBClusterAlreadyExistsFault
|
|
@@ -2439,6 +2441,7 @@ module Aws::RDS
|
|
|
2439
2441
|
ModifyDBClusterMessage.add_member(:performance_insights_kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "PerformanceInsightsKMSKeyId"))
|
|
2440
2442
|
ModifyDBClusterMessage.add_member(:performance_insights_retention_period, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "PerformanceInsightsRetentionPeriod"))
|
|
2441
2443
|
ModifyDBClusterMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
2444
|
+
ModifyDBClusterMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
2442
2445
|
ModifyDBClusterMessage.struct_class = Types::ModifyDBClusterMessage
|
|
2443
2446
|
|
|
2444
2447
|
ModifyDBClusterParameterGroupMessage.add_member(:db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "DBClusterParameterGroupName"))
|
|
@@ -3012,6 +3015,7 @@ module Aws::RDS
|
|
|
3012
3015
|
RestoreDBClusterFromS3Message.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
|
|
3013
3016
|
RestoreDBClusterFromS3Message.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
|
3014
3017
|
RestoreDBClusterFromS3Message.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
3018
|
+
RestoreDBClusterFromS3Message.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
3015
3019
|
RestoreDBClusterFromS3Message.struct_class = Types::RestoreDBClusterFromS3Message
|
|
3016
3020
|
|
|
3017
3021
|
RestoreDBClusterFromS3Result.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -3044,6 +3048,7 @@ module Aws::RDS
|
|
|
3044
3048
|
RestoreDBClusterFromSnapshotMessage.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
|
3045
3049
|
RestoreDBClusterFromSnapshotMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
|
3046
3050
|
RestoreDBClusterFromSnapshotMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
3051
|
+
RestoreDBClusterFromSnapshotMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
3047
3052
|
RestoreDBClusterFromSnapshotMessage.struct_class = Types::RestoreDBClusterFromSnapshotMessage
|
|
3048
3053
|
|
|
3049
3054
|
RestoreDBClusterFromSnapshotResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -3075,6 +3080,7 @@ module Aws::RDS
|
|
|
3075
3080
|
RestoreDBClusterToPointInTimeMessage.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "PubliclyAccessible"))
|
|
3076
3081
|
RestoreDBClusterToPointInTimeMessage.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
|
|
3077
3082
|
RestoreDBClusterToPointInTimeMessage.add_member(:serverless_v2_scaling_configuration, Shapes::ShapeRef.new(shape: ServerlessV2ScalingConfiguration, location_name: "ServerlessV2ScalingConfiguration"))
|
|
3083
|
+
RestoreDBClusterToPointInTimeMessage.add_member(:network_type, Shapes::ShapeRef.new(shape: String, location_name: "NetworkType"))
|
|
3078
3084
|
RestoreDBClusterToPointInTimeMessage.struct_class = Types::RestoreDBClusterToPointInTimeMessage
|
|
3079
3085
|
|
|
3080
3086
|
RestoreDBClusterToPointInTimeResult.add_member(:db_cluster, Shapes::ShapeRef.new(shape: DBCluster, location_name: "DBCluster"))
|
|
@@ -618,6 +618,31 @@ module Aws::RDS
|
|
|
618
618
|
data[:serverless_v2_scaling_configuration]
|
|
619
619
|
end
|
|
620
620
|
|
|
621
|
+
# The network type of the DB instance.
|
|
622
|
+
#
|
|
623
|
+
# Valid values:
|
|
624
|
+
#
|
|
625
|
+
# * `IPV4`
|
|
626
|
+
#
|
|
627
|
+
# * `DUAL`
|
|
628
|
+
#
|
|
629
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
630
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
631
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
632
|
+
#
|
|
633
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
|
634
|
+
# the *Amazon Aurora User Guide.*
|
|
635
|
+
#
|
|
636
|
+
# This setting is only for Aurora DB clusters.
|
|
637
|
+
#
|
|
638
|
+
#
|
|
639
|
+
#
|
|
640
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
641
|
+
# @return [String]
|
|
642
|
+
def network_type
|
|
643
|
+
data[:network_type]
|
|
644
|
+
end
|
|
645
|
+
|
|
621
646
|
# @!endgroup
|
|
622
647
|
|
|
623
648
|
# @return [Client]
|
|
@@ -814,6 +839,7 @@ module Aws::RDS
|
|
|
814
839
|
# min_capacity: 1.0,
|
|
815
840
|
# max_capacity: 1.0,
|
|
816
841
|
# },
|
|
842
|
+
# network_type: "String",
|
|
817
843
|
# source_region: "String",
|
|
818
844
|
# })
|
|
819
845
|
# @param [Hash] options ({})
|
|
@@ -1503,6 +1529,27 @@ module Aws::RDS
|
|
|
1503
1529
|
#
|
|
1504
1530
|
#
|
|
1505
1531
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
1532
|
+
# @option options [String] :network_type
|
|
1533
|
+
# The network type of the DB cluster.
|
|
1534
|
+
#
|
|
1535
|
+
# Valid values:
|
|
1536
|
+
#
|
|
1537
|
+
# * `IPV4`
|
|
1538
|
+
#
|
|
1539
|
+
# * `DUAL`
|
|
1540
|
+
#
|
|
1541
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
1542
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
1543
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
1544
|
+
#
|
|
1545
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
|
1546
|
+
# the *Amazon Aurora User Guide.*
|
|
1547
|
+
#
|
|
1548
|
+
# Valid for: Aurora DB clusters only
|
|
1549
|
+
#
|
|
1550
|
+
#
|
|
1551
|
+
#
|
|
1552
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
1506
1553
|
# @option options [String] :source_region
|
|
1507
1554
|
# The source region of the snapshot. This is only needed when the
|
|
1508
1555
|
# shapshot is encrypted and in a different region.
|
|
@@ -1678,6 +1725,7 @@ module Aws::RDS
|
|
|
1678
1725
|
# min_capacity: 1.0,
|
|
1679
1726
|
# max_capacity: 1.0,
|
|
1680
1727
|
# },
|
|
1728
|
+
# network_type: "String",
|
|
1681
1729
|
# })
|
|
1682
1730
|
# @param [Hash] options ({})
|
|
1683
1731
|
# @option options [String] :new_db_cluster_identifier
|
|
@@ -2139,6 +2187,27 @@ module Aws::RDS
|
|
|
2139
2187
|
#
|
|
2140
2188
|
#
|
|
2141
2189
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
2190
|
+
# @option options [String] :network_type
|
|
2191
|
+
# The network type of the DB cluster.
|
|
2192
|
+
#
|
|
2193
|
+
# Valid values:
|
|
2194
|
+
#
|
|
2195
|
+
# * `IPV4`
|
|
2196
|
+
#
|
|
2197
|
+
# * `DUAL`
|
|
2198
|
+
#
|
|
2199
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
2200
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
2201
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
2202
|
+
#
|
|
2203
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
|
2204
|
+
# the *Amazon Aurora User Guide.*
|
|
2205
|
+
#
|
|
2206
|
+
# Valid for: Aurora DB clusters only
|
|
2207
|
+
#
|
|
2208
|
+
#
|
|
2209
|
+
#
|
|
2210
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
2142
2211
|
# @return [DBCluster]
|
|
2143
2212
|
def modify(options = {})
|
|
2144
2213
|
options = options.merge(db_cluster_identifier: @id)
|
|
@@ -2193,6 +2262,7 @@ module Aws::RDS
|
|
|
2193
2262
|
# min_capacity: 1.0,
|
|
2194
2263
|
# max_capacity: 1.0,
|
|
2195
2264
|
# },
|
|
2265
|
+
# network_type: "String",
|
|
2196
2266
|
# })
|
|
2197
2267
|
# @param [Hash] options ({})
|
|
2198
2268
|
# @option options [required, String] :db_cluster_identifier
|
|
@@ -2529,6 +2599,27 @@ module Aws::RDS
|
|
|
2529
2599
|
#
|
|
2530
2600
|
#
|
|
2531
2601
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
2602
|
+
# @option options [String] :network_type
|
|
2603
|
+
# The network type of the DB cluster.
|
|
2604
|
+
#
|
|
2605
|
+
# Valid values:
|
|
2606
|
+
#
|
|
2607
|
+
# * `IPV4`
|
|
2608
|
+
#
|
|
2609
|
+
# * `DUAL`
|
|
2610
|
+
#
|
|
2611
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
2612
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
2613
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
2614
|
+
#
|
|
2615
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
|
2616
|
+
# the *Amazon Aurora User Guide.*
|
|
2617
|
+
#
|
|
2618
|
+
# Valid for: Aurora DB clusters only
|
|
2619
|
+
#
|
|
2620
|
+
#
|
|
2621
|
+
#
|
|
2622
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
2532
2623
|
# @return [DBCluster]
|
|
2533
2624
|
def restore(options = {})
|
|
2534
2625
|
options = options.merge(source_db_cluster_identifier: @id)
|
|
@@ -548,6 +548,7 @@ module Aws::RDS
|
|
|
548
548
|
# min_capacity: 1.0,
|
|
549
549
|
# max_capacity: 1.0,
|
|
550
550
|
# },
|
|
551
|
+
# network_type: "String",
|
|
551
552
|
# })
|
|
552
553
|
# @param [Hash] options ({})
|
|
553
554
|
# @option options [Array<String>] :availability_zones
|
|
@@ -910,6 +911,27 @@ module Aws::RDS
|
|
|
910
911
|
#
|
|
911
912
|
#
|
|
912
913
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
914
|
+
# @option options [String] :network_type
|
|
915
|
+
# The network type of the DB cluster.
|
|
916
|
+
#
|
|
917
|
+
# Valid values:
|
|
918
|
+
#
|
|
919
|
+
# * `IPV4`
|
|
920
|
+
#
|
|
921
|
+
# * `DUAL`
|
|
922
|
+
#
|
|
923
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
924
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
925
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
926
|
+
#
|
|
927
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
|
928
|
+
# the *Amazon Aurora User Guide.*
|
|
929
|
+
#
|
|
930
|
+
# Valid for: Aurora DB clusters only
|
|
931
|
+
#
|
|
932
|
+
#
|
|
933
|
+
#
|
|
934
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
913
935
|
# @return [DBCluster]
|
|
914
936
|
def restore(options = {})
|
|
915
937
|
options = options.merge(snapshot_identifier: @snapshot_id)
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
|
@@ -98,6 +98,7 @@ module Aws::RDS
|
|
|
98
98
|
# min_capacity: 1.0,
|
|
99
99
|
# max_capacity: 1.0,
|
|
100
100
|
# },
|
|
101
|
+
# network_type: "String",
|
|
101
102
|
# source_region: "String",
|
|
102
103
|
# })
|
|
103
104
|
# @param [Hash] options ({})
|
|
@@ -802,6 +803,27 @@ module Aws::RDS
|
|
|
802
803
|
#
|
|
803
804
|
#
|
|
804
805
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
806
|
+
# @option options [String] :network_type
|
|
807
|
+
# The network type of the DB cluster.
|
|
808
|
+
#
|
|
809
|
+
# Valid values:
|
|
810
|
+
#
|
|
811
|
+
# * `IPV4`
|
|
812
|
+
#
|
|
813
|
+
# * `DUAL`
|
|
814
|
+
#
|
|
815
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
816
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
817
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
818
|
+
#
|
|
819
|
+
# For more information, see [ Working with a DB instance in a VPC][1] in
|
|
820
|
+
# the *Amazon Aurora User Guide.*
|
|
821
|
+
#
|
|
822
|
+
# Valid for: Aurora DB clusters only
|
|
823
|
+
#
|
|
824
|
+
#
|
|
825
|
+
#
|
|
826
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
805
827
|
# @option options [String] :source_region
|
|
806
828
|
# The source region of the snapshot. This is only needed when the
|
|
807
829
|
# shapshot is encrypted and in a different region.
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -1873,6 +1873,7 @@ module Aws::RDS
|
|
|
1873
1873
|
# min_capacity: 1.0,
|
|
1874
1874
|
# max_capacity: 1.0,
|
|
1875
1875
|
# },
|
|
1876
|
+
# network_type: "String",
|
|
1876
1877
|
# source_region: "String",
|
|
1877
1878
|
# }
|
|
1878
1879
|
#
|
|
@@ -2672,6 +2673,29 @@ module Aws::RDS
|
|
|
2672
2673
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
2673
2674
|
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
2674
2675
|
#
|
|
2676
|
+
# @!attribute [rw] network_type
|
|
2677
|
+
# The network type of the DB cluster.
|
|
2678
|
+
#
|
|
2679
|
+
# Valid values:
|
|
2680
|
+
#
|
|
2681
|
+
# * `IPV4`
|
|
2682
|
+
#
|
|
2683
|
+
# * `DUAL`
|
|
2684
|
+
#
|
|
2685
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
2686
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
2687
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
2688
|
+
#
|
|
2689
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
2690
|
+
# in the *Amazon Aurora User Guide.*
|
|
2691
|
+
#
|
|
2692
|
+
# Valid for: Aurora DB clusters only
|
|
2693
|
+
#
|
|
2694
|
+
#
|
|
2695
|
+
#
|
|
2696
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
2697
|
+
# @return [String]
|
|
2698
|
+
#
|
|
2675
2699
|
# @!attribute [rw] source_region
|
|
2676
2700
|
# The source region of the snapshot. This is only needed when the
|
|
2677
2701
|
# shapshot is encrypted and in a different region.
|
|
@@ -2725,6 +2749,7 @@ module Aws::RDS
|
|
|
2725
2749
|
:performance_insights_kms_key_id,
|
|
2726
2750
|
:performance_insights_retention_period,
|
|
2727
2751
|
:serverless_v2_scaling_configuration,
|
|
2752
|
+
:network_type,
|
|
2728
2753
|
:source_region)
|
|
2729
2754
|
SENSITIVE = []
|
|
2730
2755
|
include Aws::Structure
|
|
@@ -6294,6 +6319,29 @@ module Aws::RDS
|
|
|
6294
6319
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
6295
6320
|
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
|
6296
6321
|
#
|
|
6322
|
+
# @!attribute [rw] network_type
|
|
6323
|
+
# The network type of the DB instance.
|
|
6324
|
+
#
|
|
6325
|
+
# Valid values:
|
|
6326
|
+
#
|
|
6327
|
+
# * `IPV4`
|
|
6328
|
+
#
|
|
6329
|
+
# * `DUAL`
|
|
6330
|
+
#
|
|
6331
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
6332
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
6333
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
6334
|
+
#
|
|
6335
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
6336
|
+
# in the *Amazon Aurora User Guide.*
|
|
6337
|
+
#
|
|
6338
|
+
# This setting is only for Aurora DB clusters.
|
|
6339
|
+
#
|
|
6340
|
+
#
|
|
6341
|
+
#
|
|
6342
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
6343
|
+
# @return [String]
|
|
6344
|
+
#
|
|
6297
6345
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
|
|
6298
6346
|
#
|
|
6299
6347
|
class DBCluster < Struct.new(
|
|
@@ -6364,7 +6412,8 @@ module Aws::RDS
|
|
|
6364
6412
|
:performance_insights_enabled,
|
|
6365
6413
|
:performance_insights_kms_key_id,
|
|
6366
6414
|
:performance_insights_retention_period,
|
|
6367
|
-
:serverless_v2_scaling_configuration
|
|
6415
|
+
:serverless_v2_scaling_configuration,
|
|
6416
|
+
:network_type)
|
|
6368
6417
|
SENSITIVE = []
|
|
6369
6418
|
include Aws::Structure
|
|
6370
6419
|
end
|
|
@@ -14812,6 +14861,7 @@ module Aws::RDS
|
|
|
14812
14861
|
# min_capacity: 1.0,
|
|
14813
14862
|
# max_capacity: 1.0,
|
|
14814
14863
|
# },
|
|
14864
|
+
# network_type: "String",
|
|
14815
14865
|
# }
|
|
14816
14866
|
#
|
|
14817
14867
|
# @!attribute [rw] db_cluster_identifier
|
|
@@ -15356,6 +15406,29 @@ module Aws::RDS
|
|
|
15356
15406
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
15357
15407
|
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
15358
15408
|
#
|
|
15409
|
+
# @!attribute [rw] network_type
|
|
15410
|
+
# The network type of the DB cluster.
|
|
15411
|
+
#
|
|
15412
|
+
# Valid values:
|
|
15413
|
+
#
|
|
15414
|
+
# * `IPV4`
|
|
15415
|
+
#
|
|
15416
|
+
# * `DUAL`
|
|
15417
|
+
#
|
|
15418
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
15419
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
15420
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
15421
|
+
#
|
|
15422
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
15423
|
+
# in the *Amazon Aurora User Guide.*
|
|
15424
|
+
#
|
|
15425
|
+
# Valid for: Aurora DB clusters only
|
|
15426
|
+
#
|
|
15427
|
+
#
|
|
15428
|
+
#
|
|
15429
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
15430
|
+
# @return [String]
|
|
15431
|
+
#
|
|
15359
15432
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
|
15360
15433
|
#
|
|
15361
15434
|
class ModifyDBClusterMessage < Struct.new(
|
|
@@ -15393,7 +15466,8 @@ module Aws::RDS
|
|
|
15393
15466
|
:enable_performance_insights,
|
|
15394
15467
|
:performance_insights_kms_key_id,
|
|
15395
15468
|
:performance_insights_retention_period,
|
|
15396
|
-
:serverless_v2_scaling_configuration
|
|
15469
|
+
:serverless_v2_scaling_configuration,
|
|
15470
|
+
:network_type)
|
|
15397
15471
|
SENSITIVE = []
|
|
15398
15472
|
include Aws::Structure
|
|
15399
15473
|
end
|
|
@@ -19549,6 +19623,7 @@ module Aws::RDS
|
|
|
19549
19623
|
# min_capacity: 1.0,
|
|
19550
19624
|
# max_capacity: 1.0,
|
|
19551
19625
|
# },
|
|
19626
|
+
# network_type: "String",
|
|
19552
19627
|
# }
|
|
19553
19628
|
#
|
|
19554
19629
|
# @!attribute [rw] availability_zones
|
|
@@ -19890,6 +19965,27 @@ module Aws::RDS
|
|
|
19890
19965
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
19891
19966
|
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
19892
19967
|
#
|
|
19968
|
+
# @!attribute [rw] network_type
|
|
19969
|
+
# The network type of the DB cluster.
|
|
19970
|
+
#
|
|
19971
|
+
# Valid values:
|
|
19972
|
+
#
|
|
19973
|
+
# * `IPV4`
|
|
19974
|
+
#
|
|
19975
|
+
# * `DUAL`
|
|
19976
|
+
#
|
|
19977
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
19978
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
19979
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
19980
|
+
#
|
|
19981
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
19982
|
+
# in the *Amazon Aurora User Guide.*
|
|
19983
|
+
#
|
|
19984
|
+
#
|
|
19985
|
+
#
|
|
19986
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
19987
|
+
# @return [String]
|
|
19988
|
+
#
|
|
19893
19989
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3Message AWS API Documentation
|
|
19894
19990
|
#
|
|
19895
19991
|
class RestoreDBClusterFromS3Message < Struct.new(
|
|
@@ -19924,7 +20020,8 @@ module Aws::RDS
|
|
|
19924
20020
|
:copy_tags_to_snapshot,
|
|
19925
20021
|
:domain,
|
|
19926
20022
|
:domain_iam_role_name,
|
|
19927
|
-
:serverless_v2_scaling_configuration
|
|
20023
|
+
:serverless_v2_scaling_configuration,
|
|
20024
|
+
:network_type)
|
|
19928
20025
|
SENSITIVE = []
|
|
19929
20026
|
include Aws::Structure
|
|
19930
20027
|
end
|
|
@@ -20014,6 +20111,7 @@ module Aws::RDS
|
|
|
20014
20111
|
# min_capacity: 1.0,
|
|
20015
20112
|
# max_capacity: 1.0,
|
|
20016
20113
|
# },
|
|
20114
|
+
# network_type: "String",
|
|
20017
20115
|
# }
|
|
20018
20116
|
#
|
|
20019
20117
|
# @!attribute [rw] availability_zones
|
|
@@ -20451,6 +20549,29 @@ module Aws::RDS
|
|
|
20451
20549
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
20452
20550
|
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
20453
20551
|
#
|
|
20552
|
+
# @!attribute [rw] network_type
|
|
20553
|
+
# The network type of the DB cluster.
|
|
20554
|
+
#
|
|
20555
|
+
# Valid values:
|
|
20556
|
+
#
|
|
20557
|
+
# * `IPV4`
|
|
20558
|
+
#
|
|
20559
|
+
# * `DUAL`
|
|
20560
|
+
#
|
|
20561
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
20562
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
20563
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
20564
|
+
#
|
|
20565
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
20566
|
+
# in the *Amazon Aurora User Guide.*
|
|
20567
|
+
#
|
|
20568
|
+
# Valid for: Aurora DB clusters only
|
|
20569
|
+
#
|
|
20570
|
+
#
|
|
20571
|
+
#
|
|
20572
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
20573
|
+
# @return [String]
|
|
20574
|
+
#
|
|
20454
20575
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
|
20455
20576
|
#
|
|
20456
20577
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
|
@@ -20480,7 +20601,8 @@ module Aws::RDS
|
|
|
20480
20601
|
:storage_type,
|
|
20481
20602
|
:iops,
|
|
20482
20603
|
:publicly_accessible,
|
|
20483
|
-
:serverless_v2_scaling_configuration
|
|
20604
|
+
:serverless_v2_scaling_configuration,
|
|
20605
|
+
:network_type)
|
|
20484
20606
|
SENSITIVE = []
|
|
20485
20607
|
include Aws::Structure
|
|
20486
20608
|
end
|
|
@@ -20569,6 +20691,7 @@ module Aws::RDS
|
|
|
20569
20691
|
# min_capacity: 1.0,
|
|
20570
20692
|
# max_capacity: 1.0,
|
|
20571
20693
|
# },
|
|
20694
|
+
# network_type: "String",
|
|
20572
20695
|
# }
|
|
20573
20696
|
#
|
|
20574
20697
|
# @!attribute [rw] db_cluster_identifier
|
|
@@ -20969,6 +21092,29 @@ module Aws::RDS
|
|
|
20969
21092
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
20970
21093
|
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
20971
21094
|
#
|
|
21095
|
+
# @!attribute [rw] network_type
|
|
21096
|
+
# The network type of the DB cluster.
|
|
21097
|
+
#
|
|
21098
|
+
# Valid values:
|
|
21099
|
+
#
|
|
21100
|
+
# * `IPV4`
|
|
21101
|
+
#
|
|
21102
|
+
# * `DUAL`
|
|
21103
|
+
#
|
|
21104
|
+
# The network type is determined by the `DBSubnetGroup` specified for
|
|
21105
|
+
# the DB cluster. A `DBSubnetGroup` can support only the IPv4 protocol
|
|
21106
|
+
# or the IPv4 and the IPv6 protocols (`DUAL`).
|
|
21107
|
+
#
|
|
21108
|
+
# For more information, see [ Working with a DB instance in a VPC][1]
|
|
21109
|
+
# in the *Amazon Aurora User Guide.*
|
|
21110
|
+
#
|
|
21111
|
+
# Valid for: Aurora DB clusters only
|
|
21112
|
+
#
|
|
21113
|
+
#
|
|
21114
|
+
#
|
|
21115
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
|
21116
|
+
# @return [String]
|
|
21117
|
+
#
|
|
20972
21118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
|
20973
21119
|
#
|
|
20974
21120
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
|
@@ -20997,7 +21143,8 @@ module Aws::RDS
|
|
|
20997
21143
|
:storage_type,
|
|
20998
21144
|
:publicly_accessible,
|
|
20999
21145
|
:iops,
|
|
21000
|
-
:serverless_v2_scaling_configuration
|
|
21146
|
+
:serverless_v2_scaling_configuration,
|
|
21147
|
+
:network_type)
|
|
21001
21148
|
SENSITIVE = []
|
|
21002
21149
|
include Aws::Structure
|
|
21003
21150
|
end
|
data/lib/aws-sdk-rds.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-rds
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.153.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: 2022-08-
|
|
11
|
+
date: 2022-08-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|