aws-sdk-rds 1.243.0 → 1.245.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-rds/client.rb +23 -7
- data/lib/aws-sdk-rds/db_instance.rb +3 -4
- data/lib/aws-sdk-rds/endpoints.rb +162 -648
- data/lib/aws-sdk-rds/plugins/endpoints.rb +10 -1
- data/lib/aws-sdk-rds/resource.rb +3 -1
- data/lib/aws-sdk-rds/types.rb +55 -11
- data/lib/aws-sdk-rds.rb +1 -1
- metadata +4 -4
@@ -40,11 +40,20 @@ module Aws::RDS
|
|
40
40
|
context[:auth_scheme] =
|
41
41
|
Aws::Endpoints.resolve_auth_scheme(context, endpoint)
|
42
42
|
|
43
|
-
@handler.call(context)
|
43
|
+
with_metrics(context) { @handler.call(context) }
|
44
44
|
end
|
45
45
|
|
46
46
|
private
|
47
47
|
|
48
|
+
def with_metrics(context, &block)
|
49
|
+
metrics = []
|
50
|
+
metrics << 'ENDPOINT_OVERRIDE' unless context.config.regional_endpoint
|
51
|
+
if context[:auth_scheme] && context[:auth_scheme]['name'] == 'sigv4a'
|
52
|
+
metrics << 'SIGV4A_SIGNING'
|
53
|
+
end
|
54
|
+
Aws::Plugins::UserAgent.metric(*metrics, &block)
|
55
|
+
end
|
56
|
+
|
48
57
|
def apply_endpoint_headers(context, headers)
|
49
58
|
headers.each do |key, values|
|
50
59
|
value = values
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -1429,6 +1429,8 @@ module Aws::RDS
|
|
1429
1429
|
#
|
1430
1430
|
# * `custom-sqlserver-web` (for RDS Custom for SQL Server DB instances)
|
1431
1431
|
#
|
1432
|
+
# * `custom-sqlserver-dev` (for RDS Custom for SQL Server DB instances)
|
1433
|
+
#
|
1432
1434
|
# * `db2-ae`
|
1433
1435
|
#
|
1434
1436
|
# * `db2-se`
|
@@ -1546,7 +1548,7 @@ module Aws::RDS
|
|
1546
1548
|
#
|
1547
1549
|
# * Must match the name of an existing DB subnet group.
|
1548
1550
|
#
|
1549
|
-
#
|
1551
|
+
# ^
|
1550
1552
|
#
|
1551
1553
|
# Example: `mydbsubnetgroup`
|
1552
1554
|
# @option options [String] :preferred_maintenance_window
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -285,8 +285,25 @@ module Aws::RDS
|
|
285
285
|
# @!attribute [rw] apply_action
|
286
286
|
# The pending maintenance action to apply to this resource.
|
287
287
|
#
|
288
|
-
# Valid Values:
|
289
|
-
#
|
288
|
+
# Valid Values:
|
289
|
+
#
|
290
|
+
# * `ca-certificate-rotation`
|
291
|
+
#
|
292
|
+
# * `db-upgrade`
|
293
|
+
#
|
294
|
+
# * `hardware-maintenance`
|
295
|
+
#
|
296
|
+
# * `os-upgrade`
|
297
|
+
#
|
298
|
+
# * `system-update`
|
299
|
+
#
|
300
|
+
# For more information about these actions, see [Maintenance actions
|
301
|
+
# for Amazon Aurora][1] or [Maintenance actions for Amazon RDS][2].
|
302
|
+
#
|
303
|
+
#
|
304
|
+
#
|
305
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-aurora
|
306
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-rds
|
290
307
|
# @return [String]
|
291
308
|
#
|
292
309
|
# @!attribute [rw] opt_in_type
|
@@ -1027,8 +1044,7 @@ module Aws::RDS
|
|
1027
1044
|
# The number of seconds for a proxy to wait for a connection to become
|
1028
1045
|
# available in the connection pool. This setting only applies when the
|
1029
1046
|
# proxy has opened its maximum number of connections and all
|
1030
|
-
# connections are busy with client sessions.
|
1031
|
-
# time, specify `0`.
|
1047
|
+
# connections are busy with client sessions.
|
1032
1048
|
#
|
1033
1049
|
# Default: `120`
|
1034
1050
|
#
|
@@ -3601,6 +3617,9 @@ module Aws::RDS
|
|
3601
3617
|
# * `custom-sqlserver-web` (for RDS Custom for SQL Server DB
|
3602
3618
|
# instances)
|
3603
3619
|
#
|
3620
|
+
# * `custom-sqlserver-dev` (for RDS Custom for SQL Server DB
|
3621
|
+
# instances)
|
3622
|
+
#
|
3604
3623
|
# * `db2-ae`
|
3605
3624
|
#
|
3606
3625
|
# * `db2-se`
|
@@ -3730,7 +3749,7 @@ module Aws::RDS
|
|
3730
3749
|
#
|
3731
3750
|
# * Must match the name of an existing DB subnet group.
|
3732
3751
|
#
|
3733
|
-
#
|
3752
|
+
# ^
|
3734
3753
|
#
|
3735
3754
|
# Example: `mydbsubnetgroup`
|
3736
3755
|
# @return [String]
|
@@ -5082,9 +5101,6 @@ module Aws::RDS
|
|
5082
5101
|
# autogenerates a presigned URL that is a valid request for the
|
5083
5102
|
# operation that can run in the source Amazon Web Services Region.
|
5084
5103
|
#
|
5085
|
-
# `SourceRegion` isn't supported for SQL Server, because Amazon RDS
|
5086
|
-
# for SQL Server doesn't support cross-Region read replicas.
|
5087
|
-
#
|
5088
5104
|
# </note>
|
5089
5105
|
#
|
5090
5106
|
# This setting doesn't apply to RDS Custom DB instances.
|
@@ -9779,7 +9795,21 @@ module Aws::RDS
|
|
9779
9795
|
# @return [String]
|
9780
9796
|
#
|
9781
9797
|
# @!attribute [rw] parameter_apply_status
|
9782
|
-
# The status of parameter updates.
|
9798
|
+
# The status of parameter updates. Valid values are:
|
9799
|
+
#
|
9800
|
+
# * `applying`: The parameter group change is being applied to the
|
9801
|
+
# database.
|
9802
|
+
#
|
9803
|
+
# * `failed-to-apply`: The parameter group is in an invalid state.
|
9804
|
+
#
|
9805
|
+
# * `in-sync`: The parameter group change is synchronized with the
|
9806
|
+
# database.
|
9807
|
+
#
|
9808
|
+
# * `pending-database-upgrade`: The parameter group change will be
|
9809
|
+
# applied after the DB instance is upgraded.
|
9810
|
+
#
|
9811
|
+
# * `pending-reboot`: The parameter group change will be applied after
|
9812
|
+
# the DB instance reboots.
|
9783
9813
|
# @return [String]
|
9784
9814
|
#
|
9785
9815
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBParameterGroupStatus AWS API Documentation
|
@@ -20899,12 +20929,26 @@ module Aws::RDS
|
|
20899
20929
|
# For more information about maintenance actions, see [Maintaining a
|
20900
20930
|
# DB instance][1].
|
20901
20931
|
#
|
20902
|
-
# Valid Values
|
20903
|
-
#
|
20932
|
+
# Valid Values:
|
20933
|
+
#
|
20934
|
+
# * `ca-certificate-rotation`
|
20935
|
+
#
|
20936
|
+
# * `db-upgrade`
|
20937
|
+
#
|
20938
|
+
# * `hardware-maintenance`
|
20939
|
+
#
|
20940
|
+
# * `os-upgrade`
|
20941
|
+
#
|
20942
|
+
# * `system-update`
|
20943
|
+
#
|
20944
|
+
# For more information about these actions, see [Maintenance actions
|
20945
|
+
# for Amazon Aurora][2] or [Maintenance actions for Amazon RDS][3].
|
20904
20946
|
#
|
20905
20947
|
#
|
20906
20948
|
#
|
20907
20949
|
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html
|
20950
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-aurora
|
20951
|
+
# [3]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-rds
|
20908
20952
|
# @return [String]
|
20909
20953
|
#
|
20910
20954
|
# @!attribute [rw] auto_applied_after_date
|
data/lib/aws-sdk-rds.rb
CHANGED
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.245.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: 2024-09-
|
11
|
+
date: 2024-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.205.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.205.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|