aws-sdk-rds 1.220.0 → 1.221.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 +18 -4
- data/lib/aws-sdk-rds/db_cluster.rb +16 -2
- data/lib/aws-sdk-rds/db_instance.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +8 -1
- data/lib/aws-sdk-rds/types.rb +17 -3
- 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: 8a5da6fef32c3d69ad2abcd436440b46aa6735a15cd025669ba876398760ca7e
|
|
4
|
+
data.tar.gz: 26062b67eb003325ebb6bf3bce912db864de3057b30c87fc6307e573b6d9d594
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea961d9b8a6ebbffef11310ff0d8e5ce18d43e551624a19d47cbe911a890e8de1af771bb2040ca434cd433bcc2364212bb0a4f6798de502320763486057e6538
|
|
7
|
+
data.tar.gz: 10cd91a2d809d25559af22a8d06915bdfaac0b7ec7a70b81e7c526e9d2d5fd8c4150f78e206bf46654939274b5342fbb0c9c2d53ab2556f1d52548a67ce9e1ba
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.221.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -3064,7 +3064,7 @@ module Aws::RDS
|
|
|
3064
3064
|
#
|
|
3065
3065
|
# * Aurora DB clusters - `aurora | aurora-iopt1`
|
|
3066
3066
|
#
|
|
3067
|
-
# * Multi-AZ DB clusters - `io1`
|
|
3067
|
+
# * Multi-AZ DB clusters - `io1 | io2 | gp3`
|
|
3068
3068
|
#
|
|
3069
3069
|
# Default:
|
|
3070
3070
|
#
|
|
@@ -3323,8 +3323,15 @@ module Aws::RDS
|
|
|
3323
3323
|
# The CA certificate identifier to use for the DB cluster's server
|
|
3324
3324
|
# certificate.
|
|
3325
3325
|
#
|
|
3326
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
|
3327
|
+
# DB instance][1] in the *Amazon RDS User Guide*.
|
|
3328
|
+
#
|
|
3326
3329
|
# Valid for Cluster Type: Multi-AZ DB clusters
|
|
3327
3330
|
#
|
|
3331
|
+
#
|
|
3332
|
+
#
|
|
3333
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
3334
|
+
#
|
|
3328
3335
|
# @option params [String] :source_region
|
|
3329
3336
|
# The source region of the snapshot. This is only needed when the
|
|
3330
3337
|
# shapshot is encrypted and in a different region.
|
|
@@ -18615,7 +18622,7 @@ module Aws::RDS
|
|
|
18615
18622
|
#
|
|
18616
18623
|
# * Aurora DB clusters - `aurora | aurora-iopt1`
|
|
18617
18624
|
#
|
|
18618
|
-
# * Multi-AZ DB clusters - `io1`
|
|
18625
|
+
# * Multi-AZ DB clusters - `io1 | io2 | gp3`
|
|
18619
18626
|
#
|
|
18620
18627
|
# Default:
|
|
18621
18628
|
#
|
|
@@ -18903,8 +18910,15 @@ module Aws::RDS
|
|
|
18903
18910
|
# The CA certificate identifier to use for the DB cluster's server
|
|
18904
18911
|
# certificate.
|
|
18905
18912
|
#
|
|
18913
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
|
18914
|
+
# DB instance][1] in the *Amazon RDS User Guide*.
|
|
18915
|
+
#
|
|
18906
18916
|
# Valid for Cluster Type: Multi-AZ DB clusters
|
|
18907
18917
|
#
|
|
18918
|
+
#
|
|
18919
|
+
#
|
|
18920
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
18921
|
+
#
|
|
18908
18922
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
18909
18923
|
#
|
|
18910
18924
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
|
@@ -20011,7 +20025,7 @@ module Aws::RDS
|
|
|
20011
20025
|
# @option params [String] :storage_type
|
|
20012
20026
|
# The storage type to associate with the DB instance.
|
|
20013
20027
|
#
|
|
20014
|
-
# If you specify `io1
|
|
20028
|
+
# If you specify `io1`, `io2`, or `gp3` you must also include a value
|
|
20015
20029
|
# for the `Iops` parameter.
|
|
20016
20030
|
#
|
|
20017
20031
|
# If you choose to migrate your DB instance from using standard storage
|
|
@@ -30490,7 +30504,7 @@ module Aws::RDS
|
|
|
30490
30504
|
params: params,
|
|
30491
30505
|
config: config)
|
|
30492
30506
|
context[:gem_name] = 'aws-sdk-rds'
|
|
30493
|
-
context[:gem_version] = '1.
|
|
30507
|
+
context[:gem_version] = '1.221.0'
|
|
30494
30508
|
Seahorse::Client::Request.new(handlers, context)
|
|
30495
30509
|
end
|
|
30496
30510
|
|
|
@@ -1437,7 +1437,7 @@ module Aws::RDS
|
|
|
1437
1437
|
#
|
|
1438
1438
|
# * Aurora DB clusters - `aurora | aurora-iopt1`
|
|
1439
1439
|
#
|
|
1440
|
-
# * Multi-AZ DB clusters - `io1`
|
|
1440
|
+
# * Multi-AZ DB clusters - `io1 | io2 | gp3`
|
|
1441
1441
|
#
|
|
1442
1442
|
# Default:
|
|
1443
1443
|
#
|
|
@@ -1680,7 +1680,14 @@ module Aws::RDS
|
|
|
1680
1680
|
# The CA certificate identifier to use for the DB cluster's server
|
|
1681
1681
|
# certificate.
|
|
1682
1682
|
#
|
|
1683
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
|
1684
|
+
# DB instance][1] in the *Amazon RDS User Guide*.
|
|
1685
|
+
#
|
|
1683
1686
|
# Valid for Cluster Type: Multi-AZ DB clusters
|
|
1687
|
+
#
|
|
1688
|
+
#
|
|
1689
|
+
#
|
|
1690
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
1684
1691
|
# @option options [String] :source_region
|
|
1685
1692
|
# The source region of the snapshot. This is only needed when the
|
|
1686
1693
|
# shapshot is encrypted and in a different region.
|
|
@@ -2243,7 +2250,7 @@ module Aws::RDS
|
|
|
2243
2250
|
#
|
|
2244
2251
|
# * Aurora DB clusters - `aurora | aurora-iopt1`
|
|
2245
2252
|
#
|
|
2246
|
-
# * Multi-AZ DB clusters - `io1`
|
|
2253
|
+
# * Multi-AZ DB clusters - `io1 | io2 | gp3`
|
|
2247
2254
|
#
|
|
2248
2255
|
# Default:
|
|
2249
2256
|
#
|
|
@@ -2513,7 +2520,14 @@ module Aws::RDS
|
|
|
2513
2520
|
# The CA certificate identifier to use for the DB cluster's server
|
|
2514
2521
|
# certificate.
|
|
2515
2522
|
#
|
|
2523
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
|
2524
|
+
# DB instance][1] in the *Amazon RDS User Guide*.
|
|
2525
|
+
#
|
|
2516
2526
|
# Valid for Cluster Type: Multi-AZ DB clusters
|
|
2527
|
+
#
|
|
2528
|
+
#
|
|
2529
|
+
#
|
|
2530
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
2517
2531
|
# @return [DBCluster]
|
|
2518
2532
|
def modify(options = {})
|
|
2519
2533
|
options = options.merge(db_cluster_identifier: @id)
|
|
@@ -3420,7 +3420,7 @@ module Aws::RDS
|
|
|
3420
3420
|
# @option options [String] :storage_type
|
|
3421
3421
|
# The storage type to associate with the DB instance.
|
|
3422
3422
|
#
|
|
3423
|
-
# If you specify `io1
|
|
3423
|
+
# If you specify `io1`, `io2`, or `gp3` you must also include a value
|
|
3424
3424
|
# for the `Iops` parameter.
|
|
3425
3425
|
#
|
|
3426
3426
|
# If you choose to migrate your DB instance from using standard storage
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
|
@@ -639,7 +639,7 @@ module Aws::RDS
|
|
|
639
639
|
#
|
|
640
640
|
# * Aurora DB clusters - `aurora | aurora-iopt1`
|
|
641
641
|
#
|
|
642
|
-
# * Multi-AZ DB clusters - `io1`
|
|
642
|
+
# * Multi-AZ DB clusters - `io1 | io2 | gp3`
|
|
643
643
|
#
|
|
644
644
|
# Default:
|
|
645
645
|
#
|
|
@@ -882,7 +882,14 @@ module Aws::RDS
|
|
|
882
882
|
# The CA certificate identifier to use for the DB cluster's server
|
|
883
883
|
# certificate.
|
|
884
884
|
#
|
|
885
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to a
|
|
886
|
+
# DB instance][1] in the *Amazon RDS User Guide*.
|
|
887
|
+
#
|
|
885
888
|
# Valid for Cluster Type: Multi-AZ DB clusters
|
|
889
|
+
#
|
|
890
|
+
#
|
|
891
|
+
#
|
|
892
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
886
893
|
# @option options [String] :source_region
|
|
887
894
|
# The source region of the snapshot. This is only needed when the
|
|
888
895
|
# shapshot is encrypted and in a different region.
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -2647,7 +2647,7 @@ module Aws::RDS
|
|
|
2647
2647
|
#
|
|
2648
2648
|
# * Aurora DB clusters - `aurora | aurora-iopt1`
|
|
2649
2649
|
#
|
|
2650
|
-
# * Multi-AZ DB clusters - `io1`
|
|
2650
|
+
# * Multi-AZ DB clusters - `io1 | io2 | gp3`
|
|
2651
2651
|
#
|
|
2652
2652
|
# Default:
|
|
2653
2653
|
#
|
|
@@ -2924,7 +2924,14 @@ module Aws::RDS
|
|
|
2924
2924
|
# The CA certificate identifier to use for the DB cluster's server
|
|
2925
2925
|
# certificate.
|
|
2926
2926
|
#
|
|
2927
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
|
2928
|
+
# a DB instance][1] in the *Amazon RDS User Guide*.
|
|
2929
|
+
#
|
|
2927
2930
|
# Valid for Cluster Type: Multi-AZ DB clusters
|
|
2931
|
+
#
|
|
2932
|
+
#
|
|
2933
|
+
#
|
|
2934
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
2928
2935
|
# @return [String]
|
|
2929
2936
|
#
|
|
2930
2937
|
# @!attribute [rw] source_region
|
|
@@ -17110,7 +17117,7 @@ module Aws::RDS
|
|
|
17110
17117
|
#
|
|
17111
17118
|
# * Aurora DB clusters - `aurora | aurora-iopt1`
|
|
17112
17119
|
#
|
|
17113
|
-
# * Multi-AZ DB clusters - `io1`
|
|
17120
|
+
# * Multi-AZ DB clusters - `io1 | io2 | gp3`
|
|
17114
17121
|
#
|
|
17115
17122
|
# Default:
|
|
17116
17123
|
#
|
|
@@ -17418,7 +17425,14 @@ module Aws::RDS
|
|
|
17418
17425
|
# The CA certificate identifier to use for the DB cluster's server
|
|
17419
17426
|
# certificate.
|
|
17420
17427
|
#
|
|
17428
|
+
# For more information, see [Using SSL/TLS to encrypt a connection to
|
|
17429
|
+
# a DB instance][1] in the *Amazon RDS User Guide*.
|
|
17430
|
+
#
|
|
17421
17431
|
# Valid for Cluster Type: Multi-AZ DB clusters
|
|
17432
|
+
#
|
|
17433
|
+
#
|
|
17434
|
+
#
|
|
17435
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/UsingWithRDS.SSL.html
|
|
17422
17436
|
# @return [String]
|
|
17423
17437
|
#
|
|
17424
17438
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBClusterMessage AWS API Documentation
|
|
@@ -18107,7 +18121,7 @@ module Aws::RDS
|
|
|
18107
18121
|
# @!attribute [rw] storage_type
|
|
18108
18122
|
# The storage type to associate with the DB instance.
|
|
18109
18123
|
#
|
|
18110
|
-
# If you specify `io1
|
|
18124
|
+
# If you specify `io1`, `io2`, or `gp3` you must also include a value
|
|
18111
18125
|
# for the `Iops` parameter.
|
|
18112
18126
|
#
|
|
18113
18127
|
# If you choose to migrate your DB instance from using standard
|
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.221.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: 2024-03-
|
|
11
|
+
date: 2024-03-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|