Skip to content

Commit 5d14161

Browse files
AWS SDK for RubyNobody
authored andcommitted
Updated service API models for release.
1 parent d1eb82d commit 5d14161

File tree

6 files changed

+112
-7
lines changed

6 files changed

+112
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
Unreleased Changes
22
------------------
33

4+
* Feature - Aws::PersonalizeRuntime - Updated the API, and documentation for Amazon Personalize Runtime.
5+
6+
* Feature - Aws::RoboMaker - Updated the API, and documentation for AWS RoboMaker.
7+
48
2.11.482 (2020-04-02)
59
------------------
610

aws-sdk-core/apis/personalize-runtime/2018-05-22/api-2.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,8 @@
128128
"PredictedItem":{
129129
"type":"structure",
130130
"members":{
131-
"itemId":{"shape":"ItemID"}
131+
"itemId":{"shape":"ItemID"},
132+
"score":{"shape":"Score"}
132133
}
133134
},
134135
"ResourceNotFoundException":{
@@ -139,6 +140,7 @@
139140
"error":{"httpStatusCode":404},
140141
"exception":true
141142
},
143+
"Score":{"type":"double"},
142144
"UserID":{
143145
"type":"string",
144146
"max":256

aws-sdk-core/apis/personalize-runtime/2018-05-22/docs-2.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
"Context": {
2929
"base": null,
3030
"refs": {
31-
"GetPersonalizedRankingRequest$context": "<p>The contextual metadata to use when getting recommendations. Contextual metadata includes any interaction information that might be relevant when getting a user's recommendations, such as the user's current location or device type. For more information, see Contextual Metadata.</p>",
32-
"GetRecommendationsRequest$context": "<p>The contextual metadata to use when getting recommendations. Contextual metadata includes any interaction information that might be relevant when getting a user's recommendations, such as the user's current location or device type. For more information, see Contextual Metadata.</p>"
31+
"GetPersonalizedRankingRequest$context": "<p>The contextual metadata to use when getting recommendations. Contextual metadata includes any interaction information that might be relevant when getting a user's recommendations, such as the user's current location or device type.</p>",
32+
"GetRecommendationsRequest$context": "<p>The contextual metadata to use when getting recommendations. Contextual metadata includes any interaction information that might be relevant when getting a user's recommendations, such as the user's current location or device type.</p>"
3333
}
3434
},
3535
"ErrorMessage": {
@@ -102,6 +102,12 @@
102102
"refs": {
103103
}
104104
},
105+
"Score": {
106+
"base": null,
107+
"refs": {
108+
"PredictedItem$score": "<p>A numeric representation of the model's certainty in the item's suitability. For more information on scoring logic, see <a>how-scores-work</a>.</p>"
109+
}
110+
},
105111
"UserID": {
106112
"base": null,
107113
"refs": {

aws-sdk-core/apis/robomaker/2018-06-29/api-2.json

Lines changed: 26 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -718,6 +718,18 @@
718718
"min":1,
719719
"pattern":"[a-zA-Z0-9_.\\-]*"
720720
},
721+
"Compute":{
722+
"type":"structure",
723+
"members":{
724+
"simulationUnitLimit":{"shape":"SimulationUnit"}
725+
}
726+
},
727+
"ComputeResponse":{
728+
"type":"structure",
729+
"members":{
730+
"simulationUnitLimit":{"shape":"SimulationUnit"}
731+
}
732+
},
721733
"ConcurrentDeploymentException":{
722734
"type":"structure",
723735
"members":{
@@ -921,7 +933,8 @@
921933
"simulationApplications":{"shape":"SimulationApplicationConfigs"},
922934
"dataSources":{"shape":"DataSourceConfigs"},
923935
"tags":{"shape":"TagMap"},
924-
"vpcConfig":{"shape":"VPCConfig"}
936+
"vpcConfig":{"shape":"VPCConfig"},
937+
"compute":{"shape":"Compute"}
925938
}
926939
},
927940
"CreateSimulationJobRequests":{
@@ -948,7 +961,8 @@
948961
"simulationApplications":{"shape":"SimulationApplicationConfigs"},
949962
"dataSources":{"shape":"DataSources"},
950963
"tags":{"shape":"TagMap"},
951-
"vpcConfig":{"shape":"VPCConfigResponse"}
964+
"vpcConfig":{"shape":"VPCConfigResponse"},
965+
"compute":{"shape":"ComputeResponse"}
952966
}
953967
},
954968
"CreatedAt":{"type":"timestamp"},
@@ -1320,7 +1334,8 @@
13201334
"dataSources":{"shape":"DataSources"},
13211335
"tags":{"shape":"TagMap"},
13221336
"vpcConfig":{"shape":"VPCConfigResponse"},
1323-
"networkInterface":{"shape":"NetworkInterface"}
1337+
"networkInterface":{"shape":"NetworkInterface"},
1338+
"compute":{"shape":"ComputeResponse"}
13241339
}
13251340
},
13261341
"EnvironmentVariableKey":{
@@ -2000,7 +2015,8 @@
20002015
"dataSources":{"shape":"DataSources"},
20012016
"tags":{"shape":"TagMap"},
20022017
"vpcConfig":{"shape":"VPCConfigResponse"},
2003-
"networkInterface":{"shape":"NetworkInterface"}
2018+
"networkInterface":{"shape":"NetworkInterface"},
2019+
"compute":{"shape":"ComputeResponse"}
20042020
}
20052021
},
20062022
"SimulationJobBatchErrorCode":{
@@ -2083,6 +2099,7 @@
20832099
"simulationApplications":{"shape":"SimulationApplicationConfigs"},
20842100
"dataSources":{"shape":"DataSourceConfigs"},
20852101
"vpcConfig":{"shape":"VPCConfig"},
2102+
"compute":{"shape":"Compute"},
20862103
"tags":{"shape":"TagMap"}
20872104
}
20882105
},
@@ -2144,6 +2161,11 @@
21442161
"pattern":"7|9|Kinetic|Melodic|Dashing"
21452162
},
21462163
"SimulationTimeMillis":{"type":"long"},
2164+
"SimulationUnit":{
2165+
"type":"integer",
2166+
"max":15,
2167+
"min":1
2168+
},
21472169
"Source":{
21482170
"type":"structure",
21492171
"members":{

aws-sdk-core/apis/robomaker/2018-06-29/docs-2.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,21 @@
234234
"LaunchConfig$launchFile": "<p>The launch file name.</p>"
235235
}
236236
},
237+
"Compute": {
238+
"base": "<p>Compute information for the simulation job.</p>",
239+
"refs": {
240+
"CreateSimulationJobRequest$compute": "<p>Compute information for the simulation job.</p>",
241+
"SimulationJobRequest$compute": "<p>Compute information for the simulation job</p>"
242+
}
243+
},
244+
"ComputeResponse": {
245+
"base": "<p>Compute information for the simulation job</p>",
246+
"refs": {
247+
"CreateSimulationJobResponse$compute": "<p>Compute information for the simulation job.</p>",
248+
"DescribeSimulationJobResponse$compute": "<p>Compute information for the simulation job.</p>",
249+
"SimulationJob$compute": "<p>Compute information for the simulation job</p>"
250+
}
251+
},
237252
"ConcurrentDeploymentException": {
238253
"base": "<p>The failure percentage threshold percentage was met.</p>",
239254
"refs": {
@@ -1410,6 +1425,13 @@
14101425
"SimulationJob$simulationTimeMillis": "<p>The simulation job execution duration in milliseconds.</p>"
14111426
}
14121427
},
1428+
"SimulationUnit": {
1429+
"base": null,
1430+
"refs": {
1431+
"Compute$simulationUnitLimit": "<p>The simulation unit limit. Your simulation is allocated CPU and memory proportional to the supplied simulation unit limit. A simulation unit is 1 vcpu and 2GB of memory. You are only billed for the SU utilization you consume up to the maximim value provided. </p>",
1432+
"ComputeResponse$simulationUnitLimit": "<p>The simulation unit limit. Your simulation is allocated CPU and memory proportional to the supplied simulation unit limit. A simulation unit is 1 vcpu and 2GB of memory. You are only billed for the SU utilization you consume up to the maximim value provided. </p>"
1433+
}
1434+
},
14131435
"Source": {
14141436
"base": "<p>Information about a source.</p>",
14151437
"refs": {

aws-sdk-core/endpoints.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2290,6 +2290,7 @@
22902290
},
22912291
"groundstation" : {
22922292
"endpoints" : {
2293+
"ap-southeast-2" : { },
22932294
"eu-north-1" : { },
22942295
"me-south-1" : { },
22952296
"us-east-2" : { },
@@ -2758,6 +2759,30 @@
27582759
"eu-west-1" : { },
27592760
"eu-west-2" : { },
27602761
"eu-west-3" : { },
2762+
"fips-us-east-1" : {
2763+
"credentialScope" : {
2764+
"region" : "us-east-1"
2765+
},
2766+
"hostname" : "license-manager-fips.us-east-1.amazonaws.com"
2767+
},
2768+
"fips-us-east-2" : {
2769+
"credentialScope" : {
2770+
"region" : "us-east-2"
2771+
},
2772+
"hostname" : "license-manager-fips.us-east-2.amazonaws.com"
2773+
},
2774+
"fips-us-west-1" : {
2775+
"credentialScope" : {
2776+
"region" : "us-west-1"
2777+
},
2778+
"hostname" : "license-manager-fips.us-west-1.amazonaws.com"
2779+
},
2780+
"fips-us-west-2" : {
2781+
"credentialScope" : {
2782+
"region" : "us-west-2"
2783+
},
2784+
"hostname" : "license-manager-fips.us-west-2.amazonaws.com"
2785+
},
27612786
"me-south-1" : { },
27622787
"sa-east-1" : { },
27632788
"us-east-1" : { },
@@ -5170,6 +5195,18 @@
51705195
"ap-southeast-1" : { },
51715196
"ap-southeast-2" : { },
51725197
"eu-west-1" : { },
5198+
"fips-us-east-1" : {
5199+
"credentialScope" : {
5200+
"region" : "us-east-1"
5201+
},
5202+
"hostname" : "workdocs-fips.us-east-1.amazonaws.com"
5203+
},
5204+
"fips-us-west-2" : {
5205+
"credentialScope" : {
5206+
"region" : "us-west-2"
5207+
},
5208+
"hostname" : "workdocs-fips.us-west-2.amazonaws.com"
5209+
},
51735210
"us-east-1" : { },
51745211
"us-west-2" : { }
51755212
}
@@ -6334,6 +6371,18 @@
63346371
},
63356372
"license-manager" : {
63366373
"endpoints" : {
6374+
"fips-us-gov-east-1" : {
6375+
"credentialScope" : {
6376+
"region" : "us-gov-east-1"
6377+
},
6378+
"hostname" : "license-manager-fips.us-gov-east-1.amazonaws.com"
6379+
},
6380+
"fips-us-gov-west-1" : {
6381+
"credentialScope" : {
6382+
"region" : "us-gov-west-1"
6383+
},
6384+
"hostname" : "license-manager-fips.us-gov-west-1.amazonaws.com"
6385+
},
63376386
"us-gov-east-1" : { },
63386387
"us-gov-west-1" : { }
63396388
}

0 commit comments

Comments
 (0)