aws-sdk-rds 1.245.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd851527ea9b39cc242efde382481837883914cb25618cb8811b5d62254f7de5
4
- data.tar.gz: 2d82428084786d2ba624ad7ed7e53d2a7c60b4eb10f00ea1d83deaf419099412
3
+ metadata.gz: 164e3fbb589b75e7be01da3c5cbb34236e0f46e551446668506b0bfb949e51d8
4
+ data.tar.gz: 8c38f6d291999604ab6ab84184be506eedf176b3b407ad7f70bd34bc01bc1254
5
5
  SHA512:
6
- metadata.gz: 27bbb8c8b229bf1381f12e59290d66507f22b9c2ccad6b7a1b734dc9126fd81e8680829045efc0439b4a31bbe443f8e38009d880f159ee10599671ea6c36435a
7
- data.tar.gz: 162f703ad53ebded4a9e5a0efa6a9c3f9b20cd6a875a0e5520dbb5eba45d9c8ceec0a6eb42b8c1cce16550403f547cfc16d296134145378bed556aeea0314ec2
6
+ metadata.gz: 60e562006dc7b75dc8bceda073297c9506ce397898b3072d60a2b8a0ccfd6b28e8e4f918a2faafc264d1bf84174652e52af07cc594ef3391a97d7dbddc8c679c
7
+ data.tar.gz: 07abf3b9ae72ef4b3c63b36053ed444dae1ff3b51f6dabcf7d176fe6137b5a691da5741969eaf9f93ab5e5eb522520c3d3297dbe85eb0457426679de366ef7b3
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.246.0 (2024-09-16)
5
+ ------------------
6
+
7
+ * Feature - Launching Global Cluster tagging.
8
+
4
9
  1.245.0 (2024-09-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.245.0
1
+ 1.246.0
@@ -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
@@ -8080,6 +8063,9 @@ module Aws::RDS
8080
8063
  #
8081
8064
  # ^
8082
8065
  #
8066
+ # @option params [Array<Types::Tag>] :tags
8067
+ # Tags to assign to the global cluster.
8068
+ #
8083
8069
  # @return [Types::CreateGlobalClusterResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8084
8070
  #
8085
8071
  # * {Types::CreateGlobalClusterResult#global_cluster #global_cluster} => Types::GlobalCluster
@@ -8121,6 +8107,12 @@ module Aws::RDS
8121
8107
  # deletion_protection: false,
8122
8108
  # database_name: "String",
8123
8109
  # storage_encrypted: false,
8110
+ # tags: [
8111
+ # {
8112
+ # key: "String",
8113
+ # value: "String",
8114
+ # },
8115
+ # ],
8124
8116
  # })
8125
8117
  #
8126
8118
  # @example Response structure
@@ -8146,6 +8138,9 @@ module Aws::RDS
8146
8138
  # resp.global_cluster.failover_state.from_db_cluster_arn #=> String
8147
8139
  # resp.global_cluster.failover_state.to_db_cluster_arn #=> String
8148
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
8149
8144
  #
8150
8145
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateGlobalCluster AWS API Documentation
8151
8146
  #
@@ -10433,6 +10428,9 @@ module Aws::RDS
10433
10428
  # resp.global_cluster.failover_state.from_db_cluster_arn #=> String
10434
10429
  # resp.global_cluster.failover_state.to_db_cluster_arn #=> String
10435
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
10436
10434
  #
10437
10435
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteGlobalCluster AWS API Documentation
10438
10436
  #
@@ -16014,6 +16012,9 @@ module Aws::RDS
16014
16012
  # resp.global_clusters[0].failover_state.from_db_cluster_arn #=> String
16015
16013
  # resp.global_clusters[0].failover_state.to_db_cluster_arn #=> String
16016
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
16017
16018
  #
16018
16019
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeGlobalClusters AWS API Documentation
16019
16020
  #
@@ -18056,6 +18057,9 @@ module Aws::RDS
18056
18057
  # resp.global_cluster.failover_state.from_db_cluster_arn #=> String
18057
18058
  # resp.global_cluster.failover_state.to_db_cluster_arn #=> String
18058
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
18059
18063
  #
18060
18064
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/FailoverGlobalCluster AWS API Documentation
18061
18065
  #
@@ -18069,11 +18073,13 @@ module Aws::RDS
18069
18073
  # Lists all tags on an Amazon RDS resource.
18070
18074
  #
18071
18075
  # For an overview on tagging an Amazon RDS resource, see [Tagging Amazon
18072
- # 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*.
18073
18078
  #
18074
18079
  #
18075
18080
  #
18076
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.Tagging.html
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
18077
18083
  #
18078
18084
  # @option params [required, String] :resource_name
18079
18085
  # The Amazon RDS resource with tags to be listed. This value is an
@@ -22532,6 +22538,9 @@ module Aws::RDS
22532
22538
  # resp.global_cluster.failover_state.from_db_cluster_arn #=> String
22533
22539
  # resp.global_cluster.failover_state.to_db_cluster_arn #=> String
22534
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
22535
22544
  #
22536
22545
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyGlobalCluster AWS API Documentation
22537
22546
  #
@@ -24050,6 +24059,9 @@ module Aws::RDS
24050
24059
  # resp.global_cluster.failover_state.from_db_cluster_arn #=> String
24051
24060
  # resp.global_cluster.failover_state.to_db_cluster_arn #=> String
24052
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
24053
24065
  #
24054
24066
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RemoveFromGlobalCluster AWS API Documentation
24055
24067
  #
@@ -24232,11 +24244,13 @@ module Aws::RDS
24232
24244
  # Removes metadata tags from an Amazon RDS resource.
24233
24245
  #
24234
24246
  # For an overview on tagging an Amazon RDS resource, see [Tagging Amazon
24235
- # 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*.
24236
24249
  #
24237
24250
  #
24238
24251
  #
24239
- # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Overview.Tagging.html
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
24240
24254
  #
24241
24255
  # @option params [required, String] :resource_name
24242
24256
  # The Amazon RDS resource that the tags are removed from. This value is
@@ -31171,6 +31185,9 @@ module Aws::RDS
31171
31185
  # resp.global_cluster.failover_state.from_db_cluster_arn #=> String
31172
31186
  # resp.global_cluster.failover_state.to_db_cluster_arn #=> String
31173
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
31174
31191
  #
31175
31192
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverGlobalCluster AWS API Documentation
31176
31193
  #
@@ -31397,7 +31414,7 @@ module Aws::RDS
31397
31414
  tracer: tracer
31398
31415
  )
31399
31416
  context[:gem_name] = 'aws-sdk-rds'
31400
- context[:gem_version] = '1.245.0'
31417
+ context[:gem_version] = '1.246.0'
31401
31418
  Seahorse::Client::Request.new(handlers, context)
31402
31419
  end
31403
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
@@ -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
@@ -6319,6 +6302,10 @@ module Aws::RDS
6319
6302
  # ^
6320
6303
  # @return [Boolean]
6321
6304
  #
6305
+ # @!attribute [rw] tags
6306
+ # Tags to assign to the global cluster.
6307
+ # @return [Array<Types::Tag>]
6308
+ #
6322
6309
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateGlobalClusterMessage AWS API Documentation
6323
6310
  #
6324
6311
  class CreateGlobalClusterMessage < Struct.new(
@@ -6329,7 +6316,8 @@ module Aws::RDS
6329
6316
  :engine_lifecycle_support,
6330
6317
  :deletion_protection,
6331
6318
  :database_name,
6332
- :storage_encrypted)
6319
+ :storage_encrypted,
6320
+ :tags)
6333
6321
  SENSITIVE = []
6334
6322
  include Aws::Structure
6335
6323
  end
@@ -16111,6 +16099,19 @@ module Aws::RDS
16111
16099
  # called on this global cluster.
16112
16100
  # @return [Types::FailoverState]
16113
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
+ #
16114
16115
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/GlobalCluster AWS API Documentation
16115
16116
  #
16116
16117
  class GlobalCluster < Struct.new(
@@ -16125,7 +16126,8 @@ module Aws::RDS
16125
16126
  :storage_encrypted,
16126
16127
  :deletion_protection,
16127
16128
  :global_cluster_members,
16128
- :failover_state)
16129
+ :failover_state,
16130
+ :tag_list)
16129
16131
  SENSITIVE = []
16130
16132
  include Aws::Structure
16131
16133
  end
@@ -20929,26 +20931,12 @@ module Aws::RDS
20929
20931
  # For more information about maintenance actions, see [Maintaining a
20930
20932
  # DB instance][1].
20931
20933
  #
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].
20934
+ # Valid Values:` system-update | db-upgrade | hardware-maintenance |
20935
+ # ca-certificate-rotation`
20946
20936
  #
20947
20937
  #
20948
20938
  #
20949
20939
  # [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
20940
  # @return [String]
20953
20941
  #
20954
20942
  # @!attribute [rw] auto_applied_after_date
data/lib/aws-sdk-rds.rb CHANGED
@@ -78,6 +78,6 @@ require_relative 'aws-sdk-rds/customizations'
78
78
  # @!group service
79
79
  module Aws::RDS
80
80
 
81
- GEM_VERSION = '1.245.0'
81
+ GEM_VERSION = '1.246.0'
82
82
 
83
83
  end
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.245.0
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-12 00:00:00.000000000 Z
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