aws-sdk-rds 1.244.0 → 1.246.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 +42 -9
- data/lib/aws-sdk-rds/client_api.rb +2 -0
- data/lib/aws-sdk-rds/db_instance.rb +3 -4
- data/lib/aws-sdk-rds/resource.rb +3 -1
- data/lib/aws-sdk-rds/types.rb +41 -9
- data/lib/aws-sdk-rds.rb +1 -1
- data/sig/client.rbs +7 -1
- data/sig/types.rbs +2 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 164e3fbb589b75e7be01da3c5cbb34236e0f46e551446668506b0bfb949e51d8
|
4
|
+
data.tar.gz: 8c38f6d291999604ab6ab84184be506eedf176b3b407ad7f70bd34bc01bc1254
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60e562006dc7b75dc8bceda073297c9506ce397898b3072d60a2b8a0ccfd6b28e8e4f918a2faafc264d1bf84174652e52af07cc594ef3391a97d7dbddc8c679c
|
7
|
+
data.tar.gz: 07abf3b9ae72ef4b3c63b36053ed444dae1ff3b51f6dabcf7d176fe6137b5a691da5741969eaf9f93ab5e5eb522520c3d3297dbe85eb0457426679de366ef7b3
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.246.0 (2024-09-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Launching Global Cluster tagging.
|
8
|
+
|
9
|
+
1.245.0 (2024-09-12)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for the os-upgrade pending maintenance action for Amazon Aurora DB clusters.
|
13
|
+
|
4
14
|
1.244.0 (2024-09-11)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.246.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -4593,6 +4593,8 @@ module Aws::RDS
|
|
4593
4593
|
#
|
4594
4594
|
# * `custom-sqlserver-web` (for RDS Custom for SQL Server DB instances)
|
4595
4595
|
#
|
4596
|
+
# * `custom-sqlserver-dev` (for RDS Custom for SQL Server DB instances)
|
4597
|
+
#
|
4596
4598
|
# * `db2-ae`
|
4597
4599
|
#
|
4598
4600
|
# * `db2-se`
|
@@ -4716,7 +4718,7 @@ module Aws::RDS
|
|
4716
4718
|
#
|
4717
4719
|
# * Must match the name of an existing DB subnet group.
|
4718
4720
|
#
|
4719
|
-
#
|
4721
|
+
# ^
|
4720
4722
|
#
|
4721
4723
|
# Example: `mydbsubnetgroup`
|
4722
4724
|
#
|
@@ -6297,9 +6299,6 @@ module Aws::RDS
|
|
6297
6299
|
# autogenerates a presigned URL that is a valid request for the
|
6298
6300
|
# operation that can run in the source Amazon Web Services Region.
|
6299
6301
|
#
|
6300
|
-
# `SourceRegion` isn't supported for SQL Server, because Amazon RDS for
|
6301
|
-
# SQL Server doesn't support cross-Region read replicas.
|
6302
|
-
#
|
6303
6302
|
# </note>
|
6304
6303
|
#
|
6305
6304
|
# This setting doesn't apply to RDS Custom DB instances.
|
@@ -8064,6 +8063,9 @@ module Aws::RDS
|
|
8064
8063
|
#
|
8065
8064
|
# ^
|
8066
8065
|
#
|
8066
|
+
# @option params [Array<Types::Tag>] :tags
|
8067
|
+
# Tags to assign to the global cluster.
|
8068
|
+
#
|
8067
8069
|
# @return [Types::CreateGlobalClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8068
8070
|
#
|
8069
8071
|
# * {Types::CreateGlobalClusterResult#global_cluster #global_cluster} => Types::GlobalCluster
|
@@ -8105,6 +8107,12 @@ module Aws::RDS
|
|
8105
8107
|
# deletion_protection: false,
|
8106
8108
|
# database_name: "String",
|
8107
8109
|
# storage_encrypted: false,
|
8110
|
+
# tags: [
|
8111
|
+
# {
|
8112
|
+
# key: "String",
|
8113
|
+
# value: "String",
|
8114
|
+
# },
|
8115
|
+
# ],
|
8108
8116
|
# })
|
8109
8117
|
#
|
8110
8118
|
# @example Response structure
|
@@ -8130,6 +8138,9 @@ module Aws::RDS
|
|
8130
8138
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
8131
8139
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
8132
8140
|
# resp.global_cluster.failover_state.is_data_loss_allowed #=> Boolean
|
8141
|
+
# resp.global_cluster.tag_list #=> Array
|
8142
|
+
# resp.global_cluster.tag_list[0].key #=> String
|
8143
|
+
# resp.global_cluster.tag_list[0].value #=> String
|
8133
8144
|
#
|
8134
8145
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateGlobalCluster AWS API Documentation
|
8135
8146
|
#
|
@@ -10417,6 +10428,9 @@ module Aws::RDS
|
|
10417
10428
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
10418
10429
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
10419
10430
|
# resp.global_cluster.failover_state.is_data_loss_allowed #=> Boolean
|
10431
|
+
# resp.global_cluster.tag_list #=> Array
|
10432
|
+
# resp.global_cluster.tag_list[0].key #=> String
|
10433
|
+
# resp.global_cluster.tag_list[0].value #=> String
|
10420
10434
|
#
|
10421
10435
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteGlobalCluster AWS API Documentation
|
10422
10436
|
#
|
@@ -15998,6 +16012,9 @@ module Aws::RDS
|
|
15998
16012
|
# resp.global_clusters[0].failover_state.from_db_cluster_arn #=> String
|
15999
16013
|
# resp.global_clusters[0].failover_state.to_db_cluster_arn #=> String
|
16000
16014
|
# resp.global_clusters[0].failover_state.is_data_loss_allowed #=> Boolean
|
16015
|
+
# resp.global_clusters[0].tag_list #=> Array
|
16016
|
+
# resp.global_clusters[0].tag_list[0].key #=> String
|
16017
|
+
# resp.global_clusters[0].tag_list[0].value #=> String
|
16001
16018
|
#
|
16002
16019
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeGlobalClusters AWS API Documentation
|
16003
16020
|
#
|
@@ -18040,6 +18057,9 @@ module Aws::RDS
|
|
18040
18057
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
18041
18058
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
18042
18059
|
# resp.global_cluster.failover_state.is_data_loss_allowed #=> Boolean
|
18060
|
+
# resp.global_cluster.tag_list #=> Array
|
18061
|
+
# resp.global_cluster.tag_list[0].key #=> String
|
18062
|
+
# resp.global_cluster.tag_list[0].value #=> String
|
18043
18063
|
#
|
18044
18064
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverGlobalCluster AWS API Documentation
|
18045
18065
|
#
|
@@ -18053,11 +18073,13 @@ module Aws::RDS
|
|
18053
18073
|
# Lists all tags on an Amazon RDS resource.
|
18054
18074
|
#
|
18055
18075
|
# For an overview on tagging an Amazon RDS resource, see [Tagging Amazon
|
18056
|
-
# RDS Resources][1] in the *Amazon RDS User Guide
|
18076
|
+
# RDS Resources][1] in the *Amazon RDS User Guide* or [Tagging Amazon
|
18077
|
+
# Aurora and Amazon RDS Resources][2] in the *Amazon Aurora User Guide*.
|
18057
18078
|
#
|
18058
18079
|
#
|
18059
18080
|
#
|
18060
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
18081
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
18082
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
18061
18083
|
#
|
18062
18084
|
# @option params [required, String] :resource_name
|
18063
18085
|
# The Amazon RDS resource with tags to be listed. This value is an
|
@@ -22516,6 +22538,9 @@ module Aws::RDS
|
|
22516
22538
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
22517
22539
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
22518
22540
|
# resp.global_cluster.failover_state.is_data_loss_allowed #=> Boolean
|
22541
|
+
# resp.global_cluster.tag_list #=> Array
|
22542
|
+
# resp.global_cluster.tag_list[0].key #=> String
|
22543
|
+
# resp.global_cluster.tag_list[0].value #=> String
|
22519
22544
|
#
|
22520
22545
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyGlobalCluster AWS API Documentation
|
22521
22546
|
#
|
@@ -24034,6 +24059,9 @@ module Aws::RDS
|
|
24034
24059
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
24035
24060
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
24036
24061
|
# resp.global_cluster.failover_state.is_data_loss_allowed #=> Boolean
|
24062
|
+
# resp.global_cluster.tag_list #=> Array
|
24063
|
+
# resp.global_cluster.tag_list[0].key #=> String
|
24064
|
+
# resp.global_cluster.tag_list[0].value #=> String
|
24037
24065
|
#
|
24038
24066
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveFromGlobalCluster AWS API Documentation
|
24039
24067
|
#
|
@@ -24216,11 +24244,13 @@ module Aws::RDS
|
|
24216
24244
|
# Removes metadata tags from an Amazon RDS resource.
|
24217
24245
|
#
|
24218
24246
|
# For an overview on tagging an Amazon RDS resource, see [Tagging Amazon
|
24219
|
-
# RDS Resources][1] in the *Amazon RDS User Guide
|
24247
|
+
# RDS Resources][1] in the *Amazon RDS User Guide* or [Tagging Amazon
|
24248
|
+
# Aurora and Amazon RDS Resources][2] in the *Amazon Aurora User Guide*.
|
24220
24249
|
#
|
24221
24250
|
#
|
24222
24251
|
#
|
24223
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
24252
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
24253
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
24224
24254
|
#
|
24225
24255
|
# @option params [required, String] :resource_name
|
24226
24256
|
# The Amazon RDS resource that the tags are removed from. This value is
|
@@ -31155,6 +31185,9 @@ module Aws::RDS
|
|
31155
31185
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
31156
31186
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
31157
31187
|
# resp.global_cluster.failover_state.is_data_loss_allowed #=> Boolean
|
31188
|
+
# resp.global_cluster.tag_list #=> Array
|
31189
|
+
# resp.global_cluster.tag_list[0].key #=> String
|
31190
|
+
# resp.global_cluster.tag_list[0].value #=> String
|
31158
31191
|
#
|
31159
31192
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverGlobalCluster AWS API Documentation
|
31160
31193
|
#
|
@@ -31381,7 +31414,7 @@ module Aws::RDS
|
|
31381
31414
|
tracer: tracer
|
31382
31415
|
)
|
31383
31416
|
context[:gem_name] = 'aws-sdk-rds'
|
31384
|
-
context[:gem_version] = '1.
|
31417
|
+
context[:gem_version] = '1.246.0'
|
31385
31418
|
Seahorse::Client::Request.new(handlers, context)
|
31386
31419
|
end
|
31387
31420
|
|
@@ -1308,6 +1308,7 @@ module Aws::RDS
|
|
1308
1308
|
CreateGlobalClusterMessage.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
1309
1309
|
CreateGlobalClusterMessage.add_member(:database_name, Shapes::ShapeRef.new(shape: String, location_name: "DatabaseName"))
|
1310
1310
|
CreateGlobalClusterMessage.add_member(:storage_encrypted, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "StorageEncrypted"))
|
1311
|
+
CreateGlobalClusterMessage.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
1311
1312
|
CreateGlobalClusterMessage.struct_class = Types::CreateGlobalClusterMessage
|
1312
1313
|
|
1313
1314
|
CreateGlobalClusterResult.add_member(:global_cluster, Shapes::ShapeRef.new(shape: GlobalCluster, location_name: "GlobalCluster"))
|
@@ -2825,6 +2826,7 @@ module Aws::RDS
|
|
2825
2826
|
GlobalCluster.add_member(:deletion_protection, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DeletionProtection"))
|
2826
2827
|
GlobalCluster.add_member(:global_cluster_members, Shapes::ShapeRef.new(shape: GlobalClusterMemberList, location_name: "GlobalClusterMembers"))
|
2827
2828
|
GlobalCluster.add_member(:failover_state, Shapes::ShapeRef.new(shape: FailoverState, location_name: "FailoverState"))
|
2829
|
+
GlobalCluster.add_member(:tag_list, Shapes::ShapeRef.new(shape: TagList, location_name: "TagList"))
|
2828
2830
|
GlobalCluster.struct_class = Types::GlobalCluster
|
2829
2831
|
|
2830
2832
|
GlobalClusterAlreadyExistsFault.struct_class = Types::GlobalClusterAlreadyExistsFault
|
@@ -1298,6 +1298,8 @@ module Aws::RDS
|
|
1298
1298
|
#
|
1299
1299
|
# * `custom-sqlserver-web` (for RDS Custom for SQL Server DB instances)
|
1300
1300
|
#
|
1301
|
+
# * `custom-sqlserver-dev` (for RDS Custom for SQL Server DB instances)
|
1302
|
+
#
|
1301
1303
|
# * `db2-ae`
|
1302
1304
|
#
|
1303
1305
|
# * `db2-se`
|
@@ -1415,7 +1417,7 @@ module Aws::RDS
|
|
1415
1417
|
#
|
1416
1418
|
# * Must match the name of an existing DB subnet group.
|
1417
1419
|
#
|
1418
|
-
#
|
1420
|
+
# ^
|
1419
1421
|
#
|
1420
1422
|
# Example: `mydbsubnetgroup`
|
1421
1423
|
# @option options [String] :preferred_maintenance_window
|
@@ -2571,9 +2573,6 @@ module Aws::RDS
|
|
2571
2573
|
# autogenerates a presigned URL that is a valid request for the
|
2572
2574
|
# operation that can run in the source Amazon Web Services Region.
|
2573
2575
|
#
|
2574
|
-
# `SourceRegion` isn't supported for SQL Server, because Amazon RDS for
|
2575
|
-
# SQL Server doesn't support cross-Region read replicas.
|
2576
|
-
#
|
2577
2576
|
# </note>
|
2578
2577
|
#
|
2579
2578
|
# This setting doesn't apply to RDS Custom DB instances.
|
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
@@ -1027,8 +1027,7 @@ module Aws::RDS
|
|
1027
1027
|
# The number of seconds for a proxy to wait for a connection to become
|
1028
1028
|
# available in the connection pool. This setting only applies when the
|
1029
1029
|
# proxy has opened its maximum number of connections and all
|
1030
|
-
# connections are busy with client sessions.
|
1031
|
-
# time, specify `0`.
|
1030
|
+
# connections are busy with client sessions.
|
1032
1031
|
#
|
1033
1032
|
# Default: `120`
|
1034
1033
|
#
|
@@ -3601,6 +3600,9 @@ module Aws::RDS
|
|
3601
3600
|
# * `custom-sqlserver-web` (for RDS Custom for SQL Server DB
|
3602
3601
|
# instances)
|
3603
3602
|
#
|
3603
|
+
# * `custom-sqlserver-dev` (for RDS Custom for SQL Server DB
|
3604
|
+
# instances)
|
3605
|
+
#
|
3604
3606
|
# * `db2-ae`
|
3605
3607
|
#
|
3606
3608
|
# * `db2-se`
|
@@ -3730,7 +3732,7 @@ module Aws::RDS
|
|
3730
3732
|
#
|
3731
3733
|
# * Must match the name of an existing DB subnet group.
|
3732
3734
|
#
|
3733
|
-
#
|
3735
|
+
# ^
|
3734
3736
|
#
|
3735
3737
|
# Example: `mydbsubnetgroup`
|
3736
3738
|
# @return [String]
|
@@ -5082,9 +5084,6 @@ module Aws::RDS
|
|
5082
5084
|
# autogenerates a presigned URL that is a valid request for the
|
5083
5085
|
# operation that can run in the source Amazon Web Services Region.
|
5084
5086
|
#
|
5085
|
-
# `SourceRegion` isn't supported for SQL Server, because Amazon RDS
|
5086
|
-
# for SQL Server doesn't support cross-Region read replicas.
|
5087
|
-
#
|
5088
5087
|
# </note>
|
5089
5088
|
#
|
5090
5089
|
# This setting doesn't apply to RDS Custom DB instances.
|
@@ -6303,6 +6302,10 @@ module Aws::RDS
|
|
6303
6302
|
# ^
|
6304
6303
|
# @return [Boolean]
|
6305
6304
|
#
|
6305
|
+
# @!attribute [rw] tags
|
6306
|
+
# Tags to assign to the global cluster.
|
6307
|
+
# @return [Array<Types::Tag>]
|
6308
|
+
#
|
6306
6309
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateGlobalClusterMessage AWS API Documentation
|
6307
6310
|
#
|
6308
6311
|
class CreateGlobalClusterMessage < Struct.new(
|
@@ -6313,7 +6316,8 @@ module Aws::RDS
|
|
6313
6316
|
:engine_lifecycle_support,
|
6314
6317
|
:deletion_protection,
|
6315
6318
|
:database_name,
|
6316
|
-
:storage_encrypted
|
6319
|
+
:storage_encrypted,
|
6320
|
+
:tags)
|
6317
6321
|
SENSITIVE = []
|
6318
6322
|
include Aws::Structure
|
6319
6323
|
end
|
@@ -9779,7 +9783,21 @@ module Aws::RDS
|
|
9779
9783
|
# @return [String]
|
9780
9784
|
#
|
9781
9785
|
# @!attribute [rw] parameter_apply_status
|
9782
|
-
# The status of parameter updates.
|
9786
|
+
# The status of parameter updates. Valid values are:
|
9787
|
+
#
|
9788
|
+
# * `applying`: The parameter group change is being applied to the
|
9789
|
+
# database.
|
9790
|
+
#
|
9791
|
+
# * `failed-to-apply`: The parameter group is in an invalid state.
|
9792
|
+
#
|
9793
|
+
# * `in-sync`: The parameter group change is synchronized with the
|
9794
|
+
# database.
|
9795
|
+
#
|
9796
|
+
# * `pending-database-upgrade`: The parameter group change will be
|
9797
|
+
# applied after the DB instance is upgraded.
|
9798
|
+
#
|
9799
|
+
# * `pending-reboot`: The parameter group change will be applied after
|
9800
|
+
# the DB instance reboots.
|
9783
9801
|
# @return [String]
|
9784
9802
|
#
|
9785
9803
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBParameterGroupStatus AWS API Documentation
|
@@ -16081,6 +16099,19 @@ module Aws::RDS
|
|
16081
16099
|
# called on this global cluster.
|
16082
16100
|
# @return [Types::FailoverState]
|
16083
16101
|
#
|
16102
|
+
# @!attribute [rw] tag_list
|
16103
|
+
# A list of tags.
|
16104
|
+
#
|
16105
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
16106
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
16107
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
16108
|
+
#
|
16109
|
+
#
|
16110
|
+
#
|
16111
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
16112
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
16113
|
+
# @return [Array<Types::Tag>]
|
16114
|
+
#
|
16084
16115
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/GlobalCluster AWS API Documentation
|
16085
16116
|
#
|
16086
16117
|
class GlobalCluster < Struct.new(
|
@@ -16095,7 +16126,8 @@ module Aws::RDS
|
|
16095
16126
|
:storage_encrypted,
|
16096
16127
|
:deletion_protection,
|
16097
16128
|
:global_cluster_members,
|
16098
|
-
:failover_state
|
16129
|
+
:failover_state,
|
16130
|
+
:tag_list)
|
16099
16131
|
SENSITIVE = []
|
16100
16132
|
include Aws::Structure
|
16101
16133
|
end
|
data/lib/aws-sdk-rds.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -835,7 +835,13 @@ module Aws
|
|
835
835
|
?engine_lifecycle_support: ::String,
|
836
836
|
?deletion_protection: bool,
|
837
837
|
?database_name: ::String,
|
838
|
-
?storage_encrypted: bool
|
838
|
+
?storage_encrypted: bool,
|
839
|
+
?tags: Array[
|
840
|
+
{
|
841
|
+
key: ::String?,
|
842
|
+
value: ::String?
|
843
|
+
},
|
844
|
+
]
|
839
845
|
) -> _CreateGlobalClusterResponseSuccess
|
840
846
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateGlobalClusterResponseSuccess
|
841
847
|
|
data/sig/types.rbs
CHANGED
@@ -674,6 +674,7 @@ module Aws::RDS
|
|
674
674
|
attr_accessor deletion_protection: bool
|
675
675
|
attr_accessor database_name: ::String
|
676
676
|
attr_accessor storage_encrypted: bool
|
677
|
+
attr_accessor tags: ::Array[Types::Tag]
|
677
678
|
SENSITIVE: []
|
678
679
|
end
|
679
680
|
|
@@ -2522,6 +2523,7 @@ module Aws::RDS
|
|
2522
2523
|
attr_accessor deletion_protection: bool
|
2523
2524
|
attr_accessor global_cluster_members: ::Array[Types::GlobalClusterMember]
|
2524
2525
|
attr_accessor failover_state: Types::FailoverState
|
2526
|
+
attr_accessor tag_list: ::Array[Types::Tag]
|
2525
2527
|
SENSITIVE: []
|
2526
2528
|
end
|
2527
2529
|
|
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.246.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-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|