Skip to content

Commit

Permalink
Release v1.25.30 (2019-11-07) (#2935)
Browse files Browse the repository at this point in the history
Release v1.25.30 (2019-11-07)
===

### Service Client Updates
* `service/comprehend`: Updates service API and documentation
* `service/ssm`: Updates service API
  * AWS Systems Manager Session Manager target length increased to 400.
* `service/sso`: Adds new service
  * This is an initial release of AWS Single Sign-On (SSO) end-user access. This release adds support for accessing AWS accounts assigned in AWS SSO using short term credentials.
* `service/sso-oidc`: Adds new service
  • Loading branch information
aws-sdk-go-automation committed Nov 7, 2019
1 parent 36b3b5f commit 55c7775
Show file tree
Hide file tree
Showing 26 changed files with 3,661 additions and 7 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,14 @@
Release v1.25.30 (2019-11-07)
===

### Service Client Updates
* `service/comprehend`: Updates service API and documentation
* `service/ssm`: Updates service API
* AWS Systems Manager Session Manager target length increased to 400.
* `service/sso`: Adds new service
* This is an initial release of AWS Single Sign-On (SSO) end-user access. This release adds support for accessing AWS accounts assigned in AWS SSO using short term credentials.
* `service/sso-oidc`: Adds new service

Release v1.25.29 (2019-11-06)
===

Expand Down
125 changes: 125 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
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.25.29"
const SDKVersion = "1.25.30"
10 changes: 8 additions & 2 deletions models/apis/comprehend/2017-11-27/api-2.json
Expand Up @@ -900,7 +900,7 @@
"ComprehendArnName":{
"type":"string",
"max":63,
"pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*"
"pattern":"^[a-zA-Z0-9](-*[a-zA-Z0-9])*$"
},
"ConcurrentModificationException":{
"type":"structure",
Expand Down Expand Up @@ -1603,7 +1603,13 @@
"fr",
"de",
"it",
"pt"
"pt",
"ar",
"hi",
"ja",
"ko",
"zh",
"zh-TW"
]
},
"ListDocumentClassificationJobsRequest":{
Expand Down
2 changes: 1 addition & 1 deletion models/apis/comprehend/2017-11-27/docs-2.json
Expand Up @@ -692,7 +692,7 @@
"Entity$EndOffset": "<p>A character offset in the input text that shows where the entity ends. The offset returns the position of each UTF-8 code point in the string. A <i>code point</i> is the abstract character from a particular graphical representation. For example, a multi-byte UTF-8 character maps to a single code point. </p>",
"EntityRecognizerMetadata$NumberOfTrainedDocuments": "<p> The number of documents in the input data that were used to train the entity recognizer. Typically this is 80 to 90 percent of the input documents.</p>",
"EntityRecognizerMetadata$NumberOfTestDocuments": "<p> The number of documents in the input data that were used to test the entity recognizer. Typically this is 10 to 20 percent of the input documents.</p>",
"EntityRecognizerMetadataEntityTypesListItem$NumberOfTrainMentions": "<p>indicates the number of times the given entity name was seen in the training data. </p>",
"EntityRecognizerMetadataEntityTypesListItem$NumberOfTrainMentions": "<p>Indicates the number of times the given entity type was seen in the training data. </p>",
"KeyPhrase$BeginOffset": "<p>A character offset in the input text that shows where the key phrase begins (the first character is at position 0). The offset returns the position of each UTF-8 code point in the string. A <i>code point</i> is the abstract character from a particular graphical representation. For example, a multi-byte UTF-8 character maps to a single code point.</p>",
"KeyPhrase$EndOffset": "<p>A character offset in the input text where the key phrase ends. The offset returns the position of each UTF-8 code point in the string. A <code>code point</code> is the abstract character from a particular graphical representation. For example, a multi-byte UTF-8 character maps to a single code point.</p>",
"SyntaxToken$TokenId": "<p>A unique identifier for a token.</p>",
Expand Down
4 changes: 2 additions & 2 deletions models/apis/ssm/2014-11-06/api-2.json
Expand Up @@ -8048,7 +8048,7 @@
},
"SessionFilterValue":{
"type":"string",
"max":200,
"max":400,
"min":1
},
"SessionId":{
Expand Down Expand Up @@ -8126,7 +8126,7 @@
},
"SessionTarget":{
"type":"string",
"max":50,
"max":400,
"min":1
},
"SeveritySummary":{
Expand Down

0 comments on commit 55c7775

Please sign in to comment.