Skip to content

Commit

Permalink
Release v1.47.9 (2023-11-10) (#5066)
Browse files Browse the repository at this point in the history
Release v1.47.9 (2023-11-10)
===

### Service Client Updates
* `service/controltower`: Updates service API and documentation
* `service/cur`: Updates service API and documentation
  * This release adds support for tagging and customers can now tag report definitions. Additionally, ReportStatus is now added to report definition to show when the last delivered time stamp and if it succeeded or not.
* `service/ec2`: Updates service API and documentation
  * EC2 adds API updates to enable ENA Express at instance launch time.
* `service/entitlement.marketplace`: Updates service API, documentation, and paginators
* `service/fms`: Updates service documentation
* `service/mediaconvert`: Updates service API and documentation
  * This release includes the ability to specify any input source as the primary input for corresponding follow modes, and allows users to specify fit and fill behaviors without resizing content.
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
  * Updates Amazon RDS documentation for zero-ETL integrations.

### SDK Enhancements
* `aws/signer/v4`: Add bucket owner header to presigned list.
  * Add x-amz-expected-bucket-owner header to the list of headers that need to be presigned.
  • Loading branch information
aws-sdk-go-automation authored Nov 10, 2023
1 parent d507faa commit f06c343
Show file tree
Hide file tree
Showing 37 changed files with 3,854 additions and 804 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
Release v1.47.9 (2023-11-10)
===

### Service Client Updates
* `service/controltower`: Updates service API and documentation
* `service/cur`: Updates service API and documentation
* This release adds support for tagging and customers can now tag report definitions. Additionally, ReportStatus is now added to report definition to show when the last delivered time stamp and if it succeeded or not.
* `service/ec2`: Updates service API and documentation
* EC2 adds API updates to enable ENA Express at instance launch time.
* `service/entitlement.marketplace`: Updates service API, documentation, and paginators
* `service/fms`: Updates service documentation
* `service/mediaconvert`: Updates service API and documentation
* This release includes the ability to specify any input source as the primary input for corresponding follow modes, and allows users to specify fit and fill behaviors without resizing content.
* `service/rds`: Updates service API, documentation, waiters, paginators, and examples
* Updates Amazon RDS documentation for zero-ETL integrations.

### SDK Enhancements
* `aws/signer/v4`: Add bucket owner header to presigned list.
* Add x-amz-expected-bucket-owner header to the list of headers that need to be presigned.

Release v1.47.8 (2023-11-09)
===

Expand Down
2 changes: 0 additions & 2 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
### SDK Features

### SDK Enhancements
* `aws/signer/v4`: Add bucket owner header to presigned list.
* Add x-amz-expected-bucket-owner header to the list of headers that need to be presigned.

### SDK Bugs
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.47.8"
const SDKVersion = "1.47.9"
132 changes: 132 additions & 0 deletions models/apis/controltower/2018-05-10/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,51 @@
{"shape":"ThrottlingException"},
{"shape":"ResourceNotFoundException"}
]
},
"ListTagsForResource":{
"name":"ListTagsForResource",
"http":{
"method":"GET",
"requestUri":"/tags/{resourceArn}",
"responseCode":200
},
"input":{"shape":"ListTagsForResourceInput"},
"output":{"shape":"ListTagsForResourceOutput"},
"errors":[
{"shape":"ValidationException"},
{"shape":"InternalServerException"},
{"shape":"ResourceNotFoundException"}
]
},
"TagResource":{
"name":"TagResource",
"http":{
"method":"POST",
"requestUri":"/tags/{resourceArn}",
"responseCode":204
},
"input":{"shape":"TagResourceInput"},
"output":{"shape":"TagResourceOutput"},
"errors":[
{"shape":"ValidationException"},
{"shape":"InternalServerException"},
{"shape":"ResourceNotFoundException"}
]
},
"UntagResource":{
"name":"UntagResource",
"http":{
"method":"DELETE",
"requestUri":"/tags/{resourceArn}",
"responseCode":204
},
"input":{"shape":"UntagResourceInput"},
"output":{"shape":"UntagResourceOutput"},
"errors":[
{"shape":"ValidationException"},
{"shape":"InternalServerException"},
{"shape":"ResourceNotFoundException"}
]
}
},
"shapes":{
Expand Down Expand Up @@ -205,13 +250,15 @@
],
"members":{
"controlIdentifier":{"shape":"ControlIdentifier"},
"tags":{"shape":"TagMap"},
"targetIdentifier":{"shape":"TargetIdentifier"}
}
},
"EnableControlOutput":{
"type":"structure",
"required":["operationIdentifier"],
"members":{
"arn":{"shape":"Arn"},
"operationIdentifier":{"shape":"OperationIdentifier"}
}
},
Expand Down Expand Up @@ -315,6 +362,24 @@
"nextToken":{"shape":"String"}
}
},
"ListTagsForResourceInput":{
"type":"structure",
"required":["resourceArn"],
"members":{
"resourceArn":{
"shape":"Arn",
"location":"uri",
"locationName":"resourceArn"
}
}
},
"ListTagsForResourceOutput":{
"type":"structure",
"required":["tags"],
"members":{
"tags":{"shape":"TagMap"}
}
},
"MaxResults":{
"type":"integer",
"box":true,
Expand Down Expand Up @@ -367,6 +432,49 @@
"type":"timestamp",
"timestampFormat":"iso8601"
},
"TagKey":{
"type":"string",
"max":128,
"min":1
},
"TagKeys":{
"type":"list",
"member":{"shape":"TagKey"},
"max":200,
"min":0
},
"TagMap":{
"type":"map",
"key":{"shape":"TagKey"},
"value":{"shape":"TagValue"},
"max":200,
"min":0
},
"TagResourceInput":{
"type":"structure",
"required":[
"resourceArn",
"tags"
],
"members":{
"resourceArn":{
"shape":"Arn",
"location":"uri",
"locationName":"resourceArn"
},
"tags":{"shape":"TagMap"}
}
},
"TagResourceOutput":{
"type":"structure",
"members":{
}
},
"TagValue":{
"type":"string",
"max":256,
"min":0
},
"TargetIdentifier":{
"type":"string",
"max":2048,
Expand Down Expand Up @@ -397,6 +505,30 @@
"exception":true,
"retryable":{"throttling":true}
},
"UntagResourceInput":{
"type":"structure",
"required":[
"resourceArn",
"tagKeys"
],
"members":{
"resourceArn":{
"shape":"Arn",
"location":"uri",
"locationName":"resourceArn"
},
"tagKeys":{
"shape":"TagKeys",
"location":"querystring",
"locationName":"tagKeys"
}
}
},
"UntagResourceOutput":{
"type":"structure",
"members":{
}
},
"ValidationException":{
"type":"structure",
"required":["message"],
Expand Down
Loading

0 comments on commit f06c343

Please sign in to comment.