Skip to content

Commit

Permalink
Release v1.40.53 (2021-09-30) (#4117)
Browse files Browse the repository at this point in the history
Release v1.40.53 (2021-09-30)
===

### Service Client Updates
* `service/account`: Updates service API, documentation, paginators, and examples
* `service/cloudcontrol`: Adds new service
* `service/dataexchange`: Updates service API, documentation, and paginators
* `service/macie2`: Updates service API and documentation
* `service/network-firewall`: Updates service API and documentation
* `service/workmail`: Updates service API, documentation, and paginators
  * This release adds support for mobile device access overrides management in Amazon WorkMail.
* `service/workspaces`: Updates service API and documentation
  * Added CreateUpdatedWorkspaceImage API to update WorkSpace images with latest software and drivers. Updated DescribeWorkspaceImages API to display if there are updates available for WorkSpace images.
  • Loading branch information
aws-sdk-go-automation committed Sep 30, 2021
1 parent da0a5d8 commit d96eabd
Show file tree
Hide file tree
Showing 46 changed files with 12,134 additions and 382 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
Release v1.40.53 (2021-09-30)
===

### Service Client Updates
* `service/account`: Updates service API, documentation, paginators, and examples
* `service/cloudcontrol`: Adds new service
* `service/dataexchange`: Updates service API, documentation, and paginators
* `service/macie2`: Updates service API and documentation
* `service/network-firewall`: Updates service API and documentation
* `service/workmail`: Updates service API, documentation, and paginators
* This release adds support for mobile device access overrides management in Amazon WorkMail.
* `service/workspaces`: Updates service API and documentation
* Added CreateUpdatedWorkspaceImage API to update WorkSpace images with latest software and drivers. Updated DescribeWorkspaceImages API to display if there are updates available for WorkSpace images.

Release v1.40.52 (2021-09-29)
===

Expand Down
115 changes: 110 additions & 5 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.40.52"
const SDKVersion = "1.40.53"
217 changes: 217 additions & 0 deletions models/apis/account/2021-02-01/api-2.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,217 @@
{
"version":"2.0",
"metadata":{
"apiVersion":"2021-02-01",
"endpointPrefix":"account",
"jsonVersion":"1.1",
"protocol":"rest-json",
"serviceFullName":"AWS Account",
"serviceId":"Account",
"signatureVersion":"v4",
"signingName":"account",
"uid":"account-2021-02-01"
},
"operations":{
"DeleteAlternateContact":{
"name":"DeleteAlternateContact",
"http":{
"method":"POST",
"requestUri":"/deleteAlternateContact",
"responseCode":200
},
"input":{"shape":"DeleteAlternateContactRequest"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"},
{"shape":"AccessDeniedException"},
{"shape":"TooManyRequestsException"},
{"shape":"InternalServerException"}
],
"idempotent":true
},
"GetAlternateContact":{
"name":"GetAlternateContact",
"http":{
"method":"POST",
"requestUri":"/getAlternateContact",
"responseCode":200
},
"input":{"shape":"GetAlternateContactRequest"},
"output":{"shape":"GetAlternateContactResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"},
{"shape":"AccessDeniedException"},
{"shape":"TooManyRequestsException"},
{"shape":"InternalServerException"}
]
},
"PutAlternateContact":{
"name":"PutAlternateContact",
"http":{
"method":"POST",
"requestUri":"/putAlternateContact",
"responseCode":200
},
"input":{"shape":"PutAlternateContactRequest"},
"errors":[
{"shape":"ValidationException"},
{"shape":"AccessDeniedException"},
{"shape":"TooManyRequestsException"},
{"shape":"InternalServerException"}
],
"idempotent":true
}
},
"shapes":{
"AccessDeniedException":{
"type":"structure",
"required":["message"],
"members":{
"message":{"shape":"String"}
},
"error":{
"httpStatusCode":403,
"senderFault":true
},
"exception":true
},
"AccountId":{
"type":"string",
"pattern":"^\\d{12}$"
},
"AlternateContact":{
"type":"structure",
"members":{
"AlternateContactType":{"shape":"AlternateContactType"},
"EmailAddress":{"shape":"EmailAddress"},
"Name":{"shape":"Name"},
"PhoneNumber":{"shape":"PhoneNumber"},
"Title":{"shape":"Title"}
}
},
"AlternateContactType":{
"type":"string",
"enum":[
"BILLING",
"OPERATIONS",
"SECURITY"
]
},
"DeleteAlternateContactRequest":{
"type":"structure",
"required":["AlternateContactType"],
"members":{
"AccountId":{"shape":"AccountId"},
"AlternateContactType":{"shape":"AlternateContactType"}
}
},
"EmailAddress":{
"type":"string",
"max":64,
"min":1,
"pattern":"[\\w+=,.-]+@[\\w.-]+\\.[\\w]+",
"sensitive":true
},
"GetAlternateContactRequest":{
"type":"structure",
"required":["AlternateContactType"],
"members":{
"AccountId":{"shape":"AccountId"},
"AlternateContactType":{"shape":"AlternateContactType"}
}
},
"GetAlternateContactResponse":{
"type":"structure",
"members":{
"AlternateContact":{"shape":"AlternateContact"}
}
},
"InternalServerException":{
"type":"structure",
"required":["message"],
"members":{
"message":{"shape":"String"}
},
"error":{"httpStatusCode":500},
"exception":true,
"fault":true,
"retryable":{"throttling":false}
},
"Name":{
"type":"string",
"max":64,
"min":1,
"sensitive":true
},
"PhoneNumber":{
"type":"string",
"max":25,
"min":1,
"pattern":"^[\\s0-9()+-]+$",
"sensitive":true
},
"PutAlternateContactRequest":{
"type":"structure",
"required":[
"AlternateContactType",
"EmailAddress",
"Name",
"PhoneNumber",
"Title"
],
"members":{
"AccountId":{"shape":"AccountId"},
"AlternateContactType":{"shape":"AlternateContactType"},
"EmailAddress":{"shape":"EmailAddress"},
"Name":{"shape":"Name"},
"PhoneNumber":{"shape":"PhoneNumber"},
"Title":{"shape":"Title"}
}
},
"ResourceNotFoundException":{
"type":"structure",
"required":["message"],
"members":{
"message":{"shape":"String"}
},
"error":{
"httpStatusCode":404,
"senderFault":true
},
"exception":true
},
"String":{"type":"string"},
"Title":{
"type":"string",
"max":50,
"min":1,
"sensitive":true
},
"TooManyRequestsException":{
"type":"structure",
"required":["message"],
"members":{
"message":{"shape":"String"}
},
"error":{
"httpStatusCode":429,
"senderFault":true
},
"exception":true,
"retryable":{"throttling":true}
},
"ValidationException":{
"type":"structure",
"required":["message"],
"members":{
"message":{"shape":"String"}
},
"error":{
"httpStatusCode":400,
"senderFault":true
},
"exception":true
}
}
}
Loading

0 comments on commit d96eabd

Please sign in to comment.