aws-sdk-core 2.11.177 → 2.11.178

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,28 +1,28 @@
1
1
  {
2
- "pagination":{
3
- "GetReplicationJobs": {
4
- "input_token": "nextToken",
5
- "output_token": "nextToken",
6
- "limit_key": "maxResults",
7
- "result_key": "replicationJobList"
8
- },
9
- "GetReplicationRuns": {
10
- "input_token": "nextToken",
11
- "output_token": "nextToken",
12
- "limit_key": "maxResults",
13
- "result_key": "replicationRunList"
14
- },
15
- "GetConnectors": {
16
- "input_token": "nextToken",
17
- "output_token": "nextToken",
18
- "limit_key": "maxResults",
19
- "result_key": "connectorList"
20
- },
21
- "GetServers": {
22
- "input_token": "nextToken",
23
- "output_token": "nextToken",
24
- "limit_key": "maxResults",
25
- "result_key": "serverList"
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
+ }
@@ -89,6 +89,7 @@ module Aws
89
89
  Firehose
90
90
  GameLift
91
91
  Glacier
92
+ GlobalAccelerator
92
93
  Glue
93
94
  Greengrass
94
95
  GuardDuty
@@ -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
+ })
@@ -1,3 +1,3 @@
1
1
  module Aws
2
- VERSION = '2.11.177'
2
+ VERSION = '2.11.178'
3
3
  end
@@ -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.177
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-26 00:00:00.000000000 Z
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