aws-sdk-rds 1.245.0 → 1.247.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 +59 -36
- data/lib/aws-sdk-rds/client_api.rb +2 -0
- data/lib/aws-sdk-rds/db_instance.rb +12 -8
- data/lib/aws-sdk-rds/db_snapshot.rb +6 -4
- data/lib/aws-sdk-rds/resource.rb +6 -4
- data/lib/aws-sdk-rds/types.rb +40 -49
- 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: 9e530334cfa33640f01a3e9d3bf4d751cbd0f07c2520ccd94d9c1bf1fc8b6928
|
4
|
+
data.tar.gz: 1b526c7da01acfc3d7ca35573d756b2343ba83710af1d6d137ab69f7ed8b05d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49f914fda2ba80843fccc1de7970383410d688b924d737a12a4f50a01f016d7ec3bc2e3c5116f6a178d6c31c4997d2321c4fda7db2bd19b5b4d981bcd448fb98
|
7
|
+
data.tar.gz: 174b6d43c0aa68a00489b2ef1afc63b8d06fe2a3fbcd379e0077f8fbb6d4acc234d29f7a682b7b3c2857c403c39e7e8ea4f38d09b504c554864ef9cde06309e7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.247.0 (2024-09-17)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Updates Amazon RDS documentation with configuration information about the BYOL model for RDS for Db2.
|
8
|
+
|
9
|
+
1.246.0 (2024-09-16)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Launching Global Cluster tagging.
|
13
|
+
|
4
14
|
1.245.0 (2024-09-12)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.247.0
|
data/lib/aws-sdk-rds/client.rb
CHANGED
@@ -721,25 +721,8 @@ module Aws::RDS
|
|
721
721
|
# @option params [required, String] :apply_action
|
722
722
|
# The pending maintenance action to apply to this resource.
|
723
723
|
#
|
724
|
-
# Valid Values:
|
725
|
-
#
|
726
|
-
# * `ca-certificate-rotation`
|
727
|
-
#
|
728
|
-
# * `db-upgrade`
|
729
|
-
#
|
730
|
-
# * `hardware-maintenance`
|
731
|
-
#
|
732
|
-
# * `os-upgrade`
|
733
|
-
#
|
734
|
-
# * `system-update`
|
735
|
-
#
|
736
|
-
# For more information about these actions, see [Maintenance actions for
|
737
|
-
# Amazon Aurora][1] or [Maintenance actions for Amazon RDS][2].
|
738
|
-
#
|
739
|
-
#
|
740
|
-
#
|
741
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-aurora
|
742
|
-
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Maintenance.html#maintenance-actions-rds
|
724
|
+
# Valid Values: `system-update`, `db-upgrade`, `hardware-maintenance`,
|
725
|
+
# `ca-certificate-rotation`
|
743
726
|
#
|
744
727
|
# @option params [required, String] :opt_in_type
|
745
728
|
# A value that specifies the type of opt-in request, or undoes an opt-in
|
@@ -4944,10 +4927,12 @@ module Aws::RDS
|
|
4944
4927
|
# The license model information for this DB instance.
|
4945
4928
|
#
|
4946
4929
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
4947
|
-
# Bring Your Own License (BYOL) model requires a custom parameter group
|
4948
|
-
#
|
4949
|
-
#
|
4950
|
-
#
|
4930
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group
|
4931
|
+
# and an Amazon Web Services License Manager self-managed license. The
|
4932
|
+
# Db2 license through Amazon Web Services Marketplace model requires an
|
4933
|
+
# Amazon Web Services Marketplace subscription. For more information,
|
4934
|
+
# see [Amazon RDS for Db2 licensing options][1] in the *Amazon RDS User
|
4935
|
+
# Guide*.
|
4951
4936
|
#
|
4952
4937
|
# The default for RDS for Db2 is `bring-your-own-license`.
|
4953
4938
|
#
|
@@ -8080,6 +8065,9 @@ module Aws::RDS
|
|
8080
8065
|
#
|
8081
8066
|
# ^
|
8082
8067
|
#
|
8068
|
+
# @option params [Array<Types::Tag>] :tags
|
8069
|
+
# Tags to assign to the global cluster.
|
8070
|
+
#
|
8083
8071
|
# @return [Types::CreateGlobalClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
8084
8072
|
#
|
8085
8073
|
# * {Types::CreateGlobalClusterResult#global_cluster #global_cluster} => Types::GlobalCluster
|
@@ -8121,6 +8109,12 @@ module Aws::RDS
|
|
8121
8109
|
# deletion_protection: false,
|
8122
8110
|
# database_name: "String",
|
8123
8111
|
# storage_encrypted: false,
|
8112
|
+
# tags: [
|
8113
|
+
# {
|
8114
|
+
# key: "String",
|
8115
|
+
# value: "String",
|
8116
|
+
# },
|
8117
|
+
# ],
|
8124
8118
|
# })
|
8125
8119
|
#
|
8126
8120
|
# @example Response structure
|
@@ -8146,6 +8140,9 @@ module Aws::RDS
|
|
8146
8140
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
8147
8141
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
8148
8142
|
# resp.global_cluster.failover_state.is_data_loss_allowed #=> Boolean
|
8143
|
+
# resp.global_cluster.tag_list #=> Array
|
8144
|
+
# resp.global_cluster.tag_list[0].key #=> String
|
8145
|
+
# resp.global_cluster.tag_list[0].value #=> String
|
8149
8146
|
#
|
8150
8147
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateGlobalCluster AWS API Documentation
|
8151
8148
|
#
|
@@ -10433,6 +10430,9 @@ module Aws::RDS
|
|
10433
10430
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
10434
10431
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
10435
10432
|
# resp.global_cluster.failover_state.is_data_loss_allowed #=> Boolean
|
10433
|
+
# resp.global_cluster.tag_list #=> Array
|
10434
|
+
# resp.global_cluster.tag_list[0].key #=> String
|
10435
|
+
# resp.global_cluster.tag_list[0].value #=> String
|
10436
10436
|
#
|
10437
10437
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteGlobalCluster AWS API Documentation
|
10438
10438
|
#
|
@@ -16014,6 +16014,9 @@ module Aws::RDS
|
|
16014
16014
|
# resp.global_clusters[0].failover_state.from_db_cluster_arn #=> String
|
16015
16015
|
# resp.global_clusters[0].failover_state.to_db_cluster_arn #=> String
|
16016
16016
|
# resp.global_clusters[0].failover_state.is_data_loss_allowed #=> Boolean
|
16017
|
+
# resp.global_clusters[0].tag_list #=> Array
|
16018
|
+
# resp.global_clusters[0].tag_list[0].key #=> String
|
16019
|
+
# resp.global_clusters[0].tag_list[0].value #=> String
|
16017
16020
|
#
|
16018
16021
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeGlobalClusters AWS API Documentation
|
16019
16022
|
#
|
@@ -18056,6 +18059,9 @@ module Aws::RDS
|
|
18056
18059
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
18057
18060
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
18058
18061
|
# resp.global_cluster.failover_state.is_data_loss_allowed #=> Boolean
|
18062
|
+
# resp.global_cluster.tag_list #=> Array
|
18063
|
+
# resp.global_cluster.tag_list[0].key #=> String
|
18064
|
+
# resp.global_cluster.tag_list[0].value #=> String
|
18059
18065
|
#
|
18060
18066
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverGlobalCluster AWS API Documentation
|
18061
18067
|
#
|
@@ -18069,11 +18075,13 @@ module Aws::RDS
|
|
18069
18075
|
# Lists all tags on an Amazon RDS resource.
|
18070
18076
|
#
|
18071
18077
|
# For an overview on tagging an Amazon RDS resource, see [Tagging Amazon
|
18072
|
-
# RDS Resources][1] in the *Amazon RDS User Guide
|
18078
|
+
# RDS Resources][1] in the *Amazon RDS User Guide* or [Tagging Amazon
|
18079
|
+
# Aurora and Amazon RDS Resources][2] in the *Amazon Aurora User Guide*.
|
18073
18080
|
#
|
18074
18081
|
#
|
18075
18082
|
#
|
18076
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
18083
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
18084
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
18077
18085
|
#
|
18078
18086
|
# @option params [required, String] :resource_name
|
18079
18087
|
# The Amazon RDS resource with tags to be listed. This value is an
|
@@ -22532,6 +22540,9 @@ module Aws::RDS
|
|
22532
22540
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
22533
22541
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
22534
22542
|
# resp.global_cluster.failover_state.is_data_loss_allowed #=> Boolean
|
22543
|
+
# resp.global_cluster.tag_list #=> Array
|
22544
|
+
# resp.global_cluster.tag_list[0].key #=> String
|
22545
|
+
# resp.global_cluster.tag_list[0].value #=> String
|
22535
22546
|
#
|
22536
22547
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyGlobalCluster AWS API Documentation
|
22537
22548
|
#
|
@@ -24050,6 +24061,9 @@ module Aws::RDS
|
|
24050
24061
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
24051
24062
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
24052
24063
|
# resp.global_cluster.failover_state.is_data_loss_allowed #=> Boolean
|
24064
|
+
# resp.global_cluster.tag_list #=> Array
|
24065
|
+
# resp.global_cluster.tag_list[0].key #=> String
|
24066
|
+
# resp.global_cluster.tag_list[0].value #=> String
|
24053
24067
|
#
|
24054
24068
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveFromGlobalCluster AWS API Documentation
|
24055
24069
|
#
|
@@ -24232,11 +24246,13 @@ module Aws::RDS
|
|
24232
24246
|
# Removes metadata tags from an Amazon RDS resource.
|
24233
24247
|
#
|
24234
24248
|
# For an overview on tagging an Amazon RDS resource, see [Tagging Amazon
|
24235
|
-
# RDS Resources][1] in the *Amazon RDS User Guide
|
24249
|
+
# RDS Resources][1] in the *Amazon RDS User Guide* or [Tagging Amazon
|
24250
|
+
# Aurora and Amazon RDS Resources][2] in the *Amazon Aurora User Guide*.
|
24236
24251
|
#
|
24237
24252
|
#
|
24238
24253
|
#
|
24239
|
-
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/
|
24254
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
24255
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
24240
24256
|
#
|
24241
24257
|
# @option params [required, String] :resource_name
|
24242
24258
|
# The Amazon RDS resource that the tags are removed from. This value is
|
@@ -26813,10 +26829,12 @@ module Aws::RDS
|
|
26813
26829
|
# License model information for the restored DB instance.
|
26814
26830
|
#
|
26815
26831
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
26816
|
-
# Bring Your Own License (BYOL) model requires a custom parameter group
|
26817
|
-
#
|
26818
|
-
#
|
26819
|
-
#
|
26832
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group
|
26833
|
+
# and an Amazon Web Services License Manager self-managed license. The
|
26834
|
+
# Db2 license through Amazon Web Services Marketplace model requires an
|
26835
|
+
# Amazon Web Services Marketplace subscription. For more information,
|
26836
|
+
# see [Amazon RDS for Db2 licensing options][1] in the *Amazon RDS User
|
26837
|
+
# Guide*.
|
26820
26838
|
#
|
26821
26839
|
# </note>
|
26822
26840
|
#
|
@@ -28506,10 +28524,12 @@ module Aws::RDS
|
|
28506
28524
|
# The license model information for the restored DB instance.
|
28507
28525
|
#
|
28508
28526
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
28509
|
-
# Bring Your Own License (BYOL) model requires a custom parameter group
|
28510
|
-
#
|
28511
|
-
#
|
28512
|
-
#
|
28527
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group
|
28528
|
+
# and an Amazon Web Services License Manager self-managed license. The
|
28529
|
+
# Db2 license through Amazon Web Services Marketplace model requires an
|
28530
|
+
# Amazon Web Services Marketplace subscription. For more information,
|
28531
|
+
# see [Amazon RDS for Db2 licensing options][1] in the *Amazon RDS User
|
28532
|
+
# Guide*.
|
28513
28533
|
#
|
28514
28534
|
# </note>
|
28515
28535
|
#
|
@@ -31171,6 +31191,9 @@ module Aws::RDS
|
|
31171
31191
|
# resp.global_cluster.failover_state.from_db_cluster_arn #=> String
|
31172
31192
|
# resp.global_cluster.failover_state.to_db_cluster_arn #=> String
|
31173
31193
|
# resp.global_cluster.failover_state.is_data_loss_allowed #=> Boolean
|
31194
|
+
# resp.global_cluster.tag_list #=> Array
|
31195
|
+
# resp.global_cluster.tag_list[0].key #=> String
|
31196
|
+
# resp.global_cluster.tag_list[0].value #=> String
|
31174
31197
|
#
|
31175
31198
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverGlobalCluster AWS API Documentation
|
31176
31199
|
#
|
@@ -31397,7 +31420,7 @@ module Aws::RDS
|
|
31397
31420
|
tracer: tracer
|
31398
31421
|
)
|
31399
31422
|
context[:gem_name] = 'aws-sdk-rds'
|
31400
|
-
context[:gem_version] = '1.
|
31423
|
+
context[:gem_version] = '1.247.0'
|
31401
31424
|
Seahorse::Client::Request.new(handlers, context)
|
31402
31425
|
end
|
31403
31426
|
|
@@ -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
|
@@ -1617,10 +1617,12 @@ module Aws::RDS
|
|
1617
1617
|
# The license model information for this DB instance.
|
1618
1618
|
#
|
1619
1619
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
1620
|
-
# Bring Your Own License (BYOL) model requires a custom parameter group
|
1621
|
-
#
|
1622
|
-
#
|
1623
|
-
#
|
1620
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group
|
1621
|
+
# and an Amazon Web Services License Manager self-managed license. The
|
1622
|
+
# Db2 license through Amazon Web Services Marketplace model requires an
|
1623
|
+
# Amazon Web Services Marketplace subscription. For more information,
|
1624
|
+
# see [Amazon RDS for Db2 licensing options][1] in the *Amazon RDS User
|
1625
|
+
# Guide*.
|
1624
1626
|
#
|
1625
1627
|
# The default for RDS for Db2 is `bring-your-own-license`.
|
1626
1628
|
#
|
@@ -4358,10 +4360,12 @@ module Aws::RDS
|
|
4358
4360
|
# The license model information for the restored DB instance.
|
4359
4361
|
#
|
4360
4362
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
4361
|
-
# Bring Your Own License (BYOL) model requires a custom parameter group
|
4362
|
-
#
|
4363
|
-
#
|
4364
|
-
#
|
4363
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group
|
4364
|
+
# and an Amazon Web Services License Manager self-managed license. The
|
4365
|
+
# Db2 license through Amazon Web Services Marketplace model requires an
|
4366
|
+
# Amazon Web Services Marketplace subscription. For more information,
|
4367
|
+
# see [Amazon RDS for Db2 licensing options][1] in the *Amazon RDS User
|
4368
|
+
# Guide*.
|
4365
4369
|
#
|
4366
4370
|
# </note>
|
4367
4371
|
#
|
@@ -804,10 +804,12 @@ module Aws::RDS
|
|
804
804
|
# License model information for the restored DB instance.
|
805
805
|
#
|
806
806
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
807
|
-
# Bring Your Own License (BYOL) model requires a custom parameter group
|
808
|
-
#
|
809
|
-
#
|
810
|
-
#
|
807
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group
|
808
|
+
# and an Amazon Web Services License Manager self-managed license. The
|
809
|
+
# Db2 license through Amazon Web Services Marketplace model requires an
|
810
|
+
# Amazon Web Services Marketplace subscription. For more information,
|
811
|
+
# see [Amazon RDS for Db2 licensing options][1] in the *Amazon RDS User
|
812
|
+
# Guide*.
|
811
813
|
#
|
812
814
|
# </note>
|
813
815
|
#
|
data/lib/aws-sdk-rds/resource.rb
CHANGED
@@ -1748,10 +1748,12 @@ module Aws::RDS
|
|
1748
1748
|
# The license model information for this DB instance.
|
1749
1749
|
#
|
1750
1750
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
1751
|
-
# Bring Your Own License (BYOL) model requires a custom parameter group
|
1752
|
-
#
|
1753
|
-
#
|
1754
|
-
#
|
1751
|
+
# Bring Your Own License (BYOL) model requires a custom parameter group
|
1752
|
+
# and an Amazon Web Services License Manager self-managed license. The
|
1753
|
+
# Db2 license through Amazon Web Services Marketplace model requires an
|
1754
|
+
# Amazon Web Services Marketplace subscription. For more information,
|
1755
|
+
# see [Amazon RDS for Db2 licensing options][1] in the *Amazon RDS User
|
1756
|
+
# Guide*.
|
1755
1757
|
#
|
1756
1758
|
# The default for RDS for Db2 is `bring-your-own-license`.
|
1757
1759
|
#
|
data/lib/aws-sdk-rds/types.rb
CHANGED
@@ -285,25 +285,8 @@ 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
|
-
#
|
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
|
288
|
+
# Valid Values: `system-update`, `db-upgrade`, `hardware-maintenance`,
|
289
|
+
# `ca-certificate-rotation`
|
307
290
|
# @return [String]
|
308
291
|
#
|
309
292
|
# @!attribute [rw] opt_in_type
|
@@ -3970,10 +3953,11 @@ module Aws::RDS
|
|
3970
3953
|
#
|
3971
3954
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
3972
3955
|
# Bring Your Own License (BYOL) model requires a custom parameter
|
3973
|
-
# group
|
3974
|
-
#
|
3975
|
-
#
|
3976
|
-
# RDS
|
3956
|
+
# group and an Amazon Web Services License Manager self-managed
|
3957
|
+
# license. The Db2 license through Amazon Web Services Marketplace
|
3958
|
+
# model requires an Amazon Web Services Marketplace subscription. For
|
3959
|
+
# more information, see [Amazon RDS for Db2 licensing options][1] in
|
3960
|
+
# the *Amazon RDS User Guide*.
|
3977
3961
|
#
|
3978
3962
|
# The default for RDS for Db2 is `bring-your-own-license`.
|
3979
3963
|
#
|
@@ -6319,6 +6303,10 @@ module Aws::RDS
|
|
6319
6303
|
# ^
|
6320
6304
|
# @return [Boolean]
|
6321
6305
|
#
|
6306
|
+
# @!attribute [rw] tags
|
6307
|
+
# Tags to assign to the global cluster.
|
6308
|
+
# @return [Array<Types::Tag>]
|
6309
|
+
#
|
6322
6310
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateGlobalClusterMessage AWS API Documentation
|
6323
6311
|
#
|
6324
6312
|
class CreateGlobalClusterMessage < Struct.new(
|
@@ -6329,7 +6317,8 @@ module Aws::RDS
|
|
6329
6317
|
:engine_lifecycle_support,
|
6330
6318
|
:deletion_protection,
|
6331
6319
|
:database_name,
|
6332
|
-
:storage_encrypted
|
6320
|
+
:storage_encrypted,
|
6321
|
+
:tags)
|
6333
6322
|
SENSITIVE = []
|
6334
6323
|
include Aws::Structure
|
6335
6324
|
end
|
@@ -16111,6 +16100,19 @@ module Aws::RDS
|
|
16111
16100
|
# called on this global cluster.
|
16112
16101
|
# @return [Types::FailoverState]
|
16113
16102
|
#
|
16103
|
+
# @!attribute [rw] tag_list
|
16104
|
+
# A list of tags.
|
16105
|
+
#
|
16106
|
+
# For more information, see [Tagging Amazon RDS resources][1] in the
|
16107
|
+
# *Amazon RDS User Guide* or [Tagging Amazon Aurora and Amazon RDS
|
16108
|
+
# resources][2] in the *Amazon Aurora User Guide*.
|
16109
|
+
#
|
16110
|
+
#
|
16111
|
+
#
|
16112
|
+
# [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Tagging.html
|
16113
|
+
# [2]: https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_Tagging.html
|
16114
|
+
# @return [Array<Types::Tag>]
|
16115
|
+
#
|
16114
16116
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/GlobalCluster AWS API Documentation
|
16115
16117
|
#
|
16116
16118
|
class GlobalCluster < Struct.new(
|
@@ -16125,7 +16127,8 @@ module Aws::RDS
|
|
16125
16127
|
:storage_encrypted,
|
16126
16128
|
:deletion_protection,
|
16127
16129
|
:global_cluster_members,
|
16128
|
-
:failover_state
|
16130
|
+
:failover_state,
|
16131
|
+
:tag_list)
|
16129
16132
|
SENSITIVE = []
|
16130
16133
|
include Aws::Structure
|
16131
16134
|
end
|
@@ -20929,26 +20932,12 @@ module Aws::RDS
|
|
20929
20932
|
# For more information about maintenance actions, see [Maintaining a
|
20930
20933
|
# DB instance][1].
|
20931
20934
|
#
|
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].
|
20935
|
+
# Valid Values:` system-update | db-upgrade | hardware-maintenance |
|
20936
|
+
# ca-certificate-rotation`
|
20946
20937
|
#
|
20947
20938
|
#
|
20948
20939
|
#
|
20949
20940
|
# [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
|
20952
20941
|
# @return [String]
|
20953
20942
|
#
|
20954
20943
|
# @!attribute [rw] auto_applied_after_date
|
@@ -24183,10 +24172,11 @@ module Aws::RDS
|
|
24183
24172
|
#
|
24184
24173
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
24185
24174
|
# Bring Your Own License (BYOL) model requires a custom parameter
|
24186
|
-
# group
|
24187
|
-
#
|
24188
|
-
#
|
24189
|
-
# RDS
|
24175
|
+
# group and an Amazon Web Services License Manager self-managed
|
24176
|
+
# license. The Db2 license through Amazon Web Services Marketplace
|
24177
|
+
# model requires an Amazon Web Services Marketplace subscription. For
|
24178
|
+
# more information, see [Amazon RDS for Db2 licensing options][1] in
|
24179
|
+
# the *Amazon RDS User Guide*.
|
24190
24180
|
#
|
24191
24181
|
# </note>
|
24192
24182
|
#
|
@@ -25589,10 +25579,11 @@ module Aws::RDS
|
|
25589
25579
|
#
|
25590
25580
|
# <note markdown="1"> License models for RDS for Db2 require additional configuration. The
|
25591
25581
|
# Bring Your Own License (BYOL) model requires a custom parameter
|
25592
|
-
# group
|
25593
|
-
#
|
25594
|
-
#
|
25595
|
-
# RDS
|
25582
|
+
# group and an Amazon Web Services License Manager self-managed
|
25583
|
+
# license. The Db2 license through Amazon Web Services Marketplace
|
25584
|
+
# model requires an Amazon Web Services Marketplace subscription. For
|
25585
|
+
# more information, see [Amazon RDS for Db2 licensing options][1] in
|
25586
|
+
# the *Amazon RDS User Guide*.
|
25596
25587
|
#
|
25597
25588
|
# </note>
|
25598
25589
|
#
|
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.247.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-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|