aws-sdk-rds 1.79.0 → 1.80.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/lib/aws-sdk-rds.rb +1 -1
- data/lib/aws-sdk-rds/client.rb +21 -17
- data/lib/aws-sdk-rds/client_api.rb +1 -1
- data/lib/aws-sdk-rds/types.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8412e671c9a5bb116740036953f0b0c2d3109f99
|
|
4
|
+
data.tar.gz: 8907b7ec70f15faf1bbc94cf3cba60b68138bceb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82e0ff97d18b4c6263ba8cc9a0aeb3ded05ff364988c9223deb47f18e2f7f4dbe0cbf181cbb9c8904bf19cec5549c2199ef016df6166cc90f545474d7aa5dc76
|
|
7
|
+
data.tar.gz: 38c1d72cf7e555bc99ebdc451d9e30f512bab0a1edbdac584ba7dbb235b5cab9593d151fe5bada44a8ec922bea7764b1c22ac1969f083d417d6057af99d4cc3e
|
data/lib/aws-sdk-rds.rb
CHANGED
data/lib/aws-sdk-rds/client.rb
CHANGED
|
@@ -33,11 +33,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:rds)
|
|
|
33
33
|
module Aws::RDS
|
|
34
34
|
# An API client for RDS. To construct a client, you need to configure a `:region` and `:credentials`.
|
|
35
35
|
#
|
|
36
|
-
#
|
|
37
|
-
#
|
|
38
|
-
#
|
|
39
|
-
#
|
|
40
|
-
#
|
|
36
|
+
# client = Aws::RDS::Client.new(
|
|
37
|
+
# region: region_name,
|
|
38
|
+
# credentials: credentials,
|
|
39
|
+
# # ...
|
|
40
|
+
# )
|
|
41
41
|
#
|
|
42
42
|
# For details on configuring region and credentials see
|
|
43
43
|
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
|
@@ -231,15 +231,19 @@ module Aws::RDS
|
|
|
231
231
|
#
|
|
232
232
|
# @option options [String] :retry_mode ("legacy")
|
|
233
233
|
# Specifies which retry algorithm to use. Values are:
|
|
234
|
-
#
|
|
235
|
-
#
|
|
236
|
-
#
|
|
237
|
-
#
|
|
238
|
-
#
|
|
239
|
-
#
|
|
240
|
-
#
|
|
241
|
-
#
|
|
242
|
-
#
|
|
234
|
+
#
|
|
235
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
|
236
|
+
# no retry mode is provided.
|
|
237
|
+
#
|
|
238
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
|
239
|
+
# This includes support for retry quotas, which limit the number of
|
|
240
|
+
# unsuccessful retries a client can make.
|
|
241
|
+
#
|
|
242
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
|
243
|
+
# functionality of `standard` mode along with automatic client side
|
|
244
|
+
# throttling. This is a provisional mode that may change behavior
|
|
245
|
+
# in the future.
|
|
246
|
+
#
|
|
243
247
|
#
|
|
244
248
|
# @option options [String] :secret_access_key
|
|
245
249
|
#
|
|
@@ -9367,7 +9371,7 @@ module Aws::RDS
|
|
|
9367
9371
|
# response includes only records beyond the marker, up to the value
|
|
9368
9372
|
# specified by the `MaxRecords` parameter.
|
|
9369
9373
|
#
|
|
9370
|
-
# @option params [
|
|
9374
|
+
# @option params [Integer] :max_records
|
|
9371
9375
|
# The maximum number of records to include in the response. If more
|
|
9372
9376
|
# records exist than the specified value, a pagination token called a
|
|
9373
9377
|
# marker is included in the response. You can use the marker in a later
|
|
@@ -9394,7 +9398,7 @@ module Aws::RDS
|
|
|
9394
9398
|
# },
|
|
9395
9399
|
# ],
|
|
9396
9400
|
# marker: "String",
|
|
9397
|
-
# max_records:
|
|
9401
|
+
# max_records: 1,
|
|
9398
9402
|
# })
|
|
9399
9403
|
#
|
|
9400
9404
|
# @example Response structure
|
|
@@ -18280,7 +18284,7 @@ module Aws::RDS
|
|
|
18280
18284
|
params: params,
|
|
18281
18285
|
config: config)
|
|
18282
18286
|
context[:gem_name] = 'aws-sdk-rds'
|
|
18283
|
-
context[:gem_version] = '1.
|
|
18287
|
+
context[:gem_version] = '1.80.0'
|
|
18284
18288
|
Seahorse::Client::Request.new(handlers, context)
|
|
18285
18289
|
end
|
|
18286
18290
|
|
|
@@ -1854,7 +1854,7 @@ module Aws::RDS
|
|
|
1854
1854
|
DescribeExportTasksMessage.add_member(:source_arn, Shapes::ShapeRef.new(shape: String, location_name: "SourceArn"))
|
|
1855
1855
|
DescribeExportTasksMessage.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filters"))
|
|
1856
1856
|
DescribeExportTasksMessage.add_member(:marker, Shapes::ShapeRef.new(shape: String, location_name: "Marker"))
|
|
1857
|
-
DescribeExportTasksMessage.add_member(:max_records, Shapes::ShapeRef.new(shape:
|
|
1857
|
+
DescribeExportTasksMessage.add_member(:max_records, Shapes::ShapeRef.new(shape: MaxRecords, location_name: "MaxRecords"))
|
|
1858
1858
|
DescribeExportTasksMessage.struct_class = Types::DescribeExportTasksMessage
|
|
1859
1859
|
|
|
1860
1860
|
DescribeGlobalClustersMessage.add_member(:global_cluster_identifier, Shapes::ShapeRef.new(shape: String, location_name: "GlobalClusterIdentifier"))
|
data/lib/aws-sdk-rds/types.rb
CHANGED
|
@@ -10055,7 +10055,7 @@ module Aws::RDS
|
|
|
10055
10055
|
# },
|
|
10056
10056
|
# ],
|
|
10057
10057
|
# marker: "String",
|
|
10058
|
-
# max_records:
|
|
10058
|
+
# max_records: 1,
|
|
10059
10059
|
# }
|
|
10060
10060
|
#
|
|
10061
10061
|
# @!attribute [rw] export_task_identifier
|
|
@@ -10102,7 +10102,7 @@ module Aws::RDS
|
|
|
10102
10102
|
# Default: 100
|
|
10103
10103
|
#
|
|
10104
10104
|
# Constraints: Minimum 20, maximum 100.
|
|
10105
|
-
# @return [
|
|
10105
|
+
# @return [Integer]
|
|
10106
10106
|
#
|
|
10107
10107
|
# @see http://docs.aws.amazon.com/goto/WebAPI/rds-2014-10-31/DescribeExportTasksMessage AWS API Documentation
|
|
10108
10108
|
#
|
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.80.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: 2020-03-
|
|
11
|
+
date: 2020-03-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|