aws-sdk-rds 1.246.0 → 1.248.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +32 -13
- data/lib/aws-sdk-rds/db_instance.rb +12 -8
- data/lib/aws-sdk-rds/db_snapshot.rb +6 -4
- data/lib/aws-sdk-rds/resource.rb +6 -4
- data/lib/aws-sdk-rds/types.rb +15 -12
- 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: c0798bc0beaf01094fc023d552ffe89abbe5d62635a49d8f778527031b7ca8a1
|
4
|
+
data.tar.gz: 76b78d8dce60cbb5ffc7ed566ed2f6d2d91a46278d7b118f36877cbb9d66a66a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 179994d1196301d5513ca9ebf7e9c88d041d81c1929b753d59255750999e16d011e284d1f047fb372b45ba2223d6c389dd1b60534a4b17cef6a7ebc9f74e2303
|
7
|
+
data.tar.gz: 371a71bc30bf35e353f9e3cb9f1c553296dcc4d52f1538da04b59c4f6a10477361b043fef143e5c8832b16faf0322de39120f82adfd9935d87b2204a0c41755f
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.248.0 (2024-09-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updates Amazon RDS documentation with information upgrading snapshots with unsupported engine versions for RDS for MySQL and RDS for PostgreSQL.
|
8
|
+
|
9
|
+
1.247.0 (2024-09-17)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Updates Amazon RDS documentation with configuration information about the BYOL model for RDS for Db2.
|
13
|
+
|
4
14
|
1.246.0 (2024-09-16)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.248.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -4927,10 +4927,12 @@ module Aws::RDS
|
|
4927
4927
|
# The license model information for this DB instance.
|
4928
4928
|
#
|
4929
4929
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
4930
|
-
# Bring Your Own License (BYOL) model requires a custom parameter group
|
4931
|
-
#
|
4932
|
-
#
|
4933
|
-
#
|
4930
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group
|
4931
|
+
# and an Amazon Web Services License Manager self-managed license. The
|
4932
|
+
# Db2 license through Amazon Web Services Marketplace model requires an
|
4933
|
+
# Amazon Web Services Marketplace subscription. For more information,
|
4934
|
+
# see [Amazon RDS for Db2 licensing options][1] in the *Amazon RDS User
|
4935
|
+
# Guide*.
|
4934
4936
|
#
|
4935
4937
|
# The default for RDS for Db2 is `bring-your-own-license`.
|
4936
4938
|
#
|
@@ -26717,11 +26719,24 @@ module Aws::RDS
|
|
26717
26719
|
# If you are restoring from a shared manual DB snapshot, the
|
26718
26720
|
# `DBSnapshotIdentifier` must be the ARN of the shared DB snapshot.
|
26719
26721
|
#
|
26722
|
+
# To restore from a DB snapshot with an unsupported engine version, you
|
26723
|
+
# must first upgrade the engine version of the snapshot. For more
|
26724
|
+
# information about upgrading a RDS for MySQL DB snapshot engine
|
26725
|
+
# version, see [Upgrading a MySQL DB snapshot engine version][1]. For
|
26726
|
+
# more information about upgrading a RDS for PostgreSQL DB snapshot
|
26727
|
+
# engine version, [Upgrading a PostgreSQL DB snapshot engine
|
26728
|
+
# version][2].
|
26729
|
+
#
|
26720
26730
|
# <note markdown="1"> This command doesn't apply to Aurora MySQL and Aurora PostgreSQL. For
|
26721
26731
|
# Aurora, use `RestoreDBClusterFromSnapshot`.
|
26722
26732
|
#
|
26723
26733
|
# </note>
|
26724
26734
|
#
|
26735
|
+
#
|
26736
|
+
#
|
26737
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/mysql-upgrade-snapshot.html
|
26738
|
+
# [2]: https://docs.aws.amazon.com/USER_UpgradeDBSnapshot.PostgreSQL.html
|
26739
|
+
#
|
26725
26740
|
# @option params [required, String] :db_instance_identifier
|
26726
26741
|
# The name of the DB instance to create from the DB snapshot. This
|
26727
26742
|
# parameter isn't case-sensitive.
|
@@ -26827,10 +26842,12 @@ module Aws::RDS
|
|
26827
26842
|
# License model information for the restored DB instance.
|
26828
26843
|
#
|
26829
26844
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
26830
|
-
# Bring Your Own License (BYOL) model requires a custom parameter group
|
26831
|
-
#
|
26832
|
-
#
|
26833
|
-
#
|
26845
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group
|
26846
|
+
# and an Amazon Web Services License Manager self-managed license. The
|
26847
|
+
# Db2 license through Amazon Web Services Marketplace model requires an
|
26848
|
+
# Amazon Web Services Marketplace subscription. For more information,
|
26849
|
+
# see [Amazon RDS for Db2 licensing options][1] in the *Amazon RDS User
|
26850
|
+
# Guide*.
|
26834
26851
|
#
|
26835
26852
|
# </note>
|
26836
26853
|
#
|
@@ -28520,10 +28537,12 @@ module Aws::RDS
|
|
28520
28537
|
# The license model information for the restored DB instance.
|
28521
28538
|
#
|
28522
28539
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
28523
|
-
# Bring Your Own License (BYOL) model requires a custom parameter group
|
28524
|
-
#
|
28525
|
-
#
|
28526
|
-
#
|
28540
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group
|
28541
|
+
# and an Amazon Web Services License Manager self-managed license. The
|
28542
|
+
# Db2 license through Amazon Web Services Marketplace model requires an
|
28543
|
+
# Amazon Web Services Marketplace subscription. For more information,
|
28544
|
+
# see [Amazon RDS for Db2 licensing options][1] in the *Amazon RDS User
|
28545
|
+
# Guide*.
|
28527
28546
|
#
|
28528
28547
|
# </note>
|
28529
28548
|
#
|
@@ -31414,7 +31433,7 @@ module Aws::RDS
|
|
31414
31433
|
tracer: tracer
|
31415
31434
|
)
|
31416
31435
|
context[:gem_name] = 'aws-sdk-rds'
|
31417
|
-
context[:gem_version] = '1.
|
31436
|
+
context[:gem_version] = '1.248.0'
|
31418
31437
|
Seahorse::Client::Request.new(handlers, context)
|
31419
31438
|
end
|
31420
31439
|
|
@@ -1617,10 +1617,12 @@ module Aws::RDS
|
|
1617
1617
|
# The license model information for this DB instance.
|
1618
1618
|
#
|
1619
1619
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
1620
|
-
# Bring Your Own License (BYOL) model requires a custom parameter group
|
1621
|
-
#
|
1622
|
-
#
|
1623
|
-
#
|
1620
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group
|
1621
|
+
# and an Amazon Web Services License Manager self-managed license. The
|
1622
|
+
# Db2 license through Amazon Web Services Marketplace model requires an
|
1623
|
+
# Amazon Web Services Marketplace subscription. For more information,
|
1624
|
+
# see [Amazon RDS for Db2 licensing options][1] in the *Amazon RDS User
|
1625
|
+
# Guide*.
|
1624
1626
|
#
|
1625
1627
|
# The default for RDS for Db2 is `bring-your-own-license`.
|
1626
1628
|
#
|
@@ -4358,10 +4360,12 @@ module Aws::RDS
|
|
4358
4360
|
# The license model information for the restored DB instance.
|
4359
4361
|
#
|
4360
4362
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
4361
|
-
# Bring Your Own License (BYOL) model requires a custom parameter group
|
4362
|
-
#
|
4363
|
-
#
|
4364
|
-
#
|
4363
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group
|
4364
|
+
# and an Amazon Web Services License Manager self-managed license. The
|
4365
|
+
# Db2 license through Amazon Web Services Marketplace model requires an
|
4366
|
+
# Amazon Web Services Marketplace subscription. For more information,
|
4367
|
+
# see [Amazon RDS for Db2 licensing options][1] in the *Amazon RDS User
|
4368
|
+
# Guide*.
|
4365
4369
|
#
|
4366
4370
|
# </note>
|
4367
4371
|
#
|
@@ -804,10 +804,12 @@ module Aws::RDS
|
|
804
804
|
# License model information for the restored DB instance.
|
805
805
|
#
|
806
806
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
807
|
-
# Bring Your Own License (BYOL) model requires a custom parameter group
|
808
|
-
#
|
809
|
-
#
|
810
|
-
#
|
807
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group
|
808
|
+
# and an Amazon Web Services License Manager self-managed license. The
|
809
|
+
# Db2 license through Amazon Web Services Marketplace model requires an
|
810
|
+
# Amazon Web Services Marketplace subscription. For more information,
|
811
|
+
# see [Amazon RDS for Db2 licensing options][1] in the *Amazon RDS User
|
812
|
+
# Guide*.
|
811
813
|
#
|
812
814
|
# </note>
|
813
815
|
#
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -1748,10 +1748,12 @@ module Aws::RDS
|
|
1748
1748
|
# The license model information for this DB instance.
|
1749
1749
|
#
|
1750
1750
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
1751
|
-
# Bring Your Own License (BYOL) model requires a custom parameter group
|
1752
|
-
#
|
1753
|
-
#
|
1754
|
-
#
|
1751
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group
|
1752
|
+
# and an Amazon Web Services License Manager self-managed license. The
|
1753
|
+
# Db2 license through Amazon Web Services Marketplace model requires an
|
1754
|
+
# Amazon Web Services Marketplace subscription. For more information,
|
1755
|
+
# see [Amazon RDS for Db2 licensing options][1] in the *Amazon RDS User
|
1756
|
+
# Guide*.
|
1755
1757
|
#
|
1756
1758
|
# The default for RDS for Db2 is `bring-your-own-license`.
|
1757
1759
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -3953,10 +3953,11 @@ module Aws::RDS
|
|
3953
3953
|
#
|
3954
3954
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
3955
3955
|
# Bring Your Own License (BYOL) model requires a custom parameter
|
3956
|
-
# group
|
3957
|
-
#
|
3958
|
-
#
|
3959
|
-
# RDS
|
3956
|
+
# group and an Amazon Web Services License Manager self-managed
|
3957
|
+
# license. The Db2 license through Amazon Web Services Marketplace
|
3958
|
+
# model requires an Amazon Web Services Marketplace subscription. For
|
3959
|
+
# more information, see [Amazon RDS for Db2 licensing options][1] in
|
3960
|
+
# the *Amazon RDS User Guide*.
|
3960
3961
|
#
|
3961
3962
|
# The default for RDS for Db2 is `bring-your-own-license`.
|
3962
3963
|
#
|
@@ -24171,10 +24172,11 @@ module Aws::RDS
|
|
24171
24172
|
#
|
24172
24173
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
24173
24174
|
# Bring Your Own License (BYOL) model requires a custom parameter
|
24174
|
-
# group
|
24175
|
-
#
|
24176
|
-
#
|
24177
|
-
# RDS
|
24175
|
+
# group and an Amazon Web Services License Manager self-managed
|
24176
|
+
# license. The Db2 license through Amazon Web Services Marketplace
|
24177
|
+
# model requires an Amazon Web Services Marketplace subscription. For
|
24178
|
+
# more information, see [Amazon RDS for Db2 licensing options][1] in
|
24179
|
+
# the *Amazon RDS User Guide*.
|
24178
24180
|
#
|
24179
24181
|
# </note>
|
24180
24182
|
#
|
@@ -25577,10 +25579,11 @@ module Aws::RDS
|
|
25577
25579
|
#
|
25578
25580
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
25579
25581
|
# Bring Your Own License (BYOL) model requires a custom parameter
|
25580
|
-
# group
|
25581
|
-
#
|
25582
|
-
#
|
25583
|
-
# RDS
|
25582
|
+
# group and an Amazon Web Services License Manager self-managed
|
25583
|
+
# license. The Db2 license through Amazon Web Services Marketplace
|
25584
|
+
# model requires an Amazon Web Services Marketplace subscription. For
|
25585
|
+
# more information, see [Amazon RDS for Db2 licensing options][1] in
|
25586
|
+
# the *Amazon RDS User Guide*.
|
25584
25587
|
#
|
25585
25588
|
# </note>
|
25586
25589
|
#
|
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.248.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-09-
|
11
|
+
date: 2024-09-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|