aws-sdk-rds 1.0.0.rc5 → 1.0.0.rc6
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 +246 -223
- data/lib/aws-sdk-rds/client_api.rb +23 -8
- data/lib/aws-sdk-rds/customizations.rb +2 -7
- data/lib/aws-sdk-rds/customizations/auth_token_generator.rb +63 -0
- data/lib/aws-sdk-rds/db_cluster.rb +34 -3
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +24 -0
- data/lib/aws-sdk-rds/db_instance.rb +120 -202
- data/lib/aws-sdk-rds/db_parameter_group.rb +5 -4
- data/lib/aws-sdk-rds/db_snapshot.rb +24 -2
- data/lib/aws-sdk-rds/resource.rb +66 -201
- data/lib/aws-sdk-rds/types.rb +275 -225
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c1c923f86998c7a39695673fc28444a7c92cb94e
|
4
|
+
data.tar.gz: 5e03213cd2aaf59db8bd3c800c4f720d13f4e4f1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa08fa184f3513b84cec192efe7e2223a2c7b47ca9ef00ff00388ba01e01cae11712c171816af6754ea936aa2c509f9097b6012355da93d5c75156298831761e
|
7
|
+
data.tar.gz: 5642337c5b964ef7e7380a0fe07f7103064b5128de161ca0803f788760ac58ed5424f5ffeb2bd14cd80596278a59fc406e74bc2619305c864216c7f1ae4e740c
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -598,6 +598,9 @@ module Aws::RDS
|
|
598
598
|
# The identifier of the DB cluster snapshot to copy. This parameter is
|
599
599
|
# not case-sensitive.
|
600
600
|
#
|
601
|
+
# You cannot copy an encrypted, shared DB cluster snapshot from one AWS
|
602
|
+
# region to another.
|
603
|
+
#
|
601
604
|
# Constraints:
|
602
605
|
#
|
603
606
|
# * Must contain from 1 to 63 alphanumeric characters or hyphens.
|
@@ -606,8 +609,21 @@ module Aws::RDS
|
|
606
609
|
#
|
607
610
|
# * Cannot end with a hyphen or contain two consecutive hyphens.
|
608
611
|
#
|
612
|
+
# * Must specify a valid system snapshot in the "available" state.
|
613
|
+
#
|
614
|
+
# * If the source snapshot is in the same region as the copy, specify a
|
615
|
+
# valid DB snapshot identifier.
|
616
|
+
#
|
617
|
+
# * If the source snapshot is in a different region than the copy,
|
618
|
+
# specify a valid DB cluster snapshot ARN. For more information, go to
|
619
|
+
# [ Copying a DB Snapshot or DB Cluster Snapshot][1].
|
620
|
+
#
|
609
621
|
# Example: `my-cluster-snapshot1`
|
610
622
|
#
|
623
|
+
#
|
624
|
+
#
|
625
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html
|
626
|
+
#
|
611
627
|
# @option params [required, String] :target_db_cluster_snapshot_identifier
|
612
628
|
# The identifier of the new DB cluster snapshot to create from the
|
613
629
|
# source DB cluster snapshot. This parameter is not case-sensitive.
|
@@ -687,6 +703,8 @@ module Aws::RDS
|
|
687
703
|
# [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
688
704
|
#
|
689
705
|
# @option params [Boolean] :copy_tags
|
706
|
+
# True to copy all tags from the source DB cluster snapshot to the
|
707
|
+
# target DB cluster snapshot; otherwise false. The default is false.
|
690
708
|
#
|
691
709
|
# @option params [Array<Types::Tag>] :tags
|
692
710
|
# A list of tags.
|
@@ -737,6 +755,8 @@ module Aws::RDS
|
|
737
755
|
# resp.db_cluster_snapshot.storage_encrypted #=> Boolean
|
738
756
|
# resp.db_cluster_snapshot.kms_key_id #=> String
|
739
757
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
758
|
+
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
759
|
+
# resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
740
760
|
#
|
741
761
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBClusterSnapshot AWS API Documentation
|
742
762
|
#
|
@@ -827,7 +847,7 @@ module Aws::RDS
|
|
827
847
|
# `SourceDBSnapshotIdentifier` must be the Amazon Resource Name (ARN) of
|
828
848
|
# the shared DB snapshot.
|
829
849
|
#
|
830
|
-
# You can copy an encrypted DB snapshot from another AWS
|
850
|
+
# You can copy an encrypted DB snapshot from another AWS region. In that
|
831
851
|
# case, the region where you call the `CopyDBSnapshot` action is the
|
832
852
|
# destination region for the encrypted DB snapshot to be copied to. To
|
833
853
|
# copy an encrypted DB snapshot from another region, you must provide
|
@@ -886,14 +906,13 @@ module Aws::RDS
|
|
886
906
|
# `SourceDBSnapshotIdentifier` in the presigned URL.
|
887
907
|
#
|
888
908
|
# For more information on copying encrypted snapshots from one region to
|
889
|
-
# another, see [ Copying
|
890
|
-
# in the Amazon RDS User Guide.
|
909
|
+
# another, see [ Copying a DB Snapshot][3] in the Amazon RDS User Guide.
|
891
910
|
#
|
892
911
|
#
|
893
912
|
#
|
894
913
|
# [1]: http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
895
914
|
# [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
896
|
-
# [3]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#
|
915
|
+
# [3]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_CopySnapshot.html#USER_CopyDBSnapshot
|
897
916
|
#
|
898
917
|
# @option params [required, String] :source_db_snapshot_identifier
|
899
918
|
# The identifier for the source DB snapshot.
|
@@ -913,7 +932,7 @@ module Aws::RDS
|
|
913
932
|
#
|
914
933
|
# * If the source snapshot is in a different region than the copy,
|
915
934
|
# specify a valid DB snapshot ARN. For more information, go to [
|
916
|
-
# Copying a DB Snapshot][1].
|
935
|
+
# Copying a DB Snapshot or DB Cluster Snapshot][1].
|
917
936
|
#
|
918
937
|
# Example: `rds:mydb-2012-04-02-00-01`
|
919
938
|
#
|
@@ -1005,8 +1024,8 @@ module Aws::RDS
|
|
1005
1024
|
# encrypted snapshot to be copied. This identifier must be in the
|
1006
1025
|
# Amazon Resource Name (ARN) format for the source region. For
|
1007
1026
|
# example, if you are copying an encrypted DB snapshot from the
|
1008
|
-
# us-west-2 region, then your `SourceDBSnapshotIdentifier`
|
1009
|
-
#
|
1027
|
+
# us-west-2 region, then your `SourceDBSnapshotIdentifier` looks like
|
1028
|
+
# the following example:
|
1010
1029
|
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20161115`.
|
1011
1030
|
#
|
1012
1031
|
# To learn how to generate a Signature Version 4 signed request, see [
|
@@ -1070,6 +1089,7 @@ module Aws::RDS
|
|
1070
1089
|
# resp.db_snapshot.kms_key_id #=> String
|
1071
1090
|
# resp.db_snapshot.db_snapshot_arn #=> String
|
1072
1091
|
# resp.db_snapshot.timezone #=> String
|
1092
|
+
# resp.db_snapshot.iam_database_authentication_enabled #=> Boolean
|
1073
1093
|
#
|
1074
1094
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CopyDBSnapshot AWS API Documentation
|
1075
1095
|
#
|
@@ -1422,6 +1442,13 @@ module Aws::RDS
|
|
1422
1442
|
# [1]: http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
1423
1443
|
# [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
1424
1444
|
#
|
1445
|
+
# @option params [Boolean] :enable_iam_database_authentication
|
1446
|
+
# A Boolean value that is true to enable mapping of AWS Identity and
|
1447
|
+
# Access Management (IAM) accounts to database accounts, and otherwise
|
1448
|
+
# false.
|
1449
|
+
#
|
1450
|
+
# Default: `false`
|
1451
|
+
#
|
1425
1452
|
# @option params [String] :source_region
|
1426
1453
|
# The source region of the snapshot. This is only needed when the
|
1427
1454
|
# shapshot is encrypted and in a different region.
|
@@ -1459,6 +1486,7 @@ module Aws::RDS
|
|
1459
1486
|
# storage_encrypted: false,
|
1460
1487
|
# kms_key_id: "String",
|
1461
1488
|
# pre_signed_url: "String",
|
1489
|
+
# enable_iam_database_authentication: false,
|
1462
1490
|
# source_region: "String",
|
1463
1491
|
# })
|
1464
1492
|
#
|
@@ -1508,6 +1536,7 @@ module Aws::RDS
|
|
1508
1536
|
# resp.db_cluster.associated_roles #=> Array
|
1509
1537
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
1510
1538
|
# resp.db_cluster.associated_roles[0].status #=> String
|
1539
|
+
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
1511
1540
|
# resp.db_cluster.cluster_create_time #=> Time
|
1512
1541
|
#
|
1513
1542
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBCluster AWS API Documentation
|
@@ -1693,6 +1722,8 @@ module Aws::RDS
|
|
1693
1722
|
# resp.db_cluster_snapshot.storage_encrypted #=> Boolean
|
1694
1723
|
# resp.db_cluster_snapshot.kms_key_id #=> String
|
1695
1724
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
1725
|
+
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
1726
|
+
# resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
1696
1727
|
#
|
1697
1728
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBClusterSnapshot AWS API Documentation
|
1698
1729
|
#
|
@@ -1799,6 +1830,12 @@ module Aws::RDS
|
|
1799
1830
|
#
|
1800
1831
|
# Type: Integer
|
1801
1832
|
#
|
1833
|
+
# **Amazon Aurora**
|
1834
|
+
#
|
1835
|
+
# Not applicable. Aurora cluster volumes automatically grow as the
|
1836
|
+
# amount of data in your database increases, though you are only charged
|
1837
|
+
# for the space that you use in an Aurora cluster volume.
|
1838
|
+
#
|
1802
1839
|
# **MySQL**
|
1803
1840
|
#
|
1804
1841
|
# Constraints: Must be an integer from 5 to 6144.
|
@@ -1843,43 +1880,46 @@ module Aws::RDS
|
|
1843
1880
|
# Not every database engine is available for every AWS region.
|
1844
1881
|
#
|
1845
1882
|
# @option params [String] :master_username
|
1846
|
-
# The name
|
1883
|
+
# The name for the master database user.
|
1847
1884
|
#
|
1848
|
-
# **
|
1885
|
+
# **Amazon Aurora**
|
1886
|
+
#
|
1887
|
+
# Not applicable. You specify the name for the master database user when
|
1888
|
+
# you create your DB cluster.
|
1889
|
+
#
|
1890
|
+
# **MariaDB**
|
1849
1891
|
#
|
1850
1892
|
# Constraints:
|
1851
1893
|
#
|
1852
1894
|
# * Must be 1 to 16 alphanumeric characters.
|
1853
1895
|
#
|
1854
|
-
# * First character must be a letter.
|
1855
|
-
#
|
1856
1896
|
# * Cannot be a reserved word for the chosen database engine.
|
1857
1897
|
#
|
1858
|
-
# **
|
1898
|
+
# **Microsoft SQL Server**
|
1859
1899
|
#
|
1860
1900
|
# Constraints:
|
1861
1901
|
#
|
1862
|
-
# * Must be 1 to
|
1902
|
+
# * Must be 1 to 128 alphanumeric characters.
|
1863
1903
|
#
|
1864
|
-
# *
|
1904
|
+
# * First character must be a letter.
|
1865
1905
|
#
|
1866
|
-
#
|
1906
|
+
# * Cannot be a reserved word for the chosen database engine.
|
1867
1907
|
#
|
1868
|
-
# **
|
1908
|
+
# **MySQL**
|
1869
1909
|
#
|
1870
1910
|
# Constraints:
|
1871
1911
|
#
|
1872
|
-
# * Must be 1 to
|
1912
|
+
# * Must be 1 to 16 alphanumeric characters.
|
1873
1913
|
#
|
1874
1914
|
# * First character must be a letter.
|
1875
1915
|
#
|
1876
1916
|
# * Cannot be a reserved word for the chosen database engine.
|
1877
1917
|
#
|
1878
|
-
# **
|
1918
|
+
# **Oracle**
|
1879
1919
|
#
|
1880
1920
|
# Constraints:
|
1881
1921
|
#
|
1882
|
-
# * Must be 1 to
|
1922
|
+
# * Must be 1 to 30 alphanumeric characters.
|
1883
1923
|
#
|
1884
1924
|
# * First character must be a letter.
|
1885
1925
|
#
|
@@ -1899,13 +1939,20 @@ module Aws::RDS
|
|
1899
1939
|
# The password for the master database user. Can be any printable ASCII
|
1900
1940
|
# character except "/", """, or "@".
|
1901
1941
|
#
|
1902
|
-
#
|
1942
|
+
# **Amazon Aurora**
|
1903
1943
|
#
|
1904
|
-
#
|
1944
|
+
# Not applicable. You specify the password for the master database user
|
1945
|
+
# when you create your DB cluster.
|
1946
|
+
#
|
1947
|
+
# **MariaDB**
|
1905
1948
|
#
|
1906
1949
|
# Constraints: Must contain from 8 to 41 characters.
|
1907
1950
|
#
|
1908
|
-
# **
|
1951
|
+
# **Microsoft SQL Server**
|
1952
|
+
#
|
1953
|
+
# Constraints: Must contain from 8 to 128 characters.
|
1954
|
+
#
|
1955
|
+
# **MySQL**
|
1909
1956
|
#
|
1910
1957
|
# Constraints: Must contain from 8 to 41 characters.
|
1911
1958
|
#
|
@@ -1913,18 +1960,10 @@ module Aws::RDS
|
|
1913
1960
|
#
|
1914
1961
|
# Constraints: Must contain from 8 to 30 characters.
|
1915
1962
|
#
|
1916
|
-
# **SQL Server**
|
1917
|
-
#
|
1918
|
-
# Constraints: Must contain from 8 to 128 characters.
|
1919
|
-
#
|
1920
1963
|
# **PostgreSQL**
|
1921
1964
|
#
|
1922
1965
|
# Constraints: Must contain from 8 to 128 characters.
|
1923
1966
|
#
|
1924
|
-
# **Amazon Aurora**
|
1925
|
-
#
|
1926
|
-
# Constraints: Must contain from 8 to 41 characters.
|
1927
|
-
#
|
1928
1967
|
# @option params [Array<String>] :db_security_groups
|
1929
1968
|
# A list of DB security groups to associate with this DB instance.
|
1930
1969
|
#
|
@@ -2013,7 +2052,7 @@ module Aws::RDS
|
|
2013
2052
|
#
|
2014
2053
|
# Default: A 30-minute window selected at random from an 8-hour block of
|
2015
2054
|
# time per region. To see the time blocks available, see [ Adjusting the
|
2016
|
-
# Preferred Maintenance Window][2]
|
2055
|
+
# Preferred DB Instance Maintenance Window][2].
|
2017
2056
|
#
|
2018
2057
|
# Constraints:
|
2019
2058
|
#
|
@@ -2028,7 +2067,7 @@ module Aws::RDS
|
|
2028
2067
|
#
|
2029
2068
|
#
|
2030
2069
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.BackingUpAndRestoringAmazonRDSInstances.html
|
2031
|
-
# [2]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
2070
|
+
# [2]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#AdjustingTheMaintenanceWindow
|
2032
2071
|
#
|
2033
2072
|
# @option params [Integer] :port
|
2034
2073
|
# The port number on which the database accepts connections.
|
@@ -2182,120 +2221,11 @@ module Aws::RDS
|
|
2182
2221
|
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
2183
2222
|
# us-gov-west-1, us-west-1, us-west-2):** ` 5.1.73a | 5.1.73b`
|
2184
2223
|
#
|
2185
|
-
# **Oracle Database Enterprise Edition (oracle-ee)**
|
2186
|
-
#
|
2187
|
-
# * **Version 12.1 (available in all AWS regions except ap-south-1,
|
2188
|
-
# ap-northeast-2):** ` 12.1.0.1.v1 | 12.1.0.1.v2`
|
2189
|
-
#
|
2190
|
-
# * **Version 12.1 (only available in AWS regions ap-northeast-1,
|
2191
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
2192
|
-
# us-east-1, us-west-1, us-west-2):** ` 12.1.0.1.v3 | 12.1.0.1.v4 |
|
2193
|
-
# 12.1.0.1.v5`
|
2194
|
-
#
|
2195
|
-
# * **Version 12.1 (available in all AWS regions):** ` 12.1.0.2.v1`
|
2196
|
-
#
|
2197
|
-
# * **Version 12.1 (available in all AWS regions except
|
2198
|
-
# us-gov-west-1):** ` 12.1.0.2.v2 | 12.1.0.2.v3 | 12.1.0.2.v4`
|
2199
|
-
#
|
2200
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
2201
|
-
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
2202
|
-
# us-gov-west-1, us-west-1, us-west-2):** ` 11.2.0.2.v3 | 11.2.0.2.v4
|
2203
|
-
# | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7`
|
2204
|
-
#
|
2205
|
-
# * **Version 11.2 (available in all AWS regions except ap-south-1,
|
2206
|
-
# ap-northeast-2):** ` 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.3.v3`
|
2207
|
-
#
|
2208
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
2209
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
2210
|
-
# us-east-1, us-west-1, us-west-2):** ` 11.2.0.3.v4`
|
2211
|
-
#
|
2212
|
-
# * **Version 11.2 (available in all AWS regions):** ` 11.2.0.4.v1 |
|
2213
|
-
# 11.2.0.4.v3 | 11.2.0.4.v4`
|
2214
|
-
#
|
2215
|
-
# * **Version 11.2 (available in all AWS regions except
|
2216
|
-
# us-gov-west-1):** ` 11.2.0.4.v5 | 11.2.0.4.v6 | 11.2.0.4.v7 |
|
2217
|
-
# 11.2.0.4.v8`
|
2218
|
-
#
|
2219
|
-
# **Oracle Database Standard Edition (oracle-se)**
|
2220
|
-
#
|
2221
|
-
# * **Version 12.1 (available in all AWS regions except ap-south-1,
|
2222
|
-
# ap-northeast-2):** ` 12.1.0.1.v1 | 12.1.0.1.v2`
|
2223
|
-
#
|
2224
|
-
# * **Version 12.1 (only available in AWS regions ap-northeast-1,
|
2225
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
2226
|
-
# us-east-1, us-west-1, us-west-2):** ` 12.1.0.1.v3 | 12.1.0.1.v4 |
|
2227
|
-
# 12.1.0.1.v5`
|
2228
|
-
#
|
2229
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
2230
|
-
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
2231
|
-
# us-gov-west-1, us-west-1, us-west-2):** ` 11.2.0.2.v3 | 11.2.0.2.v4
|
2232
|
-
# | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7`
|
2233
|
-
#
|
2234
|
-
# * **Version 11.2 (available in all AWS regions except ap-south-1,
|
2235
|
-
# ap-northeast-2):** ` 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.3.v3`
|
2236
|
-
#
|
2237
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
2238
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
2239
|
-
# us-east-1, us-west-1, us-west-2):** ` 11.2.0.3.v4`
|
2240
|
-
#
|
2241
|
-
# * **Version 11.2 (available in all AWS regions):** ` 11.2.0.4.v1 |
|
2242
|
-
# 11.2.0.4.v3 | 11.2.0.4.v4`
|
2243
|
-
#
|
2244
|
-
# * **Version 11.2 (available in all AWS regions except
|
2245
|
-
# us-gov-west-1):** ` 11.2.0.4.v5 | 11.2.0.4.v6 | 11.2.0.4.v7 |
|
2246
|
-
# 11.2.0.4.v8`
|
2247
|
-
#
|
2248
|
-
# **Oracle Database Standard Edition One (oracle-se1)**
|
2249
|
-
#
|
2250
|
-
# * **Version 12.1 (available in all AWS regions except ap-south-1,
|
2251
|
-
# ap-northeast-2):** ` 12.1.0.1.v1 | 12.1.0.1.v2`
|
2252
|
-
#
|
2253
|
-
# * **Version 12.1 (only available in AWS regions ap-northeast-1,
|
2254
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
2255
|
-
# us-east-1, us-west-1, us-west-2):** ` 12.1.0.1.v3 | 12.1.0.1.v4 |
|
2256
|
-
# 12.1.0.1.v5`
|
2257
|
-
#
|
2258
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
2259
|
-
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
2260
|
-
# us-gov-west-1, us-west-1, us-west-2):** ` 11.2.0.2.v3 | 11.2.0.2.v4
|
2261
|
-
# | 11.2.0.2.v5 | 11.2.0.2.v6 | 11.2.0.2.v7`
|
2262
|
-
#
|
2263
|
-
# * **Version 11.2 (available in all AWS regions except ap-south-1,
|
2264
|
-
# ap-northeast-2):** ` 11.2.0.3.v1 | 11.2.0.3.v2 | 11.2.0.3.v3`
|
2265
|
-
#
|
2266
|
-
# * **Version 11.2 (only available in AWS regions ap-northeast-1,
|
2267
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
2268
|
-
# us-east-1, us-west-1, us-west-2):** ` 11.2.0.3.v4`
|
2269
|
-
#
|
2270
|
-
# * **Version 11.2 (available in all AWS regions):** ` 11.2.0.4.v1 |
|
2271
|
-
# 11.2.0.4.v3 | 11.2.0.4.v4`
|
2272
|
-
#
|
2273
|
-
# * **Version 11.2 (available in all AWS regions except
|
2274
|
-
# us-gov-west-1):** ` 11.2.0.4.v5 | 11.2.0.4.v6 | 11.2.0.4.v7 |
|
2275
|
-
# 11.2.0.4.v8`
|
2276
|
-
#
|
2277
|
-
# **Oracle Database Standard Edition Two (oracle-se2)**
|
2278
|
-
#
|
2279
|
-
# * **Version 12.1 (available in all AWS regions except
|
2280
|
-
# us-gov-west-1):** ` 12.1.0.2.v2 | 12.1.0.2.v3 | 12.1.0.2.v4`
|
2281
|
-
#
|
2282
|
-
# ^
|
2283
|
-
#
|
2284
|
-
# **PostgreSQL**
|
2285
|
-
#
|
2286
|
-
# * **Version 9.6:** ` 9.6.1`
|
2287
|
-
#
|
2288
|
-
# * **Version 9.5:** `9.5.4 | 9.5.2`
|
2289
|
-
#
|
2290
|
-
# * **Version 9.4:** ` 9.4.9 | 9.4.7 | 9.4.5 | 9.4.4 | 9.4.1`
|
2291
|
-
#
|
2292
|
-
# * **Version 9.3:** ` 9.3.14 | 9.3.12 | 9.3.10 | 9.3.9 | 9.3.6 | 9.3.5
|
2293
|
-
# | 9.3.3 | 9.3.2 | 9.3.1`
|
2294
|
-
#
|
2295
|
-
#
|
2296
|
-
#
|
2297
2224
|
# **Oracle 12c**
|
2298
2225
|
#
|
2226
|
+
# * `12.1.0.2.v7` (supported for EE in all AWS regions, and SE2 in all
|
2227
|
+
# AWS regions except us-gov-west-1)
|
2228
|
+
#
|
2299
2229
|
# * `12.1.0.2.v6` (supported for EE in all AWS regions, and SE2 in all
|
2300
2230
|
# AWS regions except us-gov-west-1)
|
2301
2231
|
#
|
@@ -2314,28 +2244,10 @@ module Aws::RDS
|
|
2314
2244
|
# * `12.1.0.2.v1` (supported for EE in all AWS regions, and SE2 in all
|
2315
2245
|
# AWS regions except us-gov-west-1)
|
2316
2246
|
#
|
2317
|
-
#
|
2318
|
-
#
|
2319
|
-
# * `12.1.0.1.v6` (supported for EE, SE1, and SE, in all AWS regions
|
2320
|
-
# except ap-south-1, ap-northeast-2)
|
2321
|
-
#
|
2322
|
-
# * `12.1.0.1.v5` (supported for EE, SE1, and SE, in all AWS regions
|
2323
|
-
# except ap-south-1, ap-northeast-2)
|
2324
|
-
#
|
2325
|
-
# * `12.1.0.1.v4` (supported for EE, SE1, and SE, in all AWS regions
|
2326
|
-
# except ap-south-1, ap-northeast-2)
|
2327
|
-
#
|
2328
|
-
# * `12.1.0.1.v3` (supported for EE, SE1, and SE, in all AWS regions
|
2329
|
-
# except ap-south-1, ap-northeast-2)
|
2330
|
-
#
|
2331
|
-
# * `12.1.0.1.v2` (supported for EE, SE1, and SE, in all AWS regions
|
2332
|
-
# except ap-south-1, ap-northeast-2)
|
2333
|
-
#
|
2334
|
-
# * `12.1.0.1.v1` (supported for EE, SE1, and SE, in all AWS regions
|
2335
|
-
# except ap-south-1, ap-northeast-2)
|
2336
|
-
#
|
2337
2247
|
# **Oracle 11g**
|
2338
2248
|
#
|
2249
|
+
# * `11.2.0.4.v11` (supported for EE, SE1, and SE, in all AWS regions)
|
2250
|
+
#
|
2339
2251
|
# * `11.2.0.4.v10` (supported for EE, SE1, and SE, in all AWS regions)
|
2340
2252
|
#
|
2341
2253
|
# * `11.2.0.4.v9` (supported for EE, SE1, and SE, in all AWS regions)
|
@@ -2356,50 +2268,14 @@ module Aws::RDS
|
|
2356
2268
|
#
|
2357
2269
|
# **PostgreSQL**
|
2358
2270
|
#
|
2359
|
-
# * **Version 9.
|
2360
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
2361
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
2362
|
-
# us-west-2):** ` 9.5.4`
|
2363
|
-
#
|
2364
|
-
# * **Version 9.5 (available in these AWS regions: ap-northeast-1,
|
2365
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
2366
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-east-2, us-west-1,
|
2367
|
-
# us-west-2):** ` 9.5.2`
|
2368
|
-
#
|
2369
|
-
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
2370
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
2371
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
2372
|
-
# us-west-2):** ` 9.4.9`
|
2373
|
-
#
|
2374
|
-
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
2375
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
2376
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-east-2, us-west-1,
|
2377
|
-
# us-west-2):** ` 9.4.7`
|
2378
|
-
#
|
2379
|
-
# * **Version 9.4 (available in all AWS regions):** ` 9.4.5`
|
2380
|
-
#
|
2381
|
-
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
2382
|
-
# ap-northeast-2, ap-southeast-1, ap-southeast-2, eu-central-1,
|
2383
|
-
# eu-west-1, sa-east-1, us-east-1, us-gov-west-1, us-west-1,
|
2384
|
-
# us-west-2):** ` 9.4.4`
|
2385
|
-
#
|
2386
|
-
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
2387
|
-
# ap-northeast-2, ap-southeast-1, ap-southeast-2, eu-central-1,
|
2388
|
-
# eu-west-1, sa-east-1, us-east-1, us-east-2, us-gov-west-1,
|
2389
|
-
# us-west-1, us-west-2):** ` 9.4.1`
|
2271
|
+
# * **Version 9.6:** ` 9.6.1`
|
2390
2272
|
#
|
2391
|
-
# * **Version 9.
|
2392
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
2393
|
-
# us-east-1, us-gov-west-1, us-west-1, us-west-2):** ` 9.3.10 | 9.3.3
|
2394
|
-
# | 9.3.5 | 9.3.6 | 9.3.9`
|
2273
|
+
# * **Version 9.5:** `9.5.4 | 9.5.2`
|
2395
2274
|
#
|
2396
|
-
# * **Version 9.
|
2397
|
-
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
2398
|
-
# us-gov-west-1, us-west-1, us-west-2):** ` 9.3.1 | 9.3.2`
|
2275
|
+
# * **Version 9.4:** ` 9.4.9 | 9.4.7 | 9.4.5 | 9.4.4 | 9.4.1`
|
2399
2276
|
#
|
2400
|
-
# * **Version 9.3
|
2401
|
-
#
|
2402
|
-
# us-east-1, us-west-1, us-west-2):** ` 9.3.12 | 9.3.14`
|
2277
|
+
# * **Version 9.3:** ` 9.3.14 | 9.3.12 | 9.3.10 | 9.3.9 | 9.3.6 | 9.3.5
|
2278
|
+
# | 9.3.3 | 9.3.2 | 9.3.1`
|
2403
2279
|
#
|
2404
2280
|
# @option params [Boolean] :auto_minor_version_upgrade
|
2405
2281
|
# Indicates that minor engine upgrades will be applied automatically to
|
@@ -2526,15 +2402,15 @@ module Aws::RDS
|
|
2526
2402
|
# The ARN for the IAM role that permits RDS to send enhanced monitoring
|
2527
2403
|
# metrics to CloudWatch Logs. For example,
|
2528
2404
|
# `arn:aws:iam:123456789012:role/emaccess`. For information on creating
|
2529
|
-
# a monitoring role, go to [
|
2530
|
-
#
|
2405
|
+
# a monitoring role, go to [Setting Up and Enabling Enhanced
|
2406
|
+
# Monitoring][1].
|
2531
2407
|
#
|
2532
2408
|
# If `MonitoringInterval` is set to a value other than 0, then you must
|
2533
2409
|
# supply a `MonitoringRoleArn` value.
|
2534
2410
|
#
|
2535
2411
|
#
|
2536
2412
|
#
|
2537
|
-
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.html#USER_Monitoring.OS.
|
2413
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling
|
2538
2414
|
#
|
2539
2415
|
# @option params [String] :domain_iam_role_name
|
2540
2416
|
# Specify the name of the IAM role to be used when making API calls to
|
@@ -2562,6 +2438,19 @@ module Aws::RDS
|
|
2562
2438
|
#
|
2563
2439
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/CHAP_SQLServer.html#SQLServer.Concepts.General.TimeZone
|
2564
2440
|
#
|
2441
|
+
# @option params [Boolean] :enable_iam_database_authentication
|
2442
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
2443
|
+
# accounts to database accounts; otherwise false.
|
2444
|
+
#
|
2445
|
+
# You can enable IAM database authentication for the following database
|
2446
|
+
# engines
|
2447
|
+
#
|
2448
|
+
# * For MySQL 5.6, minor version 5.6.34 or higher
|
2449
|
+
#
|
2450
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher
|
2451
|
+
#
|
2452
|
+
# Default: `false`
|
2453
|
+
#
|
2565
2454
|
# @return [Types::CreateDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2566
2455
|
#
|
2567
2456
|
# * {Types::CreateDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -2612,6 +2501,7 @@ module Aws::RDS
|
|
2612
2501
|
# domain_iam_role_name: "String",
|
2613
2502
|
# promotion_tier: 1,
|
2614
2503
|
# timezone: "String",
|
2504
|
+
# enable_iam_database_authentication: false,
|
2615
2505
|
# })
|
2616
2506
|
#
|
2617
2507
|
# @example Response structure
|
@@ -2704,6 +2594,7 @@ module Aws::RDS
|
|
2704
2594
|
# resp.db_instance.promotion_tier #=> Integer
|
2705
2595
|
# resp.db_instance.db_instance_arn #=> String
|
2706
2596
|
# resp.db_instance.timezone #=> String
|
2597
|
+
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
2707
2598
|
#
|
2708
2599
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
|
2709
2600
|
#
|
@@ -2717,6 +2608,12 @@ module Aws::RDS
|
|
2717
2608
|
# Creates a DB instance for a DB instance running MySQL, MariaDB, or
|
2718
2609
|
# PostgreSQL that acts as a Read Replica of a source DB instance.
|
2719
2610
|
#
|
2611
|
+
# <note markdown="1"> Amazon Aurora does not support this action. You must call the
|
2612
|
+
# `CreateDBInstance` action to create a DB instance for an Aurora DB
|
2613
|
+
# cluster.
|
2614
|
+
#
|
2615
|
+
# </note>
|
2616
|
+
#
|
2720
2617
|
# All Read Replica DB instances are created as Single-AZ deployments
|
2721
2618
|
# with backups disabled. All other DB instance attributes (including DB
|
2722
2619
|
# security groups and DB parameter groups) are inherited from the source
|
@@ -3027,6 +2924,21 @@ module Aws::RDS
|
|
3027
2924
|
# [1]: http://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
|
3028
2925
|
# [2]: http://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
|
3029
2926
|
#
|
2927
|
+
# @option params [Boolean] :enable_iam_database_authentication
|
2928
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
2929
|
+
# accounts to database accounts; otherwise false.
|
2930
|
+
#
|
2931
|
+
# You can enable IAM database authentication for the following database
|
2932
|
+
# engines
|
2933
|
+
#
|
2934
|
+
# * For MySQL 5.6, minor version 5.6.34 or higher
|
2935
|
+
#
|
2936
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher
|
2937
|
+
#
|
2938
|
+
# * Aurora 5.6 or higher.
|
2939
|
+
#
|
2940
|
+
# Default: `false`
|
2941
|
+
#
|
3030
2942
|
# @option params [String] :source_region
|
3031
2943
|
# The source region of the snapshot. This is only needed when the
|
3032
2944
|
# shapshot is encrypted and in a different region.
|
@@ -3060,6 +2972,7 @@ module Aws::RDS
|
|
3060
2972
|
# monitoring_role_arn: "String",
|
3061
2973
|
# kms_key_id: "String",
|
3062
2974
|
# pre_signed_url: "String",
|
2975
|
+
# enable_iam_database_authentication: false,
|
3063
2976
|
# source_region: "String",
|
3064
2977
|
# })
|
3065
2978
|
#
|
@@ -3153,6 +3066,7 @@ module Aws::RDS
|
|
3153
3066
|
# resp.db_instance.promotion_tier #=> Integer
|
3154
3067
|
# resp.db_instance.db_instance_arn #=> String
|
3155
3068
|
# resp.db_instance.timezone #=> String
|
3069
|
+
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
3156
3070
|
#
|
3157
3071
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
|
3158
3072
|
#
|
@@ -3396,6 +3310,7 @@ module Aws::RDS
|
|
3396
3310
|
# resp.db_snapshot.kms_key_id #=> String
|
3397
3311
|
# resp.db_snapshot.db_snapshot_arn #=> String
|
3398
3312
|
# resp.db_snapshot.timezone #=> String
|
3313
|
+
# resp.db_snapshot.iam_database_authentication_enabled #=> Boolean
|
3399
3314
|
#
|
3400
3315
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBSnapshot AWS API Documentation
|
3401
3316
|
#
|
@@ -3796,6 +3711,7 @@ module Aws::RDS
|
|
3796
3711
|
# resp.db_cluster.associated_roles #=> Array
|
3797
3712
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
3798
3713
|
# resp.db_cluster.associated_roles[0].status #=> String
|
3714
|
+
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
3799
3715
|
# resp.db_cluster.cluster_create_time #=> Time
|
3800
3716
|
#
|
3801
3717
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBCluster AWS API Documentation
|
@@ -3898,6 +3814,8 @@ module Aws::RDS
|
|
3898
3814
|
# resp.db_cluster_snapshot.storage_encrypted #=> Boolean
|
3899
3815
|
# resp.db_cluster_snapshot.kms_key_id #=> String
|
3900
3816
|
# resp.db_cluster_snapshot.db_cluster_snapshot_arn #=> String
|
3817
|
+
# resp.db_cluster_snapshot.source_db_cluster_snapshot_arn #=> String
|
3818
|
+
# resp.db_cluster_snapshot.iam_database_authentication_enabled #=> Boolean
|
3901
3819
|
#
|
3902
3820
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBClusterSnapshot AWS API Documentation
|
3903
3821
|
#
|
@@ -4091,6 +4009,7 @@ module Aws::RDS
|
|
4091
4009
|
# resp.db_instance.promotion_tier #=> Integer
|
4092
4010
|
# resp.db_instance.db_instance_arn #=> String
|
4093
4011
|
# resp.db_instance.timezone #=> String
|
4012
|
+
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
4094
4013
|
#
|
4095
4014
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
|
4096
4015
|
#
|
@@ -4223,6 +4142,7 @@ module Aws::RDS
|
|
4223
4142
|
# resp.db_snapshot.kms_key_id #=> String
|
4224
4143
|
# resp.db_snapshot.db_snapshot_arn #=> String
|
4225
4144
|
# resp.db_snapshot.timezone #=> String
|
4145
|
+
# resp.db_snapshot.iam_database_authentication_enabled #=> Boolean
|
4226
4146
|
#
|
4227
4147
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBSnapshot AWS API Documentation
|
4228
4148
|
#
|
@@ -4804,6 +4724,8 @@ module Aws::RDS
|
|
4804
4724
|
# resp.db_cluster_snapshots[0].storage_encrypted #=> Boolean
|
4805
4725
|
# resp.db_cluster_snapshots[0].kms_key_id #=> String
|
4806
4726
|
# resp.db_cluster_snapshots[0].db_cluster_snapshot_arn #=> String
|
4727
|
+
# resp.db_cluster_snapshots[0].source_db_cluster_snapshot_arn #=> String
|
4728
|
+
# resp.db_cluster_snapshots[0].iam_database_authentication_enabled #=> Boolean
|
4807
4729
|
#
|
4808
4730
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusterSnapshots AWS API Documentation
|
4809
4731
|
#
|
@@ -4930,6 +4852,7 @@ module Aws::RDS
|
|
4930
4852
|
# resp.db_clusters[0].associated_roles #=> Array
|
4931
4853
|
# resp.db_clusters[0].associated_roles[0].role_arn #=> String
|
4932
4854
|
# resp.db_clusters[0].associated_roles[0].status #=> String
|
4855
|
+
# resp.db_clusters[0].iam_database_authentication_enabled #=> Boolean
|
4933
4856
|
# resp.db_clusters[0].cluster_create_time #=> Time
|
4934
4857
|
#
|
4935
4858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBClusters AWS API Documentation
|
@@ -5208,6 +5131,7 @@ module Aws::RDS
|
|
5208
5131
|
# resp.db_instances[0].promotion_tier #=> Integer
|
5209
5132
|
# resp.db_instances[0].db_instance_arn #=> String
|
5210
5133
|
# resp.db_instances[0].timezone #=> String
|
5134
|
+
# resp.db_instances[0].iam_database_authentication_enabled #=> Boolean
|
5211
5135
|
#
|
5212
5136
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBInstances AWS API Documentation
|
5213
5137
|
#
|
@@ -5717,6 +5641,7 @@ module Aws::RDS
|
|
5717
5641
|
# resp.db_snapshots[0].kms_key_id #=> String
|
5718
5642
|
# resp.db_snapshots[0].db_snapshot_arn #=> String
|
5719
5643
|
# resp.db_snapshots[0].timezone #=> String
|
5644
|
+
# resp.db_snapshots[0].iam_database_authentication_enabled #=> Boolean
|
5720
5645
|
#
|
5721
5646
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeDBSnapshots AWS API Documentation
|
5722
5647
|
#
|
@@ -6460,6 +6385,7 @@ module Aws::RDS
|
|
6460
6385
|
# resp.orderable_db_instance_options[0].storage_type #=> String
|
6461
6386
|
# resp.orderable_db_instance_options[0].supports_iops #=> Boolean
|
6462
6387
|
# resp.orderable_db_instance_options[0].supports_enhanced_monitoring #=> Boolean
|
6388
|
+
# resp.orderable_db_instance_options[0].supports_iam_database_authentication #=> Boolean
|
6463
6389
|
# resp.marker #=> String
|
6464
6390
|
#
|
6465
6391
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeOrderableDBInstanceOptions AWS API Documentation
|
@@ -7003,6 +6929,7 @@ module Aws::RDS
|
|
7003
6929
|
# resp.db_cluster.associated_roles #=> Array
|
7004
6930
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
7005
6931
|
# resp.db_cluster.associated_roles[0].status #=> String
|
6932
|
+
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
7006
6933
|
# resp.db_cluster.cluster_create_time #=> Time
|
7007
6934
|
#
|
7008
6935
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverDBCluster AWS API Documentation
|
@@ -7137,7 +7064,7 @@ module Aws::RDS
|
|
7137
7064
|
# The name of the DB cluster parameter group to use for the DB cluster.
|
7138
7065
|
#
|
7139
7066
|
# @option params [Array<String>] :vpc_security_group_ids
|
7140
|
-
# A
|
7067
|
+
# A list of VPC security groups that the DB cluster will belong to.
|
7141
7068
|
#
|
7142
7069
|
# @option params [Integer] :port
|
7143
7070
|
# The port number on which the DB cluster accepts connections.
|
@@ -7208,6 +7135,13 @@ module Aws::RDS
|
|
7208
7135
|
#
|
7209
7136
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/AdjustingTheMaintenanceWindow.html
|
7210
7137
|
#
|
7138
|
+
# @option params [Boolean] :enable_iam_database_authentication
|
7139
|
+
# A Boolean value that is true to enable mapping of AWS Identity and
|
7140
|
+
# Access Management (IAM) accounts to database accounts, and otherwise
|
7141
|
+
# false.
|
7142
|
+
#
|
7143
|
+
# Default: `false`
|
7144
|
+
#
|
7211
7145
|
# @return [Types::ModifyDBClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7212
7146
|
#
|
7213
7147
|
# * {Types::ModifyDBClusterResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -7226,6 +7160,7 @@ module Aws::RDS
|
|
7226
7160
|
# option_group_name: "String",
|
7227
7161
|
# preferred_backup_window: "String",
|
7228
7162
|
# preferred_maintenance_window: "String",
|
7163
|
+
# enable_iam_database_authentication: false,
|
7229
7164
|
# })
|
7230
7165
|
#
|
7231
7166
|
# @example Response structure
|
@@ -7274,6 +7209,7 @@ module Aws::RDS
|
|
7274
7209
|
# resp.db_cluster.associated_roles #=> Array
|
7275
7210
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
7276
7211
|
# resp.db_cluster.associated_roles[0].status #=> String
|
7212
|
+
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
7277
7213
|
# resp.db_cluster.cluster_create_time #=> Time
|
7278
7214
|
#
|
7279
7215
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBCluster AWS API Documentation
|
@@ -7369,14 +7305,15 @@ module Aws::RDS
|
|
7369
7305
|
# the manual DB cluster snapshot public, which means that it can be
|
7370
7306
|
# copied or restored by all AWS accounts. Do not add the `all` value for
|
7371
7307
|
# any manual DB cluster snapshots that contain private information that
|
7372
|
-
# you don't want available to all AWS accounts.
|
7308
|
+
# you don't want available to all AWS accounts. If a manual DB cluster
|
7309
|
+
# snapshot is encrypted, it can be shared, but only by specifying a list
|
7310
|
+
# of authorized AWS account IDs for the `ValuesToAdd` parameter. You
|
7311
|
+
# can't use `all` as a value for that parameter in this case.
|
7373
7312
|
#
|
7374
7313
|
# To view which AWS accounts have access to copy or restore a manual DB
|
7375
7314
|
# cluster snapshot, or whether a manual DB cluster snapshot public or
|
7376
7315
|
# private, use the DescribeDBClusterSnapshotAttributes API action.
|
7377
7316
|
#
|
7378
|
-
# If a manual DB cluster snapshot is encrypted, it cannot be shared.
|
7379
|
-
#
|
7380
7317
|
# @option params [required, String] :db_cluster_snapshot_identifier
|
7381
7318
|
# The identifier for the DB cluster snapshot to modify the attributes
|
7382
7319
|
# for.
|
@@ -7972,6 +7909,19 @@ module Aws::RDS
|
|
7972
7909
|
#
|
7973
7910
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Aurora.Managing.html#Aurora.Managing.FaultTolerance
|
7974
7911
|
#
|
7912
|
+
# @option params [Boolean] :enable_iam_database_authentication
|
7913
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
7914
|
+
# accounts to database accounts; otherwise false.
|
7915
|
+
#
|
7916
|
+
# You can enable IAM database authentication for the following database
|
7917
|
+
# engines
|
7918
|
+
#
|
7919
|
+
# * For MySQL 5.6, minor version 5.6.34 or higher
|
7920
|
+
#
|
7921
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher
|
7922
|
+
#
|
7923
|
+
# Default: `false`
|
7924
|
+
#
|
7975
7925
|
# @return [Types::ModifyDBInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
7976
7926
|
#
|
7977
7927
|
# * {Types::ModifyDBInstanceResult#db_instance #db_instance} => Types::DBInstance
|
@@ -8011,6 +7961,7 @@ module Aws::RDS
|
|
8011
7961
|
# monitoring_role_arn: "String",
|
8012
7962
|
# domain_iam_role_name: "String",
|
8013
7963
|
# promotion_tier: 1,
|
7964
|
+
# enable_iam_database_authentication: false,
|
8014
7965
|
# })
|
8015
7966
|
#
|
8016
7967
|
# @example Response structure
|
@@ -8103,6 +8054,7 @@ module Aws::RDS
|
|
8103
8054
|
# resp.db_instance.promotion_tier #=> Integer
|
8104
8055
|
# resp.db_instance.db_instance_arn #=> String
|
8105
8056
|
# resp.db_instance.timezone #=> String
|
8057
|
+
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
8106
8058
|
#
|
8107
8059
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
|
8108
8060
|
#
|
@@ -8257,6 +8209,7 @@ module Aws::RDS
|
|
8257
8209
|
# resp.db_snapshot.kms_key_id #=> String
|
8258
8210
|
# resp.db_snapshot.db_snapshot_arn #=> String
|
8259
8211
|
# resp.db_snapshot.timezone #=> String
|
8212
|
+
# resp.db_snapshot.iam_database_authentication_enabled #=> Boolean
|
8260
8213
|
#
|
8261
8214
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBSnapshot AWS API Documentation
|
8262
8215
|
#
|
@@ -8277,14 +8230,15 @@ module Aws::RDS
|
|
8277
8230
|
# manual DB snapshot public, which means it can be copied or restored by
|
8278
8231
|
# all AWS accounts. Do not add the `all` value for any manual DB
|
8279
8232
|
# snapshots that contain private information that you don't want
|
8280
|
-
# available to all AWS accounts.
|
8233
|
+
# available to all AWS accounts. If the manual DB snapshot is encrypted,
|
8234
|
+
# it can be shared, but only by specifying a list of authorized AWS
|
8235
|
+
# account IDs for the `ValuesToAdd` parameter. You can't use `all` as a
|
8236
|
+
# value for that parameter in this case.
|
8281
8237
|
#
|
8282
8238
|
# To view which AWS accounts have access to copy or restore a manual DB
|
8283
8239
|
# snapshot, or whether a manual DB snapshot public or private, use the
|
8284
8240
|
# DescribeDBSnapshotAttributes API action.
|
8285
8241
|
#
|
8286
|
-
# If the manual DB snapshot is encrypted, it cannot be shared.
|
8287
|
-
#
|
8288
8242
|
# @option params [required, String] :db_snapshot_identifier
|
8289
8243
|
# The identifier for the DB snapshot to modify the attributes for.
|
8290
8244
|
#
|
@@ -8740,6 +8694,7 @@ module Aws::RDS
|
|
8740
8694
|
# resp.db_instance.promotion_tier #=> Integer
|
8741
8695
|
# resp.db_instance.db_instance_arn #=> String
|
8742
8696
|
# resp.db_instance.timezone #=> String
|
8697
|
+
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
8743
8698
|
#
|
8744
8699
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
|
8745
8700
|
#
|
@@ -8822,6 +8777,7 @@ module Aws::RDS
|
|
8822
8777
|
# resp.db_cluster.associated_roles #=> Array
|
8823
8778
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
8824
8779
|
# resp.db_cluster.associated_roles[0].status #=> String
|
8780
|
+
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
8825
8781
|
# resp.db_cluster.cluster_create_time #=> Time
|
8826
8782
|
#
|
8827
8783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplicaDBCluster AWS API Documentation
|
@@ -9039,6 +8995,7 @@ module Aws::RDS
|
|
9039
8995
|
# resp.db_instance.promotion_tier #=> Integer
|
9040
8996
|
# resp.db_instance.db_instance_arn #=> String
|
9041
8997
|
# resp.db_instance.timezone #=> String
|
8998
|
+
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
9042
8999
|
#
|
9043
9000
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
|
9044
9001
|
#
|
@@ -9058,7 +9015,7 @@ module Aws::RDS
|
|
9058
9015
|
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Aurora.Authorizing.AWSServices.html
|
9059
9016
|
#
|
9060
9017
|
# @option params [required, String] :db_cluster_identifier
|
9061
|
-
# The name of the DB cluster to disassociate the IAM role
|
9018
|
+
# The name of the DB cluster to disassociate the IAM role from.
|
9062
9019
|
#
|
9063
9020
|
# @option params [required, String] :role_arn
|
9064
9021
|
# The Amazon Resource Name (ARN) of the IAM role to disassociate from
|
@@ -9241,7 +9198,7 @@ module Aws::RDS
|
|
9241
9198
|
end
|
9242
9199
|
|
9243
9200
|
# Modifies the parameters of a DB parameter group to the engine/system
|
9244
|
-
# default value. To reset specific parameters
|
9201
|
+
# default value. To reset specific parameters, provide a list of the
|
9245
9202
|
# following: `ParameterName` and `ApplyMethod`. To reset the entire DB
|
9246
9203
|
# parameter group, specify the `DBParameterGroup` name and
|
9247
9204
|
# `ResetAllParameters` parameters. When resetting the entire group,
|
@@ -9267,10 +9224,11 @@ module Aws::RDS
|
|
9267
9224
|
# Default: `true`
|
9268
9225
|
#
|
9269
9226
|
# @option params [Array<Types::Parameter>] :parameters
|
9270
|
-
#
|
9271
|
-
#
|
9272
|
-
#
|
9273
|
-
# parameters can be modified in a single
|
9227
|
+
# To reset the entire DB parameter group, specify the `DBParameterGroup`
|
9228
|
+
# name and `ResetAllParameters` parameters. To reset specific
|
9229
|
+
# parameters, provide a list of the following: `ParameterName` and
|
9230
|
+
# `ApplyMethod`. A maximum of 20 parameters can be modified in a single
|
9231
|
+
# request.
|
9274
9232
|
#
|
9275
9233
|
# **MySQL**
|
9276
9234
|
#
|
@@ -9334,7 +9292,11 @@ module Aws::RDS
|
|
9334
9292
|
# bucket. Amazon RDS must be authorized to access the Amazon S3 bucket
|
9335
9293
|
# and the data must be created using the Percona XtraBackup utility as
|
9336
9294
|
# described in [Migrating Data from MySQL by Using an Amazon S3
|
9337
|
-
# Bucket]
|
9295
|
+
# Bucket][1].
|
9296
|
+
#
|
9297
|
+
#
|
9298
|
+
#
|
9299
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Aurora.Migrate.MySQL.html#Aurora.Migrate.MySQL.S3
|
9338
9300
|
#
|
9339
9301
|
# @option params [Array<String>] :availability_zones
|
9340
9302
|
# A list of EC2 Availability Zones that instances in the restored DB
|
@@ -9505,6 +9467,13 @@ module Aws::RDS
|
|
9505
9467
|
# your AWS account. Your AWS account has a different default encryption
|
9506
9468
|
# key for each AWS region.
|
9507
9469
|
#
|
9470
|
+
# @option params [Boolean] :enable_iam_database_authentication
|
9471
|
+
# A Boolean value that is true to enable mapping of AWS Identity and
|
9472
|
+
# Access Management (IAM) accounts to database accounts, and otherwise
|
9473
|
+
# false.
|
9474
|
+
#
|
9475
|
+
# Default: `false`
|
9476
|
+
#
|
9508
9477
|
# @option params [required, String] :source_engine
|
9509
9478
|
# The identifier for the database engine that was backed up to create
|
9510
9479
|
# the files stored in the Amazon S3 bucket.
|
@@ -9564,6 +9533,7 @@ module Aws::RDS
|
|
9564
9533
|
# ],
|
9565
9534
|
# storage_encrypted: false,
|
9566
9535
|
# kms_key_id: "String",
|
9536
|
+
# enable_iam_database_authentication: false,
|
9567
9537
|
# source_engine: "String", # required
|
9568
9538
|
# source_engine_version: "String", # required
|
9569
9539
|
# s3_bucket_name: "String", # required
|
@@ -9617,6 +9587,7 @@ module Aws::RDS
|
|
9617
9587
|
# resp.db_cluster.associated_roles #=> Array
|
9618
9588
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
9619
9589
|
# resp.db_cluster.associated_roles[0].status #=> String
|
9590
|
+
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
9620
9591
|
# resp.db_cluster.cluster_create_time #=> Time
|
9621
9592
|
#
|
9622
9593
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromS3 AWS API Documentation
|
@@ -9726,6 +9697,13 @@ module Aws::RDS
|
|
9726
9697
|
# * If the DB cluster snapshot is not encrypted, then the restored DB
|
9727
9698
|
# cluster is encrypted using the specified encryption key.
|
9728
9699
|
#
|
9700
|
+
# @option params [Boolean] :enable_iam_database_authentication
|
9701
|
+
# A Boolean value that is true to enable mapping of AWS Identity and
|
9702
|
+
# Access Management (IAM) accounts to database accounts, and otherwise
|
9703
|
+
# false.
|
9704
|
+
#
|
9705
|
+
# Default: `false`
|
9706
|
+
#
|
9729
9707
|
# @return [Types::RestoreDBClusterFromSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9730
9708
|
#
|
9731
9709
|
# * {Types::RestoreDBClusterFromSnapshotResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -9750,6 +9728,7 @@ module Aws::RDS
|
|
9750
9728
|
# },
|
9751
9729
|
# ],
|
9752
9730
|
# kms_key_id: "String",
|
9731
|
+
# enable_iam_database_authentication: false,
|
9753
9732
|
# })
|
9754
9733
|
#
|
9755
9734
|
# @example Response structure
|
@@ -9798,6 +9777,7 @@ module Aws::RDS
|
|
9798
9777
|
# resp.db_cluster.associated_roles #=> Array
|
9799
9778
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
9800
9779
|
# resp.db_cluster.associated_roles[0].status #=> String
|
9780
|
+
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
9801
9781
|
# resp.db_cluster.cluster_create_time #=> Time
|
9802
9782
|
#
|
9803
9783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterFromSnapshot AWS API Documentation
|
@@ -9922,6 +9902,13 @@ module Aws::RDS
|
|
9922
9902
|
# If `DBClusterIdentifier` refers to a DB cluster that is note
|
9923
9903
|
# encrypted, then the restore request is rejected.
|
9924
9904
|
#
|
9905
|
+
# @option params [Boolean] :enable_iam_database_authentication
|
9906
|
+
# A Boolean value that is true to enable mapping of AWS Identity and
|
9907
|
+
# Access Management (IAM) accounts to database accounts, and otherwise
|
9908
|
+
# false.
|
9909
|
+
#
|
9910
|
+
# Default: `false`
|
9911
|
+
#
|
9925
9912
|
# @return [Types::RestoreDBClusterToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
9926
9913
|
#
|
9927
9914
|
# * {Types::RestoreDBClusterToPointInTimeResult#db_cluster #db_cluster} => Types::DBCluster
|
@@ -9944,6 +9931,7 @@ module Aws::RDS
|
|
9944
9931
|
# },
|
9945
9932
|
# ],
|
9946
9933
|
# kms_key_id: "String",
|
9934
|
+
# enable_iam_database_authentication: false,
|
9947
9935
|
# })
|
9948
9936
|
#
|
9949
9937
|
# @example Response structure
|
@@ -9992,6 +9980,7 @@ module Aws::RDS
|
|
9992
9980
|
# resp.db_cluster.associated_roles #=> Array
|
9993
9981
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
9994
9982
|
# resp.db_cluster.associated_roles[0].status #=> String
|
9983
|
+
# resp.db_cluster.iam_database_authentication_enabled #=> Boolean
|
9995
9984
|
# resp.db_cluster.cluster_create_time #=> Time
|
9996
9985
|
#
|
9997
9986
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBClusterToPointInTime AWS API Documentation
|
@@ -10207,6 +10196,21 @@ module Aws::RDS
|
|
10207
10196
|
# Specify the name of the IAM role to be used when making API calls to
|
10208
10197
|
# the Directory Service.
|
10209
10198
|
#
|
10199
|
+
# @option params [Boolean] :enable_iam_database_authentication
|
10200
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
10201
|
+
# accounts to database accounts; otherwise false.
|
10202
|
+
#
|
10203
|
+
# You can enable IAM database authentication for the following database
|
10204
|
+
# engines
|
10205
|
+
#
|
10206
|
+
# * For MySQL 5.6, minor version 5.6.34 or higher
|
10207
|
+
#
|
10208
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher
|
10209
|
+
#
|
10210
|
+
# * Aurora 5.6 or higher.
|
10211
|
+
#
|
10212
|
+
# Default: `false`
|
10213
|
+
#
|
10210
10214
|
# @return [Types::RestoreDBInstanceFromDBSnapshotResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10211
10215
|
#
|
10212
10216
|
# * {Types::RestoreDBInstanceFromDBSnapshotResult#db_instance #db_instance} => Types::DBInstance
|
@@ -10240,6 +10244,7 @@ module Aws::RDS
|
|
10240
10244
|
# domain: "String",
|
10241
10245
|
# copy_tags_to_snapshot: false,
|
10242
10246
|
# domain_iam_role_name: "String",
|
10247
|
+
# enable_iam_database_authentication: false,
|
10243
10248
|
# })
|
10244
10249
|
#
|
10245
10250
|
# @example Response structure
|
@@ -10332,6 +10337,7 @@ module Aws::RDS
|
|
10332
10337
|
# resp.db_instance.promotion_tier #=> Integer
|
10333
10338
|
# resp.db_instance.db_instance_arn #=> String
|
10334
10339
|
# resp.db_instance.timezone #=> String
|
10340
|
+
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
10335
10341
|
#
|
10336
10342
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
|
10337
10343
|
#
|
@@ -10550,6 +10556,21 @@ module Aws::RDS
|
|
10550
10556
|
# Specify the name of the IAM role to be used when making API calls to
|
10551
10557
|
# the Directory Service.
|
10552
10558
|
#
|
10559
|
+
# @option params [Boolean] :enable_iam_database_authentication
|
10560
|
+
# True to enable mapping of AWS Identity and Access Management (IAM)
|
10561
|
+
# accounts to database accounts; otherwise false.
|
10562
|
+
#
|
10563
|
+
# You can enable IAM database authentication for the following database
|
10564
|
+
# engines
|
10565
|
+
#
|
10566
|
+
# * For MySQL 5.6, minor version 5.6.34 or higher
|
10567
|
+
#
|
10568
|
+
# * For MySQL 5.7, minor version 5.7.16 or higher
|
10569
|
+
#
|
10570
|
+
# * Aurora 5.6 or higher.
|
10571
|
+
#
|
10572
|
+
# Default: `false`
|
10573
|
+
#
|
10553
10574
|
# @return [Types::RestoreDBInstanceToPointInTimeResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
10554
10575
|
#
|
10555
10576
|
# * {Types::RestoreDBInstanceToPointInTimeResult#db_instance #db_instance} => Types::DBInstance
|
@@ -10585,6 +10606,7 @@ module Aws::RDS
|
|
10585
10606
|
# tde_credential_password: "String",
|
10586
10607
|
# domain: "String",
|
10587
10608
|
# domain_iam_role_name: "String",
|
10609
|
+
# enable_iam_database_authentication: false,
|
10588
10610
|
# })
|
10589
10611
|
#
|
10590
10612
|
# @example Response structure
|
@@ -10677,6 +10699,7 @@ module Aws::RDS
|
|
10677
10699
|
# resp.db_instance.promotion_tier #=> Integer
|
10678
10700
|
# resp.db_instance.db_instance_arn #=> String
|
10679
10701
|
# resp.db_instance.timezone #=> String
|
10702
|
+
# resp.db_instance.iam_database_authentication_enabled #=> Boolean
|
10680
10703
|
#
|
10681
10704
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
|
10682
10705
|
#
|
@@ -10773,7 +10796,7 @@ module Aws::RDS
|
|
10773
10796
|
params: params,
|
10774
10797
|
config: config)
|
10775
10798
|
context[:gem_name] = 'aws-sdk-rds'
|
10776
|
-
context[:gem_version] = '1.0.0.
|
10799
|
+
context[:gem_version] = '1.0.0.rc6'
|
10777
10800
|
Seahorse::Client::Request.new(handlers, context)
|
10778
10801
|
end
|
10779
10802
|
|