aws-sdk-rds 1.0.0.rc1 → 1.0.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- 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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cd5838a23944f100c92497769c25bfc93d17f8b5
|
4
|
+
data.tar.gz: 9ed7b2db86508054fd555903bc4b6236b44bd970
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 32ac63a3a614b65f541764bab9bea1c3ba15b85654afab1c655b518ec1293d250a28cc1c9f74ffda9ca1509ddc678fdba4b5ddd0505827589d51c21bc9c90a39
|
7
|
+
data.tar.gz: 79d3c3493e5dd591f9cab236ac95c641bd553153728f28fe3c4c1e1e24677012e283421625ca7c749090c66aa332238f78ff8c5feb2d6f7d48d3810779e0908e
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -591,15 +591,20 @@ module Aws
|
|
591
591
|
# Copies the specified DB snapshot. The source DB snapshot must be in
|
592
592
|
# the "available" state.
|
593
593
|
#
|
594
|
-
#
|
595
|
-
# `SourceDBSnapshotIdentifier` must be the
|
596
|
-
# snapshot.
|
594
|
+
# To copy a DB snapshot from a shared manual DB snapshot,
|
595
|
+
# `SourceDBSnapshotIdentifier` must be the Amazon Resource Name (ARN) of
|
596
|
+
# the shared DB snapshot.
|
597
|
+
#
|
598
|
+
# You can not copy an encrypted DB snapshot from another AWS region.
|
597
599
|
# @option params [required, String] :source_db_snapshot_identifier
|
598
600
|
# The identifier for the source DB snapshot.
|
599
601
|
#
|
600
602
|
# If you are copying from a shared manual DB snapshot, this must be the
|
601
603
|
# ARN of the shared DB snapshot.
|
602
604
|
#
|
605
|
+
# You cannot copy an encrypted, shared DB snapshot from one AWS region
|
606
|
+
# to another.
|
607
|
+
#
|
603
608
|
# Constraints:
|
604
609
|
#
|
605
610
|
# * Must specify a valid system snapshot in the "available" state.
|
@@ -614,7 +619,7 @@ module Aws
|
|
614
619
|
# Example: `rds:mydb-2012-04-02-00-01`
|
615
620
|
#
|
616
621
|
# Example:
|
617
|
-
# `arn:aws:rds:
|
622
|
+
# `arn:aws:rds:us-west-2:123456789012:snapshot:mysql-instance1-snapshot-20130805`
|
618
623
|
#
|
619
624
|
#
|
620
625
|
#
|
@@ -634,9 +639,9 @@ module Aws
|
|
634
639
|
#
|
635
640
|
# Example: `my-db-snapshot`
|
636
641
|
# @option params [String] :kms_key_id
|
637
|
-
# The AWS
|
638
|
-
#
|
639
|
-
#
|
642
|
+
# The AWS KMS key ID for an encrypted DB snapshot. The KMS key ID is the
|
643
|
+
# Amazon Resource Name (ARN), KMS key identifier, or the KMS key alias
|
644
|
+
# for the KMS encryption key.
|
640
645
|
#
|
641
646
|
# If you copy an unencrypted DB snapshot and specify a value for the
|
642
647
|
# `KmsKeyId` parameter, Amazon RDS encrypts the target DB snapshot using
|
@@ -644,7 +649,7 @@ module Aws
|
|
644
649
|
#
|
645
650
|
# If you copy an encrypted DB snapshot from your AWS account, you can
|
646
651
|
# specify a value for `KmsKeyId` to encrypt the copy with a new KMS
|
647
|
-
# encryption key. If you don't specify a value for `KmsKeyId
|
652
|
+
# encryption key. If you don't specify a value for `KmsKeyId`, then the
|
648
653
|
# copy of the DB snapshot is encrypted with the same KMS key as the
|
649
654
|
# source DB snapshot.
|
650
655
|
#
|
@@ -1017,6 +1022,7 @@ module Aws
|
|
1017
1022
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
1018
1023
|
# resp.db_cluster.endpoint #=> String
|
1019
1024
|
# resp.db_cluster.reader_endpoint #=> String
|
1025
|
+
# resp.db_cluster.multi_az #=> Boolean
|
1020
1026
|
# resp.db_cluster.engine #=> String
|
1021
1027
|
# resp.db_cluster.engine_version #=> String
|
1022
1028
|
# resp.db_cluster.latest_restorable_time #=> Time
|
@@ -1046,6 +1052,7 @@ module Aws
|
|
1046
1052
|
# resp.db_cluster.associated_roles #=> Array
|
1047
1053
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
1048
1054
|
# resp.db_cluster.associated_roles[0].status #=> String
|
1055
|
+
# resp.db_cluster.cluster_create_time #=> Time
|
1049
1056
|
# @overload create_db_cluster(params = {})
|
1050
1057
|
# @param [Hash] params ({})
|
1051
1058
|
def create_db_cluster(params = {}, options = {})
|
@@ -1590,25 +1597,77 @@ module Aws
|
|
1590
1597
|
#
|
1591
1598
|
# * **Version 5.6 (available in these AWS regions: ap-northeast-1,
|
1592
1599
|
# ap-northeast-2, ap-south-1, ap-southeast-2, eu-west-1, us-east-1,
|
1593
|
-
# us-west-2):** ` 5.6.10a`
|
1600
|
+
# us-east-2, us-west-2):** ` 5.6.10a`
|
1594
1601
|
#
|
1595
1602
|
# ^
|
1596
1603
|
#
|
1597
1604
|
# **MariaDB**
|
1598
1605
|
#
|
1606
|
+
# * **Version 10.1 (available in these AWS regions: us-east-2):** `
|
1607
|
+
# 10.1.16`
|
1608
|
+
#
|
1599
1609
|
# * **Version 10.1 (available in these AWS regions: ap-northeast-1,
|
1600
1610
|
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1601
1611
|
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
1602
1612
|
# us-west-2):** ` 10.1.14`
|
1603
1613
|
#
|
1604
|
-
# * **Version 10.0 (available in all AWS regions):** ` 10.0.
|
1605
|
-
#
|
1614
|
+
# * **Version 10.0 (available in all AWS regions):** ` 10.0.24`
|
1615
|
+
#
|
1616
|
+
# * **Version 10.0 (available in these AWS regions: ap-northeast-1,
|
1617
|
+
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1618
|
+
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-gov-west-1,
|
1619
|
+
# us-west-1, us-west-2):** ` 10.0.17`
|
1620
|
+
#
|
1621
|
+
# **Microsoft SQL Server 2016**
|
1622
|
+
#
|
1623
|
+
# * `13.00.2164.0.v1` (supported for all editions, and all AWS regions
|
1624
|
+
# except sa-east-1)
|
1625
|
+
#
|
1626
|
+
# ^
|
1627
|
+
#
|
1628
|
+
# **Microsoft SQL Server 2014**
|
1629
|
+
#
|
1630
|
+
# * `12.00.5000.0.v1` (supported for all editions, and all AWS regions)
|
1631
|
+
#
|
1632
|
+
# * `12.00.4422.0.v1` (supported for all editions except Enterprise
|
1633
|
+
# Edition, and all AWS regions except us-east-2)
|
1634
|
+
#
|
1635
|
+
# **Microsoft SQL Server 2012**
|
1636
|
+
#
|
1637
|
+
# * `11.00.6020.0.v1` (supported for all editions, and all AWS regions)
|
1638
|
+
#
|
1639
|
+
# * `11.00.5058.0.v1` (supported for all editions, and all AWS regions
|
1640
|
+
# except us-east-2)
|
1641
|
+
#
|
1642
|
+
# * `11.00.2100.60.v1` (supported for all editions, and all AWS regions
|
1643
|
+
# except us-east-2)
|
1644
|
+
#
|
1645
|
+
# **Microsoft SQL Server 2008 R2**
|
1646
|
+
#
|
1647
|
+
# * `10.50.6529.0.v1` (supported for all editions, and all AWS regions
|
1648
|
+
# except us-east-2)
|
1649
|
+
#
|
1650
|
+
# * `10.50.6000.34.v1` (supported for all editions, and all AWS regions
|
1651
|
+
# except us-east-2)
|
1652
|
+
#
|
1653
|
+
# * `10.50.2789.0.v1` (supported for all editions, and all AWS regions
|
1654
|
+
# except us-east-2)
|
1606
1655
|
#
|
1607
1656
|
# **MySQL**
|
1608
1657
|
#
|
1609
|
-
# * **Version 5.7 (available in all AWS regions):** ` 5.7.
|
1658
|
+
# * **Version 5.7 (available in all AWS regions):** ` 5.7.11`
|
1659
|
+
#
|
1660
|
+
# * **Version 5.7 (available in these AWS regions: ap-northeast-1,
|
1661
|
+
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1662
|
+
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-gov-west-1,
|
1663
|
+
# us-west-1, us-west-2):** ` 5.7.10`
|
1664
|
+
#
|
1665
|
+
# * **Version 5.6 (available in all AWS regions):** ` 5.6.29`
|
1610
1666
|
#
|
1611
|
-
# * **Version 5.6 (available in
|
1667
|
+
# * **Version 5.6 (available in these AWS regions: ap-northeast-1,
|
1668
|
+
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1669
|
+
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-gov-west-1,
|
1670
|
+
# us-west-1, us-west-2):** ` 5.6.27`
|
1612
1671
|
#
|
1613
1672
|
# * **Version 5.6 (available in these AWS regions: ap-northeast-1,
|
1614
1673
|
# ap-northeast-2, ap-southeast-1, ap-southeast-2, eu-central-1,
|
@@ -1636,114 +1695,96 @@ module Aws
|
|
1636
1695
|
# ap-southeast-1, ap-southeast-2, eu-west-1, sa-east-1, us-east-1,
|
1637
1696
|
# us-gov-west-1, us-west-1, us-west-2):** ` 5.5.40 | 5.5.40a`
|
1638
1697
|
#
|
1639
|
-
# **Oracle Database Enterprise Edition (oracle-ee)**
|
1640
1698
|
#
|
1641
|
-
# * **Version 12.1.0.2 (available in these AWS regions: ap-northeast-1,
|
1642
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1643
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
1644
|
-
# us-west-2):** ` 12.1.0.2.v5`
|
1645
1699
|
#
|
1646
|
-
#
|
1647
|
-
# 12.1.0.2.v2 | 12.1.0.2.v3 | 12.1.0.2.v4`
|
1700
|
+
# **Oracle 12c**
|
1648
1701
|
#
|
1649
|
-
# *
|
1650
|
-
#
|
1651
|
-
# us-east-1, us-west-1, us-west-2):** ` 12.1.0.1.v6`
|
1702
|
+
# * `12.1.0.2.v5` (supported for EE in all AWS regions, and SE2 in all
|
1703
|
+
# AWS regions except us-gov-west-1)
|
1652
1704
|
#
|
1653
|
-
# *
|
1654
|
-
#
|
1655
|
-
# us-east-1, us-gov-west-1, us-west-1, us-west-2):** ` 12.1.0.1.v3 |
|
1656
|
-
# 12.1.0.1.v4 | 12.1.0.1.v5`
|
1705
|
+
# * `12.1.0.2.v4` (supported for EE in all AWS regions, and SE2 in all
|
1706
|
+
# AWS regions except us-gov-west-1)
|
1657
1707
|
#
|
1658
|
-
# *
|
1659
|
-
#
|
1660
|
-
# us-east-1, us-gov-west-1, us-gov-west-1, us-west-1, us-west-2):** `
|
1661
|
-
# 12.1.0.1.v1 | 12.1.0.1.v2`
|
1708
|
+
# * `12.1.0.2.v3` (supported for EE in all AWS regions, and SE2 in all
|
1709
|
+
# AWS regions except us-gov-west-1)
|
1662
1710
|
#
|
1663
|
-
# *
|
1664
|
-
#
|
1665
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
1666
|
-
# us-west-2):** ` 11.2.0.4.v6 | 11.2.0.4.v9`
|
1711
|
+
# * `12.1.0.2.v2` (supported for EE in all AWS regions, and SE2 in all
|
1712
|
+
# AWS regions except us-gov-west-1)
|
1667
1713
|
#
|
1668
|
-
# *
|
1669
|
-
#
|
1714
|
+
# * `12.1.0.2.v1` (supported for EE in all AWS regions, and SE2 in all
|
1715
|
+
# AWS regions except us-gov-west-1)
|
1670
1716
|
#
|
1671
|
-
# **Oracle Database Standard Edition Two (oracle-se2)**
|
1672
1717
|
#
|
1673
|
-
# * **Version 12.1.0.2 (available in these AWS regions: ap-northeast-1,
|
1674
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1675
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
1676
|
-
# us-west-2):** ` 12.1.0.2.v5`
|
1677
1718
|
#
|
1678
|
-
# *
|
1679
|
-
#
|
1719
|
+
# * `12.1.0.1.v6` (supported for EE, SE1, and SE, in all AWS regions
|
1720
|
+
# except ap-south-1, ap-northeast-2)
|
1680
1721
|
#
|
1681
|
-
#
|
1722
|
+
# * `12.1.0.1.v5` (supported for EE, SE1, and SE, in all AWS regions
|
1723
|
+
# except ap-south-1, ap-northeast-2)
|
1682
1724
|
#
|
1683
|
-
# *
|
1684
|
-
# ap-
|
1685
|
-
# us-east-1, us-west-1, us-west-2):** ` 12.1.0.1.v6`
|
1725
|
+
# * `12.1.0.1.v4` (supported for EE, SE1, and SE, in all AWS regions
|
1726
|
+
# except ap-south-1, ap-northeast-2)
|
1686
1727
|
#
|
1687
|
-
# *
|
1688
|
-
# ap-
|
1689
|
-
# us-east-1, us-gov-west-1, us-west-1, us-west-2):** ` 12.1.0.1.v3 |
|
1690
|
-
# 12.1.0.1.v4 | 12.1.0.1.v5`
|
1728
|
+
# * `12.1.0.1.v3` (supported for EE, SE1, and SE, in all AWS regions
|
1729
|
+
# except ap-south-1, ap-northeast-2)
|
1691
1730
|
#
|
1692
|
-
# *
|
1693
|
-
# ap-
|
1694
|
-
# us-east-1, us-gov-west-1, us-gov-west-1, us-west-1, us-west-2):** `
|
1695
|
-
# 12.1.0.1.v1 | 12.1.0.1.v2`
|
1731
|
+
# * `12.1.0.1.v2` (supported for EE, SE1, and SE, in all AWS regions
|
1732
|
+
# except ap-south-1, ap-northeast-2)
|
1696
1733
|
#
|
1697
|
-
# *
|
1698
|
-
#
|
1699
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
1700
|
-
# us-west-2):** ` 11.2.0.4.v6 | 11.2.0.4.v9`
|
1734
|
+
# * `12.1.0.1.v1` (supported for EE, SE1, and SE, in all AWS regions
|
1735
|
+
# except ap-south-1, ap-northeast-2)
|
1701
1736
|
#
|
1702
|
-
#
|
1703
|
-
# 11.2.0.4.v3 | 11.2.0.4.v4 | 11.2.0.4.v5 | 11.2.0.4.v7 | 11.2.0.4.v8`
|
1737
|
+
# **Oracle 11g**
|
1704
1738
|
#
|
1705
|
-
#
|
1739
|
+
# * `11.2.0.4.v9` (supported for EE, SE1, and SE, in all AWS regions)
|
1706
1740
|
#
|
1707
|
-
# *
|
1708
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
1709
|
-
# us-east-1, us-west-1, us-west-2):** ` 12.1.0.1.v6`
|
1741
|
+
# * `11.2.0.4.v8` (supported for EE, SE1, and SE, in all AWS regions)
|
1710
1742
|
#
|
1711
|
-
# *
|
1712
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
1713
|
-
# us-east-1, us-gov-west-1, us-west-1, us-west-2):** ` 12.1.0.1.v3 |
|
1714
|
-
# 12.1.0.1.v4 | 12.1.0.1.v5`
|
1743
|
+
# * `11.2.0.4.v7` (supported for EE, SE1, and SE, in all AWS regions)
|
1715
1744
|
#
|
1716
|
-
# *
|
1717
|
-
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
1718
|
-
# us-east-1, us-gov-west-1, us-gov-west-1, us-west-1, us-west-2):** `
|
1719
|
-
# 12.1.0.1.v1 | 12.1.0.1.v2`
|
1745
|
+
# * `11.2.0.4.v6` (supported for EE, SE1, and SE, in all AWS regions)
|
1720
1746
|
#
|
1721
|
-
# *
|
1722
|
-
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1723
|
-
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
1724
|
-
# us-west-2):** ` 11.2.0.4.v6 | 11.2.0.4.v9`
|
1747
|
+
# * `11.2.0.4.v5` (supported for EE, SE1, and SE, in all AWS regions)
|
1725
1748
|
#
|
1726
|
-
# *
|
1727
|
-
#
|
1749
|
+
# * `11.2.0.4.v4` (supported for EE, SE1, and SE, in all AWS regions)
|
1750
|
+
#
|
1751
|
+
# * `11.2.0.4.v3` (supported for EE, SE1, and SE, in all AWS regions)
|
1752
|
+
#
|
1753
|
+
# * `11.2.0.4.v1` (supported for EE, SE1, and SE, in all AWS regions)
|
1728
1754
|
#
|
1729
1755
|
# **PostgreSQL**
|
1730
1756
|
#
|
1731
1757
|
# * **Version 9.5 (available in these AWS regions: ap-northeast-1,
|
1732
1758
|
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1733
1759
|
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
1734
|
-
# us-west-2):** ` 9.5.
|
1760
|
+
# us-west-2):** ` 9.5.4`
|
1761
|
+
#
|
1762
|
+
# * **Version 9.5 (available in these AWS regions: ap-northeast-1,
|
1763
|
+
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1764
|
+
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-east-2, us-west-1,
|
1765
|
+
# us-west-2):** ` 9.5.2`
|
1735
1766
|
#
|
1736
1767
|
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
1737
1768
|
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1738
1769
|
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-west-1,
|
1739
|
-
# us-west-2):** ` 9.4.
|
1770
|
+
# us-west-2):** ` 9.4.9`
|
1771
|
+
#
|
1772
|
+
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
1773
|
+
# ap-northeast-2, ap-south-1, ap-southeast-1, ap-southeast-2,
|
1774
|
+
# eu-central-1, eu-west-1, sa-east-1, us-east-1, us-east-2, us-west-1,
|
1775
|
+
# us-west-2):** ` 9.4.7`
|
1740
1776
|
#
|
1741
1777
|
# * **Version 9.4 (available in all AWS regions):** ` 9.4.5`
|
1742
1778
|
#
|
1743
1779
|
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
1744
1780
|
# ap-northeast-2, ap-southeast-1, ap-southeast-2, eu-central-1,
|
1745
1781
|
# eu-west-1, sa-east-1, us-east-1, us-gov-west-1, us-west-1,
|
1746
|
-
# us-west-2):** ` 9.4.
|
1782
|
+
# us-west-2):** ` 9.4.4`
|
1783
|
+
#
|
1784
|
+
# * **Version 9.4 (available in these AWS regions: ap-northeast-1,
|
1785
|
+
# ap-northeast-2, ap-southeast-1, ap-southeast-2, eu-central-1,
|
1786
|
+
# eu-west-1, sa-east-1, us-east-1, us-east-2, us-gov-west-1,
|
1787
|
+
# us-west-1, us-west-2):** ` 9.4.1`
|
1747
1788
|
#
|
1748
1789
|
# * **Version 9.3 (available in these AWS regions: ap-northeast-1,
|
1749
1790
|
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
@@ -1757,44 +1798,6 @@ module Aws
|
|
1757
1798
|
# * **Version 9.3 (available in these AWS regions: ap-northeast-1,
|
1758
1799
|
# ap-southeast-1, ap-southeast-2, eu-central-1, eu-west-1, sa-east-1,
|
1759
1800
|
# us-east-1, us-west-1, us-west-2):** ` 9.3.12 | 9.3.14`
|
1760
|
-
#
|
1761
|
-
# **Microsoft SQL Server Enterprise Edition (sqlserver-ee)**
|
1762
|
-
#
|
1763
|
-
# * **Version 11.00 (available in all AWS regions):** ` 11.00.2100.60.v1
|
1764
|
-
# | 11.00.5058.0.v1 | 11.00.6020.0.v1`
|
1765
|
-
#
|
1766
|
-
# * **Version 10.50 (available in all AWS regions):** ` 10.50.2789.0.v1
|
1767
|
-
# | 10.50.6000.34.v1 | 10.50.6529.0.v1`
|
1768
|
-
#
|
1769
|
-
# **Microsoft SQL Server Express Edition (sqlserver-ex)**
|
1770
|
-
#
|
1771
|
-
# * **Version 12.00 (available in all AWS regions):** ` 12.00.4422.0.v1`
|
1772
|
-
#
|
1773
|
-
# * **Version 11.00 (available in all AWS regions):** ` 11.00.2100.60.v1
|
1774
|
-
# | 11.00.5058.0.v1 | 11.00.6020.0.v1`
|
1775
|
-
#
|
1776
|
-
# * **Version 10.50 (available in all AWS regions):** ` 10.50.2789.0.v1
|
1777
|
-
# | 10.50.6000.34.v1 | 10.50.6529.0.v1`
|
1778
|
-
#
|
1779
|
-
# **Microsoft SQL Server Standard Edition (sqlserver-se)**
|
1780
|
-
#
|
1781
|
-
# * **Version 12.00 (available in all AWS regions):** ` 12.00.4422.0.v1`
|
1782
|
-
#
|
1783
|
-
# * **Version 11.00 (available in all AWS regions):** ` 11.00.2100.60.v1
|
1784
|
-
# | 11.00.5058.0.v1 | 11.00.6020.0.v1`
|
1785
|
-
#
|
1786
|
-
# * **Version 10.50 (available in all AWS regions):** ` 10.50.2789.0.v1
|
1787
|
-
# | 10.50.6000.34.v1 | 10.50.6529.0.v1`
|
1788
|
-
#
|
1789
|
-
# **Microsoft SQL Server Web Edition (sqlserver-web)**
|
1790
|
-
#
|
1791
|
-
# * **Version 12.00 (available in all AWS regions):** ` 12.00.4422.0.v1`
|
1792
|
-
#
|
1793
|
-
# * **Version 11.00 (available in all AWS regions):** ` 11.00.2100.60.v1
|
1794
|
-
# | 11.00.5058.0.v1 | 11.00.6020.0.v1`
|
1795
|
-
#
|
1796
|
-
# * **Version 10.50 (available in all AWS regions):** ` 10.50.2789.0.v1
|
1797
|
-
# | 10.50.6000.34.v1 | 10.50.6529.0.v1`
|
1798
1801
|
# @option params [Boolean] :auto_minor_version_upgrade
|
1799
1802
|
# Indicates that minor engine upgrades will be applied automatically to
|
1800
1803
|
# the DB instance during the maintenance window.
|
@@ -2900,6 +2903,7 @@ module Aws
|
|
2900
2903
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
2901
2904
|
# resp.db_cluster.endpoint #=> String
|
2902
2905
|
# resp.db_cluster.reader_endpoint #=> String
|
2906
|
+
# resp.db_cluster.multi_az #=> Boolean
|
2903
2907
|
# resp.db_cluster.engine #=> String
|
2904
2908
|
# resp.db_cluster.engine_version #=> String
|
2905
2909
|
# resp.db_cluster.latest_restorable_time #=> Time
|
@@ -2929,6 +2933,7 @@ module Aws
|
|
2929
2933
|
# resp.db_cluster.associated_roles #=> Array
|
2930
2934
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
2931
2935
|
# resp.db_cluster.associated_roles[0].status #=> String
|
2936
|
+
# resp.db_cluster.cluster_create_time #=> Time
|
2932
2937
|
# @overload delete_db_cluster(params = {})
|
2933
2938
|
# @param [Hash] params ({})
|
2934
2939
|
def delete_db_cluster(params = {}, options = {})
|
@@ -3849,7 +3854,15 @@ module Aws
|
|
3849
3854
|
#
|
3850
3855
|
# * Cannot end with a hyphen or contain two consecutive hyphens
|
3851
3856
|
# @option params [Array<Types::Filter>] :filters
|
3852
|
-
#
|
3857
|
+
# A filter that specifies one or more DB clusters to describe.
|
3858
|
+
#
|
3859
|
+
# Supported filters:
|
3860
|
+
#
|
3861
|
+
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
3862
|
+
# Amazon Resource Names (ARNs). The results list will only include
|
3863
|
+
# information about the DB clusters identified by these ARNs.
|
3864
|
+
#
|
3865
|
+
# ^
|
3853
3866
|
# @option params [Integer] :max_records
|
3854
3867
|
# The maximum number of records to include in the response. If more
|
3855
3868
|
# records exist than the specified `MaxRecords` value, a pagination
|
@@ -3898,6 +3911,7 @@ module Aws
|
|
3898
3911
|
# resp.db_clusters[0].earliest_restorable_time #=> Time
|
3899
3912
|
# resp.db_clusters[0].endpoint #=> String
|
3900
3913
|
# resp.db_clusters[0].reader_endpoint #=> String
|
3914
|
+
# resp.db_clusters[0].multi_az #=> Boolean
|
3901
3915
|
# resp.db_clusters[0].engine #=> String
|
3902
3916
|
# resp.db_clusters[0].engine_version #=> String
|
3903
3917
|
# resp.db_clusters[0].latest_restorable_time #=> Time
|
@@ -3927,6 +3941,7 @@ module Aws
|
|
3927
3941
|
# resp.db_clusters[0].associated_roles #=> Array
|
3928
3942
|
# resp.db_clusters[0].associated_roles[0].role_arn #=> String
|
3929
3943
|
# resp.db_clusters[0].associated_roles[0].status #=> String
|
3944
|
+
# resp.db_clusters[0].cluster_create_time #=> Time
|
3930
3945
|
# @overload describe_db_clusters(params = {})
|
3931
3946
|
# @param [Hash] params ({})
|
3932
3947
|
def describe_db_clusters(params = {}, options = {})
|
@@ -4044,7 +4059,15 @@ module Aws
|
|
4044
4059
|
#
|
4045
4060
|
# * Cannot end with a hyphen or contain two consecutive hyphens
|
4046
4061
|
# @option params [Array<Types::Filter>] :filters
|
4047
|
-
#
|
4062
|
+
# A filter that specifies one or more DB instances to describe.
|
4063
|
+
#
|
4064
|
+
# Supported filters:
|
4065
|
+
#
|
4066
|
+
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
4067
|
+
# Amazon Resource Names (ARNs). The results list will only include
|
4068
|
+
# information about the DB instances identified by these ARNs.
|
4069
|
+
#
|
4070
|
+
# ^
|
4048
4071
|
# @option params [Integer] :max_records
|
4049
4072
|
# The maximum number of records to include in the response. If more
|
4050
4073
|
# records exist than the specified `MaxRecords` value, a pagination
|
@@ -5271,12 +5294,14 @@ module Aws
|
|
5271
5294
|
#
|
5272
5295
|
# Supported filters:
|
5273
5296
|
#
|
5274
|
-
# * `db-
|
5297
|
+
# * `db-cluster-id` - Accepts DB cluster identifiers and DB cluster
|
5275
5298
|
# Amazon Resource Names (ARNs). The results list will only include
|
5276
|
-
# pending maintenance actions for the DB
|
5299
|
+
# pending maintenance actions for the DB clusters identified by these
|
5277
5300
|
# ARNs.
|
5278
5301
|
#
|
5279
|
-
#
|
5302
|
+
# * `db-instance-id` - Accepts DB instance identifiers and DB instance
|
5303
|
+
# ARNs. The results list will only include pending maintenance actions
|
5304
|
+
# for the DB instances identified by these ARNs.
|
5280
5305
|
# @option params [String] :marker
|
5281
5306
|
# An optional pagination token provided by a previous
|
5282
5307
|
# `DescribePendingMaintenanceActions` request. If this parameter is
|
@@ -5637,13 +5662,13 @@ module Aws
|
|
5637
5662
|
|
5638
5663
|
# Forces a failover for a DB cluster.
|
5639
5664
|
#
|
5640
|
-
# A failover for a DB cluster promotes one of the
|
5641
|
-
# the DB cluster to the
|
5642
|
-
#
|
5665
|
+
# A failover for a DB cluster promotes one of the Aurora Replicas
|
5666
|
+
# (read-only instances) in the DB cluster to be the primary instance
|
5667
|
+
# (the cluster writer).
|
5643
5668
|
#
|
5644
|
-
# Amazon Aurora will automatically fail over to
|
5669
|
+
# Amazon Aurora will automatically fail over to an Aurora Replica, if
|
5645
5670
|
# one exists, when the primary instance fails. You can force a failover
|
5646
|
-
# when you want to simulate a failure of a
|
5671
|
+
# when you want to simulate a failure of a primary instance for testing.
|
5647
5672
|
# Because each instance in a DB cluster has its own endpoint address,
|
5648
5673
|
# you will need to clean up and re-establish any existing connections
|
5649
5674
|
# that use those endpoint addresses when the failover is complete.
|
@@ -5695,6 +5720,7 @@ module Aws
|
|
5695
5720
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
5696
5721
|
# resp.db_cluster.endpoint #=> String
|
5697
5722
|
# resp.db_cluster.reader_endpoint #=> String
|
5723
|
+
# resp.db_cluster.multi_az #=> Boolean
|
5698
5724
|
# resp.db_cluster.engine #=> String
|
5699
5725
|
# resp.db_cluster.engine_version #=> String
|
5700
5726
|
# resp.db_cluster.latest_restorable_time #=> Time
|
@@ -5724,6 +5750,7 @@ module Aws
|
|
5724
5750
|
# resp.db_cluster.associated_roles #=> Array
|
5725
5751
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
5726
5752
|
# resp.db_cluster.associated_roles[0].status #=> String
|
5753
|
+
# resp.db_cluster.cluster_create_time #=> Time
|
5727
5754
|
# @overload failover_db_cluster(params = {})
|
5728
5755
|
# @param [Hash] params ({})
|
5729
5756
|
def failover_db_cluster(params = {}, options = {})
|
@@ -5939,6 +5966,7 @@ module Aws
|
|
5939
5966
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
5940
5967
|
# resp.db_cluster.endpoint #=> String
|
5941
5968
|
# resp.db_cluster.reader_endpoint #=> String
|
5969
|
+
# resp.db_cluster.multi_az #=> Boolean
|
5942
5970
|
# resp.db_cluster.engine #=> String
|
5943
5971
|
# resp.db_cluster.engine_version #=> String
|
5944
5972
|
# resp.db_cluster.latest_restorable_time #=> Time
|
@@ -5968,6 +5996,7 @@ module Aws
|
|
5968
5996
|
# resp.db_cluster.associated_roles #=> Array
|
5969
5997
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
5970
5998
|
# resp.db_cluster.associated_roles[0].status #=> String
|
5999
|
+
# resp.db_cluster.cluster_create_time #=> Time
|
5971
6000
|
# @overload modify_db_cluster(params = {})
|
5972
6001
|
# @param [Hash] params ({})
|
5973
6002
|
def modify_db_cluster(params = {}, options = {})
|
@@ -7299,6 +7328,7 @@ module Aws
|
|
7299
7328
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
7300
7329
|
# resp.db_cluster.endpoint #=> String
|
7301
7330
|
# resp.db_cluster.reader_endpoint #=> String
|
7331
|
+
# resp.db_cluster.multi_az #=> Boolean
|
7302
7332
|
# resp.db_cluster.engine #=> String
|
7303
7333
|
# resp.db_cluster.engine_version #=> String
|
7304
7334
|
# resp.db_cluster.latest_restorable_time #=> Time
|
@@ -7328,6 +7358,7 @@ module Aws
|
|
7328
7358
|
# resp.db_cluster.associated_roles #=> Array
|
7329
7359
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
7330
7360
|
# resp.db_cluster.associated_roles[0].status #=> String
|
7361
|
+
# resp.db_cluster.cluster_create_time #=> Time
|
7331
7362
|
# @overload promote_read_replica_db_cluster(params = {})
|
7332
7363
|
# @param [Hash] params ({})
|
7333
7364
|
def promote_read_replica_db_cluster(params = {}, options = {})
|
@@ -8002,6 +8033,7 @@ module Aws
|
|
8002
8033
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
8003
8034
|
# resp.db_cluster.endpoint #=> String
|
8004
8035
|
# resp.db_cluster.reader_endpoint #=> String
|
8036
|
+
# resp.db_cluster.multi_az #=> Boolean
|
8005
8037
|
# resp.db_cluster.engine #=> String
|
8006
8038
|
# resp.db_cluster.engine_version #=> String
|
8007
8039
|
# resp.db_cluster.latest_restorable_time #=> Time
|
@@ -8031,6 +8063,7 @@ module Aws
|
|
8031
8063
|
# resp.db_cluster.associated_roles #=> Array
|
8032
8064
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
8033
8065
|
# resp.db_cluster.associated_roles[0].status #=> String
|
8066
|
+
# resp.db_cluster.cluster_create_time #=> Time
|
8034
8067
|
# @overload restore_db_cluster_from_s3(params = {})
|
8035
8068
|
# @param [Hash] params ({})
|
8036
8069
|
def restore_db_cluster_from_s3(params = {}, options = {})
|
@@ -8163,6 +8196,7 @@ module Aws
|
|
8163
8196
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
8164
8197
|
# resp.db_cluster.endpoint #=> String
|
8165
8198
|
# resp.db_cluster.reader_endpoint #=> String
|
8199
|
+
# resp.db_cluster.multi_az #=> Boolean
|
8166
8200
|
# resp.db_cluster.engine #=> String
|
8167
8201
|
# resp.db_cluster.engine_version #=> String
|
8168
8202
|
# resp.db_cluster.latest_restorable_time #=> Time
|
@@ -8192,6 +8226,7 @@ module Aws
|
|
8192
8226
|
# resp.db_cluster.associated_roles #=> Array
|
8193
8227
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
8194
8228
|
# resp.db_cluster.associated_roles[0].status #=> String
|
8229
|
+
# resp.db_cluster.cluster_create_time #=> Time
|
8195
8230
|
# @overload restore_db_cluster_from_snapshot(params = {})
|
8196
8231
|
# @param [Hash] params ({})
|
8197
8232
|
def restore_db_cluster_from_snapshot(params = {}, options = {})
|
@@ -8339,6 +8374,7 @@ module Aws
|
|
8339
8374
|
# resp.db_cluster.earliest_restorable_time #=> Time
|
8340
8375
|
# resp.db_cluster.endpoint #=> String
|
8341
8376
|
# resp.db_cluster.reader_endpoint #=> String
|
8377
|
+
# resp.db_cluster.multi_az #=> Boolean
|
8342
8378
|
# resp.db_cluster.engine #=> String
|
8343
8379
|
# resp.db_cluster.engine_version #=> String
|
8344
8380
|
# resp.db_cluster.latest_restorable_time #=> Time
|
@@ -8368,6 +8404,7 @@ module Aws
|
|
8368
8404
|
# resp.db_cluster.associated_roles #=> Array
|
8369
8405
|
# resp.db_cluster.associated_roles[0].role_arn #=> String
|
8370
8406
|
# resp.db_cluster.associated_roles[0].status #=> String
|
8407
|
+
# resp.db_cluster.cluster_create_time #=> Time
|
8371
8408
|
# @overload restore_db_cluster_to_point_in_time(params = {})
|
8372
8409
|
# @param [Hash] params ({})
|
8373
8410
|
def restore_db_cluster_to_point_in_time(params = {}, options = {})
|
@@ -9073,7 +9110,7 @@ module Aws
|
|
9073
9110
|
params: params,
|
9074
9111
|
config: config)
|
9075
9112
|
context[:gem_name] = 'aws-sdk-rds'
|
9076
|
-
context[:gem_version] = '1.0.0.
|
9113
|
+
context[:gem_version] = '1.0.0.rc2'
|
9077
9114
|
Seahorse::Client::Request.new(handlers, context)
|
9078
9115
|
end
|
9079
9116
|
|