aws-sdk-rds 1.138.0 → 1.139.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +66 -20
- data/lib/aws-sdk-rds/client_api.rb +2 -0
- data/lib/aws-sdk-rds/db_cluster.rb +5 -4
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/db_engine.rb +36 -1
- data/lib/aws-sdk-rds/db_engine_version.rb +7 -0
- data/lib/aws-sdk-rds/db_instance.rb +4 -5
- data/lib/aws-sdk-rds/resource.rb +48 -14
- data/lib/aws-sdk-rds/types.rb +72 -25
- 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: af337024a1898231eb3b9c803db0f1874e8546675190d7c8fa8d1ace01c5d022
|
4
|
+
data.tar.gz: 97a781604ec29c503ac6f1b3be37581af6fa45e4d2ce0eda5f72f03a05d7e6dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c0276f8c5264a3715e912d4d44eb447216c149e9c7fd9d13a09c8ccecb33082ddf4a2eb2f8ea429a32d687331a0e66defcaccc14f1048e008001e82f5210537
|
7
|
+
data.tar.gz: 514a5d9a0ddb945fe625426aae689ecc5b5158a875933c9771e50a208cb6a92e6f0025e56fb09e166361d0c1b7e1a74095f91c5c9c06cec5d32121ba1deff1a5
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.139.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -2025,6 +2025,7 @@ module Aws::RDS
|
|
2025
2025
|
# * {Types::DBEngineVersion#kms_key_id #kms_key_id} => String
|
2026
2026
|
# * {Types::DBEngineVersion#create_time #create_time} => Time
|
2027
2027
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
2028
|
+
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
2028
2029
|
#
|
2029
2030
|
# @example Request syntax with placeholder values
|
2030
2031
|
#
|
@@ -2069,6 +2070,7 @@ module Aws::RDS
|
|
2069
2070
|
# resp.valid_upgrade_target[0].supported_engine_modes[0] #=> String
|
2070
2071
|
# resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
|
2071
2072
|
# resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
|
2073
|
+
# resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
|
2072
2074
|
# resp.supported_timezones #=> Array
|
2073
2075
|
# resp.supported_timezones[0].timezone_name #=> String
|
2074
2076
|
# resp.exportable_log_types #=> Array
|
@@ -2091,6 +2093,7 @@ module Aws::RDS
|
|
2091
2093
|
# resp.tag_list #=> Array
|
2092
2094
|
# resp.tag_list[0].key #=> String
|
2093
2095
|
# resp.tag_list[0].value #=> String
|
2096
|
+
# resp.supports_babelfish #=> Boolean
|
2094
2097
|
#
|
2095
2098
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateCustomDBEngineVersion AWS API Documentation
|
2096
2099
|
#
|
@@ -6559,6 +6562,7 @@ module Aws::RDS
|
|
6559
6562
|
# * {Types::DBEngineVersion#kms_key_id #kms_key_id} => String
|
6560
6563
|
# * {Types::DBEngineVersion#create_time #create_time} => Time
|
6561
6564
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
6565
|
+
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
6562
6566
|
#
|
6563
6567
|
# @example Request syntax with placeholder values
|
6564
6568
|
#
|
@@ -6592,6 +6596,7 @@ module Aws::RDS
|
|
6592
6596
|
# resp.valid_upgrade_target[0].supported_engine_modes[0] #=> String
|
6593
6597
|
# resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
|
6594
6598
|
# resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
|
6599
|
+
# resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
|
6595
6600
|
# resp.supported_timezones #=> Array
|
6596
6601
|
# resp.supported_timezones[0].timezone_name #=> String
|
6597
6602
|
# resp.exportable_log_types #=> Array
|
@@ -6614,6 +6619,7 @@ module Aws::RDS
|
|
6614
6619
|
# resp.tag_list #=> Array
|
6615
6620
|
# resp.tag_list[0].key #=> String
|
6616
6621
|
# resp.tag_list[0].value #=> String
|
6622
|
+
# resp.supports_babelfish #=> Boolean
|
6617
6623
|
#
|
6618
6624
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteCustomDBEngineVersion AWS API Documentation
|
6619
6625
|
#
|
@@ -8850,18 +8856,18 @@ module Aws::RDS
|
|
8850
8856
|
# Supported filters:
|
8851
8857
|
#
|
8852
8858
|
# * `clone-group-id` - Accepts clone group identifiers. The results list
|
8853
|
-
#
|
8859
|
+
# only includes information about the DB clusters associated with
|
8854
8860
|
# these clone groups.
|
8855
8861
|
#
|
8856
8862
|
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
8857
|
-
# Amazon Resource Names (ARNs). The results list
|
8863
|
+
# Amazon Resource Names (ARNs). The results list only includes
|
8858
8864
|
# information about the DB clusters identified by these ARNs.
|
8859
8865
|
#
|
8860
8866
|
# * `domain` - Accepts Active Directory directory IDs. The results list
|
8861
|
-
#
|
8867
|
+
# only includes information about the DB clusters associated with
|
8862
8868
|
# these domains.
|
8863
8869
|
#
|
8864
|
-
# * `engine` - Accepts engine names. The results list
|
8870
|
+
# * `engine` - Accepts engine names. The results list only includes
|
8865
8871
|
# information about the DB clusters for these engines.
|
8866
8872
|
#
|
8867
8873
|
# @option params [Integer] :max_records
|
@@ -9086,7 +9092,42 @@ module Aws::RDS
|
|
9086
9092
|
# ^
|
9087
9093
|
#
|
9088
9094
|
# @option params [Array<Types::Filter>] :filters
|
9089
|
-
#
|
9095
|
+
# A filter that specifies one or more DB engine versions to describe.
|
9096
|
+
#
|
9097
|
+
# Supported filters:
|
9098
|
+
#
|
9099
|
+
# * `db-parameter-group-family` - Accepts parameter groups family names.
|
9100
|
+
# The results list only includes information about the DB engine
|
9101
|
+
# versions for these parameter group families.
|
9102
|
+
#
|
9103
|
+
# * `engine` - Accepts engine names. The results list only includes
|
9104
|
+
# information about the DB engine versions for these engines.
|
9105
|
+
#
|
9106
|
+
# * `engine-mode` - Accepts DB engine modes. The results list only
|
9107
|
+
# includes information about the DB engine versions for these engine
|
9108
|
+
# modes. Valid DB engine modes are the following:
|
9109
|
+
#
|
9110
|
+
# * `global`
|
9111
|
+
#
|
9112
|
+
# * `multimaster`
|
9113
|
+
#
|
9114
|
+
# * `parallelquery`
|
9115
|
+
#
|
9116
|
+
# * `provisioned`
|
9117
|
+
#
|
9118
|
+
# * `serverless`
|
9119
|
+
#
|
9120
|
+
# * `engine-version` - Accepts engine versions. The results list only
|
9121
|
+
# includes information about the DB engine versions for these engine
|
9122
|
+
# versions.
|
9123
|
+
#
|
9124
|
+
# * `status` - Accepts engine version statuses. The results list only
|
9125
|
+
# includes information about the DB engine versions for these
|
9126
|
+
# statuses. Valid statuses are the following:
|
9127
|
+
#
|
9128
|
+
# * `available`
|
9129
|
+
#
|
9130
|
+
# * `deprecated`
|
9090
9131
|
#
|
9091
9132
|
# @option params [Integer] :max_records
|
9092
9133
|
# The maximum number of records to include in the response. If more than
|
@@ -9207,6 +9248,7 @@ module Aws::RDS
|
|
9207
9248
|
# resp.db_engine_versions[0].valid_upgrade_target[0].supported_engine_modes[0] #=> String
|
9208
9249
|
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_parallel_query #=> Boolean
|
9209
9250
|
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_global_databases #=> Boolean
|
9251
|
+
# resp.db_engine_versions[0].valid_upgrade_target[0].supports_babelfish #=> Boolean
|
9210
9252
|
# resp.db_engine_versions[0].supported_timezones #=> Array
|
9211
9253
|
# resp.db_engine_versions[0].supported_timezones[0].timezone_name #=> String
|
9212
9254
|
# resp.db_engine_versions[0].exportable_log_types #=> Array
|
@@ -9229,6 +9271,7 @@ module Aws::RDS
|
|
9229
9271
|
# resp.db_engine_versions[0].tag_list #=> Array
|
9230
9272
|
# resp.db_engine_versions[0].tag_list[0].key #=> String
|
9231
9273
|
# resp.db_engine_versions[0].tag_list[0].value #=> String
|
9274
|
+
# resp.db_engine_versions[0].supports_babelfish #=> Boolean
|
9232
9275
|
#
|
9233
9276
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBEngineVersions AWS API Documentation
|
9234
9277
|
#
|
@@ -9393,12 +9436,12 @@ module Aws::RDS
|
|
9393
9436
|
# Supported filters:
|
9394
9437
|
#
|
9395
9438
|
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
9396
|
-
# Amazon Resource Names (ARNs). The results list
|
9439
|
+
# Amazon Resource Names (ARNs). The results list only includes
|
9397
9440
|
# information about the DB instances associated with the DB clusters
|
9398
9441
|
# identified by these ARNs.
|
9399
9442
|
#
|
9400
9443
|
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
9401
|
-
# Amazon Resource Names (ARNs). The results list
|
9444
|
+
# Amazon Resource Names (ARNs). The results list only includes
|
9402
9445
|
# information about the DB instances identified by these ARNs.
|
9403
9446
|
#
|
9404
9447
|
# * `dbi-resource-id` - Accepts DB instance resource identifiers. The
|
@@ -9406,10 +9449,10 @@ module Aws::RDS
|
|
9406
9449
|
# identified by these DB instance resource identifiers.
|
9407
9450
|
#
|
9408
9451
|
# * `domain` - Accepts Active Directory directory IDs. The results list
|
9409
|
-
#
|
9452
|
+
# only includes information about the DB instances associated with
|
9410
9453
|
# these domains.
|
9411
9454
|
#
|
9412
|
-
# * `engine` - Accepts engine names. The results list
|
9455
|
+
# * `engine` - Accepts engine names. The results list only includes
|
9413
9456
|
# information about the DB instances for these engines.
|
9414
9457
|
#
|
9415
9458
|
# @option params [Integer] :max_records
|
@@ -11913,13 +11956,12 @@ module Aws::RDS
|
|
11913
11956
|
# Supported filters:
|
11914
11957
|
#
|
11915
11958
|
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
11916
|
-
# Amazon Resource Names (ARNs). The results list
|
11917
|
-
#
|
11918
|
-
# ARNs.
|
11959
|
+
# Amazon Resource Names (ARNs). The results list only includes pending
|
11960
|
+
# maintenance actions for the DB clusters identified by these ARNs.
|
11919
11961
|
#
|
11920
11962
|
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
11921
|
-
# ARNs. The results list
|
11922
|
-
#
|
11963
|
+
# ARNs. The results list only includes pending maintenance actions for
|
11964
|
+
# the DB instances identified by these ARNs.
|
11923
11965
|
#
|
11924
11966
|
# @option params [String] :marker
|
11925
11967
|
# An optional pagination token provided by a previous
|
@@ -13250,6 +13292,7 @@ module Aws::RDS
|
|
13250
13292
|
# * {Types::DBEngineVersion#kms_key_id #kms_key_id} => String
|
13251
13293
|
# * {Types::DBEngineVersion#create_time #create_time} => Time
|
13252
13294
|
# * {Types::DBEngineVersion#tag_list #tag_list} => Array<Types::Tag>
|
13295
|
+
# * {Types::DBEngineVersion#supports_babelfish #supports_babelfish} => Boolean
|
13253
13296
|
#
|
13254
13297
|
# @example Request syntax with placeholder values
|
13255
13298
|
#
|
@@ -13285,6 +13328,7 @@ module Aws::RDS
|
|
13285
13328
|
# resp.valid_upgrade_target[0].supported_engine_modes[0] #=> String
|
13286
13329
|
# resp.valid_upgrade_target[0].supports_parallel_query #=> Boolean
|
13287
13330
|
# resp.valid_upgrade_target[0].supports_global_databases #=> Boolean
|
13331
|
+
# resp.valid_upgrade_target[0].supports_babelfish #=> Boolean
|
13288
13332
|
# resp.supported_timezones #=> Array
|
13289
13333
|
# resp.supported_timezones[0].timezone_name #=> String
|
13290
13334
|
# resp.exportable_log_types #=> Array
|
@@ -13307,6 +13351,7 @@ module Aws::RDS
|
|
13307
13351
|
# resp.tag_list #=> Array
|
13308
13352
|
# resp.tag_list[0].key #=> String
|
13309
13353
|
# resp.tag_list[0].value #=> String
|
13354
|
+
# resp.supports_babelfish #=> Boolean
|
13310
13355
|
#
|
13311
13356
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyCustomDBEngineVersion AWS API Documentation
|
13312
13357
|
#
|
@@ -13567,8 +13612,8 @@ module Aws::RDS
|
|
13567
13612
|
#
|
13568
13613
|
# <note markdown="1"> When you apply a parameter group using the
|
13569
13614
|
# `DBInstanceParameterGroupName` parameter, the DB cluster isn't
|
13570
|
-
# rebooted automatically. Also, parameter changes
|
13571
|
-
# the next maintenance window
|
13615
|
+
# rebooted automatically. Also, parameter changes are applied
|
13616
|
+
# immediately rather than during the next maintenance window.
|
13572
13617
|
#
|
13573
13618
|
# </note>
|
13574
13619
|
#
|
@@ -13579,8 +13624,9 @@ module Aws::RDS
|
|
13579
13624
|
# * The DB parameter group must be in the same DB parameter group family
|
13580
13625
|
# as this DB cluster.
|
13581
13626
|
#
|
13582
|
-
# * The `DBInstanceParameterGroupName` parameter is
|
13583
|
-
#
|
13627
|
+
# * The `DBInstanceParameterGroupName` parameter is valid in combination
|
13628
|
+
# with the `AllowMajorVersionUpgrade` parameter for a major version
|
13629
|
+
# upgrade only.
|
13584
13630
|
#
|
13585
13631
|
# Valid for: Aurora DB clusters only
|
13586
13632
|
#
|
@@ -18423,7 +18469,7 @@ module Aws::RDS
|
|
18423
18469
|
# For the full list of DB instance classes, and availability for your
|
18424
18470
|
# engine, see [DB Instance Class][1] in the *Amazon RDS User Guide.*
|
18425
18471
|
#
|
18426
|
-
# Valid for:
|
18472
|
+
# Valid for: Multi-AZ DB clusters only
|
18427
18473
|
#
|
18428
18474
|
#
|
18429
18475
|
#
|
@@ -22386,7 +22432,7 @@ module Aws::RDS
|
|
22386
22432
|
params: params,
|
22387
22433
|
config: config)
|
22388
22434
|
context[:gem_name] = 'aws-sdk-rds'
|
22389
|
-
context[:gem_version] = '1.
|
22435
|
+
context[:gem_version] = '1.139.0'
|
22390
22436
|
Seahorse::Client::Request.new(handlers, context)
|
22391
22437
|
end
|
22392
22438
|
|
@@ -1356,6 +1356,7 @@ module Aws::RDS
|
|
1356
1356
|
DBEngineVersion.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "KMSKeyId"))
|
1357
1357
|
DBEngineVersion.add_member(:create_time, Shapes::ShapeRef.new(shape: TStamp, location_name: "CreateTime"))
|
1358
1358
|
DBEngineVersion.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
1359
|
+
DBEngineVersion.add_member(:supports_babelfish, Shapes::ShapeRef.new(shape: Boolean, location_name: "SupportsBabelfish"))
|
1359
1360
|
DBEngineVersion.struct_class = Types::DBEngineVersion
|
1360
1361
|
|
1361
1362
|
DBEngineVersionList.member = Shapes::ShapeRef.new(shape: DBEngineVersion, location_name: "DBEngineVersion")
|
@@ -3455,6 +3456,7 @@ module Aws::RDS
|
|
3455
3456
|
UpgradeTarget.add_member(:supported_engine_modes, Shapes::ShapeRef.new(shape: EngineModeList, location_name: "SupportedEngineModes"))
|
3456
3457
|
UpgradeTarget.add_member(:supports_parallel_query, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsParallelQuery"))
|
3457
3458
|
UpgradeTarget.add_member(:supports_global_databases, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsGlobalDatabases"))
|
3459
|
+
UpgradeTarget.add_member(:supports_babelfish, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "SupportsBabelfish"))
|
3458
3460
|
UpgradeTarget.struct_class = Types::UpgradeTarget
|
3459
3461
|
|
3460
3462
|
UserAuthConfig.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "Description"))
|
@@ -1797,8 +1797,8 @@ module Aws::RDS
|
|
1797
1797
|
#
|
1798
1798
|
# <note markdown="1"> When you apply a parameter group using the
|
1799
1799
|
# `DBInstanceParameterGroupName` parameter, the DB cluster isn't
|
1800
|
-
# rebooted automatically. Also, parameter changes
|
1801
|
-
# the next maintenance window
|
1800
|
+
# rebooted automatically. Also, parameter changes are applied
|
1801
|
+
# immediately rather than during the next maintenance window.
|
1802
1802
|
#
|
1803
1803
|
# </note>
|
1804
1804
|
#
|
@@ -1809,8 +1809,9 @@ module Aws::RDS
|
|
1809
1809
|
# * The DB parameter group must be in the same DB parameter group family
|
1810
1810
|
# as this DB cluster.
|
1811
1811
|
#
|
1812
|
-
# * The `DBInstanceParameterGroupName` parameter is
|
1813
|
-
#
|
1812
|
+
# * The `DBInstanceParameterGroupName` parameter is valid in combination
|
1813
|
+
# with the `AllowMajorVersionUpgrade` parameter for a major version
|
1814
|
+
# upgrade only.
|
1814
1815
|
#
|
1815
1816
|
# Valid for: Aurora DB clusters only
|
1816
1817
|
# @option options [String] :domain
|
@@ -802,7 +802,7 @@ module Aws::RDS
|
|
802
802
|
# For the full list of DB instance classes, and availability for your
|
803
803
|
# engine, see [DB Instance Class][1] in the *Amazon RDS User Guide.*
|
804
804
|
#
|
805
|
-
# Valid for:
|
805
|
+
# Valid for: Multi-AZ DB clusters only
|
806
806
|
#
|
807
807
|
#
|
808
808
|
#
|
@@ -281,7 +281,42 @@ module Aws::RDS
|
|
281
281
|
#
|
282
282
|
# ^
|
283
283
|
# @option options [Array<Types::Filter>] :filters
|
284
|
-
#
|
284
|
+
# A filter that specifies one or more DB engine versions to describe.
|
285
|
+
#
|
286
|
+
# Supported filters:
|
287
|
+
#
|
288
|
+
# * `db-parameter-group-family` - Accepts parameter groups family names.
|
289
|
+
# The results list only includes information about the DB engine
|
290
|
+
# versions for these parameter group families.
|
291
|
+
#
|
292
|
+
# * `engine` - Accepts engine names. The results list only includes
|
293
|
+
# information about the DB engine versions for these engines.
|
294
|
+
#
|
295
|
+
# * `engine-mode` - Accepts DB engine modes. The results list only
|
296
|
+
# includes information about the DB engine versions for these engine
|
297
|
+
# modes. Valid DB engine modes are the following:
|
298
|
+
#
|
299
|
+
# * `global`
|
300
|
+
#
|
301
|
+
# * `multimaster`
|
302
|
+
#
|
303
|
+
# * `parallelquery`
|
304
|
+
#
|
305
|
+
# * `provisioned`
|
306
|
+
#
|
307
|
+
# * `serverless`
|
308
|
+
#
|
309
|
+
# * `engine-version` - Accepts engine versions. The results list only
|
310
|
+
# includes information about the DB engine versions for these engine
|
311
|
+
# versions.
|
312
|
+
#
|
313
|
+
# * `status` - Accepts engine version statuses. The results list only
|
314
|
+
# includes information about the DB engine versions for these
|
315
|
+
# statuses. Valid statuses are the following:
|
316
|
+
#
|
317
|
+
# * `available`
|
318
|
+
#
|
319
|
+
# * `deprecated`
|
285
320
|
# @option options [Boolean] :default_only
|
286
321
|
# A value that indicates whether only the default version of the
|
287
322
|
# specified engine or engine and major version combination is returned.
|
@@ -218,6 +218,13 @@ module Aws::RDS
|
|
218
218
|
data[:tag_list]
|
219
219
|
end
|
220
220
|
|
221
|
+
# A value that indicates whether the engine version supports Babelfish
|
222
|
+
# for Aurora PostgreSQL.
|
223
|
+
# @return [Boolean]
|
224
|
+
def supports_babelfish
|
225
|
+
data[:supports_babelfish]
|
226
|
+
end
|
227
|
+
|
221
228
|
# @!endgroup
|
222
229
|
|
223
230
|
# @return [Client]
|
@@ -3942,13 +3942,12 @@ module Aws::RDS
|
|
3942
3942
|
# Supported filters:
|
3943
3943
|
#
|
3944
3944
|
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
3945
|
-
# Amazon Resource Names (ARNs). The results list
|
3946
|
-
#
|
3947
|
-
# ARNs.
|
3945
|
+
# Amazon Resource Names (ARNs). The results list only includes pending
|
3946
|
+
# maintenance actions for the DB clusters identified by these ARNs.
|
3948
3947
|
#
|
3949
3948
|
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
3950
|
-
# ARNs. The results list
|
3951
|
-
#
|
3949
|
+
# ARNs. The results list only includes pending maintenance actions for
|
3950
|
+
# the DB instances identified by these ARNs.
|
3952
3951
|
# @return [PendingMaintenanceAction::Collection]
|
3953
3952
|
def pending_maintenance_actions(options = {})
|
3954
3953
|
batches = Enumerator.new do |y|
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -2411,18 +2411,18 @@ module Aws::RDS
|
|
2411
2411
|
# Supported filters:
|
2412
2412
|
#
|
2413
2413
|
# * `clone-group-id` - Accepts clone group identifiers. The results list
|
2414
|
-
#
|
2414
|
+
# only includes information about the DB clusters associated with
|
2415
2415
|
# these clone groups.
|
2416
2416
|
#
|
2417
2417
|
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
2418
|
-
# Amazon Resource Names (ARNs). The results list
|
2418
|
+
# Amazon Resource Names (ARNs). The results list only includes
|
2419
2419
|
# information about the DB clusters identified by these ARNs.
|
2420
2420
|
#
|
2421
2421
|
# * `domain` - Accepts Active Directory directory IDs. The results list
|
2422
|
-
#
|
2422
|
+
# only includes information about the DB clusters associated with
|
2423
2423
|
# these domains.
|
2424
2424
|
#
|
2425
|
-
# * `engine` - Accepts engine names. The results list
|
2425
|
+
# * `engine` - Accepts engine names. The results list only includes
|
2426
2426
|
# information about the DB clusters for these engines.
|
2427
2427
|
# @option options [Boolean] :include_shared
|
2428
2428
|
# Optional Boolean parameter that specifies whether the output includes
|
@@ -2532,7 +2532,42 @@ module Aws::RDS
|
|
2532
2532
|
#
|
2533
2533
|
# ^
|
2534
2534
|
# @option options [Array<Types::Filter>] :filters
|
2535
|
-
#
|
2535
|
+
# A filter that specifies one or more DB engine versions to describe.
|
2536
|
+
#
|
2537
|
+
# Supported filters:
|
2538
|
+
#
|
2539
|
+
# * `db-parameter-group-family` - Accepts parameter groups family names.
|
2540
|
+
# The results list only includes information about the DB engine
|
2541
|
+
# versions for these parameter group families.
|
2542
|
+
#
|
2543
|
+
# * `engine` - Accepts engine names. The results list only includes
|
2544
|
+
# information about the DB engine versions for these engines.
|
2545
|
+
#
|
2546
|
+
# * `engine-mode` - Accepts DB engine modes. The results list only
|
2547
|
+
# includes information about the DB engine versions for these engine
|
2548
|
+
# modes. Valid DB engine modes are the following:
|
2549
|
+
#
|
2550
|
+
# * `global`
|
2551
|
+
#
|
2552
|
+
# * `multimaster`
|
2553
|
+
#
|
2554
|
+
# * `parallelquery`
|
2555
|
+
#
|
2556
|
+
# * `provisioned`
|
2557
|
+
#
|
2558
|
+
# * `serverless`
|
2559
|
+
#
|
2560
|
+
# * `engine-version` - Accepts engine versions. The results list only
|
2561
|
+
# includes information about the DB engine versions for these engine
|
2562
|
+
# versions.
|
2563
|
+
#
|
2564
|
+
# * `status` - Accepts engine version statuses. The results list only
|
2565
|
+
# includes information about the DB engine versions for these
|
2566
|
+
# statuses. Valid statuses are the following:
|
2567
|
+
#
|
2568
|
+
# * `available`
|
2569
|
+
#
|
2570
|
+
# * `deprecated`
|
2536
2571
|
# @option options [Boolean] :default_only
|
2537
2572
|
# A value that indicates whether only the default version of the
|
2538
2573
|
# specified engine or engine and major version combination is returned.
|
@@ -2619,12 +2654,12 @@ module Aws::RDS
|
|
2619
2654
|
# Supported filters:
|
2620
2655
|
#
|
2621
2656
|
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
2622
|
-
# Amazon Resource Names (ARNs). The results list
|
2657
|
+
# Amazon Resource Names (ARNs). The results list only includes
|
2623
2658
|
# information about the DB instances associated with the DB clusters
|
2624
2659
|
# identified by these ARNs.
|
2625
2660
|
#
|
2626
2661
|
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
2627
|
-
# Amazon Resource Names (ARNs). The results list
|
2662
|
+
# Amazon Resource Names (ARNs). The results list only includes
|
2628
2663
|
# information about the DB instances identified by these ARNs.
|
2629
2664
|
#
|
2630
2665
|
# * `dbi-resource-id` - Accepts DB instance resource identifiers. The
|
@@ -2632,10 +2667,10 @@ module Aws::RDS
|
|
2632
2667
|
# identified by these DB instance resource identifiers.
|
2633
2668
|
#
|
2634
2669
|
# * `domain` - Accepts Active Directory directory IDs. The results list
|
2635
|
-
#
|
2670
|
+
# only includes information about the DB instances associated with
|
2636
2671
|
# these domains.
|
2637
2672
|
#
|
2638
|
-
# * `engine` - Accepts engine names. The results list
|
2673
|
+
# * `engine` - Accepts engine names. The results list only includes
|
2639
2674
|
# information about the DB instances for these engines.
|
2640
2675
|
# @return [DBInstance::Collection]
|
2641
2676
|
def db_instances(options = {})
|
@@ -3410,13 +3445,12 @@ module Aws::RDS
|
|
3410
3445
|
# Supported filters:
|
3411
3446
|
#
|
3412
3447
|
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
3413
|
-
# Amazon Resource Names (ARNs). The results list
|
3414
|
-
#
|
3415
|
-
# ARNs.
|
3448
|
+
# Amazon Resource Names (ARNs). The results list only includes pending
|
3449
|
+
# maintenance actions for the DB clusters identified by these ARNs.
|
3416
3450
|
#
|
3417
3451
|
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
3418
|
-
# ARNs. The results list
|
3419
|
-
#
|
3452
|
+
# ARNs. The results list only includes pending maintenance actions for
|
3453
|
+
# the DB instances identified by these ARNs.
|
3420
3454
|
# @return [ResourcePendingMaintenanceActionList::Collection]
|
3421
3455
|
def resources_with_pending_maintenance_actions(options = {})
|
3422
3456
|
batches = Enumerator.new do |y|
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -7191,6 +7191,11 @@ module Aws::RDS
|
|
7191
7191
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
7192
7192
|
# @return [Array<Types::Tag>]
|
7193
7193
|
#
|
7194
|
+
# @!attribute [rw] supports_babelfish
|
7195
|
+
# A value that indicates whether the engine version supports Babelfish
|
7196
|
+
# for Aurora PostgreSQL.
|
7197
|
+
# @return [Boolean]
|
7198
|
+
#
|
7194
7199
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBEngineVersion AWS API Documentation
|
7195
7200
|
#
|
7196
7201
|
class DBEngineVersion < Struct.new(
|
@@ -7218,7 +7223,8 @@ module Aws::RDS
|
|
7218
7223
|
:db_engine_version_arn,
|
7219
7224
|
:kms_key_id,
|
7220
7225
|
:create_time,
|
7221
|
-
:tag_list
|
7226
|
+
:tag_list,
|
7227
|
+
:supports_babelfish)
|
7222
7228
|
SENSITIVE = []
|
7223
7229
|
include Aws::Structure
|
7224
7230
|
end
|
@@ -10649,19 +10655,19 @@ module Aws::RDS
|
|
10649
10655
|
# Supported filters:
|
10650
10656
|
#
|
10651
10657
|
# * `clone-group-id` - Accepts clone group identifiers. The results
|
10652
|
-
# list
|
10653
|
-
#
|
10658
|
+
# list only includes information about the DB clusters associated
|
10659
|
+
# with these clone groups.
|
10654
10660
|
#
|
10655
10661
|
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
10656
|
-
# Amazon Resource Names (ARNs). The results list
|
10662
|
+
# Amazon Resource Names (ARNs). The results list only includes
|
10657
10663
|
# information about the DB clusters identified by these ARNs.
|
10658
10664
|
#
|
10659
10665
|
# * `domain` - Accepts Active Directory directory IDs. The results
|
10660
|
-
# list
|
10661
|
-
#
|
10666
|
+
# list only includes information about the DB clusters associated
|
10667
|
+
# with these domains.
|
10662
10668
|
#
|
10663
|
-
# * `engine` - Accepts engine names. The results list
|
10664
|
-
#
|
10669
|
+
# * `engine` - Accepts engine names. The results list only includes
|
10670
|
+
# information about the DB clusters for these engines.
|
10665
10671
|
# @return [Array<Types::Filter>]
|
10666
10672
|
#
|
10667
10673
|
# @!attribute [rw] max_records
|
@@ -10774,7 +10780,42 @@ module Aws::RDS
|
|
10774
10780
|
# @return [String]
|
10775
10781
|
#
|
10776
10782
|
# @!attribute [rw] filters
|
10777
|
-
#
|
10783
|
+
# A filter that specifies one or more DB engine versions to describe.
|
10784
|
+
#
|
10785
|
+
# Supported filters:
|
10786
|
+
#
|
10787
|
+
# * `db-parameter-group-family` - Accepts parameter groups family
|
10788
|
+
# names. The results list only includes information about the DB
|
10789
|
+
# engine versions for these parameter group families.
|
10790
|
+
#
|
10791
|
+
# * `engine` - Accepts engine names. The results list only includes
|
10792
|
+
# information about the DB engine versions for these engines.
|
10793
|
+
#
|
10794
|
+
# * `engine-mode` - Accepts DB engine modes. The results list only
|
10795
|
+
# includes information about the DB engine versions for these engine
|
10796
|
+
# modes. Valid DB engine modes are the following:
|
10797
|
+
#
|
10798
|
+
# * `global`
|
10799
|
+
#
|
10800
|
+
# * `multimaster`
|
10801
|
+
#
|
10802
|
+
# * `parallelquery`
|
10803
|
+
#
|
10804
|
+
# * `provisioned`
|
10805
|
+
#
|
10806
|
+
# * `serverless`
|
10807
|
+
#
|
10808
|
+
# * `engine-version` - Accepts engine versions. The results list only
|
10809
|
+
# includes information about the DB engine versions for these engine
|
10810
|
+
# versions.
|
10811
|
+
#
|
10812
|
+
# * `status` - Accepts engine version statuses. The results list only
|
10813
|
+
# includes information about the DB engine versions for these
|
10814
|
+
# statuses. Valid statuses are the following:
|
10815
|
+
#
|
10816
|
+
# * `available`
|
10817
|
+
#
|
10818
|
+
# * `deprecated`
|
10778
10819
|
# @return [Array<Types::Filter>]
|
10779
10820
|
#
|
10780
10821
|
# @!attribute [rw] max_records
|
@@ -10974,12 +11015,12 @@ module Aws::RDS
|
|
10974
11015
|
# Supported filters:
|
10975
11016
|
#
|
10976
11017
|
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
10977
|
-
# Amazon Resource Names (ARNs). The results list
|
11018
|
+
# Amazon Resource Names (ARNs). The results list only includes
|
10978
11019
|
# information about the DB instances associated with the DB clusters
|
10979
11020
|
# identified by these ARNs.
|
10980
11021
|
#
|
10981
11022
|
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
10982
|
-
# Amazon Resource Names (ARNs). The results list
|
11023
|
+
# Amazon Resource Names (ARNs). The results list only includes
|
10983
11024
|
# information about the DB instances identified by these ARNs.
|
10984
11025
|
#
|
10985
11026
|
# * `dbi-resource-id` - Accepts DB instance resource identifiers. The
|
@@ -10987,11 +11028,11 @@ module Aws::RDS
|
|
10987
11028
|
# identified by these DB instance resource identifiers.
|
10988
11029
|
#
|
10989
11030
|
# * `domain` - Accepts Active Directory directory IDs. The results
|
10990
|
-
# list
|
10991
|
-
#
|
11031
|
+
# list only includes information about the DB instances associated
|
11032
|
+
# with these domains.
|
10992
11033
|
#
|
10993
|
-
# * `engine` - Accepts engine names. The results list
|
10994
|
-
#
|
11034
|
+
# * `engine` - Accepts engine names. The results list only includes
|
11035
|
+
# information about the DB instances for these engines.
|
10995
11036
|
# @return [Array<Types::Filter>]
|
10996
11037
|
#
|
10997
11038
|
# @!attribute [rw] max_records
|
@@ -12770,13 +12811,13 @@ module Aws::RDS
|
|
12770
12811
|
# Supported filters:
|
12771
12812
|
#
|
12772
12813
|
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
12773
|
-
# Amazon Resource Names (ARNs). The results list
|
12814
|
+
# Amazon Resource Names (ARNs). The results list only includes
|
12774
12815
|
# pending maintenance actions for the DB clusters identified by
|
12775
12816
|
# these ARNs.
|
12776
12817
|
#
|
12777
12818
|
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
12778
|
-
# ARNs. The results list
|
12779
|
-
#
|
12819
|
+
# ARNs. The results list only includes pending maintenance actions
|
12820
|
+
# for the DB instances identified by these ARNs.
|
12780
12821
|
# @return [Array<Types::Filter>]
|
12781
12822
|
#
|
12782
12823
|
# @!attribute [rw] marker
|
@@ -15075,9 +15116,8 @@ module Aws::RDS
|
|
15075
15116
|
#
|
15076
15117
|
# <note markdown="1"> When you apply a parameter group using the
|
15077
15118
|
# `DBInstanceParameterGroupName` parameter, the DB cluster isn't
|
15078
|
-
# rebooted automatically. Also, parameter changes
|
15079
|
-
# during the next maintenance window
|
15080
|
-
# immediately.
|
15119
|
+
# rebooted automatically. Also, parameter changes are applied
|
15120
|
+
# immediately rather than during the next maintenance window.
|
15081
15121
|
#
|
15082
15122
|
# </note>
|
15083
15123
|
#
|
@@ -15088,8 +15128,9 @@ module Aws::RDS
|
|
15088
15128
|
# * The DB parameter group must be in the same DB parameter group
|
15089
15129
|
# family as this DB cluster.
|
15090
15130
|
#
|
15091
|
-
# * The `DBInstanceParameterGroupName` parameter is
|
15092
|
-
# combination with the `AllowMajorVersionUpgrade` parameter
|
15131
|
+
# * The `DBInstanceParameterGroupName` parameter is valid in
|
15132
|
+
# combination with the `AllowMajorVersionUpgrade` parameter for a
|
15133
|
+
# major version upgrade only.
|
15093
15134
|
#
|
15094
15135
|
# Valid for: Aurora DB clusters only
|
15095
15136
|
# @return [String]
|
@@ -20225,7 +20266,7 @@ module Aws::RDS
|
|
20225
20266
|
# For the full list of DB instance classes, and availability for your
|
20226
20267
|
# engine, see [DB Instance Class][1] in the *Amazon RDS User Guide.*
|
20227
20268
|
#
|
20228
|
-
# Valid for:
|
20269
|
+
# Valid for: Multi-AZ DB clusters only
|
20229
20270
|
#
|
20230
20271
|
#
|
20231
20272
|
#
|
@@ -23637,6 +23678,11 @@ module Aws::RDS
|
|
23637
23678
|
# with the target engine version.
|
23638
23679
|
# @return [Boolean]
|
23639
23680
|
#
|
23681
|
+
# @!attribute [rw] supports_babelfish
|
23682
|
+
# A value that indicates whether you can use Babelfish for Aurora
|
23683
|
+
# PostgreSQL with the target engine version.
|
23684
|
+
# @return [Boolean]
|
23685
|
+
#
|
23640
23686
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/UpgradeTarget AWS API Documentation
|
23641
23687
|
#
|
23642
23688
|
class UpgradeTarget < Struct.new(
|
@@ -23647,7 +23693,8 @@ module Aws::RDS
|
|
23647
23693
|
:is_major_version_upgrade,
|
23648
23694
|
:supported_engine_modes,
|
23649
23695
|
:supports_parallel_query,
|
23650
|
-
:supports_global_databases
|
23696
|
+
:supports_global_databases,
|
23697
|
+
:supports_babelfish)
|
23651
23698
|
SENSITIVE = []
|
23652
23699
|
include Aws::Structure
|
23653
23700
|
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.139.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-02-
|
11
|
+
date: 2022-02-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|