aws-sdk-rds 1.228.0 → 1.230.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +15 -3
- data/lib/aws-sdk-rds/client_api.rb +2 -0
- data/lib/aws-sdk-rds/db_engine_version.rb +7 -0
- data/lib/aws-sdk-rds/types.rb +12 -0
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/db_engine_version.rbs +3 -0
- data/sig/types.rbs +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7aac0d9379d392eb516b8b7523ea82547c3468b96f6dcd5502a4c1450d1444ac
|
4
|
+
data.tar.gz: fcbf10077a2f6c5beef0f3b91e225314f46264ba812b211c157d6adb5533f13c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 203f4cdb75fb85c6064f2b42124450ca017aa1cfcac979f8ce47640c71b1024dcf640b63118817354997ec52ad8aa31c155eaf3c0da52ed042303c3f255f9a0e
|
7
|
+
data.tar.gz: 2d3c3ef99777d11766ac89dea21d936bad2c496564966742f1eb7705de0f650f9d87c7f56ed64199ccd91cc234efce06f3910619c733b68362ef58b91b964ee3
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.230.0 (2024-05-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.229.0 (2024-04-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - SupportsLimitlessDatabase field added to describe-db-engine-versions to indicate whether the DB engine version supports Aurora Limitless Database.
|
13
|
+
|
4
14
|
1.228.0 (2024-04-25)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.230.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -303,8 +303,9 @@ module Aws::RDS
|
|
303
303
|
#
|
304
304
|
# @option options [String] :sdk_ua_app_id
|
305
305
|
# A unique and opaque application ID that is appended to the
|
306
|
-
# User-Agent header as app
|
307
|
-
# maximum length of 50.
|
306
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
307
|
+
# maximum length of 50. This variable is sourced from environment
|
308
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
308
309
|
#
|
309
310
|
# @option options [String] :secret_access_key
|
310
311
|
#
|
@@ -2412,6 +2413,7 @@ module Aws::RDS
|
|
2412
2413
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
2413
2414
|
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
2414
2415
|
# * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
|
2416
|
+
# * {Types::DBEngineVersion#supports_limitless_database #supports_limitless_database} => Boolean
|
2415
2417
|
# * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
|
2416
2418
|
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
2417
2419
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
@@ -2467,6 +2469,7 @@ module Aws::RDS
|
|
2467
2469
|
# resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
|
2468
2470
|
# resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
|
2469
2471
|
# resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
|
2472
|
+
# resp.valid_upgrade_target[0].supports_limitless_database #=> Boolean
|
2470
2473
|
# resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
|
2471
2474
|
# resp.valid_upgrade_target[0].supports_integrations #=> Boolean
|
2472
2475
|
# resp.supported_timezones #=> Array
|
@@ -2493,6 +2496,7 @@ module Aws::RDS
|
|
2493
2496
|
# resp.tag_list[0].value #=> String
|
2494
2497
|
# resp.supports_babelfish #=> Boolean
|
2495
2498
|
# resp.custom_db_engine_version_manifest #=> String
|
2499
|
+
# resp.supports_limitless_database #=> Boolean
|
2496
2500
|
# resp.supports_certificate_rotation_without_restart #=> Boolean
|
2497
2501
|
# resp.supported_ca_certificate_identifiers #=> Array
|
2498
2502
|
# resp.supported_ca_certificate_identifiers[0] #=> String
|
@@ -8592,6 +8596,7 @@ module Aws::RDS
|
|
8592
8596
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
8593
8597
|
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
8594
8598
|
# * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
|
8599
|
+
# * {Types::DBEngineVersion#supports_limitless_database #supports_limitless_database} => Boolean
|
8595
8600
|
# * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
|
8596
8601
|
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
8597
8602
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
@@ -8633,6 +8638,7 @@ module Aws::RDS
|
|
8633
8638
|
# resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
|
8634
8639
|
# resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
|
8635
8640
|
# resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
|
8641
|
+
# resp.valid_upgrade_target[0].supports_limitless_database #=> Boolean
|
8636
8642
|
# resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
|
8637
8643
|
# resp.valid_upgrade_target[0].supports_integrations #=> Boolean
|
8638
8644
|
# resp.supported_timezones #=> Array
|
@@ -8659,6 +8665,7 @@ module Aws::RDS
|
|
8659
8665
|
# resp.tag_list[0].value #=> String
|
8660
8666
|
# resp.supports_babelfish #=> Boolean
|
8661
8667
|
# resp.custom_db_engine_version_manifest #=> String
|
8668
|
+
# resp.supports_limitless_database #=> Boolean
|
8662
8669
|
# resp.supports_certificate_rotation_without_restart #=> Boolean
|
8663
8670
|
# resp.supported_ca_certificate_identifiers #=> Array
|
8664
8671
|
# resp.supported_ca_certificate_identifiers[0] #=> String
|
@@ -12605,6 +12612,7 @@ module Aws::RDS
|
|
12605
12612
|
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_parallel_query #=> Boolean
|
12606
12613
|
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_global_databases #=> Boolean
|
12607
12614
|
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_babelfish #=> Boolean
|
12615
|
+
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_limitless_database #=> Boolean
|
12608
12616
|
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
|
12609
12617
|
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_integrations #=> Boolean
|
12610
12618
|
# resp.db_engine_versions[0].supported_timezones #=> Array
|
@@ -12631,6 +12639,7 @@ module Aws::RDS
|
|
12631
12639
|
# resp.db_engine_versions[0].tag_list[0].value #=> String
|
12632
12640
|
# resp.db_engine_versions[0].supports_babelfish #=> Boolean
|
12633
12641
|
# resp.db_engine_versions[0].custom_db_engine_version_manifest #=> String
|
12642
|
+
# resp.db_engine_versions[0].supports_limitless_database #=> Boolean
|
12634
12643
|
# resp.db_engine_versions[0].supports_certificate_rotation_without_restart #=> Boolean
|
12635
12644
|
# resp.db_engine_versions[0].supported_ca_certificate_identifiers #=> Array
|
12636
12645
|
# resp.db_engine_versions[0].supported_ca_certificate_identifiers[0] #=> String
|
@@ -18252,6 +18261,7 @@ module Aws::RDS
|
|
18252
18261
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
18253
18262
|
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
18254
18263
|
# * {Types::DBEngineVersion#custom_db_engine_version_manifest #custom_db_engine_version_manifest} => String
|
18264
|
+
# * {Types::DBEngineVersion#supports_limitless_database #supports_limitless_database} => Boolean
|
18255
18265
|
# * {Types::DBEngineVersion#supports_certificate_rotation_without_restart #supports_certificate_rotation_without_restart} => Boolean
|
18256
18266
|
# * {Types::DBEngineVersion#supported_ca_certificate_identifiers #supported_ca_certificate_identifiers} => Array<String>
|
18257
18267
|
# * {Types::DBEngineVersion#supports_local_write_forwarding #supports_local_write_forwarding} => Boolean
|
@@ -18295,6 +18305,7 @@ module Aws::RDS
|
|
18295
18305
|
# resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
|
18296
18306
|
# resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
|
18297
18307
|
# resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
|
18308
|
+
# resp.valid_upgrade_target[0].supports_limitless_database #=> Boolean
|
18298
18309
|
# resp.valid_upgrade_target[0].supports_local_write_forwarding #=> Boolean
|
18299
18310
|
# resp.valid_upgrade_target[0].supports_integrations #=> Boolean
|
18300
18311
|
# resp.supported_timezones #=> Array
|
@@ -18321,6 +18332,7 @@ module Aws::RDS
|
|
18321
18332
|
# resp.tag_list[0].value #=> String
|
18322
18333
|
# resp.supports_babelfish #=> Boolean
|
18323
18334
|
# resp.custom_db_engine_version_manifest #=> String
|
18335
|
+
# resp.supports_limitless_database #=> Boolean
|
18324
18336
|
# resp.supports_certificate_rotation_without_restart #=> Boolean
|
18325
18337
|
# resp.supported_ca_certificate_identifiers #=> Array
|
18326
18338
|
# resp.supported_ca_certificate_identifiers[0] #=> String
|
@@ -30801,7 +30813,7 @@ module Aws::RDS
|
|
30801
30813
|
params: params,
|
30802
30814
|
config: config)
|
30803
30815
|
context[:gem_name] = 'aws-sdk-rds'
|
30804
|
-
context[:gem_version] = '1.
|
30816
|
+
context[:gem_version] = '1.230.0'
|
30805
30817
|
Seahorse::Client::Request.new(handlers, context)
|
30806
30818
|
end
|
30807
30819
|
|
@@ -1663,6 +1663,7 @@ module Aws::RDS
|
|
1663
1663
|
DBEngineVersion.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1664
1664
|
DBEngineVersion.add_member(:supports_babelfish, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsBabelfish"))
|
1665
1665
|
DBEngineVersion.add_member(:custom_db_engine_version_manifest, Shapes::ShapeRef.new(shape: CustomDBEngineVersionManifest, location_name: "CustomDBEngineVersionManifest"))
|
1666
|
+
DBEngineVersion.add_member(:supports_limitless_database, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsLimitlessDatabase"))
|
1666
1667
|
DBEngineVersion.add_member(:supports_certificate_rotation_without_restart, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsCertificateRotationWithoutRestart"))
|
1667
1668
|
DBEngineVersion.add_member(:supported_ca_certificate_identifiers, Shapes::ShapeRef.new(shape: CACertificateIdentifiersList, location_name: "SupportedCACertificateIdentifiers"))
|
1668
1669
|
DBEngineVersion.add_member(:supports_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLocalWriteForwarding"))
|
@@ -4248,6 +4249,7 @@ module Aws::RDS
|
|
4248
4249
|
UpgradeTarget.add_member(:supports_parallel_query, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsParallelQuery"))
|
4249
4250
|
UpgradeTarget.add_member(:supports_global_databases, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsGlobalDatabases"))
|
4250
4251
|
UpgradeTarget.add_member(:supports_babelfish, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsBabelfish"))
|
4252
|
+
UpgradeTarget.add_member(:supports_limitless_database, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLimitlessDatabase"))
|
4251
4253
|
UpgradeTarget.add_member(:supports_local_write_forwarding, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsLocalWriteForwarding"))
|
4252
4254
|
UpgradeTarget.add_member(:supports_integrations, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsIntegrations"))
|
4253
4255
|
UpgradeTarget.struct_class = Types::UpgradeTarget
|
@@ -254,6 +254,13 @@ module Aws::RDS
|
|
254
254
|
data[:custom_db_engine_version_manifest]
|
255
255
|
end
|
256
256
|
|
257
|
+
# Indicates whether the DB engine version supports Aurora Limitless
|
258
|
+
# Database.
|
259
|
+
# @return [Boolean]
|
260
|
+
def supports_limitless_database
|
261
|
+
data[:supports_limitless_database]
|
262
|
+
end
|
263
|
+
|
257
264
|
# Indicates whether the engine version supports rotating the server
|
258
265
|
# certificate without rebooting the DB instance.
|
259
266
|
# @return [Boolean]
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -8246,6 +8246,11 @@ module Aws::RDS
|
|
8246
8246
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/custom-cev.preparing.html#custom-cev.preparing.manifest.fields
|
8247
8247
|
# @return [String]
|
8248
8248
|
#
|
8249
|
+
# @!attribute [rw] supports_limitless_database
|
8250
|
+
# Indicates whether the DB engine version supports Aurora Limitless
|
8251
|
+
# Database.
|
8252
|
+
# @return [Boolean]
|
8253
|
+
#
|
8249
8254
|
# @!attribute [rw] supports_certificate_rotation_without_restart
|
8250
8255
|
# Indicates whether the engine version supports rotating the server
|
8251
8256
|
# certificate without rebooting the DB instance.
|
@@ -8311,6 +8316,7 @@ module Aws::RDS
|
|
8311
8316
|
:tag_list,
|
8312
8317
|
:supports_babelfish,
|
8313
8318
|
:custom_db_engine_version_manifest,
|
8319
|
+
:supports_limitless_database,
|
8314
8320
|
:supports_certificate_rotation_without_restart,
|
8315
8321
|
:supported_ca_certificate_identifiers,
|
8316
8322
|
:supports_local_write_forwarding,
|
@@ -27062,6 +27068,11 @@ module Aws::RDS
|
|
27062
27068
|
# the target engine version.
|
27063
27069
|
# @return [Boolean]
|
27064
27070
|
#
|
27071
|
+
# @!attribute [rw] supports_limitless_database
|
27072
|
+
# Indicates whether the DB engine version supports Aurora Limitless
|
27073
|
+
# Database.
|
27074
|
+
# @return [Boolean]
|
27075
|
+
#
|
27065
27076
|
# @!attribute [rw] supports_local_write_forwarding
|
27066
27077
|
# Indicates whether the target engine version supports forwarding
|
27067
27078
|
# write operations from reader DB instances to the writer DB instance
|
@@ -27088,6 +27099,7 @@ module Aws::RDS
|
|
27088
27099
|
:supports_parallel_query,
|
27089
27100
|
:supports_global_databases,
|
27090
27101
|
:supports_babelfish,
|
27102
|
+
:supports_limitless_database,
|
27091
27103
|
:supports_local_write_forwarding,
|
27092
27104
|
:supports_integrations)
|
27093
27105
|
SENSITIVE = []
|
data/lib/aws-sdk-rds.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -332,6 +332,7 @@ module Aws
|
|
332
332
|
def tag_list: () -> ::Array[Types::Tag]
|
333
333
|
def supports_babelfish: () -> bool
|
334
334
|
def custom_db_engine_version_manifest: () -> ::String
|
335
|
+
def supports_limitless_database: () -> bool
|
335
336
|
def supports_certificate_rotation_without_restart: () -> bool
|
336
337
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
337
338
|
def supports_local_write_forwarding: () -> bool
|
@@ -946,6 +947,7 @@ module Aws
|
|
946
947
|
def tag_list: () -> ::Array[Types::Tag]
|
947
948
|
def supports_babelfish: () -> bool
|
948
949
|
def custom_db_engine_version_manifest: () -> ::String
|
950
|
+
def supports_limitless_database: () -> bool
|
949
951
|
def supports_certificate_rotation_without_restart: () -> bool
|
950
952
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
951
953
|
def supports_local_write_forwarding: () -> bool
|
@@ -2206,6 +2208,7 @@ module Aws
|
|
2206
2208
|
def tag_list: () -> ::Array[Types::Tag]
|
2207
2209
|
def supports_babelfish: () -> bool
|
2208
2210
|
def custom_db_engine_version_manifest: () -> ::String
|
2211
|
+
def supports_limitless_database: () -> bool
|
2209
2212
|
def supports_certificate_rotation_without_restart: () -> bool
|
2210
2213
|
def supported_ca_certificate_identifiers: () -> ::Array[::String]
|
2211
2214
|
def supports_local_write_forwarding: () -> bool
|
data/sig/db_engine_version.rbs
CHANGED
@@ -102,6 +102,9 @@ module Aws
|
|
102
102
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#custom_db_engine_version_manifest-instance_method
|
103
103
|
def custom_db_engine_version_manifest: () -> ::String
|
104
104
|
|
105
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supports_limitless_database-instance_method
|
106
|
+
def supports_limitless_database: () -> bool
|
107
|
+
|
105
108
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/RDS/DBEngineVersion.html#supports_certificate_rotation_without_restart-instance_method
|
106
109
|
def supports_certificate_rotation_without_restart: () -> bool
|
107
110
|
|
data/sig/types.rbs
CHANGED
@@ -1084,6 +1084,7 @@ module Aws::RDS
|
|
1084
1084
|
attr_accessor tag_list: ::Array[Types::Tag]
|
1085
1085
|
attr_accessor supports_babelfish: bool
|
1086
1086
|
attr_accessor custom_db_engine_version_manifest: ::String
|
1087
|
+
attr_accessor supports_limitless_database: bool
|
1087
1088
|
attr_accessor supports_certificate_rotation_without_restart: bool
|
1088
1089
|
attr_accessor supported_ca_certificate_identifiers: ::Array[::String]
|
1089
1090
|
attr_accessor supports_local_write_forwarding: bool
|
@@ -4246,6 +4247,7 @@ module Aws::RDS
|
|
4246
4247
|
attr_accessor supports_parallel_query: bool
|
4247
4248
|
attr_accessor supports_global_databases: bool
|
4248
4249
|
attr_accessor supports_babelfish: bool
|
4250
|
+
attr_accessor supports_limitless_database: bool
|
4249
4251
|
attr_accessor supports_local_write_forwarding: bool
|
4250
4252
|
attr_accessor supports_integrations: bool
|
4251
4253
|
SENSITIVE: []
|
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.230.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-
|
11
|
+
date: 2024-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|