Skip to content

Commit

Permalink
Release v1.31.14 (2020-06-09)
Browse files Browse the repository at this point in the history
===

### Service Client Updates
* `service/transfer`: Updates service API and documentation
  * This release updates the API so customers can test use of Source IP to allow, deny or limit access to data in their S3 buckets after integrating their identity provider.
  • Loading branch information
awssdkgo committed Jun 9, 2020
1 parent d3acece commit cbd9471
Show file tree
Hide file tree
Showing 7 changed files with 307 additions and 157 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.31.14 (2020-06-09)
===

### Service Client Updates
* `service/transfer`: Updates service API and documentation
* This release updates the API so customers can test use of Source IP to allow, deny or limit access to data in their S3 buckets after integrating their identity provider.

Release v1.31.13 (2020-06-08)
===

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.13"
const SDKVersion = "1.31.14"
10 changes: 8 additions & 2 deletions models/apis/transfer/2018-11-05/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -779,6 +779,11 @@
"fault":true,
"synthetic":true
},
"SourceIp":{
"type":"string",
"max":32,
"pattern":"^\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}$"
},
"SshPublicKey":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -890,9 +895,10 @@
],
"members":{
"ServerId":{"shape":"ServerId"},
"ServerProtocol":{"shape":"Protocol"},
"SourceIp":{"shape":"SourceIp"},
"UserName":{"shape":"UserName"},
"UserPassword":{"shape":"UserPassword"},
"ServerProtocol":{"shape":"Protocol"}
"UserPassword":{"shape":"UserPassword"}
}
},
"TestIdentityProviderResponse":{
Expand Down
108 changes: 57 additions & 51 deletions models/apis/transfer/2018-11-05/docs-2.json

Large diffs are not rendered by default.

14 changes: 13 additions & 1 deletion models/endpoints/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -6628,7 +6628,19 @@
},
"api.sagemaker" : {
"endpoints" : {
"us-gov-west-1" : { }
"us-gov-west-1" : { },
"us-gov-west-1-fips" : {
"credentialScope" : {
"region" : "us-gov-west-1"
},
"hostname" : "api-fips.sagemaker.us-gov-west-1.amazonaws.com"
},
"us-gov-west-1-fips-secondary" : {
"credentialScope" : {
"region" : "us-gov-west-1"
},
"hostname" : "api.sagemaker.us-gov-west-1.amazonaws.com"
}
}
},
"apigateway" : {
Expand Down
311 changes: 209 additions & 102 deletions service/transfer/api.go

Large diffs are not rendered by default.

0 comments on commit cbd9471

Please sign in to comment.