aws-sdk-rds 1.191.0 → 1.192.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: d13ab359180d260c150905320b458ac72f396d5b05db47fbb3942d455e805e8f
4
- data.tar.gz: a4c581ba5d2aabb474306535f458243b5f481f3f66dcd73d947cfcf292728db0
3
+ metadata.gz: 7aeef67f3804db62b80f2dc908169a905c3e9b3efa7cc18291c7b0ba7059bf9a
4
+ data.tar.gz: 3571e6c0336945e295c725109423ce673d6676337ae341fb65040a741d7a11d9
5
5
  SHA512:
6
- metadata.gz: 1abd9c0b08b09fc135bba16c0a4e5dd1f8aad9a13a1cb89d6011f13514595c5ed6b89c9292fab698a55d9510753b9b48b05dabd9538791282a408f6765cc2d00
7
- data.tar.gz: 26625e11c5a4dc7e3e5d6268eb6e5f264fa73d52f82d9ef940083938096f13c539d17502dbb989b6257d757e2a24029f7b9e4bd78d43da7859d8acb015de6a0d
6
+ metadata.gz: be441339c7f78bb899430420d60ce2b713241d929bf0e085cf87ae9d2c24ff1cb7d486bc57194d30b036008f5045b3f14506fc41a7b86a23c71f5c751daa49db
7
+ data.tar.gz: f95c783c4650281c40d9a5d8fbcde7d35616248cc00b5ebc8a898de5c39718a9f514c4a5f3e5cb66b177196d76abe3e29416218c634026c214b792dc7511ec6b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.192.0 (2023-08-24)
5
+ ------------------
6
+
7
+ * Feature - This release updates the supported versions for Percona XtraBackup in Aurora MySQL.
8
+
4
9
  1.191.0 (2023-08-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.191.0
1
+ 1.192.0
@@ -10190,6 +10190,8 @@ module Aws::RDS
10190
10190
  # * {Types::DBClusterAutomatedBackupMessage#marker #marker} => String
10191
10191
  # * {Types::DBClusterAutomatedBackupMessage#db_cluster_automated_backups #db_cluster_automated_backups} => Array<Types::DBClusterAutomatedBackup>
10192
10192
  #
10193
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
10194
+ #
10193
10195
  # @example Request syntax with placeholder values
10194
10196
  #
10195
10197
  # resp = client.describe_db_cluster_automated_backups({
@@ -22005,7 +22007,7 @@ module Aws::RDS
22005
22007
  #
22006
22008
  # **Aurora MySQL**
22007
22009
  #
22008
- # Examples: `5.7.mysql_aurora.2.07.1`, `8.0.mysql_aurora.3.02.0`
22010
+ # Examples: `5.7.mysql_aurora.2.12.0`, `8.0.mysql_aurora.3.04.0`
22009
22011
  #
22010
22012
  # @option params [Integer] :port
22011
22013
  # The port number on which the instances in the restored DB cluster
@@ -22133,9 +22135,9 @@ module Aws::RDS
22133
22135
  # @option params [required, String] :source_engine_version
22134
22136
  # The version of the database that the backup files were created from.
22135
22137
  #
22136
- # MySQL versions 5.5, 5.6, and 5.7 are supported.
22138
+ # MySQL versions 5.7 and 8.0 are supported.
22137
22139
  #
22138
- # Example: `5.6.40`, `5.7.28`
22140
+ # Example: `5.7.40`, `8.0.28`
22139
22141
  #
22140
22142
  # @option params [required, String] :s3_bucket_name
22141
22143
  # The name of the Amazon S3 bucket that contains the data used to create
@@ -28263,7 +28265,7 @@ module Aws::RDS
28263
28265
  params: params,
28264
28266
  config: config)
28265
28267
  context[:gem_name] = 'aws-sdk-rds'
28266
- context[:gem_version] = '1.191.0'
28268
+ context[:gem_version] = '1.192.0'
28267
28269
  Seahorse::Client::Request.new(handlers, context)
28268
28270
  end
28269
28271
 
@@ -4459,6 +4459,12 @@ module Aws::RDS
4459
4459
  o.input = Shapes::ShapeRef.new(shape: DescribeDBClusterAutomatedBackupsMessage)
4460
4460
  o.output = Shapes::ShapeRef.new(shape: DBClusterAutomatedBackupMessage)
4461
4461
  o.errors << Shapes::ShapeRef.new(shape: DBClusterAutomatedBackupNotFoundFault)
4462
+ o[:pager] = Aws::Pager.new(
4463
+ limit_key: "max_records",
4464
+ tokens: {
4465
+ "marker" => "marker"
4466
+ }
4467
+ )
4462
4468
  end)
4463
4469
 
4464
4470
  api.add_operation(:describe_db_cluster_backtracks, Seahorse::Model::Operation.new.tap do |o|
@@ -19645,7 +19645,7 @@ module Aws::RDS
19645
19645
  #
19646
19646
  # **Aurora MySQL**
19647
19647
  #
19648
- # Examples: `5.7.mysql_aurora.2.07.1`, `8.0.mysql_aurora.3.02.0`
19648
+ # Examples: `5.7.mysql_aurora.2.12.0`, `8.0.mysql_aurora.3.04.0`
19649
19649
  # @return [String]
19650
19650
  #
19651
19651
  # @!attribute [rw] port
@@ -19785,9 +19785,9 @@ module Aws::RDS
19785
19785
  # @!attribute [rw] source_engine_version
19786
19786
  # The version of the database that the backup files were created from.
19787
19787
  #
19788
- # MySQL versions 5.5, 5.6, and 5.7 are supported.
19788
+ # MySQL versions 5.7 and 8.0 are supported.
19789
19789
  #
19790
- # Example: `5.6.40`, `5.7.28`
19790
+ # Example: `5.7.40`, `8.0.28`
19791
19791
  # @return [String]
19792
19792
  #
19793
19793
  # @!attribute [rw] s3_bucket_name
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.191.0'
81
+ GEM_VERSION = '1.192.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.191.0
4
+ version: 1.192.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-08-22 00:00:00.000000000 Z
11
+ date: 2023-08-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4