aws-sdk-rds 1.150.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +217 -18
- 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/db_instance.rb +6 -6
- data/lib/aws-sdk-rds/resource.rb +22 -0
- data/lib/aws-sdk-rds/types.rb +164 -15
- 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
|
@@ -1,6 +1,21 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.153.0 (2022-08-17)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Adds support for Internet Protocol Version 6 (IPv6) for RDS Aurora database clusters.
|
|
8
|
+
|
|
9
|
+
1.152.0 (2022-08-12)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Adds support for RDS Custom to DBInstanceClass in ModifyDBInstance
|
|
13
|
+
|
|
14
|
+
1.151.0 (2022-07-26)
|
|
15
|
+
------------------
|
|
16
|
+
|
|
17
|
+
* Feature - Adds support for using RDS Proxies with RDS for MariaDB databases.
|
|
18
|
+
|
|
4
19
|
1.150.0 (2022-07-22)
|
|
5
20
|
------------------
|
|
6
21
|
|
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
|
#
|
|
@@ -5663,8 +5697,9 @@ module Aws::RDS
|
|
|
5663
5697
|
# The kinds of databases that the proxy can connect to. This value
|
|
5664
5698
|
# determines which database network protocol the proxy recognizes when
|
|
5665
5699
|
# it interprets network traffic to and from the database. For Aurora
|
|
5666
|
-
# MySQL and RDS for MySQL databases, specify `MYSQL`.
|
|
5667
|
-
# PostgreSQL and RDS for PostgreSQL databases, specify
|
|
5700
|
+
# MySQL, RDS for MariaDB, and RDS for MySQL databases, specify `MYSQL`.
|
|
5701
|
+
# For Aurora PostgreSQL and RDS for PostgreSQL databases, specify
|
|
5702
|
+
# `POSTGRESQL`.
|
|
5668
5703
|
#
|
|
5669
5704
|
# @option params [required, Array<Types::UserAuthConfig>] :auth
|
|
5670
5705
|
# The authorization mechanism that the proxy uses.
|
|
@@ -5851,11 +5886,24 @@ module Aws::RDS
|
|
|
5851
5886
|
# Creates a new DB security group. DB security groups control access to
|
|
5852
5887
|
# a DB instance.
|
|
5853
5888
|
#
|
|
5854
|
-
#
|
|
5889
|
+
# A DB security group controls access to EC2-Classic DB instances that
|
|
5855
5890
|
# are not in a VPC.
|
|
5856
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
|
+
#
|
|
5857
5899
|
# </note>
|
|
5858
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
|
+
#
|
|
5859
5907
|
# @option params [required, String] :db_security_group_name
|
|
5860
5908
|
# The name for the DB security group. This value is stored as a
|
|
5861
5909
|
# lowercase string.
|
|
@@ -6164,11 +6212,18 @@ module Aws::RDS
|
|
|
6164
6212
|
# `SourceIds`, you are notified of events generated from all RDS sources
|
|
6165
6213
|
# belonging to your customer account.
|
|
6166
6214
|
#
|
|
6167
|
-
#
|
|
6168
|
-
#
|
|
6169
|
-
#
|
|
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*.
|
|
6218
|
+
#
|
|
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
|
+
#
|
|
6170
6223
|
#
|
|
6171
|
-
#
|
|
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
|
|
6172
6227
|
#
|
|
6173
6228
|
# @option params [required, String] :subscription_name
|
|
6174
6229
|
# The name of the subscription.
|
|
@@ -6860,6 +6915,7 @@ module Aws::RDS
|
|
|
6860
6915
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
6861
6916
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
6862
6917
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
6918
|
+
# resp.db_cluster.network_type #=> String
|
|
6863
6919
|
#
|
|
6864
6920
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
|
6865
6921
|
#
|
|
@@ -7538,11 +7594,24 @@ module Aws::RDS
|
|
|
7538
7594
|
|
|
7539
7595
|
# Deletes a DB security group.
|
|
7540
7596
|
#
|
|
7541
|
-
#
|
|
7597
|
+
# The specified DB security group must not be associated with any DB
|
|
7542
7598
|
# instances.
|
|
7543
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
|
+
#
|
|
7544
7607
|
# </note>
|
|
7545
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
|
+
#
|
|
7546
7615
|
# @option params [required, String] :db_security_group_name
|
|
7547
7616
|
# The name of the DB security group to delete.
|
|
7548
7617
|
#
|
|
@@ -8921,6 +8990,7 @@ module Aws::RDS
|
|
|
8921
8990
|
# resp.db_clusters[0].performance_insights_retention_period #=> Integer
|
|
8922
8991
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
8923
8992
|
# resp.db_clusters[0].serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
8993
|
+
# resp.db_clusters[0].network_type #=> String
|
|
8924
8994
|
#
|
|
8925
8995
|
#
|
|
8926
8996
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
|
@@ -10160,6 +10230,21 @@ module Aws::RDS
|
|
|
10160
10230
|
# `DBSecurityGroupName` is specified, the list will contain only the
|
|
10161
10231
|
# descriptions of the specified DB security group.
|
|
10162
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
|
+
#
|
|
10163
10248
|
# @option params [String] :db_security_group_name
|
|
10164
10249
|
# The name of the DB security group to return details for.
|
|
10165
10250
|
#
|
|
@@ -12682,6 +12767,7 @@ module Aws::RDS
|
|
|
12682
12767
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
12683
12768
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
12684
12769
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
12770
|
+
# resp.db_cluster.network_type #=> String
|
|
12685
12771
|
#
|
|
12686
12772
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
|
12687
12773
|
#
|
|
@@ -13756,6 +13842,28 @@ module Aws::RDS
|
|
|
13756
13842
|
#
|
|
13757
13843
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
13758
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
|
+
#
|
|
13759
13867
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
13760
13868
|
#
|
|
13761
13869
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -13831,6 +13939,7 @@ module Aws::RDS
|
|
|
13831
13939
|
# min_capacity: 1.0,
|
|
13832
13940
|
# max_capacity: 1.0,
|
|
13833
13941
|
# },
|
|
13942
|
+
# network_type: "String",
|
|
13834
13943
|
# })
|
|
13835
13944
|
#
|
|
13836
13945
|
# @example Response structure
|
|
@@ -13937,6 +14046,7 @@ module Aws::RDS
|
|
|
13937
14046
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
13938
14047
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
13939
14048
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
14049
|
+
# resp.db_cluster.network_type #=> String
|
|
13940
14050
|
#
|
|
13941
14051
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
|
13942
14052
|
#
|
|
@@ -14282,24 +14392,24 @@ module Aws::RDS
|
|
|
14282
14392
|
#
|
|
14283
14393
|
# @option params [String] :db_instance_class
|
|
14284
14394
|
# The new compute and memory capacity of the DB instance, for example
|
|
14285
|
-
# db.
|
|
14395
|
+
# db.m4.large. Not all DB instance classes are available in all Amazon
|
|
14286
14396
|
# Web Services Regions, or for all database engines. For the full list
|
|
14287
14397
|
# of DB instance classes, and availability for your engine, see [DB
|
|
14288
|
-
#
|
|
14289
|
-
# instance
|
|
14398
|
+
# Instance Class][1] in the *Amazon RDS User Guide*. For RDS Custom, see
|
|
14399
|
+
# [DB instance class support for RDS Custom for Oracle][2] and [DB
|
|
14400
|
+
# instance class support for RDS Custom for SQL Server][3].
|
|
14290
14401
|
#
|
|
14291
14402
|
# If you modify the DB instance class, an outage occurs during the
|
|
14292
14403
|
# change. The change is applied during the next maintenance window,
|
|
14293
14404
|
# unless `ApplyImmediately` is enabled for this request.
|
|
14294
14405
|
#
|
|
14295
|
-
# This setting doesn't apply to RDS Custom for Oracle.
|
|
14296
|
-
#
|
|
14297
14406
|
# Default: Uses existing setting
|
|
14298
14407
|
#
|
|
14299
14408
|
#
|
|
14300
14409
|
#
|
|
14301
14410
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
|
14302
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
|
14411
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html#custom-reqs-limits.instances
|
|
14412
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html#custom-reqs-limits.instancesMS
|
|
14303
14413
|
#
|
|
14304
14414
|
# @option params [String] :db_subnet_group_name
|
|
14305
14415
|
# The new DB subnet group for the DB instance. You can use this
|
|
@@ -16676,6 +16786,7 @@ module Aws::RDS
|
|
|
16676
16786
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
16677
16787
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
16678
16788
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
16789
|
+
# resp.db_cluster.network_type #=> String
|
|
16679
16790
|
#
|
|
16680
16791
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
|
16681
16792
|
#
|
|
@@ -16918,6 +17029,7 @@ module Aws::RDS
|
|
|
16918
17029
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
16919
17030
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
16920
17031
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
17032
|
+
# resp.db_cluster.network_type #=> String
|
|
16921
17033
|
#
|
|
16922
17034
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBCluster AWS API Documentation
|
|
16923
17035
|
#
|
|
@@ -17980,6 +18092,26 @@ module Aws::RDS
|
|
|
17980
18092
|
#
|
|
17981
18093
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
17982
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
|
+
#
|
|
17983
18115
|
# @return [Types::RestoreDBClusterFromS3Result] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
17984
18116
|
#
|
|
17985
18117
|
# * {Types::RestoreDBClusterFromS3Result#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -18027,6 +18159,7 @@ module Aws::RDS
|
|
|
18027
18159
|
# min_capacity: 1.0,
|
|
18028
18160
|
# max_capacity: 1.0,
|
|
18029
18161
|
# },
|
|
18162
|
+
# network_type: "String",
|
|
18030
18163
|
# })
|
|
18031
18164
|
#
|
|
18032
18165
|
# @example Response structure
|
|
@@ -18133,6 +18266,7 @@ module Aws::RDS
|
|
|
18133
18266
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
18134
18267
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
18135
18268
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
18269
|
+
# resp.db_cluster.network_type #=> String
|
|
18136
18270
|
#
|
|
18137
18271
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
|
18138
18272
|
#
|
|
@@ -18572,6 +18706,28 @@ module Aws::RDS
|
|
|
18572
18706
|
#
|
|
18573
18707
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
18574
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
|
+
#
|
|
18575
18731
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
18576
18732
|
#
|
|
18577
18733
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -18638,6 +18794,7 @@ module Aws::RDS
|
|
|
18638
18794
|
# min_capacity: 1.0,
|
|
18639
18795
|
# max_capacity: 1.0,
|
|
18640
18796
|
# },
|
|
18797
|
+
# network_type: "String",
|
|
18641
18798
|
# })
|
|
18642
18799
|
#
|
|
18643
18800
|
# @example Response structure
|
|
@@ -18744,6 +18901,7 @@ module Aws::RDS
|
|
|
18744
18901
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
18745
18902
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
18746
18903
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
18904
|
+
# resp.db_cluster.network_type #=> String
|
|
18747
18905
|
#
|
|
18748
18906
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
|
18749
18907
|
#
|
|
@@ -19153,6 +19311,28 @@ module Aws::RDS
|
|
|
19153
19311
|
#
|
|
19154
19312
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
19155
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
|
+
#
|
|
19156
19336
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
19157
19337
|
#
|
|
19158
19338
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -19218,6 +19398,7 @@ module Aws::RDS
|
|
|
19218
19398
|
# min_capacity: 1.0,
|
|
19219
19399
|
# max_capacity: 1.0,
|
|
19220
19400
|
# },
|
|
19401
|
+
# network_type: "String",
|
|
19221
19402
|
# })
|
|
19222
19403
|
#
|
|
19223
19404
|
# @example Response structure
|
|
@@ -19324,6 +19505,7 @@ module Aws::RDS
|
|
|
19324
19505
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
19325
19506
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
19326
19507
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
19508
|
+
# resp.db_cluster.network_type #=> String
|
|
19327
19509
|
#
|
|
19328
19510
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
|
19329
19511
|
#
|
|
@@ -21447,6 +21629,21 @@ module Aws::RDS
|
|
|
21447
21629
|
# (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or
|
|
21448
21630
|
# EC2SecurityGroupId).
|
|
21449
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
|
+
#
|
|
21450
21647
|
# @option params [required, String] :db_security_group_name
|
|
21451
21648
|
# The name of the DB security group to revoke ingress from.
|
|
21452
21649
|
#
|
|
@@ -21734,6 +21931,7 @@ module Aws::RDS
|
|
|
21734
21931
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
21735
21932
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
21736
21933
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
21934
|
+
# resp.db_cluster.network_type #=> String
|
|
21737
21935
|
#
|
|
21738
21936
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBCluster AWS API Documentation
|
|
21739
21937
|
#
|
|
@@ -22352,6 +22550,7 @@ module Aws::RDS
|
|
|
22352
22550
|
# resp.db_cluster.performance_insights_retention_period #=> Integer
|
|
22353
22551
|
# resp.db_cluster.serverless_v2_scaling_configuration.min_capacity #=> Float
|
|
22354
22552
|
# resp.db_cluster.serverless_v2_scaling_configuration.max_capacity #=> Float
|
|
22553
|
+
# resp.db_cluster.network_type #=> String
|
|
22355
22554
|
#
|
|
22356
22555
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBCluster AWS API Documentation
|
|
22357
22556
|
#
|
|
@@ -22631,7 +22830,7 @@ module Aws::RDS
|
|
|
22631
22830
|
params: params,
|
|
22632
22831
|
config: config)
|
|
22633
22832
|
context[:gem_name] = 'aws-sdk-rds'
|
|
22634
|
-
context[:gem_version] = '1.
|
|
22833
|
+
context[:gem_version] = '1.153.0'
|
|
22635
22834
|
Seahorse::Client::Request.new(handlers, context)
|
|
22636
22835
|
end
|
|
22637
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)
|
|
@@ -2674,24 +2674,24 @@ module Aws::RDS
|
|
|
2674
2674
|
# `CreateDBInstance`.
|
|
2675
2675
|
# @option options [String] :db_instance_class
|
|
2676
2676
|
# The new compute and memory capacity of the DB instance, for example
|
|
2677
|
-
# db.
|
|
2677
|
+
# db.m4.large. Not all DB instance classes are available in all Amazon
|
|
2678
2678
|
# Web Services Regions, or for all database engines. For the full list
|
|
2679
2679
|
# of DB instance classes, and availability for your engine, see [DB
|
|
2680
|
-
#
|
|
2681
|
-
# instance
|
|
2680
|
+
# Instance Class][1] in the *Amazon RDS User Guide*. For RDS Custom, see
|
|
2681
|
+
# [DB instance class support for RDS Custom for Oracle][2] and [DB
|
|
2682
|
+
# instance class support for RDS Custom for SQL Server][3].
|
|
2682
2683
|
#
|
|
2683
2684
|
# If you modify the DB instance class, an outage occurs during the
|
|
2684
2685
|
# change. The change is applied during the next maintenance window,
|
|
2685
2686
|
# unless `ApplyImmediately` is enabled for this request.
|
|
2686
2687
|
#
|
|
2687
|
-
# This setting doesn't apply to RDS Custom for Oracle.
|
|
2688
|
-
#
|
|
2689
2688
|
# Default: Uses existing setting
|
|
2690
2689
|
#
|
|
2691
2690
|
#
|
|
2692
2691
|
#
|
|
2693
2692
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
|
2694
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
|
2693
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html#custom-reqs-limits.instances
|
|
2694
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html#custom-reqs-limits.instancesMS
|
|
2695
2695
|
# @option options [String] :db_subnet_group_name
|
|
2696
2696
|
# The new DB subnet group for the DB instance. You can use this
|
|
2697
2697
|
# parameter to move your DB instance to a different VPC. If your DB
|
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
|
|
@@ -5194,8 +5219,9 @@ module Aws::RDS
|
|
|
5194
5219
|
# The kinds of databases that the proxy can connect to. This value
|
|
5195
5220
|
# determines which database network protocol the proxy recognizes when
|
|
5196
5221
|
# it interprets network traffic to and from the database. For Aurora
|
|
5197
|
-
# MySQL and RDS for MySQL databases, specify
|
|
5198
|
-
# PostgreSQL and RDS for PostgreSQL databases,
|
|
5222
|
+
# MySQL, RDS for MariaDB, and RDS for MySQL databases, specify
|
|
5223
|
+
# `MYSQL`. For Aurora PostgreSQL and RDS for PostgreSQL databases,
|
|
5224
|
+
# specify `POSTGRESQL`.
|
|
5199
5225
|
# @return [String]
|
|
5200
5226
|
#
|
|
5201
5227
|
# @!attribute [rw] auth
|
|
@@ -6293,6 +6319,29 @@ module Aws::RDS
|
|
|
6293
6319
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
6294
6320
|
# @return [Types::ServerlessV2ScalingConfigurationInfo]
|
|
6295
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
|
+
#
|
|
6296
6345
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBCluster AWS API Documentation
|
|
6297
6346
|
#
|
|
6298
6347
|
class DBCluster < Struct.new(
|
|
@@ -6363,7 +6412,8 @@ module Aws::RDS
|
|
|
6363
6412
|
:performance_insights_enabled,
|
|
6364
6413
|
:performance_insights_kms_key_id,
|
|
6365
6414
|
:performance_insights_retention_period,
|
|
6366
|
-
:serverless_v2_scaling_configuration
|
|
6415
|
+
:serverless_v2_scaling_configuration,
|
|
6416
|
+
:network_type)
|
|
6367
6417
|
SENSITIVE = []
|
|
6368
6418
|
include Aws::Structure
|
|
6369
6419
|
end
|
|
@@ -8503,8 +8553,9 @@ module Aws::RDS
|
|
|
8503
8553
|
# The kinds of databases that the proxy can connect to. This value
|
|
8504
8554
|
# determines which database network protocol the proxy recognizes when
|
|
8505
8555
|
# it interprets network traffic to and from the database. `MYSQL`
|
|
8506
|
-
# supports Aurora MySQL and RDS for MySQL databases.
|
|
8507
|
-
# supports Aurora PostgreSQL and RDS for PostgreSQL
|
|
8556
|
+
# supports Aurora MySQL, RDS for MariaDB, and RDS for MySQL databases.
|
|
8557
|
+
# `POSTGRESQL` supports Aurora PostgreSQL and RDS for PostgreSQL
|
|
8558
|
+
# databases.
|
|
8508
8559
|
# @return [String]
|
|
8509
8560
|
#
|
|
8510
8561
|
# @!attribute [rw] vpc_id
|
|
@@ -14810,6 +14861,7 @@ module Aws::RDS
|
|
|
14810
14861
|
# min_capacity: 1.0,
|
|
14811
14862
|
# max_capacity: 1.0,
|
|
14812
14863
|
# },
|
|
14864
|
+
# network_type: "String",
|
|
14813
14865
|
# }
|
|
14814
14866
|
#
|
|
14815
14867
|
# @!attribute [rw] db_cluster_identifier
|
|
@@ -15354,6 +15406,29 @@ module Aws::RDS
|
|
|
15354
15406
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
15355
15407
|
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
15356
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
|
+
#
|
|
15357
15432
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
|
15358
15433
|
#
|
|
15359
15434
|
class ModifyDBClusterMessage < Struct.new(
|
|
@@ -15391,7 +15466,8 @@ module Aws::RDS
|
|
|
15391
15466
|
:enable_performance_insights,
|
|
15392
15467
|
:performance_insights_kms_key_id,
|
|
15393
15468
|
:performance_insights_retention_period,
|
|
15394
|
-
:serverless_v2_scaling_configuration
|
|
15469
|
+
:serverless_v2_scaling_configuration,
|
|
15470
|
+
:network_type)
|
|
15395
15471
|
SENSITIVE = []
|
|
15396
15472
|
include Aws::Structure
|
|
15397
15473
|
end
|
|
@@ -15662,24 +15738,24 @@ module Aws::RDS
|
|
|
15662
15738
|
#
|
|
15663
15739
|
# @!attribute [rw] db_instance_class
|
|
15664
15740
|
# The new compute and memory capacity of the DB instance, for example
|
|
15665
|
-
# db.
|
|
15741
|
+
# db.m4.large. Not all DB instance classes are available in all Amazon
|
|
15666
15742
|
# Web Services Regions, or for all database engines. For the full list
|
|
15667
15743
|
# of DB instance classes, and availability for your engine, see [DB
|
|
15668
|
-
#
|
|
15669
|
-
# instance
|
|
15744
|
+
# Instance Class][1] in the *Amazon RDS User Guide*. For RDS Custom,
|
|
15745
|
+
# see [DB instance class support for RDS Custom for Oracle][2] and [DB
|
|
15746
|
+
# instance class support for RDS Custom for SQL Server][3].
|
|
15670
15747
|
#
|
|
15671
15748
|
# If you modify the DB instance class, an outage occurs during the
|
|
15672
15749
|
# change. The change is applied during the next maintenance window,
|
|
15673
15750
|
# unless `ApplyImmediately` is enabled for this request.
|
|
15674
15751
|
#
|
|
15675
|
-
# This setting doesn't apply to RDS Custom for Oracle.
|
|
15676
|
-
#
|
|
15677
15752
|
# Default: Uses existing setting
|
|
15678
15753
|
#
|
|
15679
15754
|
#
|
|
15680
15755
|
#
|
|
15681
15756
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html
|
|
15682
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/
|
|
15757
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits.html#custom-reqs-limits.instances
|
|
15758
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-reqs-limits-MS.html#custom-reqs-limits.instancesMS
|
|
15683
15759
|
# @return [String]
|
|
15684
15760
|
#
|
|
15685
15761
|
# @!attribute [rw] db_subnet_group_name
|
|
@@ -19547,6 +19623,7 @@ module Aws::RDS
|
|
|
19547
19623
|
# min_capacity: 1.0,
|
|
19548
19624
|
# max_capacity: 1.0,
|
|
19549
19625
|
# },
|
|
19626
|
+
# network_type: "String",
|
|
19550
19627
|
# }
|
|
19551
19628
|
#
|
|
19552
19629
|
# @!attribute [rw] availability_zones
|
|
@@ -19888,6 +19965,27 @@ module Aws::RDS
|
|
|
19888
19965
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
19889
19966
|
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
19890
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
|
+
#
|
|
19891
19989
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3Message AWS API Documentation
|
|
19892
19990
|
#
|
|
19893
19991
|
class RestoreDBClusterFromS3Message < Struct.new(
|
|
@@ -19922,7 +20020,8 @@ module Aws::RDS
|
|
|
19922
20020
|
:copy_tags_to_snapshot,
|
|
19923
20021
|
:domain,
|
|
19924
20022
|
:domain_iam_role_name,
|
|
19925
|
-
:serverless_v2_scaling_configuration
|
|
20023
|
+
:serverless_v2_scaling_configuration,
|
|
20024
|
+
:network_type)
|
|
19926
20025
|
SENSITIVE = []
|
|
19927
20026
|
include Aws::Structure
|
|
19928
20027
|
end
|
|
@@ -20012,6 +20111,7 @@ module Aws::RDS
|
|
|
20012
20111
|
# min_capacity: 1.0,
|
|
20013
20112
|
# max_capacity: 1.0,
|
|
20014
20113
|
# },
|
|
20114
|
+
# network_type: "String",
|
|
20015
20115
|
# }
|
|
20016
20116
|
#
|
|
20017
20117
|
# @!attribute [rw] availability_zones
|
|
@@ -20449,6 +20549,29 @@ module Aws::RDS
|
|
|
20449
20549
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
20450
20550
|
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
20451
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
|
+
#
|
|
20452
20575
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshotMessage AWS API Documentation
|
|
20453
20576
|
#
|
|
20454
20577
|
class RestoreDBClusterFromSnapshotMessage < Struct.new(
|
|
@@ -20478,7 +20601,8 @@ module Aws::RDS
|
|
|
20478
20601
|
:storage_type,
|
|
20479
20602
|
:iops,
|
|
20480
20603
|
:publicly_accessible,
|
|
20481
|
-
:serverless_v2_scaling_configuration
|
|
20604
|
+
:serverless_v2_scaling_configuration,
|
|
20605
|
+
:network_type)
|
|
20482
20606
|
SENSITIVE = []
|
|
20483
20607
|
include Aws::Structure
|
|
20484
20608
|
end
|
|
@@ -20567,6 +20691,7 @@ module Aws::RDS
|
|
|
20567
20691
|
# min_capacity: 1.0,
|
|
20568
20692
|
# max_capacity: 1.0,
|
|
20569
20693
|
# },
|
|
20694
|
+
# network_type: "String",
|
|
20570
20695
|
# }
|
|
20571
20696
|
#
|
|
20572
20697
|
# @!attribute [rw] db_cluster_identifier
|
|
@@ -20967,6 +21092,29 @@ module Aws::RDS
|
|
|
20967
21092
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.html
|
|
20968
21093
|
# @return [Types::ServerlessV2ScalingConfiguration]
|
|
20969
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
|
+
#
|
|
20970
21118
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTimeMessage AWS API Documentation
|
|
20971
21119
|
#
|
|
20972
21120
|
class RestoreDBClusterToPointInTimeMessage < Struct.new(
|
|
@@ -20995,7 +21143,8 @@ module Aws::RDS
|
|
|
20995
21143
|
:storage_type,
|
|
20996
21144
|
:publicly_accessible,
|
|
20997
21145
|
:iops,
|
|
20998
|
-
:serverless_v2_scaling_configuration
|
|
21146
|
+
:serverless_v2_scaling_configuration,
|
|
21147
|
+
:network_type)
|
|
20999
21148
|
SENSITIVE = []
|
|
21000
21149
|
include Aws::Structure
|
|
21001
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-
|
|
11
|
+
date: 2022-08-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|