aws-sdk-rds 1.265.0 → 1.272.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/CHANGELOG.md +35 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +141 -116
- data/lib/aws-sdk-rds/db_cluster.rb +35 -20
- data/lib/aws-sdk-rds/db_cluster_snapshot.rb +6 -4
- data/lib/aws-sdk-rds/db_instance.rb +21 -21
- data/lib/aws-sdk-rds/db_snapshot.rb +1 -1
- data/lib/aws-sdk-rds/endpoint_provider.rb +14 -18
- data/lib/aws-sdk-rds/errors.rb +205 -0
- data/lib/aws-sdk-rds/resource.rb +17 -15
- data/lib/aws-sdk-rds/types.rb +102 -65
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +2 -0
- data/sig/resource.rbs +2 -0
- metadata +4 -4
@@ -35,10 +35,9 @@ module Aws::RDS
|
|
35
35
|
end
|
36
36
|
alias :db_cluster_identifier :id
|
37
37
|
|
38
|
-
#
|
39
|
-
#
|
40
|
-
#
|
41
|
-
# size isn't fixed, but instead automatically adjusts as needed.
|
38
|
+
# `AllocatedStorage` specifies the allocated storage size in gibibytes
|
39
|
+
# (GiB). For Aurora, `AllocatedStorage` can vary because Aurora DB
|
40
|
+
# cluster storage size adjusts as needed.
|
42
41
|
# @return [Integer]
|
43
42
|
def allocated_storage
|
44
43
|
data[:allocated_storage]
|
@@ -281,7 +280,18 @@ module Aws::RDS
|
|
281
280
|
data[:iam_database_authentication_enabled]
|
282
281
|
end
|
283
282
|
|
284
|
-
# The ID of the clone group with which the DB cluster is associated.
|
283
|
+
# The ID of the clone group with which the DB cluster is associated. For
|
284
|
+
# newly created clusters, the ID is typically null.
|
285
|
+
#
|
286
|
+
# If you clone a DB cluster when the ID is null, the operation populates
|
287
|
+
# the ID value for the source cluster and the clone because both
|
288
|
+
# clusters become part of the same clone group. Even if you delete the
|
289
|
+
# clone cluster, the clone group ID remains for the lifetime of the
|
290
|
+
# source cluster to show that it was used in a cloning operation.
|
291
|
+
#
|
292
|
+
# For PITR, the clone group ID is inherited from the source cluster. For
|
293
|
+
# snapshot restore operations, the clone group ID isn't inherited from
|
294
|
+
# the source cluster.
|
285
295
|
# @return [String]
|
286
296
|
def clone_group_id
|
287
297
|
data[:clone_group_id]
|
@@ -1328,13 +1338,14 @@ module Aws::RDS
|
|
1328
1338
|
#
|
1329
1339
|
# The following values are valid for each DB engine:
|
1330
1340
|
#
|
1331
|
-
# * Aurora MySQL - `audit | error | general | slowquery
|
1341
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery |
|
1342
|
+
# iam-db-auth-error`
|
1332
1343
|
#
|
1333
|
-
# * Aurora PostgreSQL - `postgresql`
|
1344
|
+
# * Aurora PostgreSQL - `instance | postgresql | iam-db-auth-error`
|
1334
1345
|
#
|
1335
|
-
# * RDS for MySQL - `error | general | slowquery`
|
1346
|
+
# * RDS for MySQL - `error | general | slowquery | iam-db-auth-error`
|
1336
1347
|
#
|
1337
|
-
# * RDS for PostgreSQL - `postgresql | upgrade`
|
1348
|
+
# * RDS for PostgreSQL - `postgresql | upgrade | iam-db-auth-error`
|
1338
1349
|
#
|
1339
1350
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
1340
1351
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -1604,7 +1615,7 @@ module Aws::RDS
|
|
1604
1615
|
# `PerformanceInsightsEnabled` parameter to `true` and the
|
1605
1616
|
# `PerformanceInsightsRetentionPeriod` parameter to 465.
|
1606
1617
|
#
|
1607
|
-
# Valid for Cluster Type: Aurora DB clusters
|
1618
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
1608
1619
|
# @option options [Boolean] :enable_performance_insights
|
1609
1620
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
1610
1621
|
#
|
@@ -1895,7 +1906,8 @@ module Aws::RDS
|
|
1895
1906
|
# Specifies whether to remove automated backups immediately after the DB
|
1896
1907
|
# cluster is deleted. This parameter isn't case-sensitive. The default
|
1897
1908
|
# is to remove automated backups immediately after the DB cluster is
|
1898
|
-
# deleted
|
1909
|
+
# deleted, unless the Amazon Web Services Backup policy specifies a
|
1910
|
+
# point-in-time restore rule.
|
1899
1911
|
# @return [DBCluster]
|
1900
1912
|
def delete(options = {})
|
1901
1913
|
options = options.merge(db_cluster_identifier: @id)
|
@@ -2164,13 +2176,14 @@ module Aws::RDS
|
|
2164
2176
|
#
|
2165
2177
|
# The following values are valid for each DB engine:
|
2166
2178
|
#
|
2167
|
-
# * Aurora MySQL - `audit | error | general | slowquery
|
2179
|
+
# * Aurora MySQL - `audit | error | general | instance | slowquery |
|
2180
|
+
# iam-db-auth-error`
|
2168
2181
|
#
|
2169
|
-
# * Aurora PostgreSQL - `postgresql`
|
2182
|
+
# * Aurora PostgreSQL - `instance | postgresql | iam-db-auth-error`
|
2170
2183
|
#
|
2171
|
-
# * RDS for MySQL - `error | general | slowquery`
|
2184
|
+
# * RDS for MySQL - `error | general | slowquery | iam-db-auth-error`
|
2172
2185
|
#
|
2173
|
-
# * RDS for PostgreSQL - `postgresql | upgrade`
|
2186
|
+
# * RDS for PostgreSQL - `postgresql | upgrade | iam-db-auth-error`
|
2174
2187
|
#
|
2175
2188
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
2176
2189
|
# see [ Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -2439,7 +2452,7 @@ module Aws::RDS
|
|
2439
2452
|
# If you change the value from `advanced` to `standard`, you must set
|
2440
2453
|
# the `PerformanceInsightsEnabled` parameter to `false`.
|
2441
2454
|
#
|
2442
|
-
# Valid for Cluster Type: Aurora DB clusters
|
2455
|
+
# Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
2443
2456
|
# @option options [Boolean] :enable_performance_insights
|
2444
2457
|
# Specifies whether to turn on Performance Insights for the DB cluster.
|
2445
2458
|
#
|
@@ -2888,19 +2901,21 @@ module Aws::RDS
|
|
2888
2901
|
#
|
2889
2902
|
# **RDS for MySQL**
|
2890
2903
|
#
|
2891
|
-
# Possible values are `error`, `general`,
|
2904
|
+
# Possible values are `error`, `general`, `slowquery`, and
|
2905
|
+
# `iam-db-auth-error`.
|
2892
2906
|
#
|
2893
2907
|
# **RDS for PostgreSQL**
|
2894
2908
|
#
|
2895
|
-
# Possible values are `postgresql` and `
|
2909
|
+
# Possible values are `postgresql`, `upgrade`, and `iam-db-auth-error`.
|
2896
2910
|
#
|
2897
2911
|
# **Aurora MySQL**
|
2898
2912
|
#
|
2899
|
-
# Possible values are `audit`, `error`, `general`,
|
2913
|
+
# Possible values are `audit`, `error`, `general`, `instance`,
|
2914
|
+
# `slowquery`, and `iam-db-auth-error`.
|
2900
2915
|
#
|
2901
2916
|
# **Aurora PostgreSQL**
|
2902
2917
|
#
|
2903
|
-
# Possible value
|
2918
|
+
# Possible value are `instance`, `postgresql`, and `iam-db-auth-error`.
|
2904
2919
|
#
|
2905
2920
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
2906
2921
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -786,19 +786,21 @@ module Aws::RDS
|
|
786
786
|
#
|
787
787
|
# **RDS for MySQL**
|
788
788
|
#
|
789
|
-
# Possible values are `error`, `general`,
|
789
|
+
# Possible values are `error`, `general`, `slowquery`, and
|
790
|
+
# `iam-db-auth-error`.
|
790
791
|
#
|
791
792
|
# **RDS for PostgreSQL**
|
792
793
|
#
|
793
|
-
# Possible values are `postgresql` and `
|
794
|
+
# Possible values are `postgresql`, `upgrade`, and `iam-db-auth-error`.
|
794
795
|
#
|
795
796
|
# **Aurora MySQL**
|
796
797
|
#
|
797
|
-
# Possible values are `audit`, `error`, `general`,
|
798
|
+
# Possible values are `audit`, `error`, `general`, `instance`,
|
799
|
+
# `slowquery`, and `iam-db-auth-error`.
|
798
800
|
#
|
799
801
|
# **Aurora PostgreSQL**
|
800
802
|
#
|
801
|
-
# Possible value
|
803
|
+
# Possible value are `instance`, `postgresql`, and `iam-db-auth-error`.
|
802
804
|
#
|
803
805
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
804
806
|
# see [Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -1755,7 +1755,7 @@ module Aws::RDS
|
|
1755
1755
|
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
1756
1756
|
#
|
1757
1757
|
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
1758
|
-
# `
|
1758
|
+
# `gp3`.
|
1759
1759
|
# @option options [String] :tde_credential_arn
|
1760
1760
|
# The ARN from the key store with which to associate the instance for
|
1761
1761
|
# TDE encryption.
|
@@ -1945,10 +1945,8 @@ module Aws::RDS
|
|
1945
1945
|
# @option options [String] :database_insights_mode
|
1946
1946
|
# The mode of Database Insights to enable for the DB instance.
|
1947
1947
|
#
|
1948
|
-
#
|
1949
|
-
#
|
1950
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
1951
|
-
# changed.
|
1948
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
1949
|
+
# can't change this value.
|
1952
1950
|
#
|
1953
1951
|
# </note>
|
1954
1952
|
# @option options [Boolean] :enable_performance_insights
|
@@ -2007,17 +2005,19 @@ module Aws::RDS
|
|
2007
2005
|
#
|
2008
2006
|
# The following values are valid for each DB engine:
|
2009
2007
|
#
|
2010
|
-
# * RDS for Db2 - `diag.log | notify.log`
|
2008
|
+
# * RDS for Db2 - `diag.log | notify.log | iam-db-auth-error`
|
2011
2009
|
#
|
2012
|
-
# * RDS for MariaDB - `audit | error | general | slowquery
|
2010
|
+
# * RDS for MariaDB - `audit | error | general | slowquery |
|
2011
|
+
# iam-db-auth-error`
|
2013
2012
|
#
|
2014
2013
|
# * RDS for Microsoft SQL Server - `agent | error`
|
2015
2014
|
#
|
2016
|
-
# * RDS for MySQL - `audit | error | general | slowquery
|
2015
|
+
# * RDS for MySQL - `audit | error | general | slowquery |
|
2016
|
+
# iam-db-auth-error`
|
2017
2017
|
#
|
2018
2018
|
# * RDS for Oracle - `alert | audit | listener | trace | oemagent`
|
2019
2019
|
#
|
2020
|
-
# * RDS for PostgreSQL - `postgresql | upgrade`
|
2020
|
+
# * RDS for PostgreSQL - `postgresql | upgrade | iam-db-auth-error`
|
2021
2021
|
#
|
2022
2022
|
#
|
2023
2023
|
#
|
@@ -2135,7 +2135,8 @@ module Aws::RDS
|
|
2135
2135
|
#
|
2136
2136
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_VPC.WorkingWithRDSInstanceinaVPC.html
|
2137
2137
|
# @option options [Integer] :storage_throughput
|
2138
|
-
# The storage throughput value for the
|
2138
|
+
# The storage throughput value, in mebibyte per second (MiBps), for the
|
2139
|
+
# DB instance.
|
2139
2140
|
#
|
2140
2141
|
# This setting applies only to the `gp3` storage type.
|
2141
2142
|
#
|
@@ -2476,7 +2477,7 @@ module Aws::RDS
|
|
2476
2477
|
#
|
2477
2478
|
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
2478
2479
|
#
|
2479
|
-
# Default: `io1` if the `Iops` parameter is specified. Otherwise, `
|
2480
|
+
# Default: `io1` if the `Iops` parameter is specified. Otherwise, `gp3`.
|
2480
2481
|
# @option options [Boolean] :copy_tags_to_snapshot
|
2481
2482
|
# Specifies whether to copy all tags from the read replica to snapshots
|
2482
2483
|
# of the read replica. By default, tags aren't copied.
|
@@ -2625,7 +2626,7 @@ module Aws::RDS
|
|
2625
2626
|
# @option options [String] :database_insights_mode
|
2626
2627
|
# The mode of Database Insights to enable for the read replica.
|
2627
2628
|
#
|
2628
|
-
# <note markdown="1">
|
2629
|
+
# <note markdown="1"> This setting isn't supported.
|
2629
2630
|
#
|
2630
2631
|
# </note>
|
2631
2632
|
# @option options [Boolean] :enable_performance_insights
|
@@ -3803,10 +3804,8 @@ module Aws::RDS
|
|
3803
3804
|
# @option options [String] :database_insights_mode
|
3804
3805
|
# Specifies the mode of Database Insights to enable for the DB instance.
|
3805
3806
|
#
|
3806
|
-
#
|
3807
|
-
#
|
3808
|
-
# <note markdown="1"> Currently, this value is inherited from the DB cluster and can't be
|
3809
|
-
# changed.
|
3807
|
+
# <note markdown="1"> Aurora DB instances inherit this value from the DB cluster, so you
|
3808
|
+
# can't change this value.
|
3810
3809
|
#
|
3811
3810
|
# </note>
|
3812
3811
|
# @option options [Boolean] :enable_performance_insights
|
@@ -3864,13 +3863,14 @@ module Aws::RDS
|
|
3864
3863
|
#
|
3865
3864
|
# The following values are valid for each DB engine:
|
3866
3865
|
#
|
3867
|
-
# * Aurora MySQL - `audit | error | general | slowquery
|
3866
|
+
# * Aurora MySQL - `audit | error | general | slowquery |
|
3867
|
+
# iam-db-auth-error`
|
3868
3868
|
#
|
3869
|
-
# * Aurora PostgreSQL - `postgresql`
|
3869
|
+
# * Aurora PostgreSQL - `postgresql | iam-db-auth-error`
|
3870
3870
|
#
|
3871
|
-
# * RDS for MySQL - `error | general | slowquery`
|
3871
|
+
# * RDS for MySQL - `error | general | slowquery | iam-db-auth-error`
|
3872
3872
|
#
|
3873
|
-
# * RDS for PostgreSQL - `postgresql | upgrade`
|
3873
|
+
# * RDS for PostgreSQL - `postgresql | upgrade | iam-db-auth-error`
|
3874
3874
|
#
|
3875
3875
|
# For more information about exporting CloudWatch Logs for Amazon RDS,
|
3876
3876
|
# see [ Publishing Database Logs to Amazon CloudWatch Logs][1] in the
|
@@ -4551,7 +4551,7 @@ module Aws::RDS
|
|
4551
4551
|
# Valid Values: `gp2 | gp3 | io1 | io2 | standard`
|
4552
4552
|
#
|
4553
4553
|
# Default: `io1`, if the `Iops` parameter is specified. Otherwise,
|
4554
|
-
# `
|
4554
|
+
# `gp3`.
|
4555
4555
|
#
|
4556
4556
|
# Constraints:
|
4557
4557
|
#
|
@@ -924,7 +924,7 @@ module Aws::RDS
|
|
924
924
|
# If you specify `io1`, `io2`, or `gp3`, you must also include a value
|
925
925
|
# for the `Iops` parameter.
|
926
926
|
#
|
927
|
-
# Default: `io1` if the `Iops` parameter is specified, otherwise `
|
927
|
+
# Default: `io1` if the `Iops` parameter is specified, otherwise `gp3`
|
928
928
|
# @option options [String] :tde_credential_arn
|
929
929
|
# The ARN from the key store with which to associate the instance for
|
930
930
|
# TDE encryption.
|
@@ -10,43 +10,39 @@
|
|
10
10
|
module Aws::RDS
|
11
11
|
class EndpointProvider
|
12
12
|
def resolve_endpoint(parameters)
|
13
|
-
|
14
|
-
|
15
|
-
use_fips = parameters.use_fips
|
16
|
-
endpoint = parameters.endpoint
|
17
|
-
if Aws::Endpoints::Matchers.set?(endpoint)
|
18
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
13
|
+
if Aws::Endpoints::Matchers.set?(parameters.endpoint)
|
14
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
|
19
15
|
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
20
16
|
end
|
21
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
17
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
22
18
|
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
23
19
|
end
|
24
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
20
|
+
return Aws::Endpoints::Endpoint.new(url: parameters.endpoint, headers: {}, properties: {})
|
25
21
|
end
|
26
|
-
if Aws::Endpoints::Matchers.set?(region)
|
27
|
-
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
28
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
22
|
+
if Aws::Endpoints::Matchers.set?(parameters.region)
|
23
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(parameters.region))
|
24
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
29
25
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
30
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
26
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
31
27
|
end
|
32
28
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
29
|
end
|
34
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
30
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_fips, true)
|
35
31
|
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
32
|
if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
|
37
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.amazonaws.com", headers: {}, properties: {})
|
33
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{parameters.region}.amazonaws.com", headers: {}, properties: {})
|
38
34
|
end
|
39
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
35
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
40
36
|
end
|
41
37
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
42
38
|
end
|
43
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
39
|
+
if Aws::Endpoints::Matchers.boolean_equals?(parameters.use_dual_stack, true)
|
44
40
|
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
45
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
41
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{parameters.region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
46
42
|
end
|
47
43
|
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
48
44
|
end
|
49
|
-
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://rds.#{parameters.region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
50
46
|
end
|
51
47
|
end
|
52
48
|
raise ArgumentError, "Invalid Configuration: Missing Region"
|