aws-sdk-core 2.11.61 → 2.11.62
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/appstream/2016-12-01/api-2.json +17 -2
- data/apis/ec2/2016-11-15/api-2.json +6 -0
- data/apis/eks/2017-11-01/api-2.json +301 -0
- data/apis/eks/2017-11-01/examples-1.json +114 -0
- data/apis/eks/2017-11-01/paginators-1.json +4 -0
- data/apis/mediaconvert/2017-08-29/api-2.json +1402 -578
- data/apis/sagemaker/2017-07-24/api-2.json +491 -1
- data/apis/sagemaker/2017-07-24/paginators-1.json +10 -0
- data/lib/aws-sdk-core.rb +1 -0
- data/lib/aws-sdk-core/eks.rb +6 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- data/service-models.json +4 -0
- metadata +6 -2
|
@@ -10,6 +10,11 @@
|
|
|
10
10
|
"output_token": "NextToken",
|
|
11
11
|
"limit_key": "MaxResults"
|
|
12
12
|
},
|
|
13
|
+
"ListHyperParameterTuningJobs": {
|
|
14
|
+
"input_token": "NextToken",
|
|
15
|
+
"output_token": "NextToken",
|
|
16
|
+
"limit_key": "MaxResults"
|
|
17
|
+
},
|
|
13
18
|
"ListModels": {
|
|
14
19
|
"input_token": "NextToken",
|
|
15
20
|
"output_token": "NextToken",
|
|
@@ -34,6 +39,11 @@
|
|
|
34
39
|
"input_token": "NextToken",
|
|
35
40
|
"output_token": "NextToken",
|
|
36
41
|
"limit_key": "MaxResults"
|
|
42
|
+
},
|
|
43
|
+
"ListTrainingJobsForHyperParameterTuningJob": {
|
|
44
|
+
"input_token": "NextToken",
|
|
45
|
+
"output_token": "NextToken",
|
|
46
|
+
"limit_key": "MaxResults"
|
|
37
47
|
}
|
|
38
48
|
}
|
|
39
49
|
}
|
data/lib/aws-sdk-core.rb
CHANGED
data/lib/aws-sdk-core/version.rb
CHANGED
data/service-models.json
CHANGED
|
@@ -198,6 +198,10 @@
|
|
|
198
198
|
"models": "elasticfilesystem/2015-02-01",
|
|
199
199
|
"endpoint": "elasticfilesystem"
|
|
200
200
|
},
|
|
201
|
+
"EKS": {
|
|
202
|
+
"models": "eks/2017-11-01",
|
|
203
|
+
"endpoint": "eks"
|
|
204
|
+
},
|
|
201
205
|
"EMR": {
|
|
202
206
|
"models": "elasticmapreduce/2009-03-31",
|
|
203
207
|
"endpoint": "elasticmapreduce"
|
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.62
|
|
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-06-
|
|
11
|
+
date: 2018-06-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jmespath
|
|
@@ -238,6 +238,9 @@ files:
|
|
|
238
238
|
- apis/ecs/2014-11-13/examples-1.json
|
|
239
239
|
- apis/ecs/2014-11-13/paginators-1.json
|
|
240
240
|
- apis/ecs/2014-11-13/waiters-2.json
|
|
241
|
+
- apis/eks/2017-11-01/api-2.json
|
|
242
|
+
- apis/eks/2017-11-01/examples-1.json
|
|
243
|
+
- apis/eks/2017-11-01/paginators-1.json
|
|
241
244
|
- apis/elasticache/2015-02-02/api-2.json
|
|
242
245
|
- apis/elasticache/2015-02-02/examples-1.json
|
|
243
246
|
- apis/elasticache/2015-02-02/paginators-1.json
|
|
@@ -633,6 +636,7 @@ files:
|
|
|
633
636
|
- lib/aws-sdk-core/ecs.rb
|
|
634
637
|
- lib/aws-sdk-core/ecs_credentials.rb
|
|
635
638
|
- lib/aws-sdk-core/efs.rb
|
|
639
|
+
- lib/aws-sdk-core/eks.rb
|
|
636
640
|
- lib/aws-sdk-core/elasticache.rb
|
|
637
641
|
- lib/aws-sdk-core/elasticbeanstalk.rb
|
|
638
642
|
- lib/aws-sdk-core/elasticloadbalancing.rb
|