Skip to content

Commit

Permalink
Update models for release
Browse files Browse the repository at this point in the history
  • Loading branch information
aws-sdk-php-automation committed Jul 30, 2019
1 parent 2b6482f commit 1dd3759
Show file tree
Hide file tree
Showing 16 changed files with 142 additions and 30 deletions.
17 changes: 17 additions & 0 deletions .changes/3.108.2
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[
{
"type": "api-change",
"category": "Polly",
"description": "Amazon Polly adds support for Neural text-to-speech engine."
},
{
"type": "api-change",
"category": "Route53",
"description": "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."
},
{
"type": "api-change",
"category": "MediaConvert",
"description": "MediaConvert adds support for specifying priority (-50 to 50) on jobs submitted to on demand or reserved queues"
}
]
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## next release

* `Aws\MediaConvert` - MediaConvert adds support for specifying priority (-50 to 50) on jobs submitted to on demand or reserved queues
* `Aws\Polly` - Amazon Polly adds support for Neural text-to-speech engine.
* `Aws\Route53` - 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.

## 3.108.1 - 2019-07-29

* `Aws\CodeCommit` - This release supports better exception handling for merges.
Expand Down
2 changes: 2 additions & 0 deletions src/data/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -2033,6 +2033,7 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
"me-south-1" : { },
"sa-east-1" : { },
"us-east-1" : { },
"us-east-2" : { },
Expand Down Expand Up @@ -2313,6 +2314,7 @@
"eu-west-1" : { },
"eu-west-2" : { },
"eu-west-3" : { },
"me-south-1" : { },
"sa-east-1" : { },
"us-east-1" : {
"sslCommonName" : "{service}.{dnsSuffix}"
Expand Down
2 changes: 1 addition & 1 deletion src/data/endpoints.json.php

Large diffs are not rendered by default.

28 changes: 25 additions & 3 deletions src/data/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
2 changes: 1 addition & 1 deletion src/data/mediaconvert/2017-08-29/api-2.json.php

Large diffs are not rendered by default.

10 changes: 10 additions & 0 deletions src/data/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
2 changes: 1 addition & 1 deletion src/data/mediaconvert/2017-08-29/docs-2.json.php

Large diffs are not rendered by default.

42 changes: 36 additions & 6 deletions src/data/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
2 changes: 1 addition & 1 deletion src/data/polly/2016-06-10/api-2.json.php

Large diffs are not rendered by default.

Loading

0 comments on commit 1dd3759

Please sign in to comment.