aws-sdk-core 2.9.22 → 2.9.23
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/apis/dms/2016-01-01/api-2.json +380 -4
- data/apis/dms/2016-01-01/examples-1.json +1048 -0
- data/apis/dms/2016-01-01/paginators-1.json +64 -0
- data/lib/aws-sdk-core/databasemigrationservice.rb +1 -0
- data/lib/aws-sdk-core/dynamodb/attribute_value.rb +2 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- metadata +3 -2
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
{
|
|
2
|
+
"pagination": {
|
|
3
|
+
"DescribeCertificates": {
|
|
4
|
+
"input_token": "Marker",
|
|
5
|
+
"output_token": "Marker",
|
|
6
|
+
"limit_key": "MaxRecords"
|
|
7
|
+
},
|
|
8
|
+
"DescribeConnections": {
|
|
9
|
+
"input_token": "Marker",
|
|
10
|
+
"output_token": "Marker",
|
|
11
|
+
"limit_key": "MaxRecords"
|
|
12
|
+
},
|
|
13
|
+
"DescribeEndpointTypes": {
|
|
14
|
+
"input_token": "Marker",
|
|
15
|
+
"output_token": "Marker",
|
|
16
|
+
"limit_key": "MaxRecords"
|
|
17
|
+
},
|
|
18
|
+
"DescribeEndpoints": {
|
|
19
|
+
"input_token": "Marker",
|
|
20
|
+
"output_token": "Marker",
|
|
21
|
+
"limit_key": "MaxRecords"
|
|
22
|
+
},
|
|
23
|
+
"DescribeEventSubscriptions": {
|
|
24
|
+
"input_token": "Marker",
|
|
25
|
+
"output_token": "Marker",
|
|
26
|
+
"limit_key": "MaxRecords"
|
|
27
|
+
},
|
|
28
|
+
"DescribeEvents": {
|
|
29
|
+
"input_token": "Marker",
|
|
30
|
+
"output_token": "Marker",
|
|
31
|
+
"limit_key": "MaxRecords"
|
|
32
|
+
},
|
|
33
|
+
"DescribeOrderableReplicationInstances": {
|
|
34
|
+
"input_token": "Marker",
|
|
35
|
+
"output_token": "Marker",
|
|
36
|
+
"limit_key": "MaxRecords"
|
|
37
|
+
},
|
|
38
|
+
"DescribeReplicationInstances": {
|
|
39
|
+
"input_token": "Marker",
|
|
40
|
+
"output_token": "Marker",
|
|
41
|
+
"limit_key": "MaxRecords"
|
|
42
|
+
},
|
|
43
|
+
"DescribeReplicationSubnetGroups": {
|
|
44
|
+
"input_token": "Marker",
|
|
45
|
+
"output_token": "Marker",
|
|
46
|
+
"limit_key": "MaxRecords"
|
|
47
|
+
},
|
|
48
|
+
"DescribeReplicationTasks": {
|
|
49
|
+
"input_token": "Marker",
|
|
50
|
+
"output_token": "Marker",
|
|
51
|
+
"limit_key": "MaxRecords"
|
|
52
|
+
},
|
|
53
|
+
"DescribeSchemas": {
|
|
54
|
+
"input_token": "Marker",
|
|
55
|
+
"output_token": "Marker",
|
|
56
|
+
"limit_key": "MaxRecords"
|
|
57
|
+
},
|
|
58
|
+
"DescribeTableStatistics": {
|
|
59
|
+
"input_token": "Marker",
|
|
60
|
+
"output_token": "Marker",
|
|
61
|
+
"limit_key": "MaxRecords"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
@@ -2,4 +2,5 @@ Aws.add_service(:DatabaseMigrationService, {
|
|
|
2
2
|
api: "#{Aws::API_DIR}/dms/2016-01-01/api-2.json",
|
|
3
3
|
docs: "#{Aws::API_DIR}/dms/2016-01-01/docs-2.json",
|
|
4
4
|
examples: "#{Aws::API_DIR}/dms/2016-01-01/examples-1.json",
|
|
5
|
+
paginators: "#{Aws::API_DIR}/dms/2016-01-01/paginators-1.json",
|
|
5
6
|
})
|
|
@@ -51,6 +51,7 @@ module Aws
|
|
|
51
51
|
private
|
|
52
52
|
|
|
53
53
|
def format_set(set)
|
|
54
|
+
return { es: [] } if set.empty?
|
|
54
55
|
case set.first
|
|
55
56
|
when String, Symbol then { ss: set.map(&:to_s) }
|
|
56
57
|
when STRINGY_TEST then { ss: set.map(&:to_str) }
|
|
@@ -82,6 +83,7 @@ module Aws
|
|
|
82
83
|
when :ss then Set.new(value)
|
|
83
84
|
when :ns then Set.new(value.map { |n| BigDecimal.new(n) })
|
|
84
85
|
when :bs then Set.new(value.map { |b| StringIO.new(b) })
|
|
86
|
+
when :es then Set.new
|
|
85
87
|
else
|
|
86
88
|
raise ArgumentError, "unhandled type #{type.inspect}"
|
|
87
89
|
end
|
data/lib/aws-sdk-core/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-core
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.9.
|
|
4
|
+
version: 2.9.23
|
|
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: 2017-05-
|
|
11
|
+
date: 2017-05-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|
|
@@ -158,6 +158,7 @@ files:
|
|
|
158
158
|
- apis/discovery/2015-11-01/paginators-1.json
|
|
159
159
|
- apis/dms/2016-01-01/api-2.json
|
|
160
160
|
- apis/dms/2016-01-01/examples-1.json
|
|
161
|
+
- apis/dms/2016-01-01/paginators-1.json
|
|
161
162
|
- apis/ds/2015-04-16/api-2.json
|
|
162
163
|
- apis/ds/2015-04-16/examples-1.json
|
|
163
164
|
- apis/dynamodb/2011-12-05/api-2.json
|