aws-sdk-rds 1.104.0 → 1.105.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/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +17 -35
- data/lib/aws-sdk-rds/client_api.rb +1 -0
- data/lib/aws-sdk-rds/db_instance.rb +13 -30
- data/lib/aws-sdk-rds/db_snapshot.rb +2 -3
- data/lib/aws-sdk-rds/resource.rb +2 -23
- data/lib/aws-sdk-rds/types.rb +20 -36
- 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: e7b51d5746ee3517673310ca140af168157562f94072402df4a9f9afa974b7f2
|
|
4
|
+
data.tar.gz: b1464fc5440cd2bfc44d1edccc144d21f46a2f6c419c97cdae25cc07cd14fb6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8e2b010cac4074450d28e5a3440e9099c5b840ed011f5273b572c35bc464327c13e0ca856c76766386900c3b46c8534d79136ee36db9a79960b549307663859
|
|
7
|
+
data.tar.gz: 5a8bdc952bf4a44fe6b510fc51a80dc5500fc78d55a3ff6dda1374e521b86c0300bf0f267bbc7c73753189d55ec80b6e1d9fc9aac5d1996bb7010a763d846abb
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -3508,29 +3508,8 @@ module Aws::RDS
|
|
|
3508
3508
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
3509
3509
|
# mapping is disabled.
|
|
3510
3510
|
#
|
|
3511
|
-
#
|
|
3512
|
-
#
|
|
3513
|
-
#
|
|
3514
|
-
# **Amazon Aurora**
|
|
3515
|
-
#
|
|
3516
|
-
# Not applicable. Mapping AWS IAM accounts to database accounts is
|
|
3517
|
-
# managed by the DB cluster.
|
|
3518
|
-
#
|
|
3519
|
-
# **MySQL**
|
|
3520
|
-
#
|
|
3521
|
-
# * For MySQL 5.6, minor version 5.6.34 or higher
|
|
3522
|
-
#
|
|
3523
|
-
# * For MySQL 5.7, minor version 5.7.16 or higher
|
|
3524
|
-
#
|
|
3525
|
-
# * For MySQL 8.0, minor version 8.0.16 or higher
|
|
3526
|
-
#
|
|
3527
|
-
# **PostgreSQL**
|
|
3528
|
-
#
|
|
3529
|
-
# * For PostgreSQL 9.5, minor version 9.5.15 or higher
|
|
3530
|
-
#
|
|
3531
|
-
# * For PostgreSQL 9.6, minor version 9.6.11 or higher
|
|
3532
|
-
#
|
|
3533
|
-
# * PostgreSQL 10.6, 10.7, and 10.9
|
|
3511
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts
|
|
3512
|
+
# to database accounts is managed by the DB cluster.
|
|
3534
3513
|
#
|
|
3535
3514
|
# For more information, see [ IAM Database Authentication for MySQL and
|
|
3536
3515
|
# PostgreSQL][1] in the *Amazon RDS User Guide.*
|
|
@@ -4164,8 +4143,7 @@ module Aws::RDS
|
|
|
4164
4143
|
# @option params [Boolean] :enable_iam_database_authentication
|
|
4165
4144
|
# A value that indicates whether to enable mapping of AWS Identity and
|
|
4166
4145
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
4167
|
-
# mapping is disabled.
|
|
4168
|
-
# see CreateDBInstance.
|
|
4146
|
+
# mapping is disabled.
|
|
4169
4147
|
#
|
|
4170
4148
|
# For more information about IAM database authentication, see [ IAM
|
|
4171
4149
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
|
@@ -4266,6 +4244,10 @@ module Aws::RDS
|
|
|
4266
4244
|
#
|
|
4267
4245
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
|
4268
4246
|
#
|
|
4247
|
+
# @option params [Integer] :max_allocated_storage
|
|
4248
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
|
4249
|
+
# storage of the DB instance.
|
|
4250
|
+
#
|
|
4269
4251
|
# @option params [String] :source_region
|
|
4270
4252
|
# The source region of the snapshot. This is only needed when the
|
|
4271
4253
|
# shapshot is encrypted and in a different region.
|
|
@@ -4345,6 +4327,7 @@ module Aws::RDS
|
|
|
4345
4327
|
# domain: "String",
|
|
4346
4328
|
# domain_iam_role_name: "String",
|
|
4347
4329
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
|
4330
|
+
# max_allocated_storage: 1,
|
|
4348
4331
|
# source_region: "String",
|
|
4349
4332
|
# })
|
|
4350
4333
|
#
|
|
@@ -12343,7 +12326,7 @@ module Aws::RDS
|
|
|
12343
12326
|
# The version number of the database engine to upgrade to. Changing this
|
|
12344
12327
|
# parameter results in an outage and the change is applied during the
|
|
12345
12328
|
# next maintenance window unless the `ApplyImmediately` parameter is
|
|
12346
|
-
#
|
|
12329
|
+
# enabled for this request.
|
|
12347
12330
|
#
|
|
12348
12331
|
# For major version upgrades, if a nondefault DB parameter group is
|
|
12349
12332
|
# currently in use, a new DB parameter group in the DB parameter group
|
|
@@ -12617,8 +12600,10 @@ module Aws::RDS
|
|
|
12617
12600
|
# @option params [Boolean] :enable_iam_database_authentication
|
|
12618
12601
|
# A value that indicates whether to enable mapping of AWS Identity and
|
|
12619
12602
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
12620
|
-
# mapping is disabled.
|
|
12621
|
-
#
|
|
12603
|
+
# mapping is disabled.
|
|
12604
|
+
#
|
|
12605
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts
|
|
12606
|
+
# to database accounts is managed by the DB cluster.
|
|
12622
12607
|
#
|
|
12623
12608
|
# For more information about IAM database authentication, see [ IAM
|
|
12624
12609
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
|
@@ -16402,8 +16387,7 @@ module Aws::RDS
|
|
|
16402
16387
|
# @option params [Boolean] :enable_iam_database_authentication
|
|
16403
16388
|
# A value that indicates whether to enable mapping of AWS Identity and
|
|
16404
16389
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
16405
|
-
# mapping is disabled.
|
|
16406
|
-
# see CreateDBInstance.
|
|
16390
|
+
# mapping is disabled.
|
|
16407
16391
|
#
|
|
16408
16392
|
# For more information about IAM database authentication, see [ IAM
|
|
16409
16393
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
|
@@ -17013,8 +16997,7 @@ module Aws::RDS
|
|
|
17013
16997
|
# @option params [Boolean] :enable_iam_database_authentication
|
|
17014
16998
|
# A value that indicates whether to enable mapping of AWS Identity and
|
|
17015
16999
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
17016
|
-
# mapping is disabled.
|
|
17017
|
-
# see CreateDBInstance.
|
|
17000
|
+
# mapping is disabled.
|
|
17018
17001
|
#
|
|
17019
17002
|
# For more information about IAM database authentication, see [ IAM
|
|
17020
17003
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
|
@@ -17546,8 +17529,7 @@ module Aws::RDS
|
|
|
17546
17529
|
# @option params [Boolean] :enable_iam_database_authentication
|
|
17547
17530
|
# A value that indicates whether to enable mapping of AWS Identity and
|
|
17548
17531
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
17549
|
-
# mapping is disabled.
|
|
17550
|
-
# see CreateDBInstance.
|
|
17532
|
+
# mapping is disabled.
|
|
17551
17533
|
#
|
|
17552
17534
|
# For more information about IAM database authentication, see [ IAM
|
|
17553
17535
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
|
@@ -18793,7 +18775,7 @@ module Aws::RDS
|
|
|
18793
18775
|
params: params,
|
|
18794
18776
|
config: config)
|
|
18795
18777
|
context[:gem_name] = 'aws-sdk-rds'
|
|
18796
|
-
context[:gem_version] = '1.
|
|
18778
|
+
context[:gem_version] = '1.105.0'
|
|
18797
18779
|
Seahorse::Client::Request.new(handlers, context)
|
|
18798
18780
|
end
|
|
18799
18781
|
|
|
@@ -899,6 +899,7 @@ module Aws::RDS
|
|
|
899
899
|
CreateDBInstanceReadReplicaMessage.add_member(:domain, Shapes::ShapeRef.new(shape: String, location_name: "Domain"))
|
|
900
900
|
CreateDBInstanceReadReplicaMessage.add_member(:domain_iam_role_name, Shapes::ShapeRef.new(shape: String, location_name: "DomainIAMRoleName"))
|
|
901
901
|
CreateDBInstanceReadReplicaMessage.add_member(:replica_mode, Shapes::ShapeRef.new(shape: ReplicaMode, location_name: "ReplicaMode"))
|
|
902
|
+
CreateDBInstanceReadReplicaMessage.add_member(:max_allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "MaxAllocatedStorage"))
|
|
902
903
|
CreateDBInstanceReadReplicaMessage.add_member(:destination_region, Shapes::ShapeRef.new(shape: String, location_name: "DestinationRegion", metadata: {"documented"=>false}))
|
|
903
904
|
CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
|
|
904
905
|
CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
|
|
@@ -1441,29 +1441,8 @@ module Aws::RDS
|
|
|
1441
1441
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
1442
1442
|
# mapping is disabled.
|
|
1443
1443
|
#
|
|
1444
|
-
#
|
|
1445
|
-
#
|
|
1446
|
-
#
|
|
1447
|
-
# **Amazon Aurora**
|
|
1448
|
-
#
|
|
1449
|
-
# Not applicable. Mapping AWS IAM accounts to database accounts is
|
|
1450
|
-
# managed by the DB cluster.
|
|
1451
|
-
#
|
|
1452
|
-
# **MySQL**
|
|
1453
|
-
#
|
|
1454
|
-
# * For MySQL 5.6, minor version 5.6.34 or higher
|
|
1455
|
-
#
|
|
1456
|
-
# * For MySQL 5.7, minor version 5.7.16 or higher
|
|
1457
|
-
#
|
|
1458
|
-
# * For MySQL 8.0, minor version 8.0.16 or higher
|
|
1459
|
-
#
|
|
1460
|
-
# **PostgreSQL**
|
|
1461
|
-
#
|
|
1462
|
-
# * For PostgreSQL 9.5, minor version 9.5.15 or higher
|
|
1463
|
-
#
|
|
1464
|
-
# * For PostgreSQL 9.6, minor version 9.6.11 or higher
|
|
1465
|
-
#
|
|
1466
|
-
# * PostgreSQL 10.6, 10.7, and 10.9
|
|
1444
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts
|
|
1445
|
+
# to database accounts is managed by the DB cluster.
|
|
1467
1446
|
#
|
|
1468
1447
|
# For more information, see [ IAM Database Authentication for MySQL and
|
|
1469
1448
|
# PostgreSQL][1] in the *Amazon RDS User Guide.*
|
|
@@ -1603,6 +1582,7 @@ module Aws::RDS
|
|
|
1603
1582
|
# domain: "String",
|
|
1604
1583
|
# domain_iam_role_name: "String",
|
|
1605
1584
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
|
1585
|
+
# max_allocated_storage: 1,
|
|
1606
1586
|
# source_region: "String",
|
|
1607
1587
|
# })
|
|
1608
1588
|
# @param [Hash] options ({})
|
|
@@ -1848,8 +1828,7 @@ module Aws::RDS
|
|
|
1848
1828
|
# @option options [Boolean] :enable_iam_database_authentication
|
|
1849
1829
|
# A value that indicates whether to enable mapping of AWS Identity and
|
|
1850
1830
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
1851
|
-
# mapping is disabled.
|
|
1852
|
-
# see CreateDBInstance.
|
|
1831
|
+
# mapping is disabled.
|
|
1853
1832
|
#
|
|
1854
1833
|
# For more information about IAM database authentication, see [ IAM
|
|
1855
1834
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
|
@@ -1939,6 +1918,9 @@ module Aws::RDS
|
|
|
1939
1918
|
#
|
|
1940
1919
|
#
|
|
1941
1920
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
|
1921
|
+
# @option options [Integer] :max_allocated_storage
|
|
1922
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
|
1923
|
+
# storage of the DB instance.
|
|
1942
1924
|
# @option options [String] :destination_region
|
|
1943
1925
|
# @option options [String] :source_region
|
|
1944
1926
|
# The source region of the snapshot. This is only needed when the
|
|
@@ -2336,7 +2318,7 @@ module Aws::RDS
|
|
|
2336
2318
|
# The version number of the database engine to upgrade to. Changing this
|
|
2337
2319
|
# parameter results in an outage and the change is applied during the
|
|
2338
2320
|
# next maintenance window unless the `ApplyImmediately` parameter is
|
|
2339
|
-
#
|
|
2321
|
+
# enabled for this request.
|
|
2340
2322
|
#
|
|
2341
2323
|
# For major version upgrades, if a nondefault DB parameter group is
|
|
2342
2324
|
# currently in use, a new DB parameter group in the DB parameter group
|
|
@@ -2591,8 +2573,10 @@ module Aws::RDS
|
|
|
2591
2573
|
# @option options [Boolean] :enable_iam_database_authentication
|
|
2592
2574
|
# A value that indicates whether to enable mapping of AWS Identity and
|
|
2593
2575
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
2594
|
-
# mapping is disabled.
|
|
2595
|
-
#
|
|
2576
|
+
# mapping is disabled.
|
|
2577
|
+
#
|
|
2578
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts
|
|
2579
|
+
# to database accounts is managed by the DB cluster.
|
|
2596
2580
|
#
|
|
2597
2581
|
# For more information about IAM database authentication, see [ IAM
|
|
2598
2582
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
|
@@ -3024,8 +3008,7 @@ module Aws::RDS
|
|
|
3024
3008
|
# @option options [Boolean] :enable_iam_database_authentication
|
|
3025
3009
|
# A value that indicates whether to enable mapping of AWS Identity and
|
|
3026
3010
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
3027
|
-
# mapping is disabled.
|
|
3028
|
-
# see CreateDBInstance.
|
|
3011
|
+
# mapping is disabled.
|
|
3029
3012
|
#
|
|
3030
3013
|
# For more information about IAM database authentication, see [ IAM
|
|
3031
3014
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
|
@@ -44,7 +44,7 @@ module Aws::RDS
|
|
|
44
44
|
end
|
|
45
45
|
alias :db_snapshot_identifier :snapshot_id
|
|
46
46
|
|
|
47
|
-
# Specifies when the snapshot was taken in
|
|
47
|
+
# Specifies when the snapshot was taken in Coordinated Universal Time
|
|
48
48
|
# (UTC).
|
|
49
49
|
# @return [Time]
|
|
50
50
|
def snapshot_create_time
|
|
@@ -789,8 +789,7 @@ module Aws::RDS
|
|
|
789
789
|
# @option options [Boolean] :enable_iam_database_authentication
|
|
790
790
|
# A value that indicates whether to enable mapping of AWS Identity and
|
|
791
791
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
792
|
-
# mapping is disabled.
|
|
793
|
-
# see CreateDBInstance.
|
|
792
|
+
# mapping is disabled.
|
|
794
793
|
#
|
|
795
794
|
# For more information about IAM database authentication, see [ IAM
|
|
796
795
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
|
@@ -1316,29 +1316,8 @@ module Aws::RDS
|
|
|
1316
1316
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
1317
1317
|
# mapping is disabled.
|
|
1318
1318
|
#
|
|
1319
|
-
#
|
|
1320
|
-
#
|
|
1321
|
-
#
|
|
1322
|
-
# **Amazon Aurora**
|
|
1323
|
-
#
|
|
1324
|
-
# Not applicable. Mapping AWS IAM accounts to database accounts is
|
|
1325
|
-
# managed by the DB cluster.
|
|
1326
|
-
#
|
|
1327
|
-
# **MySQL**
|
|
1328
|
-
#
|
|
1329
|
-
# * For MySQL 5.6, minor version 5.6.34 or higher
|
|
1330
|
-
#
|
|
1331
|
-
# * For MySQL 5.7, minor version 5.7.16 or higher
|
|
1332
|
-
#
|
|
1333
|
-
# * For MySQL 8.0, minor version 8.0.16 or higher
|
|
1334
|
-
#
|
|
1335
|
-
# **PostgreSQL**
|
|
1336
|
-
#
|
|
1337
|
-
# * For PostgreSQL 9.5, minor version 9.5.15 or higher
|
|
1338
|
-
#
|
|
1339
|
-
# * For PostgreSQL 9.6, minor version 9.6.11 or higher
|
|
1340
|
-
#
|
|
1341
|
-
# * PostgreSQL 10.6, 10.7, and 10.9
|
|
1319
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM accounts
|
|
1320
|
+
# to database accounts is managed by the DB cluster.
|
|
1342
1321
|
#
|
|
1343
1322
|
# For more information, see [ IAM Database Authentication for MySQL and
|
|
1344
1323
|
# PostgreSQL][1] in the *Amazon RDS User Guide.*
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -3261,29 +3261,8 @@ module Aws::RDS
|
|
|
3261
3261
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
3262
3262
|
# mapping is disabled.
|
|
3263
3263
|
#
|
|
3264
|
-
#
|
|
3265
|
-
# database
|
|
3266
|
-
#
|
|
3267
|
-
# **Amazon Aurora**
|
|
3268
|
-
#
|
|
3269
|
-
# Not applicable. Mapping AWS IAM accounts to database accounts is
|
|
3270
|
-
# managed by the DB cluster.
|
|
3271
|
-
#
|
|
3272
|
-
# **MySQL**
|
|
3273
|
-
#
|
|
3274
|
-
# * For MySQL 5.6, minor version 5.6.34 or higher
|
|
3275
|
-
#
|
|
3276
|
-
# * For MySQL 5.7, minor version 5.7.16 or higher
|
|
3277
|
-
#
|
|
3278
|
-
# * For MySQL 8.0, minor version 8.0.16 or higher
|
|
3279
|
-
#
|
|
3280
|
-
# **PostgreSQL**
|
|
3281
|
-
#
|
|
3282
|
-
# * For PostgreSQL 9.5, minor version 9.5.15 or higher
|
|
3283
|
-
#
|
|
3284
|
-
# * For PostgreSQL 9.6, minor version 9.6.11 or higher
|
|
3285
|
-
#
|
|
3286
|
-
# * PostgreSQL 10.6, 10.7, and 10.9
|
|
3264
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM
|
|
3265
|
+
# accounts to database accounts is managed by the DB cluster.
|
|
3287
3266
|
#
|
|
3288
3267
|
# For more information, see [ IAM Database Authentication for MySQL
|
|
3289
3268
|
# and PostgreSQL][1] in the *Amazon RDS User Guide.*
|
|
@@ -3485,6 +3464,7 @@ module Aws::RDS
|
|
|
3485
3464
|
# domain: "String",
|
|
3486
3465
|
# domain_iam_role_name: "String",
|
|
3487
3466
|
# replica_mode: "open-read-only", # accepts open-read-only, mounted
|
|
3467
|
+
# max_allocated_storage: 1,
|
|
3488
3468
|
# source_region: "String",
|
|
3489
3469
|
# }
|
|
3490
3470
|
#
|
|
@@ -3816,8 +3796,7 @@ module Aws::RDS
|
|
|
3816
3796
|
# @!attribute [rw] enable_iam_database_authentication
|
|
3817
3797
|
# A value that indicates whether to enable mapping of AWS Identity and
|
|
3818
3798
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
3819
|
-
# mapping is disabled.
|
|
3820
|
-
# see CreateDBInstance.
|
|
3799
|
+
# mapping is disabled.
|
|
3821
3800
|
#
|
|
3822
3801
|
# For more information about IAM database authentication, see [ IAM
|
|
3823
3802
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
|
@@ -3930,6 +3909,11 @@ module Aws::RDS
|
|
|
3930
3909
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/oracle-read-replicas.html
|
|
3931
3910
|
# @return [String]
|
|
3932
3911
|
#
|
|
3912
|
+
# @!attribute [rw] max_allocated_storage
|
|
3913
|
+
# The upper limit to which Amazon RDS can automatically scale the
|
|
3914
|
+
# storage of the DB instance.
|
|
3915
|
+
# @return [Integer]
|
|
3916
|
+
#
|
|
3933
3917
|
# @!attribute [rw] destination_region
|
|
3934
3918
|
# @return [String]
|
|
3935
3919
|
#
|
|
@@ -3972,6 +3956,7 @@ module Aws::RDS
|
|
|
3972
3956
|
:domain,
|
|
3973
3957
|
:domain_iam_role_name,
|
|
3974
3958
|
:replica_mode,
|
|
3959
|
+
:max_allocated_storage,
|
|
3975
3960
|
:destination_region,
|
|
3976
3961
|
:source_region)
|
|
3977
3962
|
SENSITIVE = []
|
|
@@ -7076,7 +7061,7 @@ module Aws::RDS
|
|
|
7076
7061
|
class DBProxyAlreadyExistsFault < Aws::EmptyStructure; end
|
|
7077
7062
|
|
|
7078
7063
|
# The specified proxy name doesn't correspond to a proxy owned by your
|
|
7079
|
-
# AWS
|
|
7064
|
+
# AWS account in the specified AWS Region.
|
|
7080
7065
|
#
|
|
7081
7066
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBProxyNotFoundFault AWS API Documentation
|
|
7082
7067
|
#
|
|
@@ -7366,7 +7351,7 @@ module Aws::RDS
|
|
|
7366
7351
|
# @return [String]
|
|
7367
7352
|
#
|
|
7368
7353
|
# @!attribute [rw] snapshot_create_time
|
|
7369
|
-
# Specifies when the snapshot was taken in
|
|
7354
|
+
# Specifies when the snapshot was taken in Coordinated Universal Time
|
|
7370
7355
|
# (UTC).
|
|
7371
7356
|
# @return [Time]
|
|
7372
7357
|
#
|
|
@@ -13490,7 +13475,7 @@ module Aws::RDS
|
|
|
13490
13475
|
# The version number of the database engine to upgrade to. Changing
|
|
13491
13476
|
# this parameter results in an outage and the change is applied during
|
|
13492
13477
|
# the next maintenance window unless the `ApplyImmediately` parameter
|
|
13493
|
-
# is
|
|
13478
|
+
# is enabled for this request.
|
|
13494
13479
|
#
|
|
13495
13480
|
# For major version upgrades, if a nondefault DB parameter group is
|
|
13496
13481
|
# currently in use, a new DB parameter group in the DB parameter group
|
|
@@ -13789,8 +13774,10 @@ module Aws::RDS
|
|
|
13789
13774
|
# @!attribute [rw] enable_iam_database_authentication
|
|
13790
13775
|
# A value that indicates whether to enable mapping of AWS Identity and
|
|
13791
13776
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
13792
|
-
# mapping is disabled.
|
|
13793
|
-
#
|
|
13777
|
+
# mapping is disabled.
|
|
13778
|
+
#
|
|
13779
|
+
# This setting doesn't apply to Amazon Aurora. Mapping AWS IAM
|
|
13780
|
+
# accounts to database accounts is managed by the DB cluster.
|
|
13794
13781
|
#
|
|
13795
13782
|
# For more information about IAM database authentication, see [ IAM
|
|
13796
13783
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
|
@@ -17941,8 +17928,7 @@ module Aws::RDS
|
|
|
17941
17928
|
# @!attribute [rw] enable_iam_database_authentication
|
|
17942
17929
|
# A value that indicates whether to enable mapping of AWS Identity and
|
|
17943
17930
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
17944
|
-
# mapping is disabled.
|
|
17945
|
-
# see CreateDBInstance.
|
|
17931
|
+
# mapping is disabled.
|
|
17946
17932
|
#
|
|
17947
17933
|
# For more information about IAM database authentication, see [ IAM
|
|
17948
17934
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
|
@@ -18420,8 +18406,7 @@ module Aws::RDS
|
|
|
18420
18406
|
# @!attribute [rw] enable_iam_database_authentication
|
|
18421
18407
|
# A value that indicates whether to enable mapping of AWS Identity and
|
|
18422
18408
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
18423
|
-
# mapping is disabled.
|
|
18424
|
-
# see CreateDBInstance.
|
|
18409
|
+
# mapping is disabled.
|
|
18425
18410
|
#
|
|
18426
18411
|
# For more information about IAM database authentication, see [ IAM
|
|
18427
18412
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
|
@@ -18895,8 +18880,7 @@ module Aws::RDS
|
|
|
18895
18880
|
# @!attribute [rw] enable_iam_database_authentication
|
|
18896
18881
|
# A value that indicates whether to enable mapping of AWS Identity and
|
|
18897
18882
|
# Access Management (IAM) accounts to database accounts. By default,
|
|
18898
|
-
# mapping is disabled.
|
|
18899
|
-
# see CreateDBInstance.
|
|
18883
|
+
# mapping is disabled.
|
|
18900
18884
|
#
|
|
18901
18885
|
# For more information about IAM database authentication, see [ IAM
|
|
18902
18886
|
# Database Authentication for MySQL and PostgreSQL][1] in the *Amazon
|
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.105.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: 2020-
|
|
11
|
+
date: 2020-11-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|