Skip to content

Commit

Permalink
Release v1.30.4 (2020-04-03)
Browse files Browse the repository at this point in the history
===

### Service Client Updates
* `service/personalize-runtime`: Updates service API and documentation
* `service/robomaker`: Updates service API and documentation
  • Loading branch information
awssdkgo committed Apr 3, 2020
1 parent 53756c8 commit 2d94d44
Show file tree
Hide file tree
Showing 10 changed files with 309 additions and 22 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
Release v1.30.4 (2020-04-03)
===

### Service Client Updates
* `service/personalize-runtime`: Updates service API and documentation
* `service/robomaker`: Updates service API and documentation

Release v1.30.3 (2020-04-02)
===

Expand Down
73 changes: 61 additions & 12 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.30.3"
const SDKVersion = "1.30.4"
4 changes: 3 additions & 1 deletion models/apis/personalize-runtime/2018-05-22/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,8 @@
"PredictedItem":{
"type":"structure",
"members":{
"itemId":{"shape":"ItemID"}
"itemId":{"shape":"ItemID"},
"score":{"shape":"Score"}
}
},
"ResourceNotFoundException":{
Expand All @@ -139,6 +140,7 @@
"error":{"httpStatusCode":404},
"exception":true
},
"Score":{"type":"double"},
"UserID":{
"type":"string",
"max":256
Expand Down
10 changes: 8 additions & 2 deletions models/apis/personalize-runtime/2018-05-22/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"Context": {
"base": null,
"refs": {
"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>",
"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>"
"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>",
"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>"
}
},
"ErrorMessage": {
Expand Down Expand Up @@ -102,6 +102,12 @@
"refs": {
}
},
"Score": {
"base": null,
"refs": {
"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>"
}
},
"UserID": {
"base": null,
"refs": {
Expand Down
30 changes: 26 additions & 4 deletions models/apis/robomaker/2018-06-29/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -718,6 +718,18 @@
"min":1,
"pattern":"[a-zA-Z0-9_.\\-]*"
},
"Compute":{
"type":"structure",
"members":{
"simulationUnitLimit":{"shape":"SimulationUnit"}
}
},
"ComputeResponse":{
"type":"structure",
"members":{
"simulationUnitLimit":{"shape":"SimulationUnit"}
}
},
"ConcurrentDeploymentException":{
"type":"structure",
"members":{
Expand Down Expand Up @@ -921,7 +933,8 @@
"simulationApplications":{"shape":"SimulationApplicationConfigs"},
"dataSources":{"shape":"DataSourceConfigs"},
"tags":{"shape":"TagMap"},
"vpcConfig":{"shape":"VPCConfig"}
"vpcConfig":{"shape":"VPCConfig"},
"compute":{"shape":"Compute"}
}
},
"CreateSimulationJobRequests":{
Expand All @@ -948,7 +961,8 @@
"simulationApplications":{"shape":"SimulationApplicationConfigs"},
"dataSources":{"shape":"DataSources"},
"tags":{"shape":"TagMap"},
"vpcConfig":{"shape":"VPCConfigResponse"}
"vpcConfig":{"shape":"VPCConfigResponse"},
"compute":{"shape":"ComputeResponse"}
}
},
"CreatedAt":{"type":"timestamp"},
Expand Down Expand Up @@ -1320,7 +1334,8 @@
"dataSources":{"shape":"DataSources"},
"tags":{"shape":"TagMap"},
"vpcConfig":{"shape":"VPCConfigResponse"},
"networkInterface":{"shape":"NetworkInterface"}
"networkInterface":{"shape":"NetworkInterface"},
"compute":{"shape":"ComputeResponse"}
}
},
"EnvironmentVariableKey":{
Expand Down Expand Up @@ -2000,7 +2015,8 @@
"dataSources":{"shape":"DataSources"},
"tags":{"shape":"TagMap"},
"vpcConfig":{"shape":"VPCConfigResponse"},
"networkInterface":{"shape":"NetworkInterface"}
"networkInterface":{"shape":"NetworkInterface"},
"compute":{"shape":"ComputeResponse"}
}
},
"SimulationJobBatchErrorCode":{
Expand Down Expand Up @@ -2083,6 +2099,7 @@
"simulationApplications":{"shape":"SimulationApplicationConfigs"},
"dataSources":{"shape":"DataSourceConfigs"},
"vpcConfig":{"shape":"VPCConfig"},
"compute":{"shape":"Compute"},
"tags":{"shape":"TagMap"}
}
},
Expand Down Expand Up @@ -2144,6 +2161,11 @@
"pattern":"7|9|Kinetic|Melodic|Dashing"
},
"SimulationTimeMillis":{"type":"long"},
"SimulationUnit":{
"type":"integer",
"max":15,
"min":1
},
"Source":{
"type":"structure",
"members":{
Expand Down
22 changes: 22 additions & 0 deletions models/apis/robomaker/2018-06-29/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,21 @@
"LaunchConfig$launchFile": "<p>The launch file name.</p>"
}
},
"Compute": {
"base": "<p>Compute information for the simulation job.</p>",
"refs": {
"CreateSimulationJobRequest$compute": "<p>Compute information for the simulation job.</p>",
"SimulationJobRequest$compute": "<p>Compute information for the simulation job</p>"
}
},
"ComputeResponse": {
"base": "<p>Compute information for the simulation job</p>",
"refs": {
"CreateSimulationJobResponse$compute": "<p>Compute information for the simulation job.</p>",
"DescribeSimulationJobResponse$compute": "<p>Compute information for the simulation job.</p>",
"SimulationJob$compute": "<p>Compute information for the simulation job</p>"
}
},
"ConcurrentDeploymentException": {
"base": "<p>The failure percentage threshold percentage was met.</p>",
"refs": {
Expand Down Expand Up @@ -1410,6 +1425,13 @@
"SimulationJob$simulationTimeMillis": "<p>The simulation job execution duration in milliseconds.</p>"
}
},
"SimulationUnit": {
"base": null,
"refs": {
"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>",
"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>"
}
},
"Source": {
"base": "<p>Information about a source.</p>",
"refs": {
Expand Down
49 changes: 49 additions & 0 deletions models/endpoints/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -2290,6 +2290,7 @@
},
"groundstation" : {
"endpoints" : {
"ap-southeast-2" : { },
"eu-north-1" : { },
"me-south-1" : { },
"us-east-2" : { },
Expand Down Expand Up @@ -2758,6 +2759,30 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
"fips-us-east-1" : {
"credentialScope" : {
"region" : "us-east-1"
},
"hostname" : "license-manager-fips.us-east-1.amazonaws.com"
},
"fips-us-east-2" : {
"credentialScope" : {
"region" : "us-east-2"
},
"hostname" : "license-manager-fips.us-east-2.amazonaws.com"
},
"fips-us-west-1" : {
"credentialScope" : {
"region" : "us-west-1"
},
"hostname" : "license-manager-fips.us-west-1.amazonaws.com"
},
"fips-us-west-2" : {
"credentialScope" : {
"region" : "us-west-2"
},
"hostname" : "license-manager-fips.us-west-2.amazonaws.com"
},
"me-south-1" : { },
"sa-east-1" : { },
"us-east-1" : { },
Expand Down Expand Up @@ -5170,6 +5195,18 @@
"ap-southeast-1" : { },
"ap-southeast-2" : { },
"eu-west-1" : { },
"fips-us-east-1" : {
"credentialScope" : {
"region" : "us-east-1"
},
"hostname" : "workdocs-fips.us-east-1.amazonaws.com"
},
"fips-us-west-2" : {
"credentialScope" : {
"region" : "us-west-2"
},
"hostname" : "workdocs-fips.us-west-2.amazonaws.com"
},
"us-east-1" : { },
"us-west-2" : { }
}
Expand Down Expand Up @@ -6334,6 +6371,18 @@
},
"license-manager" : {
"endpoints" : {
"fips-us-gov-east-1" : {
"credentialScope" : {
"region" : "us-gov-east-1"
},
"hostname" : "license-manager-fips.us-gov-east-1.amazonaws.com"
},
"fips-us-gov-west-1" : {
"credentialScope" : {
"region" : "us-gov-west-1"
},
"hostname" : "license-manager-fips.us-gov-west-1.amazonaws.com"
},
"us-gov-east-1" : { },
"us-gov-west-1" : { }
}
Expand Down
12 changes: 10 additions & 2 deletions service/personalizeruntime/api.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2d94d44

Please sign in to comment.