aws-sdk-rds 1.8.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +86 -125
- data/lib/aws-sdk-rds/db_cluster.rb +3 -2
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/db_instance.rb +69 -105
- data/lib/aws-sdk-rds/db_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/resource.rb +30 -13
- data/lib/aws-sdk-rds/types.rb +75 -112
- 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: 39fbdde9b75d571eb392fb3ce0445de7608ed621
|
4
|
+
data.tar.gz: 8753756179b3937ca60a1a2439e4a558183c3dd6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1f4d8de821d098121e2f1814438ab255e16745db3c2e55ca5f65ec6e18cd6d6d35c69a0b2cb67148be5dfb069f10309eaa370181686aec9e065095bf172eefe
|
7
|
+
data.tar.gz: 6a170772699a4256c485c18446d508f2183185ea5e8911bafffca1c27bd227083514f9936287fec51f1993db412f37dac5e5a74bfdaf295c00408e2bd483f9d5
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -1425,7 +1425,8 @@ module Aws::RDS
|
|
1425
1425
|
# The port number on which the instances in the DB cluster accept
|
1426
1426
|
# connections.
|
1427
1427
|
#
|
1428
|
-
# Default: `3306`
|
1428
|
+
# Default: `3306` if engine is set as aurora or `5432` if set to
|
1429
|
+
# aurora-postgresql.
|
1429
1430
|
#
|
1430
1431
|
# @option params [String] :master_username
|
1431
1432
|
# The name of the master user for the DB cluster.
|
@@ -2023,8 +2024,7 @@ module Aws::RDS
|
|
2023
2024
|
# Example: `mydbinstance`
|
2024
2025
|
#
|
2025
2026
|
# @option params [Integer] :allocated_storage
|
2026
|
-
# The amount of storage (in
|
2027
|
-
# DB instance.
|
2027
|
+
# The amount of storage (in gibibytes) to allocate for the DB instance.
|
2028
2028
|
#
|
2029
2029
|
# Type: Integer
|
2030
2030
|
#
|
@@ -2040,9 +2040,10 @@ module Aws::RDS
|
|
2040
2040
|
# following:
|
2041
2041
|
#
|
2042
2042
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
|
2043
|
-
#
|
2043
|
+
# 16384.
|
2044
2044
|
#
|
2045
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2045
|
+
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2046
|
+
# 16384.
|
2046
2047
|
#
|
2047
2048
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
2048
2049
|
#
|
@@ -2052,9 +2053,10 @@ module Aws::RDS
|
|
2052
2053
|
# following:
|
2053
2054
|
#
|
2054
2055
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
|
2055
|
-
#
|
2056
|
+
# 16384.
|
2056
2057
|
#
|
2057
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2058
|
+
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2059
|
+
# 16384.
|
2058
2060
|
#
|
2059
2061
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
2060
2062
|
#
|
@@ -2064,9 +2066,10 @@ module Aws::RDS
|
|
2064
2066
|
# following:
|
2065
2067
|
#
|
2066
2068
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
|
2067
|
-
#
|
2069
|
+
# 16384.
|
2068
2070
|
#
|
2069
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2071
|
+
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2072
|
+
# 16384.
|
2070
2073
|
#
|
2071
2074
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
2072
2075
|
#
|
@@ -2076,9 +2079,10 @@ module Aws::RDS
|
|
2076
2079
|
# following:
|
2077
2080
|
#
|
2078
2081
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 10 to
|
2079
|
-
#
|
2082
|
+
# 16384.
|
2080
2083
|
#
|
2081
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2084
|
+
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
2085
|
+
# 16384.
|
2082
2086
|
#
|
2083
2087
|
# * Magnetic storage (standard): Must be an integer from 10 to 3072.
|
2084
2088
|
#
|
@@ -2433,6 +2437,8 @@ module Aws::RDS
|
|
2433
2437
|
#
|
2434
2438
|
# **MariaDB**
|
2435
2439
|
#
|
2440
|
+
# * `10.1.26` (supported in all AWS Regions)
|
2441
|
+
#
|
2436
2442
|
# * `10.1.23` (supported in all AWS Regions)
|
2437
2443
|
#
|
2438
2444
|
# * `10.1.19` (supported in all AWS Regions)
|
@@ -2441,6 +2447,8 @@ module Aws::RDS
|
|
2441
2447
|
#
|
2442
2448
|
#
|
2443
2449
|
#
|
2450
|
+
# * `10.0.32` (supported in all AWS Regions)
|
2451
|
+
#
|
2444
2452
|
# * `10.0.31` (supported in all AWS Regions)
|
2445
2453
|
#
|
2446
2454
|
# * `10.0.28` (supported in all AWS Regions)
|
@@ -2450,8 +2458,17 @@ module Aws::RDS
|
|
2450
2458
|
# * `10.0.17` (supported in all AWS Regions except us-east-2,
|
2451
2459
|
# ca-central-1, eu-west-2)
|
2452
2460
|
#
|
2461
|
+
# **Microsoft SQL Server 2017**
|
2462
|
+
#
|
2463
|
+
# * `14.00.1000.169.v1` (supported for all editions, and all AWS
|
2464
|
+
# Regions)
|
2465
|
+
#
|
2466
|
+
# ^
|
2467
|
+
#
|
2453
2468
|
# **Microsoft SQL Server 2016**
|
2454
2469
|
#
|
2470
|
+
# * `13.00.4451.0.v1` (supported for all editions, and all AWS Regions)
|
2471
|
+
#
|
2455
2472
|
# * `13.00.4422.0.v1` (supported for all editions, and all AWS Regions)
|
2456
2473
|
#
|
2457
2474
|
# * `13.00.2164.0.v1` (supported for all editions, and all AWS Regions)
|
@@ -2602,9 +2619,9 @@ module Aws::RDS
|
|
2602
2619
|
# valid Iops values, see see [Amazon RDS Provisioned IOPS Storage to
|
2603
2620
|
# Improve Performance][1].
|
2604
2621
|
#
|
2605
|
-
# Constraints: Must be a multiple between
|
2622
|
+
# Constraints: Must be a multiple between 1 and 50 of the storage amount
|
2606
2623
|
# for the DB instance. Must also be an integer multiple of 1000. For
|
2607
|
-
# example, if the size of your DB instance is 500
|
2624
|
+
# example, if the size of your DB instance is 500 GiB, then your `Iops`
|
2608
2625
|
# value can be 2000, 3000, 4000, or 5000.
|
2609
2626
|
#
|
2610
2627
|
#
|
@@ -8604,79 +8621,16 @@ module Aws::RDS
|
|
8604
8621
|
# ^
|
8605
8622
|
#
|
8606
8623
|
# @option params [Integer] :allocated_storage
|
8607
|
-
# The new storage
|
8608
|
-
#
|
8609
|
-
# maintenance window unless `ApplyImmediately` is set to `true` for this
|
8610
|
-
# request.
|
8611
|
-
#
|
8612
|
-
# **MySQL**
|
8613
|
-
#
|
8614
|
-
# Default: Uses existing setting
|
8615
|
-
#
|
8616
|
-
# Valid Values: 5-6144
|
8617
|
-
#
|
8618
|
-
# Constraints: Value supplied must be at least 10% greater than the
|
8619
|
-
# current value. Values that are not at least 10% greater than the
|
8620
|
-
# existing value are rounded up so that they are 10% greater than the
|
8621
|
-
# current value.
|
8622
|
-
#
|
8623
|
-
# Type: Integer
|
8624
|
-
#
|
8625
|
-
# **MariaDB**
|
8626
|
-
#
|
8627
|
-
# Default: Uses existing setting
|
8628
|
-
#
|
8629
|
-
# Valid Values: 5-6144
|
8630
|
-
#
|
8631
|
-
# Constraints: Value supplied must be at least 10% greater than the
|
8632
|
-
# current value. Values that are not at least 10% greater than the
|
8633
|
-
# existing value are rounded up so that they are 10% greater than the
|
8634
|
-
# current value.
|
8635
|
-
#
|
8636
|
-
# Type: Integer
|
8637
|
-
#
|
8638
|
-
# **PostgreSQL**
|
8639
|
-
#
|
8640
|
-
# Default: Uses existing setting
|
8641
|
-
#
|
8642
|
-
# Valid Values: 5-6144
|
8643
|
-
#
|
8644
|
-
# Constraints: Value supplied must be at least 10% greater than the
|
8645
|
-
# current value. Values that are not at least 10% greater than the
|
8646
|
-
# existing value are rounded up so that they are 10% greater than the
|
8647
|
-
# current value.
|
8648
|
-
#
|
8649
|
-
# Type: Integer
|
8650
|
-
#
|
8651
|
-
# **Oracle**
|
8652
|
-
#
|
8653
|
-
# Default: Uses existing setting
|
8654
|
-
#
|
8655
|
-
# Valid Values: 10-6144
|
8656
|
-
#
|
8657
|
-
# Constraints: Value supplied must be at least 10% greater than the
|
8658
|
-
# current value. Values that are not at least 10% greater than the
|
8659
|
-
# existing value are rounded up so that they are 10% greater than the
|
8660
|
-
# current value.
|
8661
|
-
#
|
8662
|
-
# **SQL Server**
|
8624
|
+
# The new amount of storage (in gibibytes) to allocate for the DB
|
8625
|
+
# instance.
|
8663
8626
|
#
|
8664
|
-
#
|
8627
|
+
# For MariaDB, MySQL, Oracle, and PostgreSQL, the value supplied must be
|
8628
|
+
# at least 10% greater than the current value. Values that are not at
|
8629
|
+
# least 10% greater than the existing value are rounded up so that they
|
8630
|
+
# are 10% greater than the current value.
|
8665
8631
|
#
|
8666
|
-
#
|
8667
|
-
#
|
8668
|
-
# standard storage, the process can take time. The duration of the
|
8669
|
-
# migration depends on several factors such as database load, storage
|
8670
|
-
# size, storage type (standard or Provisioned IOPS), amount of IOPS
|
8671
|
-
# provisioned (if any), and the number of prior scale storage
|
8672
|
-
# operations. Typical migration times are under 24 hours, but the
|
8673
|
-
# process can take up to several days in some cases. During the
|
8674
|
-
# migration, the DB instance is available for use, but might experience
|
8675
|
-
# performance degradation. While the migration takes place, nightly
|
8676
|
-
# backups for the instance are suspended. No other Amazon RDS operations
|
8677
|
-
# can take place for the instance, including modifying the instance,
|
8678
|
-
# rebooting the instance, deleting the instance, creating a Read Replica
|
8679
|
-
# for the instance, and creating a DB snapshot of the instance.
|
8632
|
+
# For the valid values for allocated storage for each engine, see
|
8633
|
+
# CreateDBInstance.
|
8680
8634
|
#
|
8681
8635
|
# @option params [String] :db_instance_class
|
8682
8636
|
# The new compute and memory capacity of the DB instance, for example,
|
@@ -8939,25 +8893,14 @@ module Aws::RDS
|
|
8939
8893
|
#
|
8940
8894
|
# @option params [Integer] :iops
|
8941
8895
|
# The new Provisioned IOPS (I/O operations per second) value for the RDS
|
8942
|
-
# instance.
|
8943
|
-
# change is applied during the next maintenance window unless the
|
8944
|
-
# `ApplyImmediately` parameter is set to `true` for this request.
|
8945
|
-
#
|
8946
|
-
# Default: Uses existing setting
|
8947
|
-
#
|
8948
|
-
# Constraints: Value supplied must be at least 10% greater than the
|
8949
|
-
# current value. Values that are not at least 10% greater than the
|
8950
|
-
# existing value are rounded up so that they are 10% greater than the
|
8951
|
-
# current value. If you are migrating from Provisioned IOPS to standard
|
8952
|
-
# storage, set this value to 0. The DB instance will require a reboot
|
8953
|
-
# for the change in storage type to take effect.
|
8954
|
-
#
|
8955
|
-
# **SQL Server**
|
8956
|
-
#
|
8957
|
-
# Setting the IOPS value for the SQL Server database engine is not
|
8958
|
-
# supported.
|
8896
|
+
# instance.
|
8959
8897
|
#
|
8960
|
-
#
|
8898
|
+
# Changing this setting does not result in an outage and the change is
|
8899
|
+
# applied during the next maintenance window unless the
|
8900
|
+
# `ApplyImmediately` parameter is set to `true` for this request. If you
|
8901
|
+
# are migrating from Provisioned IOPS to standard storage, set this
|
8902
|
+
# value to 0. The DB instance will require a reboot for the change in
|
8903
|
+
# storage type to take effect.
|
8961
8904
|
#
|
8962
8905
|
# If you choose to migrate your DB instance from using standard storage
|
8963
8906
|
# to using Provisioned IOPS, or from using Provisioned IOPS to using
|
@@ -8974,6 +8917,13 @@ module Aws::RDS
|
|
8974
8917
|
# rebooting the instance, deleting the instance, creating a Read Replica
|
8975
8918
|
# for the instance, and creating a DB snapshot of the instance.
|
8976
8919
|
#
|
8920
|
+
# Constraints: For MariaDB, MySQL, Oracle, and PostgreSQL, the value
|
8921
|
+
# supplied must be at least 10% greater than the current value. Values
|
8922
|
+
# that are not at least 10% greater than the existing value are rounded
|
8923
|
+
# up so that they are 10% greater than the current value.
|
8924
|
+
#
|
8925
|
+
# Default: Uses existing setting
|
8926
|
+
#
|
8977
8927
|
# @option params [String] :option_group_name
|
8978
8928
|
# Indicates that the DB instance should be associated with the specified
|
8979
8929
|
# option group. Changing this parameter does not result in an outage
|
@@ -9009,10 +8959,25 @@ module Aws::RDS
|
|
9009
8959
|
# @option params [String] :storage_type
|
9010
8960
|
# Specifies the storage type to be associated with the DB instance.
|
9011
8961
|
#
|
9012
|
-
#
|
8962
|
+
# If you specify Provisioned IOPS (`io1`), you must also include a value
|
8963
|
+
# for the `Iops` parameter.
|
9013
8964
|
#
|
9014
|
-
# If you
|
9015
|
-
#
|
8965
|
+
# If you choose to migrate your DB instance from using standard storage
|
8966
|
+
# to using Provisioned IOPS, or from using Provisioned IOPS to using
|
8967
|
+
# standard storage, the process can take time. The duration of the
|
8968
|
+
# migration depends on several factors such as database load, storage
|
8969
|
+
# size, storage type (standard or Provisioned IOPS), amount of IOPS
|
8970
|
+
# provisioned (if any), and the number of prior scale storage
|
8971
|
+
# operations. Typical migration times are under 24 hours, but the
|
8972
|
+
# process can take up to several days in some cases. During the
|
8973
|
+
# migration, the DB instance is available for use, but might experience
|
8974
|
+
# performance degradation. While the migration takes place, nightly
|
8975
|
+
# backups for the instance are suspended. No other Amazon RDS operations
|
8976
|
+
# can take place for the instance, including modifying the instance,
|
8977
|
+
# rebooting the instance, deleting the instance, creating a Read Replica
|
8978
|
+
# for the instance, and creating a DB snapshot of the instance.
|
8979
|
+
#
|
8980
|
+
# Valid values: `standard | gp2 | io1`
|
9016
8981
|
#
|
9017
8982
|
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
9018
8983
|
# `standard`
|
@@ -10298,25 +10263,21 @@ module Aws::RDS
|
|
10298
10263
|
req.send_request(options)
|
10299
10264
|
end
|
10300
10265
|
|
10301
|
-
#
|
10302
|
-
#
|
10303
|
-
# parameter group
|
10304
|
-
#
|
10305
|
-
#
|
10306
|
-
#
|
10307
|
-
#
|
10308
|
-
#
|
10309
|
-
#
|
10310
|
-
#
|
10311
|
-
#
|
10312
|
-
#
|
10313
|
-
#
|
10314
|
-
#
|
10315
|
-
#
|
10316
|
-
# engine's crash recovery process. To improve the reboot time, we
|
10317
|
-
# recommend that you reduce database activities as much as possible
|
10318
|
-
# during the reboot process to reduce rollback activity for in-transit
|
10319
|
-
# transactions.
|
10266
|
+
# You might need to reboot your DB instance, usually for maintenance
|
10267
|
+
# reasons. For example, if you make certain modifications, or if you
|
10268
|
+
# change the DB parameter group associated with the DB instance, you
|
10269
|
+
# must reboot the instance for the changes to take effect.
|
10270
|
+
#
|
10271
|
+
# Rebooting a DB instance restarts the database engine service.
|
10272
|
+
# Rebooting a DB instance results in a momentary outage, during which
|
10273
|
+
# the DB instance status is set to rebooting.
|
10274
|
+
#
|
10275
|
+
# For more information about rebooting, see [Rebooting a DB
|
10276
|
+
# Instance][1].
|
10277
|
+
#
|
10278
|
+
#
|
10279
|
+
#
|
10280
|
+
# [1]: http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_RebootInstance.html
|
10320
10281
|
#
|
10321
10282
|
# @option params [required, String] :db_instance_identifier
|
10322
10283
|
# The DB instance identifier. This parameter is stored as a lowercase
|
@@ -13359,7 +13320,7 @@ module Aws::RDS
|
|
13359
13320
|
params: params,
|
13360
13321
|
config: config)
|
13361
13322
|
context[:gem_name] = 'aws-sdk-rds'
|
13362
|
-
context[:gem_version] = '1.
|
13323
|
+
context[:gem_version] = '1.9.0'
|
13363
13324
|
Seahorse::Client::Request.new(handlers, context)
|
13364
13325
|
end
|
13365
13326
|
|
@@ -32,7 +32,7 @@ module Aws::RDS
|
|
32
32
|
alias :db_cluster_identifier :id
|
33
33
|
|
34
34
|
# For all database engines except Amazon Aurora, `AllocatedStorage`
|
35
|
-
# specifies the allocated storage size in
|
35
|
+
# specifies the allocated storage size in gibibytes (GiB). For Aurora,
|
36
36
|
# `AllocatedStorage` always returns 1, because Aurora DB cluster storage
|
37
37
|
# size is not fixed, but instead automatically adjusts as needed.
|
38
38
|
# @return [Integer]
|
@@ -498,7 +498,8 @@ module Aws::RDS
|
|
498
498
|
# The port number on which the instances in the DB cluster accept
|
499
499
|
# connections.
|
500
500
|
#
|
501
|
-
# Default: `3306`
|
501
|
+
# Default: `3306` if engine is set as aurora or `5432` if set to
|
502
|
+
# aurora-postgresql.
|
502
503
|
# @option options [String] :master_username
|
503
504
|
# The name of the master user for the DB cluster.
|
504
505
|
#
|
@@ -86,7 +86,7 @@ module Aws::RDS
|
|
86
86
|
data[:endpoint]
|
87
87
|
end
|
88
88
|
|
89
|
-
# Specifies the allocated storage size specified in
|
89
|
+
# Specifies the allocated storage size specified in gibibytes.
|
90
90
|
# @return [Integer]
|
91
91
|
def allocated_storage
|
92
92
|
data[:allocated_storage]
|
@@ -679,8 +679,7 @@ module Aws::RDS
|
|
679
679
|
#
|
680
680
|
# * Cannot be a word reserved by the specified database engine
|
681
681
|
# @option options [Integer] :allocated_storage
|
682
|
-
# The amount of storage (in
|
683
|
-
# DB instance.
|
682
|
+
# The amount of storage (in gibibytes) to allocate for the DB instance.
|
684
683
|
#
|
685
684
|
# Type: Integer
|
686
685
|
#
|
@@ -696,9 +695,10 @@ module Aws::RDS
|
|
696
695
|
# following:
|
697
696
|
#
|
698
697
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
|
699
|
-
#
|
698
|
+
# 16384.
|
700
699
|
#
|
701
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
700
|
+
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
701
|
+
# 16384.
|
702
702
|
#
|
703
703
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
704
704
|
#
|
@@ -708,9 +708,10 @@ module Aws::RDS
|
|
708
708
|
# following:
|
709
709
|
#
|
710
710
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
|
711
|
-
#
|
711
|
+
# 16384.
|
712
712
|
#
|
713
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
713
|
+
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
714
|
+
# 16384.
|
714
715
|
#
|
715
716
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
716
717
|
#
|
@@ -720,9 +721,10 @@ module Aws::RDS
|
|
720
721
|
# following:
|
721
722
|
#
|
722
723
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
|
723
|
-
#
|
724
|
+
# 16384.
|
724
725
|
#
|
725
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
726
|
+
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
727
|
+
# 16384.
|
726
728
|
#
|
727
729
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
728
730
|
#
|
@@ -732,9 +734,10 @@ module Aws::RDS
|
|
732
734
|
# following:
|
733
735
|
#
|
734
736
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 10 to
|
735
|
-
#
|
737
|
+
# 16384.
|
736
738
|
#
|
737
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
739
|
+
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
740
|
+
# 16384.
|
738
741
|
#
|
739
742
|
# * Magnetic storage (standard): Must be an integer from 10 to 3072.
|
740
743
|
#
|
@@ -1074,6 +1077,8 @@ module Aws::RDS
|
|
1074
1077
|
#
|
1075
1078
|
# **MariaDB**
|
1076
1079
|
#
|
1080
|
+
# * `10.1.26` (supported in all AWS Regions)
|
1081
|
+
#
|
1077
1082
|
# * `10.1.23` (supported in all AWS Regions)
|
1078
1083
|
#
|
1079
1084
|
# * `10.1.19` (supported in all AWS Regions)
|
@@ -1082,6 +1087,8 @@ module Aws::RDS
|
|
1082
1087
|
#
|
1083
1088
|
#
|
1084
1089
|
#
|
1090
|
+
# * `10.0.32` (supported in all AWS Regions)
|
1091
|
+
#
|
1085
1092
|
# * `10.0.31` (supported in all AWS Regions)
|
1086
1093
|
#
|
1087
1094
|
# * `10.0.28` (supported in all AWS Regions)
|
@@ -1091,8 +1098,17 @@ module Aws::RDS
|
|
1091
1098
|
# * `10.0.17` (supported in all AWS Regions except us-east-2,
|
1092
1099
|
# ca-central-1, eu-west-2)
|
1093
1100
|
#
|
1101
|
+
# **Microsoft SQL Server 2017**
|
1102
|
+
#
|
1103
|
+
# * `14.00.1000.169.v1` (supported for all editions, and all AWS
|
1104
|
+
# Regions)
|
1105
|
+
#
|
1106
|
+
# ^
|
1107
|
+
#
|
1094
1108
|
# **Microsoft SQL Server 2016**
|
1095
1109
|
#
|
1110
|
+
# * `13.00.4451.0.v1` (supported for all editions, and all AWS Regions)
|
1111
|
+
#
|
1096
1112
|
# * `13.00.4422.0.v1` (supported for all editions, and all AWS Regions)
|
1097
1113
|
#
|
1098
1114
|
# * `13.00.2164.0.v1` (supported for all editions, and all AWS Regions)
|
@@ -1240,9 +1256,9 @@ module Aws::RDS
|
|
1240
1256
|
# valid Iops values, see see [Amazon RDS Provisioned IOPS Storage to
|
1241
1257
|
# Improve Performance][1].
|
1242
1258
|
#
|
1243
|
-
# Constraints: Must be a multiple between
|
1259
|
+
# Constraints: Must be a multiple between 1 and 50 of the storage amount
|
1244
1260
|
# for the DB instance. Must also be an integer multiple of 1000. For
|
1245
|
-
# example, if the size of your DB instance is 500
|
1261
|
+
# example, if the size of your DB instance is 500 GiB, then your `Iops`
|
1246
1262
|
# value can be 2000, 3000, 4000, or 5000.
|
1247
1263
|
#
|
1248
1264
|
#
|
@@ -1831,79 +1847,16 @@ module Aws::RDS
|
|
1831
1847
|
# })
|
1832
1848
|
# @param [Hash] options ({})
|
1833
1849
|
# @option options [Integer] :allocated_storage
|
1834
|
-
# The new storage
|
1835
|
-
#
|
1836
|
-
# maintenance window unless `ApplyImmediately` is set to `true` for this
|
1837
|
-
# request.
|
1838
|
-
#
|
1839
|
-
# **MySQL**
|
1840
|
-
#
|
1841
|
-
# Default: Uses existing setting
|
1842
|
-
#
|
1843
|
-
# Valid Values: 5-6144
|
1844
|
-
#
|
1845
|
-
# Constraints: Value supplied must be at least 10% greater than the
|
1846
|
-
# current value. Values that are not at least 10% greater than the
|
1847
|
-
# existing value are rounded up so that they are 10% greater than the
|
1848
|
-
# current value.
|
1849
|
-
#
|
1850
|
-
# Type: Integer
|
1851
|
-
#
|
1852
|
-
# **MariaDB**
|
1853
|
-
#
|
1854
|
-
# Default: Uses existing setting
|
1855
|
-
#
|
1856
|
-
# Valid Values: 5-6144
|
1857
|
-
#
|
1858
|
-
# Constraints: Value supplied must be at least 10% greater than the
|
1859
|
-
# current value. Values that are not at least 10% greater than the
|
1860
|
-
# existing value are rounded up so that they are 10% greater than the
|
1861
|
-
# current value.
|
1862
|
-
#
|
1863
|
-
# Type: Integer
|
1864
|
-
#
|
1865
|
-
# **PostgreSQL**
|
1866
|
-
#
|
1867
|
-
# Default: Uses existing setting
|
1868
|
-
#
|
1869
|
-
# Valid Values: 5-6144
|
1870
|
-
#
|
1871
|
-
# Constraints: Value supplied must be at least 10% greater than the
|
1872
|
-
# current value. Values that are not at least 10% greater than the
|
1873
|
-
# existing value are rounded up so that they are 10% greater than the
|
1874
|
-
# current value.
|
1875
|
-
#
|
1876
|
-
# Type: Integer
|
1877
|
-
#
|
1878
|
-
# **Oracle**
|
1879
|
-
#
|
1880
|
-
# Default: Uses existing setting
|
1881
|
-
#
|
1882
|
-
# Valid Values: 10-6144
|
1883
|
-
#
|
1884
|
-
# Constraints: Value supplied must be at least 10% greater than the
|
1885
|
-
# current value. Values that are not at least 10% greater than the
|
1886
|
-
# existing value are rounded up so that they are 10% greater than the
|
1887
|
-
# current value.
|
1888
|
-
#
|
1889
|
-
# **SQL Server**
|
1850
|
+
# The new amount of storage (in gibibytes) to allocate for the DB
|
1851
|
+
# instance.
|
1890
1852
|
#
|
1891
|
-
#
|
1853
|
+
# For MariaDB, MySQL, Oracle, and PostgreSQL, the value supplied must be
|
1854
|
+
# at least 10% greater than the current value. Values that are not at
|
1855
|
+
# least 10% greater than the existing value are rounded up so that they
|
1856
|
+
# are 10% greater than the current value.
|
1892
1857
|
#
|
1893
|
-
#
|
1894
|
-
#
|
1895
|
-
# standard storage, the process can take time. The duration of the
|
1896
|
-
# migration depends on several factors such as database load, storage
|
1897
|
-
# size, storage type (standard or Provisioned IOPS), amount of IOPS
|
1898
|
-
# provisioned (if any), and the number of prior scale storage
|
1899
|
-
# operations. Typical migration times are under 24 hours, but the
|
1900
|
-
# process can take up to several days in some cases. During the
|
1901
|
-
# migration, the DB instance is available for use, but might experience
|
1902
|
-
# performance degradation. While the migration takes place, nightly
|
1903
|
-
# backups for the instance are suspended. No other Amazon RDS operations
|
1904
|
-
# can take place for the instance, including modifying the instance,
|
1905
|
-
# rebooting the instance, deleting the instance, creating a Read Replica
|
1906
|
-
# for the instance, and creating a DB snapshot of the instance.
|
1858
|
+
# For the valid values for allocated storage for each engine, see
|
1859
|
+
# CreateDBInstance.
|
1907
1860
|
# @option options [String] :db_instance_class
|
1908
1861
|
# The new compute and memory capacity of the DB instance, for example,
|
1909
1862
|
# `db.m4.large`. Not all DB instance classes are available in all AWS
|
@@ -2150,25 +2103,14 @@ module Aws::RDS
|
|
2150
2103
|
# `general-public-license`
|
2151
2104
|
# @option options [Integer] :iops
|
2152
2105
|
# The new Provisioned IOPS (I/O operations per second) value for the RDS
|
2153
|
-
# instance.
|
2154
|
-
# change is applied during the next maintenance window unless the
|
2155
|
-
# `ApplyImmediately` parameter is set to `true` for this request.
|
2156
|
-
#
|
2157
|
-
# Default: Uses existing setting
|
2158
|
-
#
|
2159
|
-
# Constraints: Value supplied must be at least 10% greater than the
|
2160
|
-
# current value. Values that are not at least 10% greater than the
|
2161
|
-
# existing value are rounded up so that they are 10% greater than the
|
2162
|
-
# current value. If you are migrating from Provisioned IOPS to standard
|
2163
|
-
# storage, set this value to 0. The DB instance will require a reboot
|
2164
|
-
# for the change in storage type to take effect.
|
2165
|
-
#
|
2166
|
-
# **SQL Server**
|
2167
|
-
#
|
2168
|
-
# Setting the IOPS value for the SQL Server database engine is not
|
2169
|
-
# supported.
|
2106
|
+
# instance.
|
2170
2107
|
#
|
2171
|
-
#
|
2108
|
+
# Changing this setting does not result in an outage and the change is
|
2109
|
+
# applied during the next maintenance window unless the
|
2110
|
+
# `ApplyImmediately` parameter is set to `true` for this request. If you
|
2111
|
+
# are migrating from Provisioned IOPS to standard storage, set this
|
2112
|
+
# value to 0. The DB instance will require a reboot for the change in
|
2113
|
+
# storage type to take effect.
|
2172
2114
|
#
|
2173
2115
|
# If you choose to migrate your DB instance from using standard storage
|
2174
2116
|
# to using Provisioned IOPS, or from using Provisioned IOPS to using
|
@@ -2184,6 +2126,13 @@ module Aws::RDS
|
|
2184
2126
|
# can take place for the instance, including modifying the instance,
|
2185
2127
|
# rebooting the instance, deleting the instance, creating a Read Replica
|
2186
2128
|
# for the instance, and creating a DB snapshot of the instance.
|
2129
|
+
#
|
2130
|
+
# Constraints: For MariaDB, MySQL, Oracle, and PostgreSQL, the value
|
2131
|
+
# supplied must be at least 10% greater than the current value. Values
|
2132
|
+
# that are not at least 10% greater than the existing value are rounded
|
2133
|
+
# up so that they are 10% greater than the current value.
|
2134
|
+
#
|
2135
|
+
# Default: Uses existing setting
|
2187
2136
|
# @option options [String] :option_group_name
|
2188
2137
|
# Indicates that the DB instance should be associated with the specified
|
2189
2138
|
# option group. Changing this parameter does not result in an outage
|
@@ -2217,10 +2166,25 @@ module Aws::RDS
|
|
2217
2166
|
# @option options [String] :storage_type
|
2218
2167
|
# Specifies the storage type to be associated with the DB instance.
|
2219
2168
|
#
|
2220
|
-
#
|
2169
|
+
# If you specify Provisioned IOPS (`io1`), you must also include a value
|
2170
|
+
# for the `Iops` parameter.
|
2221
2171
|
#
|
2222
|
-
# If you
|
2223
|
-
#
|
2172
|
+
# If you choose to migrate your DB instance from using standard storage
|
2173
|
+
# to using Provisioned IOPS, or from using Provisioned IOPS to using
|
2174
|
+
# standard storage, the process can take time. The duration of the
|
2175
|
+
# migration depends on several factors such as database load, storage
|
2176
|
+
# size, storage type (standard or Provisioned IOPS), amount of IOPS
|
2177
|
+
# provisioned (if any), and the number of prior scale storage
|
2178
|
+
# operations. Typical migration times are under 24 hours, but the
|
2179
|
+
# process can take up to several days in some cases. During the
|
2180
|
+
# migration, the DB instance is available for use, but might experience
|
2181
|
+
# performance degradation. While the migration takes place, nightly
|
2182
|
+
# backups for the instance are suspended. No other Amazon RDS operations
|
2183
|
+
# can take place for the instance, including modifying the instance,
|
2184
|
+
# rebooting the instance, deleting the instance, creating a Read Replica
|
2185
|
+
# for the instance, and creating a DB snapshot of the instance.
|
2186
|
+
#
|
2187
|
+
# Valid values: `standard | gp2 | io1`
|
2224
2188
|
#
|
2225
2189
|
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
2226
2190
|
# `standard`
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -126,7 +126,8 @@ module Aws::RDS
|
|
126
126
|
# The port number on which the instances in the DB cluster accept
|
127
127
|
# connections.
|
128
128
|
#
|
129
|
-
# Default: `3306`
|
129
|
+
# Default: `3306` if engine is set as aurora or `5432` if set to
|
130
|
+
# aurora-postgresql.
|
130
131
|
# @option options [String] :master_username
|
131
132
|
# The name of the master user for the DB cluster.
|
132
133
|
#
|
@@ -477,8 +478,7 @@ module Aws::RDS
|
|
477
478
|
#
|
478
479
|
# Example: `mydbinstance`
|
479
480
|
# @option options [Integer] :allocated_storage
|
480
|
-
# The amount of storage (in
|
481
|
-
# DB instance.
|
481
|
+
# The amount of storage (in gibibytes) to allocate for the DB instance.
|
482
482
|
#
|
483
483
|
# Type: Integer
|
484
484
|
#
|
@@ -494,9 +494,10 @@ module Aws::RDS
|
|
494
494
|
# following:
|
495
495
|
#
|
496
496
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
|
497
|
-
#
|
497
|
+
# 16384.
|
498
498
|
#
|
499
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
499
|
+
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
500
|
+
# 16384.
|
500
501
|
#
|
501
502
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
502
503
|
#
|
@@ -506,9 +507,10 @@ module Aws::RDS
|
|
506
507
|
# following:
|
507
508
|
#
|
508
509
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
|
509
|
-
#
|
510
|
+
# 16384.
|
510
511
|
#
|
511
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
512
|
+
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
513
|
+
# 16384.
|
512
514
|
#
|
513
515
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
514
516
|
#
|
@@ -518,9 +520,10 @@ module Aws::RDS
|
|
518
520
|
# following:
|
519
521
|
#
|
520
522
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
|
521
|
-
#
|
523
|
+
# 16384.
|
522
524
|
#
|
523
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
525
|
+
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
526
|
+
# 16384.
|
524
527
|
#
|
525
528
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
526
529
|
#
|
@@ -530,9 +533,10 @@ module Aws::RDS
|
|
530
533
|
# following:
|
531
534
|
#
|
532
535
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 10 to
|
533
|
-
#
|
536
|
+
# 16384.
|
534
537
|
#
|
535
|
-
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
538
|
+
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
539
|
+
# 16384.
|
536
540
|
#
|
537
541
|
# * Magnetic storage (standard): Must be an integer from 10 to 3072.
|
538
542
|
#
|
@@ -872,6 +876,8 @@ module Aws::RDS
|
|
872
876
|
#
|
873
877
|
# **MariaDB**
|
874
878
|
#
|
879
|
+
# * `10.1.26` (supported in all AWS Regions)
|
880
|
+
#
|
875
881
|
# * `10.1.23` (supported in all AWS Regions)
|
876
882
|
#
|
877
883
|
# * `10.1.19` (supported in all AWS Regions)
|
@@ -880,6 +886,8 @@ module Aws::RDS
|
|
880
886
|
#
|
881
887
|
#
|
882
888
|
#
|
889
|
+
# * `10.0.32` (supported in all AWS Regions)
|
890
|
+
#
|
883
891
|
# * `10.0.31` (supported in all AWS Regions)
|
884
892
|
#
|
885
893
|
# * `10.0.28` (supported in all AWS Regions)
|
@@ -889,8 +897,17 @@ module Aws::RDS
|
|
889
897
|
# * `10.0.17` (supported in all AWS Regions except us-east-2,
|
890
898
|
# ca-central-1, eu-west-2)
|
891
899
|
#
|
900
|
+
# **Microsoft SQL Server 2017**
|
901
|
+
#
|
902
|
+
# * `14.00.1000.169.v1` (supported for all editions, and all AWS
|
903
|
+
# Regions)
|
904
|
+
#
|
905
|
+
# ^
|
906
|
+
#
|
892
907
|
# **Microsoft SQL Server 2016**
|
893
908
|
#
|
909
|
+
# * `13.00.4451.0.v1` (supported for all editions, and all AWS Regions)
|
910
|
+
#
|
894
911
|
# * `13.00.4422.0.v1` (supported for all editions, and all AWS Regions)
|
895
912
|
#
|
896
913
|
# * `13.00.2164.0.v1` (supported for all editions, and all AWS Regions)
|
@@ -1038,9 +1055,9 @@ module Aws::RDS
|
|
1038
1055
|
# valid Iops values, see see [Amazon RDS Provisioned IOPS Storage to
|
1039
1056
|
# Improve Performance][1].
|
1040
1057
|
#
|
1041
|
-
# Constraints: Must be a multiple between
|
1058
|
+
# Constraints: Must be a multiple between 1 and 50 of the storage amount
|
1042
1059
|
# for the DB instance. Must also be an integer multiple of 1000. For
|
1043
|
-
# example, if the size of your DB instance is 500
|
1060
|
+
# example, if the size of your DB instance is 500 GiB, then your `Iops`
|
1044
1061
|
# value can be 2000, 3000, 4000, or 5000.
|
1045
1062
|
#
|
1046
1063
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -1157,7 +1157,8 @@ module Aws::RDS
|
|
1157
1157
|
# The port number on which the instances in the DB cluster accept
|
1158
1158
|
# connections.
|
1159
1159
|
#
|
1160
|
-
# Default: `3306`
|
1160
|
+
# Default: `3306` if engine is set as aurora or `5432` if set to
|
1161
|
+
# aurora-postgresql.
|
1161
1162
|
# @return [Integer]
|
1162
1163
|
#
|
1163
1164
|
# @!attribute [rw] master_username
|
@@ -1668,8 +1669,8 @@ module Aws::RDS
|
|
1668
1669
|
# @return [String]
|
1669
1670
|
#
|
1670
1671
|
# @!attribute [rw] allocated_storage
|
1671
|
-
# The amount of storage (in
|
1672
|
-
#
|
1672
|
+
# The amount of storage (in gibibytes) to allocate for the DB
|
1673
|
+
# instance.
|
1673
1674
|
#
|
1674
1675
|
# Type: Integer
|
1675
1676
|
#
|
@@ -1685,10 +1686,10 @@ module Aws::RDS
|
|
1685
1686
|
# following:
|
1686
1687
|
#
|
1687
1688
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
|
1688
|
-
#
|
1689
|
+
# 16384.
|
1689
1690
|
#
|
1690
1691
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
1691
|
-
#
|
1692
|
+
# 16384.
|
1692
1693
|
#
|
1693
1694
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
1694
1695
|
#
|
@@ -1698,10 +1699,10 @@ module Aws::RDS
|
|
1698
1699
|
# following:
|
1699
1700
|
#
|
1700
1701
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
|
1701
|
-
#
|
1702
|
+
# 16384.
|
1702
1703
|
#
|
1703
1704
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
1704
|
-
#
|
1705
|
+
# 16384.
|
1705
1706
|
#
|
1706
1707
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
1707
1708
|
#
|
@@ -1711,10 +1712,10 @@ module Aws::RDS
|
|
1711
1712
|
# following:
|
1712
1713
|
#
|
1713
1714
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 5 to
|
1714
|
-
#
|
1715
|
+
# 16384.
|
1715
1716
|
#
|
1716
1717
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
1717
|
-
#
|
1718
|
+
# 16384.
|
1718
1719
|
#
|
1719
1720
|
# * Magnetic storage (standard): Must be an integer from 5 to 3072.
|
1720
1721
|
#
|
@@ -1724,10 +1725,10 @@ module Aws::RDS
|
|
1724
1725
|
# following:
|
1725
1726
|
#
|
1726
1727
|
# * General Purpose (SSD) storage (gp2): Must be an integer from 10 to
|
1727
|
-
#
|
1728
|
+
# 16384.
|
1728
1729
|
#
|
1729
1730
|
# * Provisioned IOPS storage (io1): Must be an integer from 100 to
|
1730
|
-
#
|
1731
|
+
# 16384.
|
1731
1732
|
#
|
1732
1733
|
# * Magnetic storage (standard): Must be an integer from 10 to 3072.
|
1733
1734
|
#
|
@@ -2101,6 +2102,8 @@ module Aws::RDS
|
|
2101
2102
|
#
|
2102
2103
|
# **MariaDB**
|
2103
2104
|
#
|
2105
|
+
# * `10.1.26` (supported in all AWS Regions)
|
2106
|
+
#
|
2104
2107
|
# * `10.1.23` (supported in all AWS Regions)
|
2105
2108
|
#
|
2106
2109
|
# * `10.1.19` (supported in all AWS Regions)
|
@@ -2109,6 +2112,8 @@ module Aws::RDS
|
|
2109
2112
|
#
|
2110
2113
|
#
|
2111
2114
|
#
|
2115
|
+
# * `10.0.32` (supported in all AWS Regions)
|
2116
|
+
#
|
2112
2117
|
# * `10.0.31` (supported in all AWS Regions)
|
2113
2118
|
#
|
2114
2119
|
# * `10.0.28` (supported in all AWS Regions)
|
@@ -2118,8 +2123,18 @@ module Aws::RDS
|
|
2118
2123
|
# * `10.0.17` (supported in all AWS Regions except us-east-2,
|
2119
2124
|
# ca-central-1, eu-west-2)
|
2120
2125
|
#
|
2126
|
+
# **Microsoft SQL Server 2017**
|
2127
|
+
#
|
2128
|
+
# * `14.00.1000.169.v1` (supported for all editions, and all AWS
|
2129
|
+
# Regions)
|
2130
|
+
#
|
2131
|
+
# ^
|
2132
|
+
#
|
2121
2133
|
# **Microsoft SQL Server 2016**
|
2122
2134
|
#
|
2135
|
+
# * `13.00.4451.0.v1` (supported for all editions, and all AWS
|
2136
|
+
# Regions)
|
2137
|
+
#
|
2123
2138
|
# * `13.00.4422.0.v1` (supported for all editions, and all AWS
|
2124
2139
|
# Regions)
|
2125
2140
|
#
|
@@ -2279,9 +2294,9 @@ module Aws::RDS
|
|
2279
2294
|
# valid Iops values, see see [Amazon RDS Provisioned IOPS Storage to
|
2280
2295
|
# Improve Performance][1].
|
2281
2296
|
#
|
2282
|
-
# Constraints: Must be a multiple between
|
2297
|
+
# Constraints: Must be a multiple between 1 and 50 of the storage
|
2283
2298
|
# amount for the DB instance. Must also be an integer multiple of
|
2284
|
-
# 1000. For example, if the size of your DB instance is 500
|
2299
|
+
# 1000. For example, if the size of your DB instance is 500 GiB, then
|
2285
2300
|
# your `Iops` value can be 2000, 3000, 4000, or 5000.
|
2286
2301
|
#
|
2287
2302
|
#
|
@@ -3409,7 +3424,7 @@ module Aws::RDS
|
|
3409
3424
|
#
|
3410
3425
|
# @!attribute [rw] allocated_storage
|
3411
3426
|
# For all database engines except Amazon Aurora, `AllocatedStorage`
|
3412
|
-
# specifies the allocated storage size in
|
3427
|
+
# specifies the allocated storage size in gibibytes (GiB). For Aurora,
|
3413
3428
|
# `AllocatedStorage` always returns 1, because Aurora DB cluster
|
3414
3429
|
# storage size is not fixed, but instead automatically adjusts as
|
3415
3430
|
# needed.
|
@@ -3866,7 +3881,7 @@ module Aws::RDS
|
|
3866
3881
|
# @return [String]
|
3867
3882
|
#
|
3868
3883
|
# @!attribute [rw] allocated_storage
|
3869
|
-
# Specifies the allocated storage size in
|
3884
|
+
# Specifies the allocated storage size in gibibytes (GiB).
|
3870
3885
|
# @return [Integer]
|
3871
3886
|
#
|
3872
3887
|
# @!attribute [rw] status
|
@@ -4176,7 +4191,7 @@ module Aws::RDS
|
|
4176
4191
|
# @return [Types::Endpoint]
|
4177
4192
|
#
|
4178
4193
|
# @!attribute [rw] allocated_storage
|
4179
|
-
# Specifies the allocated storage size specified in
|
4194
|
+
# Specifies the allocated storage size specified in gibibytes.
|
4180
4195
|
# @return [Integer]
|
4181
4196
|
#
|
4182
4197
|
# @!attribute [rw] instance_create_time
|
@@ -4771,7 +4786,7 @@ module Aws::RDS
|
|
4771
4786
|
# @return [String]
|
4772
4787
|
#
|
4773
4788
|
# @!attribute [rw] allocated_storage
|
4774
|
-
# Specifies the allocated storage size in
|
4789
|
+
# Specifies the allocated storage size in gibibytes (GiB).
|
4775
4790
|
# @return [Integer]
|
4776
4791
|
#
|
4777
4792
|
# @!attribute [rw] status
|
@@ -8328,80 +8343,16 @@ module Aws::RDS
|
|
8328
8343
|
# @return [String]
|
8329
8344
|
#
|
8330
8345
|
# @!attribute [rw] allocated_storage
|
8331
|
-
# The new storage
|
8332
|
-
#
|
8333
|
-
# next maintenance window unless `ApplyImmediately` is set to `true`
|
8334
|
-
# for this request.
|
8335
|
-
#
|
8336
|
-
# **MySQL**
|
8337
|
-
#
|
8338
|
-
# Default: Uses existing setting
|
8339
|
-
#
|
8340
|
-
# Valid Values: 5-6144
|
8341
|
-
#
|
8342
|
-
# Constraints: Value supplied must be at least 10% greater than the
|
8343
|
-
# current value. Values that are not at least 10% greater than the
|
8344
|
-
# existing value are rounded up so that they are 10% greater than the
|
8345
|
-
# current value.
|
8346
|
-
#
|
8347
|
-
# Type: Integer
|
8348
|
-
#
|
8349
|
-
# **MariaDB**
|
8350
|
-
#
|
8351
|
-
# Default: Uses existing setting
|
8352
|
-
#
|
8353
|
-
# Valid Values: 5-6144
|
8354
|
-
#
|
8355
|
-
# Constraints: Value supplied must be at least 10% greater than the
|
8356
|
-
# current value. Values that are not at least 10% greater than the
|
8357
|
-
# existing value are rounded up so that they are 10% greater than the
|
8358
|
-
# current value.
|
8359
|
-
#
|
8360
|
-
# Type: Integer
|
8361
|
-
#
|
8362
|
-
# **PostgreSQL**
|
8363
|
-
#
|
8364
|
-
# Default: Uses existing setting
|
8365
|
-
#
|
8366
|
-
# Valid Values: 5-6144
|
8367
|
-
#
|
8368
|
-
# Constraints: Value supplied must be at least 10% greater than the
|
8369
|
-
# current value. Values that are not at least 10% greater than the
|
8370
|
-
# existing value are rounded up so that they are 10% greater than the
|
8371
|
-
# current value.
|
8372
|
-
#
|
8373
|
-
# Type: Integer
|
8374
|
-
#
|
8375
|
-
# **Oracle**
|
8376
|
-
#
|
8377
|
-
# Default: Uses existing setting
|
8378
|
-
#
|
8379
|
-
# Valid Values: 10-6144
|
8380
|
-
#
|
8381
|
-
# Constraints: Value supplied must be at least 10% greater than the
|
8382
|
-
# current value. Values that are not at least 10% greater than the
|
8383
|
-
# existing value are rounded up so that they are 10% greater than the
|
8384
|
-
# current value.
|
8385
|
-
#
|
8386
|
-
# **SQL Server**
|
8346
|
+
# The new amount of storage (in gibibytes) to allocate for the DB
|
8347
|
+
# instance.
|
8387
8348
|
#
|
8388
|
-
#
|
8349
|
+
# For MariaDB, MySQL, Oracle, and PostgreSQL, the value supplied must
|
8350
|
+
# be at least 10% greater than the current value. Values that are not
|
8351
|
+
# at least 10% greater than the existing value are rounded up so that
|
8352
|
+
# they are 10% greater than the current value.
|
8389
8353
|
#
|
8390
|
-
#
|
8391
|
-
#
|
8392
|
-
# using standard storage, the process can take time. The duration of
|
8393
|
-
# the migration depends on several factors such as database load,
|
8394
|
-
# storage size, storage type (standard or Provisioned IOPS), amount of
|
8395
|
-
# IOPS provisioned (if any), and the number of prior scale storage
|
8396
|
-
# operations. Typical migration times are under 24 hours, but the
|
8397
|
-
# process can take up to several days in some cases. During the
|
8398
|
-
# migration, the DB instance is available for use, but might
|
8399
|
-
# experience performance degradation. While the migration takes place,
|
8400
|
-
# nightly backups for the instance are suspended. No other Amazon RDS
|
8401
|
-
# operations can take place for the instance, including modifying the
|
8402
|
-
# instance, rebooting the instance, deleting the instance, creating a
|
8403
|
-
# Read Replica for the instance, and creating a DB snapshot of the
|
8404
|
-
# instance.
|
8354
|
+
# For the valid values for allocated storage for each engine, see
|
8355
|
+
# CreateDBInstance.
|
8405
8356
|
# @return [Integer]
|
8406
8357
|
#
|
8407
8358
|
# @!attribute [rw] db_instance_class
|
@@ -8685,25 +8636,14 @@ module Aws::RDS
|
|
8685
8636
|
#
|
8686
8637
|
# @!attribute [rw] iops
|
8687
8638
|
# The new Provisioned IOPS (I/O operations per second) value for the
|
8688
|
-
# RDS instance.
|
8689
|
-
# the change is applied during the next maintenance window unless the
|
8690
|
-
# `ApplyImmediately` parameter is set to `true` for this request.
|
8639
|
+
# RDS instance.
|
8691
8640
|
#
|
8692
|
-
#
|
8693
|
-
#
|
8694
|
-
#
|
8695
|
-
#
|
8696
|
-
#
|
8697
|
-
#
|
8698
|
-
# standard storage, set this value to 0. The DB instance will require
|
8699
|
-
# a reboot for the change in storage type to take effect.
|
8700
|
-
#
|
8701
|
-
# **SQL Server**
|
8702
|
-
#
|
8703
|
-
# Setting the IOPS value for the SQL Server database engine is not
|
8704
|
-
# supported.
|
8705
|
-
#
|
8706
|
-
# Type: Integer
|
8641
|
+
# Changing this setting does not result in an outage and the change is
|
8642
|
+
# applied during the next maintenance window unless the
|
8643
|
+
# `ApplyImmediately` parameter is set to `true` for this request. If
|
8644
|
+
# you are migrating from Provisioned IOPS to standard storage, set
|
8645
|
+
# this value to 0. The DB instance will require a reboot for the
|
8646
|
+
# change in storage type to take effect.
|
8707
8647
|
#
|
8708
8648
|
# If you choose to migrate your DB instance from using standard
|
8709
8649
|
# storage to using Provisioned IOPS, or from using Provisioned IOPS to
|
@@ -8720,6 +8660,13 @@ module Aws::RDS
|
|
8720
8660
|
# instance, rebooting the instance, deleting the instance, creating a
|
8721
8661
|
# Read Replica for the instance, and creating a DB snapshot of the
|
8722
8662
|
# instance.
|
8663
|
+
#
|
8664
|
+
# Constraints: For MariaDB, MySQL, Oracle, and PostgreSQL, the value
|
8665
|
+
# supplied must be at least 10% greater than the current value. Values
|
8666
|
+
# that are not at least 10% greater than the existing value are
|
8667
|
+
# rounded up so that they are 10% greater than the current value.
|
8668
|
+
#
|
8669
|
+
# Default: Uses existing setting
|
8723
8670
|
# @return [Integer]
|
8724
8671
|
#
|
8725
8672
|
# @!attribute [rw] option_group_name
|
@@ -8759,10 +8706,26 @@ module Aws::RDS
|
|
8759
8706
|
# @!attribute [rw] storage_type
|
8760
8707
|
# Specifies the storage type to be associated with the DB instance.
|
8761
8708
|
#
|
8762
|
-
#
|
8709
|
+
# If you specify Provisioned IOPS (`io1`), you must also include a
|
8710
|
+
# value for the `Iops` parameter.
|
8763
8711
|
#
|
8764
|
-
# If you
|
8765
|
-
#
|
8712
|
+
# If you choose to migrate your DB instance from using standard
|
8713
|
+
# storage to using Provisioned IOPS, or from using Provisioned IOPS to
|
8714
|
+
# using standard storage, the process can take time. The duration of
|
8715
|
+
# the migration depends on several factors such as database load,
|
8716
|
+
# storage size, storage type (standard or Provisioned IOPS), amount of
|
8717
|
+
# IOPS provisioned (if any), and the number of prior scale storage
|
8718
|
+
# operations. Typical migration times are under 24 hours, but the
|
8719
|
+
# process can take up to several days in some cases. During the
|
8720
|
+
# migration, the DB instance is available for use, but might
|
8721
|
+
# experience performance degradation. While the migration takes place,
|
8722
|
+
# nightly backups for the instance are suspended. No other Amazon RDS
|
8723
|
+
# operations can take place for the instance, including modifying the
|
8724
|
+
# instance, rebooting the instance, deleting the instance, creating a
|
8725
|
+
# Read Replica for the instance, and creating a DB snapshot of the
|
8726
|
+
# instance.
|
8727
|
+
#
|
8728
|
+
# Valid values: `standard | gp2 | io1`
|
8766
8729
|
#
|
8767
8730
|
# Default: `io1` if the `Iops` parameter is specified, otherwise
|
8768
8731
|
# `standard`
|
@@ -13061,7 +13024,7 @@ module Aws::RDS
|
|
13061
13024
|
# @return [String]
|
13062
13025
|
#
|
13063
13026
|
# @!attribute [rw] storage_size
|
13064
|
-
# The valid range of storage in
|
13027
|
+
# The valid range of storage in gibibytes. For example, 100 to 16384.
|
13065
13028
|
# @return [Array<Types::Range>]
|
13066
13029
|
#
|
13067
13030
|
# @!attribute [rw] provisioned_iops
|
@@ -13069,7 +13032,7 @@ module Aws::RDS
|
|
13069
13032
|
# @return [Array<Types::Range>]
|
13070
13033
|
#
|
13071
13034
|
# @!attribute [rw] iops_to_storage_ratio
|
13072
|
-
# The valid range of Provisioned IOPS to
|
13035
|
+
# The valid range of Provisioned IOPS to gibibytes of storage
|
13073
13036
|
# multiplier. For example, 3-10, which means that provisioned IOPS can
|
13074
13037
|
# be between 3 and 10 times storage.
|
13075
13038
|
# @return [Array<Types::DoubleRange>]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-rds
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.9.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:
|
11
|
+
date: 2018-01-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|