Skip to content

Commit

Permalink
Release v1.44.61 (2022-07-22) (#4489)
Browse files Browse the repository at this point in the history
Release v1.44.61 (2022-07-22)
===

### Service Client Updates
* `service/account`: Updates service API and documentation
* `service/ec2`: Updates service API
  * Added support for EC2 M1 Mac instances. For more information, please visit aws.amazon.com/mac.
* `service/iotdeviceadvisor`: Updates service API and documentation
* `service/medialive`: Updates service API and documentation
  * Link devices now support remote rebooting. Link devices now support maintenance windows. Maintenance windows allow a Link device to install software updates without stopping the MediaLive channel. The channel will experience a brief loss of input from the device while updates are installed.
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
  * This release adds the "ModifyActivityStream" API with support for audit policy state locking and unlocking.
* `service/transcribe`: Updates service API
  • Loading branch information
aws-sdk-go-automation committed Jul 22, 2022
1 parent 694be87 commit 9a0163b
Show file tree
Hide file tree
Showing 23 changed files with 2,118 additions and 39 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.44.61 (2022-07-22)
===

### Service Client Updates
* `service/account`: Updates service API and documentation
* `service/ec2`: Updates service API
* Added support for EC2 M1 Mac instances. For more information, please visit aws.amazon.com/mac.
* `service/iotdeviceadvisor`: Updates service API and documentation
* `service/medialive`: Updates service API and documentation
* Link devices now support remote rebooting. Link devices now support maintenance windows. Maintenance windows allow a Link device to install software updates without stopping the MediaLive channel. The channel will experience a brief loss of input from the device while updates are installed.
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
* This release adds the "ModifyActivityStream" API with support for audit policy state locking and unlocking.
* `service/transcribe`: Updates service API

Release v1.44.60 (2022-07-21)
===

Expand Down
6 changes: 6 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.44.60"
const SDKVersion = "1.44.61"
141 changes: 140 additions & 1 deletion models/apis/account/2021-02-01/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,23 @@
{"shape":"InternalServerException"}
]
},
"GetContactInformation":{
"name":"GetContactInformation",
"http":{
"method":"POST",
"requestUri":"/getContactInformation",
"responseCode":200
},
"input":{"shape":"GetContactInformationRequest"},
"output":{"shape":"GetContactInformationResponse"},
"errors":[
{"shape":"ResourceNotFoundException"},
{"shape":"ValidationException"},
{"shape":"AccessDeniedException"},
{"shape":"TooManyRequestsException"},
{"shape":"InternalServerException"}
]
},
"PutAlternateContact":{
"name":"PutAlternateContact",
"http":{
Expand All @@ -61,6 +78,22 @@
{"shape":"InternalServerException"}
],
"idempotent":true
},
"PutContactInformation":{
"name":"PutContactInformation",
"http":{
"method":"POST",
"requestUri":"/putContactInformation",
"responseCode":200
},
"input":{"shape":"PutContactInformationRequest"},
"errors":[
{"shape":"ValidationException"},
{"shape":"AccessDeniedException"},
{"shape":"TooManyRequestsException"},
{"shape":"InternalServerException"}
],
"idempotent":true
}
},
"shapes":{
Expand All @@ -80,6 +113,12 @@
"type":"string",
"pattern":"^\\d{12}$"
},
"AddressLine":{
"type":"string",
"max":60,
"min":1,
"sensitive":true
},
"AlternateContact":{
"type":"structure",
"members":{
Expand All @@ -98,6 +137,56 @@
"SECURITY"
]
},
"City":{
"type":"string",
"max":50,
"min":1,
"sensitive":true
},
"CompanyName":{
"type":"string",
"max":50,
"min":1,
"sensitive":true
},
"ContactInformation":{
"type":"structure",
"required":[
"AddressLine1",
"City",
"CountryCode",
"FullName",
"PhoneNumber",
"PostalCode"
],
"members":{
"AddressLine1":{"shape":"AddressLine"},
"AddressLine2":{"shape":"AddressLine"},
"AddressLine3":{"shape":"AddressLine"},
"City":{"shape":"City"},
"CompanyName":{"shape":"CompanyName"},
"CountryCode":{"shape":"CountryCode"},
"DistrictOrCounty":{"shape":"DistrictOrCounty"},
"FullName":{"shape":"FullName"},
"PhoneNumber":{"shape":"ContactInformationPhoneNumber"},
"PostalCode":{"shape":"PostalCode"},
"StateOrRegion":{"shape":"StateOrRegion"},
"WebsiteUrl":{"shape":"WebsiteUrl"}
}
},
"ContactInformationPhoneNumber":{
"type":"string",
"max":20,
"min":1,
"pattern":"^[+][\\s0-9()-]+$",
"sensitive":true
},
"CountryCode":{
"type":"string",
"max":2,
"min":2,
"sensitive":true
},
"DeleteAlternateContactRequest":{
"type":"structure",
"required":["AlternateContactType"],
Expand All @@ -106,11 +195,23 @@
"AlternateContactType":{"shape":"AlternateContactType"}
}
},
"DistrictOrCounty":{
"type":"string",
"max":50,
"min":1,
"sensitive":true
},
"EmailAddress":{
"type":"string",
"max":64,
"min":1,
"pattern":"[\\w+=,.-]+@[\\w.-]+\\.[\\w]+",
"pattern":"^[\\s]*[\\w+=.#!&-]+@[\\w.-]+\\.[\\w]+[\\s]*$",
"sensitive":true
},
"FullName":{
"type":"string",
"max":50,
"min":1,
"sensitive":true
},
"GetAlternateContactRequest":{
Expand All @@ -127,6 +228,18 @@
"AlternateContact":{"shape":"AlternateContact"}
}
},
"GetContactInformationRequest":{
"type":"structure",
"members":{
"AccountId":{"shape":"AccountId"}
}
},
"GetContactInformationResponse":{
"type":"structure",
"members":{
"ContactInformation":{"shape":"ContactInformation"}
}
},
"InternalServerException":{
"type":"structure",
"required":["message"],
Expand All @@ -151,6 +264,12 @@
"pattern":"^[\\s0-9()+-]+$",
"sensitive":true
},
"PostalCode":{
"type":"string",
"max":20,
"min":1,
"sensitive":true
},
"PutAlternateContactRequest":{
"type":"structure",
"required":[
Expand All @@ -169,6 +288,14 @@
"Title":{"shape":"Title"}
}
},
"PutContactInformationRequest":{
"type":"structure",
"required":["ContactInformation"],
"members":{
"AccountId":{"shape":"AccountId"},
"ContactInformation":{"shape":"ContactInformation"}
}
},
"ResourceNotFoundException":{
"type":"structure",
"required":["message"],
Expand All @@ -181,6 +308,12 @@
},
"exception":true
},
"StateOrRegion":{
"type":"string",
"max":50,
"min":1,
"sensitive":true
},
"String":{"type":"string"},
"Title":{
"type":"string",
Expand Down Expand Up @@ -212,6 +345,12 @@
"senderFault":true
},
"exception":true
},
"WebsiteUrl":{
"type":"string",
"max":256,
"min":1,
"sensitive":true
}
}
}

0 comments on commit 9a0163b

Please sign in to comment.