Skip to content

Commit

Permalink
Release v1.21.8
Browse files Browse the repository at this point in the history
  • Loading branch information
awssdkgo committed Jul 30, 2019
1 parent fd304fe commit b024dcc
Show file tree
Hide file tree
Showing 15 changed files with 307 additions and 45 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Release v1.21.8 (2019-07-30)
===

### Service Client Updates
* `aws/endpoints`: Updated Regions and Endpoints metadata.
* `service/mediaconvert`: Updates service API and documentation
* MediaConvert adds support for specifying priority (-50 to 50) on jobs submitted to on demand or reserved queues
* `service/polly`: Updates service API and documentation
* Amazon Polly adds support for Neural text-to-speech engine.
* `service/route53`: Updates service API and documentation
* Amazon Route 53 now supports the Middle East (Bahrain) Region (me-south-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.

Release v1.21.7 (2019-07-29)
===

Expand Down
2 changes: 2 additions & 0 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.21.7"
const SDKVersion = "1.21.8"
28 changes: 25 additions & 3 deletions models/apis/mediaconvert/2017-08-29/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -2013,6 +2013,10 @@
"shape": "__string",
"locationName": "jobTemplate"
},
"Priority": {
"shape": "__integerMinNegative50Max50",
"locationName": "priority"
},
"Queue": {
"shape": "__string",
"locationName": "queue"
Expand Down Expand Up @@ -2067,6 +2071,10 @@
"shape": "__string",
"locationName": "name"
},
"Priority": {
"shape": "__integerMinNegative50Max50",
"locationName": "priority"
},
"Queue": {
"shape": "__string",
"locationName": "queue"
Expand Down Expand Up @@ -4686,6 +4694,10 @@
"shape": "__listOfOutputGroupDetail",
"locationName": "outputGroupDetails"
},
"Priority": {
"shape": "__integerMinNegative50Max50",
"locationName": "priority"
},
"Queue": {
"shape": "__string",
"locationName": "queue"
Expand Down Expand Up @@ -4814,6 +4826,10 @@
"shape": "__string",
"locationName": "name"
},
"Priority": {
"shape": "__integerMinNegative50Max50",
"locationName": "priority"
},
"Queue": {
"shape": "__string",
"locationName": "queue"
Expand Down Expand Up @@ -7053,6 +7069,10 @@
"locationName": "name",
"location": "uri"
},
"Priority": {
"shape": "__integerMinNegative50Max50",
"locationName": "priority"
},
"Queue": {
"shape": "__string",
"locationName": "queue"
Expand Down Expand Up @@ -7715,6 +7735,11 @@
"min": -2,
"max": 3
},
"__integerMinNegative50Max50": {
"type": "integer",
"min": -50,
"max": 50
},
"__integerMinNegative5Max5": {
"type": "integer",
"min": -5,
Expand Down Expand Up @@ -7892,9 +7917,6 @@
"shape": "__stringPatternS3ASSETMAPXml"
}
},
"__long": {
"type": "long"
},
"__mapOfAudioSelector": {
"type": "map",
"key": {
Expand Down
10 changes: 10 additions & 0 deletions models/apis/mediaconvert/2017-08-29/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3132,6 +3132,16 @@
"NoiseReducerSpatialFilterSettings$Speed": "The speed of the filter, from -2 (lower speed) to 3 (higher speed), with 0 being the nominal value."
}
},
"__integerMinNegative50Max50": {
"base": null,
"refs": {
"CreateJobRequest$Priority": "Specify the relative priority for this job. In any given queue, the service begins processing the job with the highest value first. When more than one job has the same priority, the service begins processing the job that you submitted first. If you don't specify a priority, the service uses the default value 0.",
"CreateJobTemplateRequest$Priority": "Specify the relative priority for this job. In any given queue, the service begins processing the job with the highest value first. When more than one job has the same priority, the service begins processing the job that you submitted first. If you don't specify a priority, the service uses the default value 0.",
"Job$Priority": "Relative priority on the job.",
"JobTemplate$Priority": "Relative priority on the job.",
"UpdateJobTemplateRequest$Priority": "Specify the relative priority for this job. In any given queue, the service begins processing the job with the highest value first. When more than one job has the same priority, the service begins processing the job that you submitted first. If you don't specify a priority, the service uses the default value 0."
}
},
"__integerMinNegative5Max5": {
"base": null,
"refs": {
Expand Down
42 changes: 36 additions & 6 deletions models/apis/polly/2016-06-10/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@
{"shape":"InvalidSampleRateException"},
{"shape":"InvalidSnsTopicArnException"},
{"shape":"InvalidSsmlException"},
{"shape":"EngineNotSupportedException"},
{"shape":"LexiconNotFoundException"},
{"shape":"ServiceFailureException"},
{"shape":"MarksNotSupportedForFormatException"},
Expand All @@ -154,7 +155,8 @@
{"shape":"ServiceFailureException"},
{"shape":"MarksNotSupportedForFormatException"},
{"shape":"SsmlMarksNotSupportedForTextTypeException"},
{"shape":"LanguageNotSupportedException"}
{"shape":"LanguageNotSupportedException"},
{"shape":"EngineNotSupportedException"}
]
}
},
Expand Down Expand Up @@ -185,6 +187,11 @@
"DescribeVoicesInput":{
"type":"structure",
"members":{
"Engine":{
"shape":"Engine",
"location":"querystring",
"locationName":"Engine"
},
"LanguageCode":{
"shape":"LanguageCode",
"location":"querystring",
Expand All @@ -209,6 +216,25 @@
"NextToken":{"shape":"NextToken"}
}
},
"Engine":{
"type":"string",
"enum":[
"standard",
"neural"
]
},
"EngineList":{
"type":"list",
"member":{"shape":"Engine"}
},
"EngineNotSupportedException":{
"type":"structure",
"members":{
"message":{"shape":"ErrorMessage"}
},
"error":{"httpStatusCode":400},
"exception":true
},
"ErrorMessage":{"type":"string"},
"Gender":{
"type":"string",
Expand Down Expand Up @@ -586,6 +612,8 @@
"VoiceId"
],
"members":{
"Engine":{"shape":"Engine"},
"LanguageCode":{"shape":"LanguageCode"},
"LexiconNames":{"shape":"LexiconNameList"},
"OutputFormat":{"shape":"OutputFormat"},
"OutputS3BucketName":{"shape":"OutputS3BucketName"},
Expand All @@ -595,8 +623,7 @@
"SpeechMarkTypes":{"shape":"SpeechMarkTypeList"},
"Text":{"shape":"Text"},
"TextType":{"shape":"TextType"},
"VoiceId":{"shape":"VoiceId"},
"LanguageCode":{"shape":"LanguageCode"}
"VoiceId":{"shape":"VoiceId"}
}
},
"StartSpeechSynthesisTaskOutput":{
Expand All @@ -608,6 +635,7 @@
"SynthesisTask":{
"type":"structure",
"members":{
"Engine":{"shape":"Engine"},
"TaskId":{"shape":"TaskId"},
"TaskStatus":{"shape":"TaskStatus"},
"TaskStatusReason":{"shape":"TaskStatusReason"},
Expand Down Expand Up @@ -644,14 +672,15 @@
"VoiceId"
],
"members":{
"Engine":{"shape":"Engine"},
"LanguageCode":{"shape":"LanguageCode"},
"LexiconNames":{"shape":"LexiconNameList"},
"OutputFormat":{"shape":"OutputFormat"},
"SampleRate":{"shape":"SampleRate"},
"SpeechMarkTypes":{"shape":"SpeechMarkTypeList"},
"Text":{"shape":"Text"},
"TextType":{"shape":"TextType"},
"VoiceId":{"shape":"VoiceId"},
"LanguageCode":{"shape":"LanguageCode"}
"VoiceId":{"shape":"VoiceId"}
}
},
"SynthesizeSpeechOutput":{
Expand Down Expand Up @@ -725,7 +754,8 @@
"LanguageCode":{"shape":"LanguageCode"},
"LanguageName":{"shape":"LanguageName"},
"Name":{"shape":"VoiceName"},
"AdditionalLanguageCodes":{"shape":"LanguageCodeList"}
"AdditionalLanguageCodes":{"shape":"LanguageCodeList"},
"SupportedEngines":{"shape":"EngineList"}
}
},
"VoiceId":{
Expand Down
Loading

0 comments on commit b024dcc

Please sign in to comment.