aws-sdk-core 2.11.337 → 2.11.338
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/apis/elasticache/2015-02-02/api-2.json +2 -1
- data/apis/forecast/2018-06-26/api-2.json +1373 -0
- data/apis/forecast/2018-06-26/examples-1.json +5 -0
- data/apis/forecast/2018-06-26/paginators-1.json +40 -0
- data/apis/forecastquery/2018-06-26/api-2.json +154 -0
- data/apis/forecastquery/2018-06-26/examples-1.json +5 -0
- data/apis/forecastquery/2018-06-26/paginators-1.json +4 -0
- data/apis/personalize-runtime/2018-05-22/api-2.json +2 -5
- data/apis/sagemaker/2017-07-24/api-2.json +38 -2
- data/apis/sqs/2012-11-05/api-2.json +4 -0
- data/lib/aws-sdk-core.rb +2 -0
- data/lib/aws-sdk-core/forecastqueryservice.rb +6 -0
- data/lib/aws-sdk-core/forecastservice.rb +6 -0
- data/lib/aws-sdk-core/version.rb +1 -1
- data/service-models.json +8 -0
- metadata +10 -2
@@ -0,0 +1,40 @@
|
|
1
|
+
{
|
2
|
+
"pagination": {
|
3
|
+
"ListDatasetGroups": {
|
4
|
+
"input_token": "NextToken",
|
5
|
+
"limit_key": "MaxResults",
|
6
|
+
"output_token": "NextToken",
|
7
|
+
"result_key": "DatasetGroups"
|
8
|
+
},
|
9
|
+
"ListDatasetImportJobs": {
|
10
|
+
"input_token": "NextToken",
|
11
|
+
"limit_key": "MaxResults",
|
12
|
+
"output_token": "NextToken",
|
13
|
+
"result_key": "DatasetImportJobs"
|
14
|
+
},
|
15
|
+
"ListDatasets": {
|
16
|
+
"input_token": "NextToken",
|
17
|
+
"limit_key": "MaxResults",
|
18
|
+
"output_token": "NextToken",
|
19
|
+
"result_key": "Datasets"
|
20
|
+
},
|
21
|
+
"ListForecastExportJobs": {
|
22
|
+
"input_token": "NextToken",
|
23
|
+
"limit_key": "MaxResults",
|
24
|
+
"output_token": "NextToken",
|
25
|
+
"result_key": "ForecastExportJobs"
|
26
|
+
},
|
27
|
+
"ListForecasts": {
|
28
|
+
"input_token": "NextToken",
|
29
|
+
"limit_key": "MaxResults",
|
30
|
+
"output_token": "NextToken",
|
31
|
+
"result_key": "Forecasts"
|
32
|
+
},
|
33
|
+
"ListPredictors": {
|
34
|
+
"input_token": "NextToken",
|
35
|
+
"limit_key": "MaxResults",
|
36
|
+
"output_token": "NextToken",
|
37
|
+
"result_key": "Predictors"
|
38
|
+
}
|
39
|
+
}
|
40
|
+
}
|
@@ -0,0 +1,154 @@
|
|
1
|
+
{
|
2
|
+
"version":"2.0",
|
3
|
+
"metadata":{
|
4
|
+
"apiVersion":"2018-06-26",
|
5
|
+
"endpointPrefix":"forecastquery",
|
6
|
+
"jsonVersion":"1.1",
|
7
|
+
"protocol":"json",
|
8
|
+
"serviceFullName":"Amazon Forecast Query Service",
|
9
|
+
"serviceId":"forecastquery",
|
10
|
+
"signatureVersion":"v4",
|
11
|
+
"signingName":"forecast",
|
12
|
+
"targetPrefix":"AmazonForecastRuntime",
|
13
|
+
"uid":"forecastquery-2018-06-26"
|
14
|
+
},
|
15
|
+
"operations":{
|
16
|
+
"QueryForecast":{
|
17
|
+
"name":"QueryForecast",
|
18
|
+
"http":{
|
19
|
+
"method":"POST",
|
20
|
+
"requestUri":"/"
|
21
|
+
},
|
22
|
+
"input":{"shape":"QueryForecastRequest"},
|
23
|
+
"output":{"shape":"QueryForecastResponse"},
|
24
|
+
"errors":[
|
25
|
+
{"shape":"ResourceNotFoundException"},
|
26
|
+
{"shape":"ResourceInUseException"},
|
27
|
+
{"shape":"InvalidInputException"},
|
28
|
+
{"shape":"LimitExceededException"},
|
29
|
+
{"shape":"InvalidNextTokenException"}
|
30
|
+
]
|
31
|
+
}
|
32
|
+
},
|
33
|
+
"shapes":{
|
34
|
+
"Arn":{
|
35
|
+
"type":"string",
|
36
|
+
"max":256,
|
37
|
+
"pattern":"arn:([a-z\\d-]+):forecast:.*:.*:.+"
|
38
|
+
},
|
39
|
+
"AttributeName":{
|
40
|
+
"type":"string",
|
41
|
+
"max":256,
|
42
|
+
"pattern":"^[a-zA-Z0-9\\_\\-]+$"
|
43
|
+
},
|
44
|
+
"AttributeValue":{
|
45
|
+
"type":"string",
|
46
|
+
"max":256
|
47
|
+
},
|
48
|
+
"DataPoint":{
|
49
|
+
"type":"structure",
|
50
|
+
"members":{
|
51
|
+
"Timestamp":{"shape":"Timestamp"},
|
52
|
+
"Value":{"shape":"Double"}
|
53
|
+
}
|
54
|
+
},
|
55
|
+
"DateTime":{
|
56
|
+
"type":"string",
|
57
|
+
"max":20,
|
58
|
+
"pattern":"^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$"
|
59
|
+
},
|
60
|
+
"Double":{"type":"double"},
|
61
|
+
"ErrorMessage":{"type":"string"},
|
62
|
+
"Filters":{
|
63
|
+
"type":"map",
|
64
|
+
"key":{"shape":"AttributeName"},
|
65
|
+
"value":{"shape":"AttributeValue"},
|
66
|
+
"max":50,
|
67
|
+
"min":1
|
68
|
+
},
|
69
|
+
"Forecast":{
|
70
|
+
"type":"structure",
|
71
|
+
"members":{
|
72
|
+
"Predictions":{"shape":"Predictions"}
|
73
|
+
}
|
74
|
+
},
|
75
|
+
"InvalidInputException":{
|
76
|
+
"type":"structure",
|
77
|
+
"members":{
|
78
|
+
"Message":{"shape":"ErrorMessage"}
|
79
|
+
},
|
80
|
+
"exception":true
|
81
|
+
},
|
82
|
+
"InvalidNextTokenException":{
|
83
|
+
"type":"structure",
|
84
|
+
"members":{
|
85
|
+
"Message":{"shape":"ErrorMessage"}
|
86
|
+
},
|
87
|
+
"exception":true
|
88
|
+
},
|
89
|
+
"LimitExceededException":{
|
90
|
+
"type":"structure",
|
91
|
+
"members":{
|
92
|
+
"Message":{"shape":"ErrorMessage"}
|
93
|
+
},
|
94
|
+
"exception":true
|
95
|
+
},
|
96
|
+
"NextToken":{
|
97
|
+
"type":"string",
|
98
|
+
"max":3000,
|
99
|
+
"min":1
|
100
|
+
},
|
101
|
+
"Predictions":{
|
102
|
+
"type":"map",
|
103
|
+
"key":{"shape":"Statistic"},
|
104
|
+
"value":{"shape":"TimeSeries"}
|
105
|
+
},
|
106
|
+
"QueryForecastRequest":{
|
107
|
+
"type":"structure",
|
108
|
+
"required":[
|
109
|
+
"ForecastArn",
|
110
|
+
"Filters"
|
111
|
+
],
|
112
|
+
"members":{
|
113
|
+
"ForecastArn":{"shape":"Arn"},
|
114
|
+
"StartDate":{"shape":"DateTime"},
|
115
|
+
"EndDate":{"shape":"DateTime"},
|
116
|
+
"Filters":{"shape":"Filters"},
|
117
|
+
"NextToken":{"shape":"NextToken"}
|
118
|
+
}
|
119
|
+
},
|
120
|
+
"QueryForecastResponse":{
|
121
|
+
"type":"structure",
|
122
|
+
"members":{
|
123
|
+
"Forecast":{"shape":"Forecast"}
|
124
|
+
}
|
125
|
+
},
|
126
|
+
"ResourceInUseException":{
|
127
|
+
"type":"structure",
|
128
|
+
"members":{
|
129
|
+
"Message":{"shape":"ErrorMessage"}
|
130
|
+
},
|
131
|
+
"exception":true
|
132
|
+
},
|
133
|
+
"ResourceNotFoundException":{
|
134
|
+
"type":"structure",
|
135
|
+
"members":{
|
136
|
+
"Message":{"shape":"ErrorMessage"}
|
137
|
+
},
|
138
|
+
"exception":true
|
139
|
+
},
|
140
|
+
"Statistic":{
|
141
|
+
"type":"string",
|
142
|
+
"max":4
|
143
|
+
},
|
144
|
+
"TimeSeries":{
|
145
|
+
"type":"list",
|
146
|
+
"member":{"shape":"DataPoint"}
|
147
|
+
},
|
148
|
+
"Timestamp":{
|
149
|
+
"type":"string",
|
150
|
+
"max":20,
|
151
|
+
"pattern":"^\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}:\\d{2}Z$"
|
152
|
+
}
|
153
|
+
}
|
154
|
+
}
|
@@ -85,8 +85,7 @@
|
|
85
85
|
},
|
86
86
|
"InputList":{
|
87
87
|
"type":"list",
|
88
|
-
"member":{"shape":"ItemID"}
|
89
|
-
"max":100
|
88
|
+
"member":{"shape":"ItemID"}
|
90
89
|
},
|
91
90
|
"InvalidInputException":{
|
92
91
|
"type":"structure",
|
@@ -102,12 +101,10 @@
|
|
102
101
|
},
|
103
102
|
"ItemList":{
|
104
103
|
"type":"list",
|
105
|
-
"member":{"shape":"PredictedItem"}
|
106
|
-
"max":100
|
104
|
+
"member":{"shape":"PredictedItem"}
|
107
105
|
},
|
108
106
|
"NumResults":{
|
109
107
|
"type":"integer",
|
110
|
-
"max":100,
|
111
108
|
"min":0
|
112
109
|
},
|
113
110
|
"PredictedItem":{
|
@@ -1620,7 +1620,8 @@
|
|
1620
1620
|
"DataSource":{
|
1621
1621
|
"type":"structure",
|
1622
1622
|
"members":{
|
1623
|
-
"S3DataSource":{"shape":"S3DataSource"}
|
1623
|
+
"S3DataSource":{"shape":"S3DataSource"},
|
1624
|
+
"FileSystemDataSource":{"shape":"FileSystemDataSource"}
|
1624
1625
|
}
|
1625
1626
|
},
|
1626
1627
|
"DeleteAlgorithmInput":{
|
@@ -2346,6 +2347,40 @@
|
|
2346
2347
|
"type":"string",
|
2347
2348
|
"max":1024
|
2348
2349
|
},
|
2350
|
+
"FileSystemAccessMode":{
|
2351
|
+
"type":"string",
|
2352
|
+
"enum":[
|
2353
|
+
"rw",
|
2354
|
+
"ro"
|
2355
|
+
]
|
2356
|
+
},
|
2357
|
+
"FileSystemDataSource":{
|
2358
|
+
"type":"structure",
|
2359
|
+
"required":[
|
2360
|
+
"FileSystemId",
|
2361
|
+
"FileSystemAccessMode",
|
2362
|
+
"FileSystemType",
|
2363
|
+
"DirectoryPath"
|
2364
|
+
],
|
2365
|
+
"members":{
|
2366
|
+
"FileSystemId":{"shape":"FileSystemId"},
|
2367
|
+
"FileSystemAccessMode":{"shape":"FileSystemAccessMode"},
|
2368
|
+
"FileSystemType":{"shape":"FileSystemType"},
|
2369
|
+
"DirectoryPath":{"shape":"DirectoryPath"}
|
2370
|
+
}
|
2371
|
+
},
|
2372
|
+
"FileSystemId":{
|
2373
|
+
"type":"string",
|
2374
|
+
"min":11,
|
2375
|
+
"pattern":".*"
|
2376
|
+
},
|
2377
|
+
"FileSystemType":{
|
2378
|
+
"type":"string",
|
2379
|
+
"enum":[
|
2380
|
+
"EFS",
|
2381
|
+
"FSxLustre"
|
2382
|
+
]
|
2383
|
+
},
|
2349
2384
|
"Filter":{
|
2350
2385
|
"type":"structure",
|
2351
2386
|
"required":["Name"],
|
@@ -4692,7 +4727,8 @@
|
|
4692
4727
|
"ml.c5.2xlarge",
|
4693
4728
|
"ml.c5.4xlarge",
|
4694
4729
|
"ml.c5.9xlarge",
|
4695
|
-
"ml.c5.18xlarge"
|
4730
|
+
"ml.c5.18xlarge",
|
4731
|
+
"ml.p3dn.24xlarge"
|
4696
4732
|
]
|
4697
4733
|
},
|
4698
4734
|
"TrainingInstanceTypes":{
|
data/lib/aws-sdk-core.rb
CHANGED
@@ -0,0 +1,6 @@
|
|
1
|
+
Aws.add_service(:ForecastQueryService, {
|
2
|
+
api: "#{Aws::API_DIR}/forecastquery/2018-06-26/api-2.json",
|
3
|
+
docs: "#{Aws::API_DIR}/forecastquery/2018-06-26/docs-2.json",
|
4
|
+
examples: "#{Aws::API_DIR}/forecastquery/2018-06-26/examples-1.json",
|
5
|
+
paginators: "#{Aws::API_DIR}/forecastquery/2018-06-26/paginators-1.json",
|
6
|
+
})
|
@@ -0,0 +1,6 @@
|
|
1
|
+
Aws.add_service(:ForecastService, {
|
2
|
+
api: "#{Aws::API_DIR}/forecast/2018-06-26/api-2.json",
|
3
|
+
docs: "#{Aws::API_DIR}/forecast/2018-06-26/docs-2.json",
|
4
|
+
examples: "#{Aws::API_DIR}/forecast/2018-06-26/examples-1.json",
|
5
|
+
paginators: "#{Aws::API_DIR}/forecast/2018-06-26/paginators-1.json",
|
6
|
+
})
|
data/lib/aws-sdk-core/version.rb
CHANGED
data/service-models.json
CHANGED
@@ -294,6 +294,14 @@
|
|
294
294
|
"models": "firehose/2015-08-04",
|
295
295
|
"endpoint": "firehose"
|
296
296
|
},
|
297
|
+
"ForecastQueryService": {
|
298
|
+
"models": "forecastquery/2018-06-26",
|
299
|
+
"endpoint": "forecastquery"
|
300
|
+
},
|
301
|
+
"ForecastService": {
|
302
|
+
"models": "forecast/2018-06-26",
|
303
|
+
"endpoint": "forecast"
|
304
|
+
},
|
297
305
|
"GameLift": {
|
298
306
|
"models": "gamelift/2015-10-01",
|
299
307
|
"endpoint": "gamelift"
|
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.338
|
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: 2019-08-
|
11
|
+
date: 2019-08-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jmespath
|
@@ -390,6 +390,12 @@ files:
|
|
390
390
|
- apis/fms/2018-01-01/api-2.json
|
391
391
|
- apis/fms/2018-01-01/examples-1.json
|
392
392
|
- apis/fms/2018-01-01/paginators-1.json
|
393
|
+
- apis/forecast/2018-06-26/api-2.json
|
394
|
+
- apis/forecast/2018-06-26/examples-1.json
|
395
|
+
- apis/forecast/2018-06-26/paginators-1.json
|
396
|
+
- apis/forecastquery/2018-06-26/api-2.json
|
397
|
+
- apis/forecastquery/2018-06-26/examples-1.json
|
398
|
+
- apis/forecastquery/2018-06-26/paginators-1.json
|
393
399
|
- apis/fsx/2018-03-01/api-2.json
|
394
400
|
- apis/fsx/2018-03-01/examples-1.json
|
395
401
|
- apis/fsx/2018-03-01/paginators-1.json
|
@@ -901,6 +907,8 @@ files:
|
|
901
907
|
- lib/aws-sdk-core/eventbridge.rb
|
902
908
|
- lib/aws-sdk-core/firehose.rb
|
903
909
|
- lib/aws-sdk-core/fms.rb
|
910
|
+
- lib/aws-sdk-core/forecastqueryservice.rb
|
911
|
+
- lib/aws-sdk-core/forecastservice.rb
|
904
912
|
- lib/aws-sdk-core/fsx.rb
|
905
913
|
- lib/aws-sdk-core/gamelift.rb
|
906
914
|
- lib/aws-sdk-core/glacier.rb
|