aws-sdk-rds 1.197.0 → 1.198.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: f2f2752c41d1b61b7663babfd0996c02636e4e295b201678747078d037dc94c0
4
- data.tar.gz: 740072b1b0641fa780d909bf7beab8bed323e44397d7827e3c8777a76b8b357a
3
+ metadata.gz: 661543dd8e45831d733b0bb299ba3000a00889eaa07de9c3248cff92b986639e
4
+ data.tar.gz: 54021b753ff8b674879c2cf17404b4bec76eb6ec7c1d7c6a657822bd62b35781
5
5
  SHA512:
6
- metadata.gz: a535f304f180853f378d4499226a8d3e63effb6c696f2f30e8c5b5fadb0018805447ae355d03a8672d042294033a3c3365d8586f0b61f0fd466581136204f5d2
7
- data.tar.gz: 3028018eca684b70557c7b4c2e957fb78358e821d78e73a5da95c81fe85538af661d2175502c374c3f59382564db317a979b2d5a374259ee592489792e663968
6
+ metadata.gz: 0aa22690f8c9914b8e3dfa65ac953848b41174efcc61e08a989b728f7dbaa2e91d7c5a350cd217c73cb8e5e7433081726e0d504c039eace9aa6671dc3cd2130f
7
+ data.tar.gz: 89bfa64851dcb558fd076c4ab994a723f136400894fc36548ebdcf6c5b8cb366ea14a989df563c98d5d64d484dec50b88d657392768cafcbaa45d85afdd9ecd5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.198.0 (2023-10-18)
5
+ ------------------
6
+
7
+ * Feature - This release adds support for upgrading the storage file system configuration on the DB instance using a blue/green deployment or a read replica.
8
+
4
9
  1.197.0 (2023-10-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.197.0
1
+ 1.198.0
@@ -2025,6 +2025,21 @@ module Aws::RDS
2025
2025
  # @option params [Array<Types::Tag>] :tags
2026
2026
  # Tags to assign to the blue/green deployment.
2027
2027
  #
2028
+ # @option params [String] :target_db_instance_class
2029
+ # Specify the DB instance class for the databases in the green
2030
+ # environment.
2031
+ #
2032
+ # @option params [Boolean] :upgrade_target_storage_config
2033
+ # Whether to upgrade the storage file system configuration on the green
2034
+ # database. This option migrates the green DB instance from the older
2035
+ # 32-bit file system to the preferred configuration. For more
2036
+ # information, see [Upgrading the storage file system for a DB
2037
+ # instance][1].
2038
+ #
2039
+ #
2040
+ #
2041
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
2042
+ #
2028
2043
  # @return [Types::CreateBlueGreenDeploymentResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2029
2044
  #
2030
2045
  # * {Types::CreateBlueGreenDeploymentResponse#blue_green_deployment #blue_green_deployment} => Types::BlueGreenDeployment
@@ -2165,6 +2180,8 @@ module Aws::RDS
2165
2180
  # value: "String",
2166
2181
  # },
2167
2182
  # ],
2183
+ # target_db_instance_class: "TargetDBInstanceClass",
2184
+ # upgrade_target_storage_config: false,
2168
2185
  # })
2169
2186
  #
2170
2187
  # @example Response structure
@@ -5560,6 +5577,7 @@ module Aws::RDS
5560
5577
  # resp.db_instance.read_replica_source_db_cluster_identifier #=> String
5561
5578
  # resp.db_instance.percent_progress #=> String
5562
5579
  # resp.db_instance.dedicated_log_volume #=> Boolean
5580
+ # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
5563
5581
  #
5564
5582
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstance AWS API Documentation
5565
5583
  #
@@ -6224,6 +6242,11 @@ module Aws::RDS
6224
6242
  # Indicates whether the DB instance has a dedicated log volume (DLV)
6225
6243
  # enabled.
6226
6244
  #
6245
+ # @option params [Boolean] :upgrade_storage_config
6246
+ # Whether to upgrade the storage file system configuration on the read
6247
+ # replica. This option migrates the read replica from the old storage
6248
+ # file system layout to the preferred layout.
6249
+ #
6227
6250
  # @option params [String] :source_region
6228
6251
  # The source region of the snapshot. This is only needed when the
6229
6252
  # shapshot is encrypted and in a different region.
@@ -6310,6 +6333,7 @@ module Aws::RDS
6310
6333
  # allocated_storage: 1,
6311
6334
  # source_db_cluster_identifier: "String",
6312
6335
  # dedicated_log_volume: false,
6336
+ # upgrade_storage_config: false,
6313
6337
  # source_region: "String",
6314
6338
  # })
6315
6339
  #
@@ -6472,6 +6496,7 @@ module Aws::RDS
6472
6496
  # resp.db_instance.read_replica_source_db_cluster_identifier #=> String
6473
6497
  # resp.db_instance.percent_progress #=> String
6474
6498
  # resp.db_instance.dedicated_log_volume #=> Boolean
6499
+ # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
6475
6500
  #
6476
6501
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateDBInstanceReadReplica AWS API Documentation
6477
6502
  #
@@ -8887,6 +8912,7 @@ module Aws::RDS
8887
8912
  # resp.db_instance.read_replica_source_db_cluster_identifier #=> String
8888
8913
  # resp.db_instance.percent_progress #=> String
8889
8914
  # resp.db_instance.dedicated_log_volume #=> Boolean
8915
+ # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
8890
8916
  #
8891
8917
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DeleteDBInstance AWS API Documentation
8892
8918
  #
@@ -12224,6 +12250,7 @@ module Aws::RDS
12224
12250
  # resp.db_instances[0].read_replica_source_db_cluster_identifier #=> String
12225
12251
  # resp.db_instances[0].percent_progress #=> String
12226
12252
  # resp.db_instances[0].dedicated_log_volume #=> Boolean
12253
+ # resp.db_instances[0].is_storage_config_upgrade_available #=> Boolean
12227
12254
  #
12228
12255
  #
12229
12256
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -19316,6 +19343,7 @@ module Aws::RDS
19316
19343
  # resp.db_instance.read_replica_source_db_cluster_identifier #=> String
19317
19344
  # resp.db_instance.percent_progress #=> String
19318
19345
  # resp.db_instance.dedicated_log_volume #=> Boolean
19346
+ # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
19319
19347
  #
19320
19348
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/ModifyDBInstance AWS API Documentation
19321
19349
  #
@@ -20729,6 +20757,7 @@ module Aws::RDS
20729
20757
  # resp.db_instance.read_replica_source_db_cluster_identifier #=> String
20730
20758
  # resp.db_instance.percent_progress #=> String
20731
20759
  # resp.db_instance.dedicated_log_volume #=> Boolean
20760
+ # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
20732
20761
  #
20733
20762
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/PromoteReadReplica AWS API Documentation
20734
20763
  #
@@ -21402,6 +21431,7 @@ module Aws::RDS
21402
21431
  # resp.db_instance.read_replica_source_db_cluster_identifier #=> String
21403
21432
  # resp.db_instance.percent_progress #=> String
21404
21433
  # resp.db_instance.dedicated_log_volume #=> Boolean
21434
+ # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
21405
21435
  #
21406
21436
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RebootDBInstance AWS API Documentation
21407
21437
  #
@@ -24770,6 +24800,7 @@ module Aws::RDS
24770
24800
  # resp.db_instance.read_replica_source_db_cluster_identifier #=> String
24771
24801
  # resp.db_instance.percent_progress #=> String
24772
24802
  # resp.db_instance.dedicated_log_volume #=> Boolean
24803
+ # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
24773
24804
  #
24774
24805
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromDBSnapshot AWS API Documentation
24775
24806
  #
@@ -25508,6 +25539,7 @@ module Aws::RDS
25508
25539
  # resp.db_instance.read_replica_source_db_cluster_identifier #=> String
25509
25540
  # resp.db_instance.percent_progress #=> String
25510
25541
  # resp.db_instance.dedicated_log_volume #=> Boolean
25542
+ # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
25511
25543
  #
25512
25544
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceFromS3 AWS API Documentation
25513
25545
  #
@@ -26366,6 +26398,7 @@ module Aws::RDS
26366
26398
  # resp.db_instance.read_replica_source_db_cluster_identifier #=> String
26367
26399
  # resp.db_instance.percent_progress #=> String
26368
26400
  # resp.db_instance.dedicated_log_volume #=> Boolean
26401
+ # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
26369
26402
  #
26370
26403
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/RestoreDBInstanceToPointInTime AWS API Documentation
26371
26404
  #
@@ -26962,6 +26995,7 @@ module Aws::RDS
26962
26995
  # resp.db_instance.read_replica_source_db_cluster_identifier #=> String
26963
26996
  # resp.db_instance.percent_progress #=> String
26964
26997
  # resp.db_instance.dedicated_log_volume #=> Boolean
26998
+ # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
26965
26999
  #
26966
27000
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StartDBInstance AWS API Documentation
26967
27001
  #
@@ -27788,6 +27822,7 @@ module Aws::RDS
27788
27822
  # resp.db_instance.read_replica_source_db_cluster_identifier #=> String
27789
27823
  # resp.db_instance.percent_progress #=> String
27790
27824
  # resp.db_instance.dedicated_log_volume #=> Boolean
27825
+ # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
27791
27826
  #
27792
27827
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/StopDBInstance AWS API Documentation
27793
27828
  #
@@ -28384,6 +28419,7 @@ module Aws::RDS
28384
28419
  # resp.db_instance.read_replica_source_db_cluster_identifier #=> String
28385
28420
  # resp.db_instance.percent_progress #=> String
28386
28421
  # resp.db_instance.dedicated_log_volume #=> Boolean
28422
+ # resp.db_instance.is_storage_config_upgrade_available #=> Boolean
28387
28423
  #
28388
28424
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/SwitchoverReadReplica AWS API Documentation
28389
28425
  #
@@ -28407,7 +28443,7 @@ module Aws::RDS
28407
28443
  params: params,
28408
28444
  config: config)
28409
28445
  context[:gem_name] = 'aws-sdk-rds'
28410
- context[:gem_version] = '1.197.0'
28446
+ context[:gem_version] = '1.198.0'
28411
28447
  Seahorse::Client::Request.new(handlers, context)
28412
28448
  end
28413
28449
 
@@ -638,6 +638,7 @@ module Aws::RDS
638
638
  TagList = Shapes::ListShape.new(name: 'TagList')
639
639
  TagListMessage = Shapes::StructureShape.new(name: 'TagListMessage')
640
640
  TargetDBClusterParameterGroupName = Shapes::StringShape.new(name: 'TargetDBClusterParameterGroupName')
641
+ TargetDBInstanceClass = Shapes::StringShape.new(name: 'TargetDBInstanceClass')
641
642
  TargetDBParameterGroupName = Shapes::StringShape.new(name: 'TargetDBParameterGroupName')
642
643
  TargetEngineVersion = Shapes::StringShape.new(name: 'TargetEngineVersion')
643
644
  TargetGroupList = Shapes::ListShape.new(name: 'TargetGroupList')
@@ -889,6 +890,8 @@ module Aws::RDS
889
890
  CreateBlueGreenDeploymentRequest.add_member(:target_db_parameter_group_name, Shapes::ShapeRef.new(shape: TargetDBParameterGroupName, location_name: "TargetDBParameterGroupName"))
890
891
  CreateBlueGreenDeploymentRequest.add_member(:target_db_cluster_parameter_group_name, Shapes::ShapeRef.new(shape: TargetDBClusterParameterGroupName, location_name: "TargetDBClusterParameterGroupName"))
891
892
  CreateBlueGreenDeploymentRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
893
+ CreateBlueGreenDeploymentRequest.add_member(:target_db_instance_class, Shapes::ShapeRef.new(shape: TargetDBInstanceClass, location_name: "TargetDBInstanceClass"))
894
+ CreateBlueGreenDeploymentRequest.add_member(:upgrade_target_storage_config, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UpgradeTargetStorageConfig"))
892
895
  CreateBlueGreenDeploymentRequest.struct_class = Types::CreateBlueGreenDeploymentRequest
893
896
 
894
897
  CreateBlueGreenDeploymentResponse.add_member(:blue_green_deployment, Shapes::ShapeRef.new(shape: BlueGreenDeployment, location_name: "BlueGreenDeployment"))
@@ -1096,6 +1099,7 @@ module Aws::RDS
1096
1099
  CreateDBInstanceReadReplicaMessage.add_member(:allocated_storage, Shapes::ShapeRef.new(shape: IntegerOptional, location_name: "AllocatedStorage"))
1097
1100
  CreateDBInstanceReadReplicaMessage.add_member(:source_db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "SourceDBClusterIdentifier"))
1098
1101
  CreateDBInstanceReadReplicaMessage.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "DedicatedLogVolume"))
1102
+ CreateDBInstanceReadReplicaMessage.add_member(:upgrade_storage_config, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "UpgradeStorageConfig"))
1099
1103
  CreateDBInstanceReadReplicaMessage.add_member(:source_region, Shapes::ShapeRef.new(shape: String, location_name: "SourceRegion"))
1100
1104
  CreateDBInstanceReadReplicaMessage.struct_class = Types::CreateDBInstanceReadReplicaMessage
1101
1105
 
@@ -1600,6 +1604,7 @@ module Aws::RDS
1600
1604
  DBInstance.add_member(:read_replica_source_db_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "ReadReplicaSourceDBClusterIdentifier"))
1601
1605
  DBInstance.add_member(:percent_progress, Shapes::ShapeRef.new(shape: String, location_name: "PercentProgress"))
1602
1606
  DBInstance.add_member(:dedicated_log_volume, Shapes::ShapeRef.new(shape: Boolean, location_name: "DedicatedLogVolume"))
1607
+ DBInstance.add_member(:is_storage_config_upgrade_available, Shapes::ShapeRef.new(shape: BooleanOptional, location_name: "IsStorageConfigUpgradeAvailable"))
1603
1608
  DBInstance.struct_class = Types::DBInstance
1604
1609
 
1605
1610
  DBInstanceAlreadyExistsFault.struct_class = Types::DBInstanceAlreadyExistsFault
@@ -764,6 +764,20 @@ module Aws::RDS
764
764
  data[:dedicated_log_volume]
765
765
  end
766
766
 
767
+ # Indicates whether an upgrade is recommended for the storage file
768
+ # system configuration on the DB instance. To migrate to the preferred
769
+ # configuration, you can either create a blue/green deployment, or
770
+ # create a read replica from the DB instance. For more information, see
771
+ # [Upgrading the storage file system for a DB instance][1].
772
+ #
773
+ #
774
+ #
775
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
776
+ # @return [Boolean]
777
+ def is_storage_config_upgrade_available
778
+ data[:is_storage_config_upgrade_available]
779
+ end
780
+
767
781
  # @!endgroup
768
782
 
769
783
  # @return [Client]
@@ -2145,6 +2159,7 @@ module Aws::RDS
2145
2159
  # allocated_storage: 1,
2146
2160
  # source_db_cluster_identifier: "String",
2147
2161
  # dedicated_log_volume: false,
2162
+ # upgrade_storage_config: false,
2148
2163
  # source_region: "String",
2149
2164
  # })
2150
2165
  # @param [Hash] options ({})
@@ -2699,6 +2714,10 @@ module Aws::RDS
2699
2714
  # @option options [Boolean] :dedicated_log_volume
2700
2715
  # Indicates whether the DB instance has a dedicated log volume (DLV)
2701
2716
  # enabled.
2717
+ # @option options [Boolean] :upgrade_storage_config
2718
+ # Whether to upgrade the storage file system configuration on the read
2719
+ # replica. This option migrates the read replica from the old storage
2720
+ # file system layout to the preferred layout.
2702
2721
  # @option options [String] :source_region
2703
2722
  # The source region of the snapshot. This is only needed when the
2704
2723
  # shapshot is encrypted and in a different region.
@@ -32,8 +32,8 @@ module Aws::RDS
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
36
- if Aws::Endpoints::Matchers.string_equals?("aws-us-gov", Aws::Endpoints::Matchers.attr(partition_result, "name"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
+ if Aws::Endpoints::Matchers.string_equals?(Aws::Endpoints::Matchers.attr(partition_result, "name"), "aws-us-gov")
37
37
  return Aws::Endpoints::Endpoint.new(url: "https://rds.#{region}.amazonaws.com", headers: {}, properties: {})
38
38
  end
39
39
  return Aws::Endpoints::Endpoint.new(url: "https://rds-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
@@ -1757,6 +1757,23 @@ module Aws::RDS
1757
1757
  # Tags to assign to the blue/green deployment.
1758
1758
  # @return [Array<Types::Tag>]
1759
1759
  #
1760
+ # @!attribute [rw] target_db_instance_class
1761
+ # Specify the DB instance class for the databases in the green
1762
+ # environment.
1763
+ # @return [String]
1764
+ #
1765
+ # @!attribute [rw] upgrade_target_storage_config
1766
+ # Whether to upgrade the storage file system configuration on the
1767
+ # green database. This option migrates the green DB instance from the
1768
+ # older 32-bit file system to the preferred configuration. For more
1769
+ # information, see [Upgrading the storage file system for a DB
1770
+ # instance][1].
1771
+ #
1772
+ #
1773
+ #
1774
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
1775
+ # @return [Boolean]
1776
+ #
1760
1777
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/CreateBlueGreenDeploymentRequest AWS API Documentation
1761
1778
  #
1762
1779
  class CreateBlueGreenDeploymentRequest < Struct.new(
@@ -1765,7 +1782,9 @@ module Aws::RDS
1765
1782
  :target_engine_version,
1766
1783
  :target_db_parameter_group_name,
1767
1784
  :target_db_cluster_parameter_group_name,
1768
- :tags)
1785
+ :tags,
1786
+ :target_db_instance_class,
1787
+ :upgrade_target_storage_config)
1769
1788
  SENSITIVE = []
1770
1789
  include Aws::Structure
1771
1790
  end
@@ -5090,6 +5109,12 @@ module Aws::RDS
5090
5109
  # enabled.
5091
5110
  # @return [Boolean]
5092
5111
  #
5112
+ # @!attribute [rw] upgrade_storage_config
5113
+ # Whether to upgrade the storage file system configuration on the read
5114
+ # replica. This option migrates the read replica from the old storage
5115
+ # file system layout to the preferred layout.
5116
+ # @return [Boolean]
5117
+ #
5093
5118
  # @!attribute [rw] source_region
5094
5119
  # The source region of the snapshot. This is only needed when the
5095
5120
  # shapshot is encrypted and in a different region.
@@ -5141,6 +5166,7 @@ module Aws::RDS
5141
5166
  :allocated_storage,
5142
5167
  :source_db_cluster_identifier,
5143
5168
  :dedicated_log_volume,
5169
+ :upgrade_storage_config,
5144
5170
  :source_region)
5145
5171
  SENSITIVE = []
5146
5172
  include Aws::Structure
@@ -8369,6 +8395,18 @@ module Aws::RDS
8369
8395
  # enabled.
8370
8396
  # @return [Boolean]
8371
8397
  #
8398
+ # @!attribute [rw] is_storage_config_upgrade_available
8399
+ # Indicates whether an upgrade is recommended for the storage file
8400
+ # system configuration on the DB instance. To migrate to the preferred
8401
+ # configuration, you can either create a blue/green deployment, or
8402
+ # create a read replica from the DB instance. For more information,
8403
+ # see [Upgrading the storage file system for a DB instance][1].
8404
+ #
8405
+ #
8406
+ #
8407
+ # [1]: https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PIOPS.StorageTypes.html#USER_PIOPS.UpgradeFileSystem
8408
+ # @return [Boolean]
8409
+ #
8372
8410
  # @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DBInstance AWS API Documentation
8373
8411
  #
8374
8412
  class DBInstance < Struct.new(
@@ -8454,7 +8492,8 @@ module Aws::RDS
8454
8492
  :certificate_details,
8455
8493
  :read_replica_source_db_cluster_identifier,
8456
8494
  :percent_progress,
8457
- :dedicated_log_volume)
8495
+ :dedicated_log_volume,
8496
+ :is_storage_config_upgrade_available)
8458
8497
  SENSITIVE = []
8459
8498
  include Aws::Structure
8460
8499
  end
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.197.0'
81
+ GEM_VERSION = '1.198.0'
82
82
 
83
83
  end
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.197.0
4
+ version: 1.198.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: 2023-10-12 00:00:00.000000000 Z
11
+ date: 2023-10-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4