aws-sdk-rds 1.9.0 → 1.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 39fbdde9b75d571eb392fb3ce0445de7608ed621
4
- data.tar.gz: 8753756179b3937ca60a1a2439e4a558183c3dd6
3
+ metadata.gz: d5ad1346aed7805f75d7e9de7031760ec73e759b
4
+ data.tar.gz: 1895d37afaad3dd9935ae49a47ac7d947a25dfdd
5
5
  SHA512:
6
- metadata.gz: b1f4d8de821d098121e2f1814438ab255e16745db3c2e55ca5f65ec6e18cd6d6d35c69a0b2cb67148be5dfb069f10309eaa370181686aec9e065095bf172eefe
7
- data.tar.gz: 6a170772699a4256c485c18446d508f2183185ea5e8911bafffca1c27bd227083514f9936287fec51f1993db412f37dac5e5a74bfdaf295c00408e2bd483f9d5
6
+ metadata.gz: 7aa041ca4e478f2f1fbce64df55ff5c6917c007ed3665a1392ec494b531d6a273aab4acc62132fc09622d46bb34a5a6899f348a6c0eeb8ddcf57ef572675c5cb
7
+ data.tar.gz: 135eee2d44ab4d84ac36281c3f80ba22ec2a33433282d86a760d1278de8e6ccf8dae16b4a45c27c0ce17ef2ad9fed5a8fbaa0d9c8ccb15165632a77e4ff93780
data/lib/aws-sdk-rds.rb CHANGED
@@ -68,6 +68,6 @@ require_relative 'aws-sdk-rds/customizations'
68
68
  # @service
69
69
  module Aws::RDS
70
70
 
71
- GEM_VERSION = '1.9.0'
71
+ GEM_VERSION = '1.10.0'
72
72
 
73
73
  end
@@ -2039,7 +2039,7 @@ module Aws::RDS
2039
2039
  # Constraints to the amount of storage for each storage type are the
2040
2040
  # following:
2041
2041
  #
2042
- # * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
2042
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
2043
2043
  # 16384.
2044
2044
  #
2045
2045
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -2052,7 +2052,7 @@ module Aws::RDS
2052
2052
  # Constraints to the amount of storage for each storage type are the
2053
2053
  # following:
2054
2054
  #
2055
- # * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
2055
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
2056
2056
  # 16384.
2057
2057
  #
2058
2058
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -2065,7 +2065,7 @@ module Aws::RDS
2065
2065
  # Constraints to the amount of storage for each storage type are the
2066
2066
  # following:
2067
2067
  #
2068
- # * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
2068
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
2069
2069
  # 16384.
2070
2070
  #
2071
2071
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -2078,7 +2078,7 @@ module Aws::RDS
2078
2078
  # Constraints to the amount of storage for each storage type are the
2079
2079
  # following:
2080
2080
  #
2081
- # * General Purpose (SSD) storage (gp2): Must be an integer from 10 to
2081
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
2082
2082
  # 16384.
2083
2083
  #
2084
2084
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -2437,6 +2437,12 @@ module Aws::RDS
2437
2437
  #
2438
2438
  # **MariaDB**
2439
2439
  #
2440
+ # * `10.2.11` (supported in all AWS Regions)
2441
+ #
2442
+ # ^
2443
+ #
2444
+ #
2445
+ #
2440
2446
  # * `10.1.26` (supported in all AWS Regions)
2441
2447
  #
2442
2448
  # * `10.1.23` (supported in all AWS Regions)
@@ -2997,23 +3003,19 @@ module Aws::RDS
2997
3003
 
2998
3004
  # Creates a new DB instance that acts as a Read Replica for an existing
2999
3005
  # source DB instance. You can create a Read Replica for a DB instance
3000
- # running MySQL, MariaDB, or PostgreSQL.
3006
+ # running MySQL, MariaDB, or PostgreSQL. For more information, see
3007
+ # [Working with PostgreSQL, MySQL, and MariaDB Read Replicas][1].
3001
3008
  #
3002
- # <note markdown="1"> Amazon Aurora does not support this action. You must call the
3009
+ # Amazon Aurora does not support this action. You must call the
3003
3010
  # `CreateDBInstance` action to create a DB instance for an Aurora DB
3004
3011
  # cluster.
3005
3012
  #
3006
- # </note>
3007
- #
3008
- # All Read Replica DB instances are created as Single-AZ deployments
3009
- # with backups disabled. All other DB instance attributes (including DB
3010
- # security groups and DB parameter groups) are inherited from the source
3011
- # DB instance, except as specified below.
3012
- #
3013
- # The source DB instance must have backup retention enabled.
3013
+ # All Read Replica DB instances are created with backups disabled. All
3014
+ # other DB instance attributes (including DB security groups and DB
3015
+ # parameter groups) are inherited from the source DB instance, except as
3016
+ # specified below.
3014
3017
  #
3015
- # For more information, see [Working with PostgreSQL, MySQL, and MariaDB
3016
- # Read Replicas][1].
3018
+ # Your source DB instance must have backup retention enabled.
3017
3019
  #
3018
3020
  #
3019
3021
  #
@@ -3082,6 +3084,9 @@ module Aws::RDS
3082
3084
  #
3083
3085
  # Valid Values: `1150-65535`
3084
3086
  #
3087
+ # @option params [Boolean] :multi_az
3088
+ # Specifies whether the read replica is in a Multi-AZ deployment.
3089
+ #
3085
3090
  # @option params [Boolean] :auto_minor_version_upgrade
3086
3091
  # Indicates that minor engine upgrades are applied automatically to the
3087
3092
  # Read Replica during the maintenance window.
@@ -3329,6 +3334,7 @@ module Aws::RDS
3329
3334
  # db_instance_class: "String",
3330
3335
  # availability_zone: "String",
3331
3336
  # port: 1,
3337
+ # multi_az: false,
3332
3338
  # auto_minor_version_upgrade: false,
3333
3339
  # iops: 1,
3334
3340
  # option_group_name: "String",
@@ -8852,8 +8858,6 @@ module Aws::RDS
8852
8858
  # during the next maintenance window unless the `ApplyImmediately`
8853
8859
  # parameter is set to `true` for this request.
8854
8860
  #
8855
- # Constraints: Cannot be specified if the DB instance is a Read Replica.
8856
- #
8857
8861
  # @option params [String] :engine_version
8858
8862
  # The version number of the database engine to upgrade to. Changing this
8859
8863
  # parameter results in an outage and the change is applied during the
@@ -11681,8 +11685,9 @@ module Aws::RDS
11681
11685
  #
11682
11686
  # Default: The same as source
11683
11687
  #
11684
- # Constraint: Must be compatible with the engine of the source. You can
11685
- # restore a MariaDB 10.1 DB instance from a MySQL 5.6 snapshot.
11688
+ # Constraint: Must be compatible with the engine of the source. For
11689
+ # example, you can restore a MariaDB 10.1 DB instance from a MySQL 5.6
11690
+ # snapshot.
11686
11691
  #
11687
11692
  # Valid Values:
11688
11693
  #
@@ -13063,6 +13068,10 @@ module Aws::RDS
13063
13068
  # more information, see Stopping and Starting a DB instance in the AWS
13064
13069
  # RDS user guide.
13065
13070
  #
13071
+ # <note markdown="1"> This command does not apply to Aurora MySQL and Aurora PostgreSQL.
13072
+ #
13073
+ # </note>
13074
+ #
13066
13075
  # @option params [required, String] :db_instance_identifier
13067
13076
  # The user-supplied instance identifier.
13068
13077
  #
@@ -13186,6 +13195,10 @@ module Aws::RDS
13186
13195
  # For more information, see Stopping and Starting a DB instance in the
13187
13196
  # AWS RDS user guide.
13188
13197
  #
13198
+ # <note markdown="1"> This command does not apply to Aurora MySQL and Aurora PostgreSQL.
13199
+ #
13200
+ # </note>
13201
+ #
13189
13202
  # @option params [required, String] :db_instance_identifier
13190
13203
  # The user-supplied instance identifier.
13191
13204
  #
@@ -13320,7 +13333,7 @@ module Aws::RDS
13320
13333
  params: params,
13321
13334
  config: config)
13322
13335
  context[:gem_name] = 'aws-sdk-rds'
13323
- context[:gem_version] = '1.9.0'
13336
+ context[:gem_version] = '1.10.0'
13324
13337
  Seahorse::Client::Request.new(handlers, context)
13325
13338
  end
13326
13339
 
@@ -616,6 +616,7 @@ module Aws::RDS
616
616
  CreateDBInstanceReadReplicaMessage.add_member(:db_instance_class, Shapes::ShapeRef.new(shape: String, location_name: "DBInstanceClass"))
617
617
  CreateDBInstanceReadReplicaMessage.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, location_name: "AvailabilityZone"))
618
618
  CreateDBInstanceReadReplicaMessage.add_member(:port, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Port"))
619
+ CreateDBInstanceReadReplicaMessage.add_member(:multi_az, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "MultiAZ"))
619
620
  CreateDBInstanceReadReplicaMessage.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "AutoMinorVersionUpgrade"))
620
621
  CreateDBInstanceReadReplicaMessage.add_member(:iops, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "Iops"))
621
622
  CreateDBInstanceReadReplicaMessage.add_member(:option_group_name, Shapes::ShapeRef.new(shape: String, location_name: "OptionGroupName"))
@@ -694,7 +694,7 @@ module Aws::RDS
694
694
  # Constraints to the amount of storage for each storage type are the
695
695
  # following:
696
696
  #
697
- # * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
697
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
698
698
  # 16384.
699
699
  #
700
700
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -707,7 +707,7 @@ module Aws::RDS
707
707
  # Constraints to the amount of storage for each storage type are the
708
708
  # following:
709
709
  #
710
- # * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
710
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
711
711
  # 16384.
712
712
  #
713
713
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -720,7 +720,7 @@ module Aws::RDS
720
720
  # Constraints to the amount of storage for each storage type are the
721
721
  # following:
722
722
  #
723
- # * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
723
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
724
724
  # 16384.
725
725
  #
726
726
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -733,7 +733,7 @@ module Aws::RDS
733
733
  # Constraints to the amount of storage for each storage type are the
734
734
  # following:
735
735
  #
736
- # * General Purpose (SSD) storage (gp2): Must be an integer from 10 to
736
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
737
737
  # 16384.
738
738
  #
739
739
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -1077,6 +1077,12 @@ module Aws::RDS
1077
1077
  #
1078
1078
  # **MariaDB**
1079
1079
  #
1080
+ # * `10.2.11` (supported in all AWS Regions)
1081
+ #
1082
+ # ^
1083
+ #
1084
+ #
1085
+ #
1080
1086
  # * `10.1.26` (supported in all AWS Regions)
1081
1087
  #
1082
1088
  # * `10.1.23` (supported in all AWS Regions)
@@ -1451,6 +1457,7 @@ module Aws::RDS
1451
1457
  # db_instance_class: "String",
1452
1458
  # availability_zone: "String",
1453
1459
  # port: 1,
1460
+ # multi_az: false,
1454
1461
  # auto_minor_version_upgrade: false,
1455
1462
  # iops: 1,
1456
1463
  # option_group_name: "String",
@@ -1503,6 +1510,8 @@ module Aws::RDS
1503
1510
  # Default: Inherits from the source DB instance
1504
1511
  #
1505
1512
  # Valid Values: `1150-65535`
1513
+ # @option options [Boolean] :multi_az
1514
+ # Specifies whether the read replica is in a Multi-AZ deployment.
1506
1515
  # @option options [Boolean] :auto_minor_version_upgrade
1507
1516
  # Indicates that minor engine upgrades are applied automatically to the
1508
1517
  # Read Replica during the maintenance window.
@@ -2066,8 +2075,6 @@ module Aws::RDS
2066
2075
  # parameter does not result in an outage and the change is applied
2067
2076
  # during the next maintenance window unless the `ApplyImmediately`
2068
2077
  # parameter is set to `true` for this request.
2069
- #
2070
- # Constraints: Cannot be specified if the DB instance is a Read Replica.
2071
2078
  # @option options [String] :engine_version
2072
2079
  # The version number of the database engine to upgrade to. Changing this
2073
2080
  # parameter results in an outage and the change is applied during the
@@ -643,8 +643,9 @@ module Aws::RDS
643
643
  #
644
644
  # Default: The same as source
645
645
  #
646
- # Constraint: Must be compatible with the engine of the source. You can
647
- # restore a MariaDB 10.1 DB instance from a MySQL 5.6 snapshot.
646
+ # Constraint: Must be compatible with the engine of the source. For
647
+ # example, you can restore a MariaDB 10.1 DB instance from a MySQL 5.6
648
+ # snapshot.
648
649
  #
649
650
  # Valid Values:
650
651
  #
@@ -493,7 +493,7 @@ module Aws::RDS
493
493
  # Constraints to the amount of storage for each storage type are the
494
494
  # following:
495
495
  #
496
- # * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
496
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
497
497
  # 16384.
498
498
  #
499
499
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -506,7 +506,7 @@ module Aws::RDS
506
506
  # Constraints to the amount of storage for each storage type are the
507
507
  # following:
508
508
  #
509
- # * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
509
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
510
510
  # 16384.
511
511
  #
512
512
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -519,7 +519,7 @@ module Aws::RDS
519
519
  # Constraints to the amount of storage for each storage type are the
520
520
  # following:
521
521
  #
522
- # * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
522
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
523
523
  # 16384.
524
524
  #
525
525
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -532,7 +532,7 @@ module Aws::RDS
532
532
  # Constraints to the amount of storage for each storage type are the
533
533
  # following:
534
534
  #
535
- # * General Purpose (SSD) storage (gp2): Must be an integer from 10 to
535
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
536
536
  # 16384.
537
537
  #
538
538
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -876,6 +876,12 @@ module Aws::RDS
876
876
  #
877
877
  # **MariaDB**
878
878
  #
879
+ # * `10.2.11` (supported in all AWS Regions)
880
+ #
881
+ # ^
882
+ #
883
+ #
884
+ #
879
885
  # * `10.1.26` (supported in all AWS Regions)
880
886
  #
881
887
  # * `10.1.23` (supported in all AWS Regions)
@@ -1685,7 +1685,7 @@ module Aws::RDS
1685
1685
  # Constraints to the amount of storage for each storage type are the
1686
1686
  # following:
1687
1687
  #
1688
- # * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
1688
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
1689
1689
  # 16384.
1690
1690
  #
1691
1691
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -1698,7 +1698,7 @@ module Aws::RDS
1698
1698
  # Constraints to the amount of storage for each storage type are the
1699
1699
  # following:
1700
1700
  #
1701
- # * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
1701
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
1702
1702
  # 16384.
1703
1703
  #
1704
1704
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -1711,7 +1711,7 @@ module Aws::RDS
1711
1711
  # Constraints to the amount of storage for each storage type are the
1712
1712
  # following:
1713
1713
  #
1714
- # * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
1714
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
1715
1715
  # 16384.
1716
1716
  #
1717
1717
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -1724,7 +1724,7 @@ module Aws::RDS
1724
1724
  # Constraints to the amount of storage for each storage type are the
1725
1725
  # following:
1726
1726
  #
1727
- # * General Purpose (SSD) storage (gp2): Must be an integer from 10 to
1727
+ # * General Purpose (SSD) storage (gp2): Must be an integer from 20 to
1728
1728
  # 16384.
1729
1729
  #
1730
1730
  # * Provisioned IOPS storage (io1): Must be an integer from 100 to
@@ -2102,6 +2102,12 @@ module Aws::RDS
2102
2102
  #
2103
2103
  # **MariaDB**
2104
2104
  #
2105
+ # * `10.2.11` (supported in all AWS Regions)
2106
+ #
2107
+ # ^
2108
+ #
2109
+ #
2110
+ #
2105
2111
  # * `10.1.26` (supported in all AWS Regions)
2106
2112
  #
2107
2113
  # * `10.1.23` (supported in all AWS Regions)
@@ -2570,6 +2576,7 @@ module Aws::RDS
2570
2576
  # db_instance_class: "String",
2571
2577
  # availability_zone: "String",
2572
2578
  # port: 1,
2579
+ # multi_az: false,
2573
2580
  # auto_minor_version_upgrade: false,
2574
2581
  # iops: 1,
2575
2582
  # option_group_name: "String",
@@ -2664,6 +2671,10 @@ module Aws::RDS
2664
2671
  # Valid Values: `1150-65535`
2665
2672
  # @return [Integer]
2666
2673
  #
2674
+ # @!attribute [rw] multi_az
2675
+ # Specifies whether the read replica is in a Multi-AZ deployment.
2676
+ # @return [Boolean]
2677
+ #
2667
2678
  # @!attribute [rw] auto_minor_version_upgrade
2668
2679
  # Indicates that minor engine upgrades are applied automatically to
2669
2680
  # the Read Replica during the maintenance window.
@@ -2900,6 +2911,7 @@ module Aws::RDS
2900
2911
  :db_instance_class,
2901
2912
  :availability_zone,
2902
2913
  :port,
2914
+ :multi_az,
2903
2915
  :auto_minor_version_upgrade,
2904
2916
  :iops,
2905
2917
  :option_group_name,
@@ -8587,9 +8599,6 @@ module Aws::RDS
8587
8599
  # parameter does not result in an outage and the change is applied
8588
8600
  # during the next maintenance window unless the `ApplyImmediately`
8589
8601
  # parameter is set to `true` for this request.
8590
- #
8591
- # Constraints: Cannot be specified if the DB instance is a Read
8592
- # Replica.
8593
8602
  # @return [Boolean]
8594
8603
  #
8595
8604
  # @!attribute [rw] engine_version
@@ -11737,8 +11746,9 @@ module Aws::RDS
11737
11746
  #
11738
11747
  # Default: The same as source
11739
11748
  #
11740
- # Constraint: Must be compatible with the engine of the source. You
11741
- # can restore a MariaDB 10.1 DB instance from a MySQL 5.6 snapshot.
11749
+ # Constraint: Must be compatible with the engine of the source. For
11750
+ # example, you can restore a MariaDB 10.1 DB instance from a MySQL 5.6
11751
+ # snapshot.
11742
11752
  #
11743
11753
  # Valid Values:
11744
11754
  #
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.9.0
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-02 00:00:00.000000000 Z
11
+ date: 2018-01-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4