aws-sdk-rds 1.0.0.rc1 → 1.0.0.rc2
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 +169 -132
- data/lib/aws-sdk-rds/client_api.rb +6 -0
- data/lib/aws-sdk-rds/db_cluster.rb +14 -0
- data/lib/aws-sdk-rds/db_instance.rb +114 -116
- data/lib/aws-sdk-rds/db_snapshot.rb +4 -4
- data/lib/aws-sdk-rds/resource.rb +132 -118
- data/lib/aws-sdk-rds/types.rb +155 -133
- metadata +2 -2
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -589,6 +589,9 @@ module Aws
|
|
589
589
|
# If you are copying from a shared manual DB snapshot, this must be
|
590
590
|
# the ARN of the shared DB snapshot.
|
591
591
|
#
|
592
|
+
# You cannot copy an encrypted, shared DB snapshot from one AWS region
|
593
|
+
# to another.
|
594
|
+
#
|
592
595
|
# Constraints:
|
593
596
|
#
|
594
597
|
# * Must specify a valid system snapshot in the "available" state.
|
@@ -603,7 +606,7 @@ module Aws
|
|
603
606
|
# Example: `rds:mydb-2012-04-02-00-01`
|
604
607
|
#
|
605
608
|
# Example:
|
606
|
-
# `arn:aws:rds:
|
609
|
+
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805`
|
607
610
|
#
|
608
611
|
#
|
609
612
|
#
|
@@ -627,9 +630,9 @@ module Aws
|
|
627
630
|
# @return [String]
|
628
631
|
#
|
629
632
|
# @!attribute [rw] kms_key_id
|
630
|
-
# The AWS
|
631
|
-
#
|
632
|
-
#
|
633
|
+
# The AWS KMS key ID for an encrypted DB snapshot. The KMS key ID is
|
634
|
+
# the Amazon Resource Name (ARN), KMS key identifier, or the KMS key
|
635
|
+
# alias for the KMS encryption key.
|
633
636
|
#
|
634
637
|
# If you copy an unencrypted DB snapshot and specify a value for the
|
635
638
|
# `KmsKeyId` parameter, Amazon RDS encrypts the target DB snapshot
|
@@ -637,7 +640,7 @@ module Aws
|
|
637
640
|
#
|
638
641
|
# If you copy an encrypted DB snapshot from your AWS account, you can
|
639
642
|
# specify a value for `KmsKeyId` to encrypt the copy with a new KMS
|
640
|
-
# encryption key. If you don't specify a value for `KmsKeyId
|
643
|
+
# encryption key. If you don't specify a value for `KmsKeyId`, then
|
641
644
|
# the copy of the DB snapshot is encrypted with the same KMS key as
|
642
645
|
# the source DB snapshot.
|
643
646
|
#
|
@@ -1618,25 +1621,79 @@ module Aws
|
|
1618
1621
|
#
|
1619
1622
|
# * **Version 5.6 (available in these AWS regions: ap-northeast-1,
|
1620
1623
|
# ap-northeast-2, ap-south-1, ap-southeast-2, eu-west-1, us-east-1,
|
1621
|
-
# us-west-2):** ` 5.6.10a`
|
1624
|
+
# us-east-2, us-west-2):** ` 5.6.10a`
|
1622
1625
|
#
|
1623
1626
|
# ^
|
1624
1627
|
#
|
1625
1628
|
# **MariaDB**
|
1626
1629
|
#
|
1630
|
+
# * **Version 10.1 (available in these AWS regions: us-east-2):** `
|
1631
|
+
# 10.1.16`
|
1632
|
+
#
|
1627
1633
|
# * **Version 10.1 (available in these AWS regions: ap-northeast-1,
|
1628
1634
|
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1629
1635
|
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
1630
1636
|
# us-west-2):** ` 10.1.14`
|
1631
1637
|
#
|
1632
|
-
# * **Version 10.0 (available in all AWS regions):** ` 10.0.
|
1633
|
-
#
|
1638
|
+
# * **Version 10.0 (available in all AWS regions):** ` 10.0.24`
|
1639
|
+
#
|
1640
|
+
# * **Version 10.0 (available in these AWS regions: ap-northeast-1,
|
1641
|
+
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1642
|
+
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-gov-west-1,
|
1643
|
+
# us-west-1, us-west-2):** ` 10.0.17`
|
1644
|
+
#
|
1645
|
+
# **Microsoft SQL Server 2016**
|
1646
|
+
#
|
1647
|
+
# * `13.00.2164.0.v1` (supported for all editions, and all AWS regions
|
1648
|
+
# except sa-east-1)
|
1649
|
+
#
|
1650
|
+
# ^
|
1651
|
+
#
|
1652
|
+
# **Microsoft SQL Server 2014**
|
1653
|
+
#
|
1654
|
+
# * `12.00.5000.0.v1` (supported for all editions, and all AWS
|
1655
|
+
# regions)
|
1656
|
+
#
|
1657
|
+
# * `12.00.4422.0.v1` (supported for all editions except Enterprise
|
1658
|
+
# Edition, and all AWS regions except us-east-2)
|
1659
|
+
#
|
1660
|
+
# **Microsoft SQL Server 2012**
|
1661
|
+
#
|
1662
|
+
# * `11.00.6020.0.v1` (supported for all editions, and all AWS
|
1663
|
+
# regions)
|
1664
|
+
#
|
1665
|
+
# * `11.00.5058.0.v1` (supported for all editions, and all AWS regions
|
1666
|
+
# except us-east-2)
|
1667
|
+
#
|
1668
|
+
# * `11.00.2100.60.v1` (supported for all editions, and all AWS
|
1669
|
+
# regions except us-east-2)
|
1670
|
+
#
|
1671
|
+
# **Microsoft SQL Server 2008 R2**
|
1672
|
+
#
|
1673
|
+
# * `10.50.6529.0.v1` (supported for all editions, and all AWS regions
|
1674
|
+
# except us-east-2)
|
1675
|
+
#
|
1676
|
+
# * `10.50.6000.34.v1` (supported for all editions, and all AWS
|
1677
|
+
# regions except us-east-2)
|
1678
|
+
#
|
1679
|
+
# * `10.50.2789.0.v1` (supported for all editions, and all AWS regions
|
1680
|
+
# except us-east-2)
|
1634
1681
|
#
|
1635
1682
|
# **MySQL**
|
1636
1683
|
#
|
1637
|
-
# * **Version 5.7 (available in all AWS regions):** ` 5.7.
|
1684
|
+
# * **Version 5.7 (available in all AWS regions):** ` 5.7.11`
|
1685
|
+
#
|
1686
|
+
# * **Version 5.7 (available in these AWS regions: ap-northeast-1,
|
1687
|
+
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1688
|
+
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-gov-west-1,
|
1689
|
+
# us-west-1, us-west-2):** ` 5.7.10`
|
1638
1690
|
#
|
1639
|
-
# * **Version 5.6 (available in all AWS regions):** ` 5.6.
|
1691
|
+
# * **Version 5.6 (available in all AWS regions):** ` 5.6.29`
|
1692
|
+
#
|
1693
|
+
# * **Version 5.6 (available in these AWS regions: ap-northeast-1,
|
1694
|
+
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1695
|
+
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-gov-west-1,
|
1696
|
+
# us-west-1, us-west-2):** ` 5.6.27`
|
1640
1697
|
#
|
1641
1698
|
# * **Version 5.6 (available in these AWS regions: ap-northeast-1,
|
1642
1699
|
# ap-northeast-2, ap-southeast-1, ap-southeast-2, eu-central-1,
|
@@ -1664,120 +1721,96 @@ module Aws
|
|
1664
1721
|
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
1665
1722
|
# us-gov-west-1, us-west-1, us-west-2):** ` 5.5.40 | 5.5.40a`
|
1666
1723
|
#
|
1667
|
-
# **Oracle Database Enterprise Edition (oracle-ee)**
|
1668
1724
|
#
|
1669
|
-
# * **Version 12.1.0.2 (available in these AWS regions:
|
1670
|
-
# ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1,
|
1671
|
-
# ap-southeast-2, eu-central-1, eu-west-1, sa-east-1, us-east-1,
|
1672
|
-
# us-west-1, us-west-2):** ` 12.1.0.2.v5`
|
1673
1725
|
#
|
1674
|
-
#
|
1675
|
-
# | 12.1.0.2.v2 | 12.1.0.2.v3 | 12.1.0.2.v4`
|
1726
|
+
# **Oracle 12c**
|
1676
1727
|
#
|
1677
|
-
# *
|
1678
|
-
#
|
1679
|
-
# eu-west-1, sa-east-1, us-east-1, us-west-1, us-west-2):** `
|
1680
|
-
# 12.1.0.1.v6`
|
1728
|
+
# * `12.1.0.2.v5` (supported for EE in all AWS regions, and SE2 in all
|
1729
|
+
# AWS regions except us-gov-west-1)
|
1681
1730
|
#
|
1682
|
-
# *
|
1683
|
-
#
|
1684
|
-
# eu-west-1, sa-east-1, us-east-1, us-gov-west-1, us-west-1,
|
1685
|
-
# us-west-2):** ` 12.1.0.1.v3 | 12.1.0.1.v4 | 12.1.0.1.v5`
|
1731
|
+
# * `12.1.0.2.v4` (supported for EE in all AWS regions, and SE2 in all
|
1732
|
+
# AWS regions except us-gov-west-1)
|
1686
1733
|
#
|
1687
|
-
# *
|
1688
|
-
#
|
1689
|
-
# eu-west-1, sa-east-1, us-east-1, us-gov-west-1, us-gov-west-1,
|
1690
|
-
# us-west-1, us-west-2):** ` 12.1.0.1.v1 | 12.1.0.1.v2`
|
1734
|
+
# * `12.1.0.2.v3` (supported for EE in all AWS regions, and SE2 in all
|
1735
|
+
# AWS regions except us-gov-west-1)
|
1691
1736
|
#
|
1692
|
-
# *
|
1693
|
-
#
|
1694
|
-
# ap-southeast-2, eu-central-1, eu-west-1, sa-east-1, us-east-1,
|
1695
|
-
# us-west-1, us-west-2):** ` 11.2.0.4.v6 | 11.2.0.4.v9`
|
1737
|
+
# * `12.1.0.2.v2` (supported for EE in all AWS regions, and SE2 in all
|
1738
|
+
# AWS regions except us-gov-west-1)
|
1696
1739
|
#
|
1697
|
-
# *
|
1698
|
-
#
|
1699
|
-
# 11.2.0.4.v8`
|
1740
|
+
# * `12.1.0.2.v1` (supported for EE in all AWS regions, and SE2 in all
|
1741
|
+
# AWS regions except us-gov-west-1)
|
1700
1742
|
#
|
1701
|
-
# **Oracle Database Standard Edition Two (oracle-se2)**
|
1702
1743
|
#
|
1703
|
-
# * **Version 12.1.0.2 (available in these AWS regions:
|
1704
|
-
# ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1,
|
1705
|
-
# ap-southeast-2, eu-central-1, eu-west-1, sa-east-1, us-east-1,
|
1706
|
-
# us-west-1, us-west-2):** ` 12.1.0.2.v5`
|
1707
1744
|
#
|
1708
|
-
# *
|
1709
|
-
#
|
1745
|
+
# * `12.1.0.1.v6` (supported for EE, SE1, and SE, in all AWS regions
|
1746
|
+
# except ap-south-1, ap-northeast-2)
|
1710
1747
|
#
|
1711
|
-
#
|
1748
|
+
# * `12.1.0.1.v5` (supported for EE, SE1, and SE, in all AWS regions
|
1749
|
+
# except ap-south-1, ap-northeast-2)
|
1712
1750
|
#
|
1713
|
-
# *
|
1714
|
-
#
|
1715
|
-
# eu-west-1, sa-east-1, us-east-1, us-west-1, us-west-2):** `
|
1716
|
-
# 12.1.0.1.v6`
|
1751
|
+
# * `12.1.0.1.v4` (supported for EE, SE1, and SE, in all AWS regions
|
1752
|
+
# except ap-south-1, ap-northeast-2)
|
1717
1753
|
#
|
1718
|
-
# *
|
1719
|
-
#
|
1720
|
-
# eu-west-1, sa-east-1, us-east-1, us-gov-west-1, us-west-1,
|
1721
|
-
# us-west-2):** ` 12.1.0.1.v3 | 12.1.0.1.v4 | 12.1.0.1.v5`
|
1754
|
+
# * `12.1.0.1.v3` (supported for EE, SE1, and SE, in all AWS regions
|
1755
|
+
# except ap-south-1, ap-northeast-2)
|
1722
1756
|
#
|
1723
|
-
# *
|
1724
|
-
#
|
1725
|
-
# eu-west-1, sa-east-1, us-east-1, us-gov-west-1, us-gov-west-1,
|
1726
|
-
# us-west-1, us-west-2):** ` 12.1.0.1.v1 | 12.1.0.1.v2`
|
1757
|
+
# * `12.1.0.1.v2` (supported for EE, SE1, and SE, in all AWS regions
|
1758
|
+
# except ap-south-1, ap-northeast-2)
|
1727
1759
|
#
|
1728
|
-
# *
|
1729
|
-
# ap-
|
1730
|
-
# ap-southeast-2, eu-central-1, eu-west-1, sa-east-1, us-east-1,
|
1731
|
-
# us-west-1, us-west-2):** ` 11.2.0.4.v6 | 11.2.0.4.v9`
|
1760
|
+
# * `12.1.0.1.v1` (supported for EE, SE1, and SE, in all AWS regions
|
1761
|
+
# except ap-south-1, ap-northeast-2)
|
1732
1762
|
#
|
1733
|
-
#
|
1734
|
-
# | 11.2.0.4.v3 | 11.2.0.4.v4 | 11.2.0.4.v5 | 11.2.0.4.v7 |
|
1735
|
-
# 11.2.0.4.v8`
|
1763
|
+
# **Oracle 11g**
|
1736
1764
|
#
|
1737
|
-
#
|
1765
|
+
# * `11.2.0.4.v9` (supported for EE, SE1, and SE, in all AWS regions)
|
1738
1766
|
#
|
1739
|
-
# *
|
1740
|
-
# ap-northeast-1, ap-southeast-1, ap-southeast-2, eu-central-1,
|
1741
|
-
# eu-west-1, sa-east-1, us-east-1, us-west-1, us-west-2):** `
|
1742
|
-
# 12.1.0.1.v6`
|
1767
|
+
# * `11.2.0.4.v8` (supported for EE, SE1, and SE, in all AWS regions)
|
1743
1768
|
#
|
1744
|
-
# *
|
1745
|
-
#
|
1746
|
-
#
|
1747
|
-
# us-west-2):** ` 12.1.0.1.v3 | 12.1.0.1.v4 | 12.1.0.1.v5`
|
1769
|
+
# * `11.2.0.4.v7` (supported for EE, SE1, and SE, in all AWS regions)
|
1770
|
+
#
|
1771
|
+
# * `11.2.0.4.v6` (supported for EE, SE1, and SE, in all AWS regions)
|
1748
1772
|
#
|
1749
|
-
# *
|
1750
|
-
# ap-northeast-1, ap-southeast-1, ap-southeast-2, eu-central-1,
|
1751
|
-
# eu-west-1, sa-east-1, us-east-1, us-gov-west-1, us-gov-west-1,
|
1752
|
-
# us-west-1, us-west-2):** ` 12.1.0.1.v1 | 12.1.0.1.v2`
|
1773
|
+
# * `11.2.0.4.v5` (supported for EE, SE1, and SE, in all AWS regions)
|
1753
1774
|
#
|
1754
|
-
# *
|
1755
|
-
# ap-northeast-1, ap-northeast-2, ap-south-1, ap-southeast-1,
|
1756
|
-
# ap-southeast-2, eu-central-1, eu-west-1, sa-east-1, us-east-1,
|
1757
|
-
# us-west-1, us-west-2):** ` 11.2.0.4.v6 | 11.2.0.4.v9`
|
1775
|
+
# * `11.2.0.4.v4` (supported for EE, SE1, and SE, in all AWS regions)
|
1758
1776
|
#
|
1759
|
-
# *
|
1760
|
-
#
|
1761
|
-
#
|
1777
|
+
# * `11.2.0.4.v3` (supported for EE, SE1, and SE, in all AWS regions)
|
1778
|
+
#
|
1779
|
+
# * `11.2.0.4.v1` (supported for EE, SE1, and SE, in all AWS regions)
|
1762
1780
|
#
|
1763
1781
|
# **PostgreSQL**
|
1764
1782
|
#
|
1765
1783
|
# * **Version 9.5 (available in these AWS regions: ap-northeast-1,
|
1766
1784
|
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1767
1785
|
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
1768
|
-
# us-west-2):** ` 9.5.
|
1786
|
+
# us-west-2):** ` 9.5.4`
|
1787
|
+
#
|
1788
|
+
# * **Version 9.5 (available in these AWS regions: ap-northeast-1,
|
1789
|
+
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1790
|
+
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-east-2,
|
1791
|
+
# us-west-1, us-west-2):** ` 9.5.2`
|
1769
1792
|
#
|
1770
1793
|
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
1771
1794
|
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1772
1795
|
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
1773
|
-
# us-west-2):** ` 9.4.
|
1796
|
+
# us-west-2):** ` 9.4.9`
|
1797
|
+
#
|
1798
|
+
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
1799
|
+
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1800
|
+
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-east-2,
|
1801
|
+
# us-west-1, us-west-2):** ` 9.4.7`
|
1774
1802
|
#
|
1775
1803
|
# * **Version 9.4 (available in all AWS regions):** ` 9.4.5`
|
1776
1804
|
#
|
1777
1805
|
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
1778
1806
|
# ap-northeast-2, ap-southeast-1, ap-southeast-2, eu-central-1,
|
1779
1807
|
# eu-west-1, sa-east-1, us-east-1, us-gov-west-1, us-west-1,
|
1780
|
-
# us-west-2):** ` 9.4.
|
1808
|
+
# us-west-2):** ` 9.4.4`
|
1809
|
+
#
|
1810
|
+
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
1811
|
+
# ap-northeast-2, ap-southeast-1, ap-southeast-2, eu-central-1,
|
1812
|
+
# eu-west-1, sa-east-1, us-east-1, us-east-2, us-gov-west-1,
|
1813
|
+
# us-west-1, us-west-2):** ` 9.4.1`
|
1781
1814
|
#
|
1782
1815
|
# * **Version 9.3 (available in these AWS regions: ap-northeast-1,
|
1783
1816
|
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1,
|
@@ -1791,47 +1824,6 @@ module Aws
|
|
1791
1824
|
# * **Version 9.3 (available in these AWS regions: ap-northeast-1,
|
1792
1825
|
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1,
|
1793
1826
|
# sa-east-1, us-east-1, us-west-1, us-west-2):** ` 9.3.12 | 9.3.14`
|
1794
|
-
#
|
1795
|
-
# **Microsoft SQL Server Enterprise Edition (sqlserver-ee)**
|
1796
|
-
#
|
1797
|
-
# * **Version 11.00 (available in all AWS regions):** `
|
1798
|
-
# 11.00.2100.60.v1 | 11.00.5058.0.v1 | 11.00.6020.0.v1`
|
1799
|
-
#
|
1800
|
-
# * **Version 10.50 (available in all AWS regions):** `
|
1801
|
-
# 10.50.2789.0.v1 | 10.50.6000.34.v1 | 10.50.6529.0.v1`
|
1802
|
-
#
|
1803
|
-
# **Microsoft SQL Server Express Edition (sqlserver-ex)**
|
1804
|
-
#
|
1805
|
-
# * **Version 12.00 (available in all AWS regions):** `
|
1806
|
-
# 12.00.4422.0.v1`
|
1807
|
-
#
|
1808
|
-
# * **Version 11.00 (available in all AWS regions):** `
|
1809
|
-
# 11.00.2100.60.v1 | 11.00.5058.0.v1 | 11.00.6020.0.v1`
|
1810
|
-
#
|
1811
|
-
# * **Version 10.50 (available in all AWS regions):** `
|
1812
|
-
# 10.50.2789.0.v1 | 10.50.6000.34.v1 | 10.50.6529.0.v1`
|
1813
|
-
#
|
1814
|
-
# **Microsoft SQL Server Standard Edition (sqlserver-se)**
|
1815
|
-
#
|
1816
|
-
# * **Version 12.00 (available in all AWS regions):** `
|
1817
|
-
# 12.00.4422.0.v1`
|
1818
|
-
#
|
1819
|
-
# * **Version 11.00 (available in all AWS regions):** `
|
1820
|
-
# 11.00.2100.60.v1 | 11.00.5058.0.v1 | 11.00.6020.0.v1`
|
1821
|
-
#
|
1822
|
-
# * **Version 10.50 (available in all AWS regions):** `
|
1823
|
-
# 10.50.2789.0.v1 | 10.50.6000.34.v1 | 10.50.6529.0.v1`
|
1824
|
-
#
|
1825
|
-
# **Microsoft SQL Server Web Edition (sqlserver-web)**
|
1826
|
-
#
|
1827
|
-
# * **Version 12.00 (available in all AWS regions):** `
|
1828
|
-
# 12.00.4422.0.v1`
|
1829
|
-
#
|
1830
|
-
# * **Version 11.00 (available in all AWS regions):** `
|
1831
|
-
# 11.00.2100.60.v1 | 11.00.5058.0.v1 | 11.00.6020.0.v1`
|
1832
|
-
#
|
1833
|
-
# * **Version 10.50 (available in all AWS regions):** `
|
1834
|
-
# 10.50.2789.0.v1 | 10.50.6000.34.v1 | 10.50.6529.0.v1`
|
1835
1827
|
# @return [String]
|
1836
1828
|
#
|
1837
1829
|
# @!attribute [rw] auto_minor_version_upgrade
|
@@ -2837,6 +2829,11 @@ module Aws
|
|
2837
2829
|
# endpoint.
|
2838
2830
|
# @return [String]
|
2839
2831
|
#
|
2832
|
+
# @!attribute [rw] multi_az
|
2833
|
+
# Specifies whether the DB cluster has instances in multiple
|
2834
|
+
# Availability Zones.
|
2835
|
+
# @return [Boolean]
|
2836
|
+
#
|
2840
2837
|
# @!attribute [rw] engine
|
2841
2838
|
# Provides the name of the database engine to be used for this DB
|
2842
2839
|
# cluster.
|
@@ -2923,6 +2920,11 @@ module Aws
|
|
2923
2920
|
# associated with a DB cluster grant permission for the DB cluster to
|
2924
2921
|
# access other AWS services on your behalf.
|
2925
2922
|
# @return [Array<Types::DBClusterRole>]
|
2923
|
+
#
|
2924
|
+
# @!attribute [rw] cluster_create_time
|
2925
|
+
# Specifies the time when the DB cluster was created, in Universal
|
2926
|
+
# Coordinated Time (UTC).
|
2927
|
+
# @return [Time]
|
2926
2928
|
class DBCluster < Struct.new(
|
2927
2929
|
:allocated_storage,
|
2928
2930
|
:availability_zones,
|
@@ -2937,6 +2939,7 @@ module Aws
|
|
2937
2939
|
:earliest_restorable_time,
|
2938
2940
|
:endpoint,
|
2939
2941
|
:reader_endpoint,
|
2942
|
+
:multi_az,
|
2940
2943
|
:engine,
|
2941
2944
|
:engine_version,
|
2942
2945
|
:latest_restorable_time,
|
@@ -2954,7 +2957,8 @@ module Aws
|
|
2954
2957
|
:kms_key_id,
|
2955
2958
|
:db_cluster_resource_id,
|
2956
2959
|
:db_cluster_arn,
|
2957
|
-
:associated_roles
|
2960
|
+
:associated_roles,
|
2961
|
+
:cluster_create_time)
|
2958
2962
|
include Aws::Structure
|
2959
2963
|
end
|
2960
2964
|
|
@@ -4974,7 +4978,15 @@ module Aws
|
|
4974
4978
|
# @return [String]
|
4975
4979
|
#
|
4976
4980
|
# @!attribute [rw] filters
|
4977
|
-
#
|
4981
|
+
# A filter that specifies one or more DB clusters to describe.
|
4982
|
+
#
|
4983
|
+
# Supported filters:
|
4984
|
+
#
|
4985
|
+
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
4986
|
+
# Amazon Resource Names (ARNs). The results list will only include
|
4987
|
+
# information about the DB clusters identified by these ARNs.
|
4988
|
+
#
|
4989
|
+
# ^
|
4978
4990
|
# @return [Array<Types::Filter>]
|
4979
4991
|
#
|
4980
4992
|
# @!attribute [rw] max_records
|
@@ -5123,7 +5135,15 @@ module Aws
|
|
5123
5135
|
# @return [String]
|
5124
5136
|
#
|
5125
5137
|
# @!attribute [rw] filters
|
5126
|
-
#
|
5138
|
+
# A filter that specifies one or more DB instances to describe.
|
5139
|
+
#
|
5140
|
+
# Supported filters:
|
5141
|
+
#
|
5142
|
+
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
5143
|
+
# Amazon Resource Names (ARNs). The results list will only include
|
5144
|
+
# information about the DB instances identified by these ARNs.
|
5145
|
+
#
|
5146
|
+
# ^
|
5127
5147
|
# @return [Array<Types::Filter>]
|
5128
5148
|
#
|
5129
5149
|
# @!attribute [rw] max_records
|
@@ -6153,12 +6173,14 @@ module Aws
|
|
6153
6173
|
#
|
6154
6174
|
# Supported filters:
|
6155
6175
|
#
|
6156
|
-
# * `db-
|
6176
|
+
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
6157
6177
|
# Amazon Resource Names (ARNs). The results list will only include
|
6158
|
-
# pending maintenance actions for the DB
|
6178
|
+
# pending maintenance actions for the DB clusters identified by
|
6159
6179
|
# these ARNs.
|
6160
6180
|
#
|
6161
|
-
#
|
6181
|
+
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
6182
|
+
# ARNs. The results list will only include pending maintenance
|
6183
|
+
# actions for the DB instances identified by these ARNs.
|
6162
6184
|
# @return [Array<Types::Filter>]
|
6163
6185
|
#
|
6164
6186
|
# @!attribute [rw] marker
|
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.0.0.
|
4
|
+
version: 1.0.0.rc2
|
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: 2016-12-
|
11
|
+
date: 2016-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|