Skip to content

Commit

Permalink
Release v1.31.1 (2020-05-19) (aws#3327)
Browse files Browse the repository at this point in the history
Release v1.31.1 (2020-05-19)
===

### Service Client Updates
* `service/chime`: Updates service API and documentation
  * You can now receive Voice Connector call events through SNS or SQS.
* `service/ec2`: Updates service API and documentation
  * This release adds support for Federated Authentication via SAML-2.0 in AWS ClientVPN.
* `service/health`: Updates service API, documentation, and paginators
  * Feature: Health: AWS Health added a new field to differentiate Public events from Account-Specific events in the API request and response. Visit https://docs.aws.amazon.com/health/latest/APIReference/API_Event.html to learn more.
* `service/transcribe`: Updates service documentation
  • Loading branch information
aws-sdk-go-automation authored May 19, 2020
1 parent d7b5372 commit dffa058
Show file tree
Hide file tree
Showing 16 changed files with 351 additions and 60 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.31.1 (2020-05-19)
===

### Service Client Updates
* `service/chime`: Updates service API and documentation
* You can now receive Voice Connector call events through SNS or SQS.
* `service/ec2`: Updates service API and documentation
* This release adds support for Federated Authentication via SAML-2.0 in AWS ClientVPN.
* `service/health`: Updates service API, documentation, and paginators
* Feature: Health: AWS Health added a new field to differentiate Public events from Account-Specific events in the API request and response. Visit https://docs.aws.amazon.com/health/latest/APIReference/API_Event.html to learn more.
* `service/transcribe`: Updates service documentation

Release v1.31.0 (2020-05-18)
===

Expand Down
12 changes: 12 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.31.0"
const SDKVersion = "1.31.1"
24 changes: 23 additions & 1 deletion models/apis/chime/2018-05-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -4264,6 +4264,14 @@
"error":{"httpStatusCode":404},
"exception":true
},
"NotificationTarget":{
"type":"string",
"enum":[
"EventBridge",
"SNS",
"SQS"
]
},
"NullableBoolean":{"type":"boolean"},
"NumberSelectionBehavior":{
"type":"string",
Expand Down Expand Up @@ -4947,9 +4955,23 @@
"required":["DataRetentionInHours"],
"members":{
"DataRetentionInHours":{"shape":"DataRetentionInHours"},
"Disabled":{"shape":"Boolean"}
"Disabled":{"shape":"Boolean"},
"StreamingNotificationTargets":{"shape":"StreamingNotificationTargetList"}
}
},
"StreamingNotificationTarget":{
"type":"structure",
"required":["NotificationTarget"],
"members":{
"NotificationTarget":{"shape":"NotificationTarget"}
}
},
"StreamingNotificationTargetList":{
"type":"list",
"member":{"shape":"StreamingNotificationTarget"},
"max":3,
"min":1
},
"String":{"type":"string"},
"String128":{
"type":"string",
Expand Down
18 changes: 18 additions & 0 deletions models/apis/chime/2018-05-01/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1550,6 +1550,12 @@
"refs": {
}
},
"NotificationTarget": {
"base": null,
"refs": {
"StreamingNotificationTarget$NotificationTarget": "<p>The streaming notification target.</p>"
}
},
"NullableBoolean": {
"base": null,
"refs": {
Expand Down Expand Up @@ -2060,6 +2066,18 @@
"PutVoiceConnectorStreamingConfigurationResponse$StreamingConfiguration": "<p>The updated streaming configuration details.</p>"
}
},
"StreamingNotificationTarget": {
"base": "<p>The targeted recipient for a streaming configuration notification.</p>",
"refs": {
"StreamingNotificationTargetList$member": null
}
},
"StreamingNotificationTargetList": {
"base": null,
"refs": {
"StreamingConfiguration$StreamingNotificationTargets": "<p>The streaming notification targets.</p>"
}
},
"String": {
"base": null,
"refs": {
Expand Down
25 changes: 23 additions & 2 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5639,6 +5639,10 @@
"MutualAuthentication":{
"shape":"CertificateAuthentication",
"locationName":"mutualAuthentication"
},
"FederatedAuthentication":{
"shape":"FederatedAuthentication",
"locationName":"federatedAuthentication"
}
}
},
Expand All @@ -5654,7 +5658,8 @@
"members":{
"Type":{"shape":"ClientVpnAuthenticationType"},
"ActiveDirectory":{"shape":"DirectoryServiceAuthenticationRequest"},
"MutualAuthentication":{"shape":"CertificateAuthenticationRequest"}
"MutualAuthentication":{"shape":"CertificateAuthenticationRequest"},
"FederatedAuthentication":{"shape":"FederatedAuthenticationRequest"}
}
},
"ClientVpnAuthenticationRequestList":{
Expand All @@ -5665,7 +5670,8 @@
"type":"string",
"enum":[
"certificate-authentication",
"directory-service-authentication"
"directory-service-authentication",
"federated-authentication"
]
},
"ClientVpnAuthorizationRuleStatus":{
Expand Down Expand Up @@ -14409,6 +14415,21 @@
"disabled"
]
},
"FederatedAuthentication":{
"type":"structure",
"members":{
"SamlProviderArn":{
"shape":"String",
"locationName":"samlProviderArn"
}
}
},
"FederatedAuthenticationRequest":{
"type":"structure",
"members":{
"SAMLProviderArn":{"shape":"String"}
}
},
"Filter":{
"type":"structure",
"members":{
Expand Down
Loading

0 comments on commit dffa058

Please sign in to comment.