aws-sdk-core 2.11.177 → 2.11.178
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/ec2/2016-11-15/api-2.json +1461 -60
- data/apis/globalaccelerator/2018-08-08/api-2.json +798 -0
- data/apis/globalaccelerator/2018-08-08/examples-1.json +5 -0
- data/apis/globalaccelerator/2018-08-08/paginators-1.json +4 -0
- data/apis/greengrass/2017-06-07/api-2.json +490 -0
- data/apis/iot/2015-05-28/api-2.json +22 -0
- data/apis/iotanalytics/2017-11-27/api-2.json +40 -0
- data/apis/kms/2014-11-01/api-2.json +337 -8
- data/apis/s3/2006-03-01/api-2.json +455 -4
- data/apis/sms/2016-10-24/api-2.json +785 -31
- data/apis/sms/2016-10-24/paginators-1.json +26 -26
- data/apis/sms/2016-10-24/smoke.json +18 -0
- data/lib/aws-sdk-core.rb +1 -0
- data/lib/aws-sdk-core/globalaccelerator.rb +6 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- data/service-models.json +4 -0
- metadata +7 -2
@@ -1,28 +1,28 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
}
|
2
|
+
"pagination": {
|
3
|
+
"GetConnectors": {
|
4
|
+
"input_token": "nextToken",
|
5
|
+
"limit_key": "maxResults",
|
6
|
+
"output_token": "nextToken",
|
7
|
+
"result_key": "connectorList"
|
8
|
+
},
|
9
|
+
"GetReplicationJobs": {
|
10
|
+
"input_token": "nextToken",
|
11
|
+
"limit_key": "maxResults",
|
12
|
+
"output_token": "nextToken",
|
13
|
+
"result_key": "replicationJobList"
|
14
|
+
},
|
15
|
+
"GetReplicationRuns": {
|
16
|
+
"input_token": "nextToken",
|
17
|
+
"limit_key": "maxResults",
|
18
|
+
"output_token": "nextToken",
|
19
|
+
"result_key": "replicationRunList"
|
20
|
+
},
|
21
|
+
"GetServers": {
|
22
|
+
"input_token": "nextToken",
|
23
|
+
"limit_key": "maxResults",
|
24
|
+
"output_token": "nextToken",
|
25
|
+
"result_key": "serverList"
|
27
26
|
}
|
28
|
-
}
|
27
|
+
}
|
28
|
+
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
{
|
2
|
+
"version": 1,
|
3
|
+
"defaultRegion": "us-west-2",
|
4
|
+
"testCases": [
|
5
|
+
{
|
6
|
+
"operationName": "GetConnectors",
|
7
|
+
"input": {},
|
8
|
+
"errorExpectedFromService": false
|
9
|
+
},
|
10
|
+
{
|
11
|
+
"operationName": "DeleteReplicationJob",
|
12
|
+
"input": {
|
13
|
+
"replicationJobId": "invalidId"
|
14
|
+
},
|
15
|
+
"errorExpectedFromService": true
|
16
|
+
}
|
17
|
+
]
|
18
|
+
}
|
data/lib/aws-sdk-core.rb
CHANGED
@@ -0,0 +1,6 @@
|
|
1
|
+
Aws.add_service(:GlobalAccelerator, {
|
2
|
+
api: "#{Aws::API_DIR}/globalaccelerator/2018-08-08/api-2.json",
|
3
|
+
docs: "#{Aws::API_DIR}/globalaccelerator/2018-08-08/docs-2.json",
|
4
|
+
examples: "#{Aws::API_DIR}/globalaccelerator/2018-08-08/examples-1.json",
|
5
|
+
paginators: "#{Aws::API_DIR}/globalaccelerator/2018-08-08/paginators-1.json",
|
6
|
+
})
|
data/lib/aws-sdk-core/version.rb
CHANGED
data/service-models.json
CHANGED
@@ -262,6 +262,10 @@
|
|
262
262
|
"models": "glacier/2012-06-01",
|
263
263
|
"endpoint": "glacier"
|
264
264
|
},
|
265
|
+
"GlobalAccelerator": {
|
266
|
+
"models": "globalaccelerator/2018-08-08",
|
267
|
+
"endpoint": "globalaccelerator"
|
268
|
+
},
|
265
269
|
"Glue": {
|
266
270
|
"models": "glue/2017-03-31",
|
267
271
|
"endpoint": "glue"
|
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.11.
|
4
|
+
version: 2.11.178
|
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: 2018-11-
|
11
|
+
date: 2018-11-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|
@@ -358,6 +358,9 @@ files:
|
|
358
358
|
- apis/glacier/2012-06-01/resources-1.json
|
359
359
|
- apis/glacier/2012-06-01/smoke.json
|
360
360
|
- apis/glacier/2012-06-01/waiters-2.json
|
361
|
+
- apis/globalaccelerator/2018-08-08/api-2.json
|
362
|
+
- apis/globalaccelerator/2018-08-08/examples-1.json
|
363
|
+
- apis/globalaccelerator/2018-08-08/paginators-1.json
|
361
364
|
- apis/glue/2017-03-31/api-2.json
|
362
365
|
- apis/glue/2017-03-31/examples-1.json
|
363
366
|
- apis/glue/2017-03-31/paginators-1.json
|
@@ -618,6 +621,7 @@ files:
|
|
618
621
|
- apis/sms/2016-10-24/api-2.json
|
619
622
|
- apis/sms/2016-10-24/examples-1.json
|
620
623
|
- apis/sms/2016-10-24/paginators-1.json
|
624
|
+
- apis/sms/2016-10-24/smoke.json
|
621
625
|
- apis/snowball/2016-06-30/api-2.json
|
622
626
|
- apis/snowball/2016-06-30/examples-1.json
|
623
627
|
- apis/snowball/2016-06-30/paginators-1.json
|
@@ -786,6 +790,7 @@ files:
|
|
786
790
|
- lib/aws-sdk-core/fms.rb
|
787
791
|
- lib/aws-sdk-core/gamelift.rb
|
788
792
|
- lib/aws-sdk-core/glacier.rb
|
793
|
+
- lib/aws-sdk-core/globalaccelerator.rb
|
789
794
|
- lib/aws-sdk-core/glue.rb
|
790
795
|
- lib/aws-sdk-core/greengrass.rb
|
791
796
|
- lib/aws-sdk-core/guardduty.rb
|