Skip to content

Commit

Permalink
Release v1.45.8 (2023-09-12) (#4985)
Browse files Browse the repository at this point in the history
Release v1.45.8 (2023-09-12)
===

### Service Client Updates
* `service/ec2`: Updates service API and documentation
  * This release adds support for restricting public sharing of AMIs through AMI Block Public Access
* `service/eventbridge`: Updates service API and documentation
* `service/kendra`: Updates service API and documentation
  * Amazon Kendra now supports confidence score buckets for retrieved passage results using the Retrieve API.

### SDK Enhancements
* `service/glacier`: Improve efficiency of tree hash algorithm
  * Refactor tree hashing to reduce allocations.
  • Loading branch information
aws-sdk-go-automation committed Sep 12, 2023
1 parent 5f7f5f9 commit 6955eb6
Show file tree
Hide file tree
Showing 16 changed files with 1,137 additions and 298 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.45.8 (2023-09-12)
===

### Service Client Updates
* `service/ec2`: Updates service API and documentation
* This release adds support for restricting public sharing of AMIs through AMI Block Public Access
* `service/eventbridge`: Updates service API and documentation
* `service/kendra`: Updates service API and documentation
* Amazon Kendra now supports confidence score buckets for retrieved passage results using the Retrieve API.

### SDK Enhancements
* `service/glacier`: Improve efficiency of tree hash algorithm
* Refactor tree hashing to reduce allocations.

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

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
* `service/glacier`: Improve efficiency of tree hash algorithm
* Refactor tree hashing to reduce allocations.

### SDK Bugs
46 changes: 46 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.45.7"
const SDKVersion = "1.45.8"
82 changes: 82 additions & 0 deletions models/apis/ec2/2016-11-15/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -3339,6 +3339,15 @@
"input":{"shape":"DisableFastSnapshotRestoresRequest"},
"output":{"shape":"DisableFastSnapshotRestoresResult"}
},
"DisableImageBlockPublicAccess":{
"name":"DisableImageBlockPublicAccess",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"DisableImageBlockPublicAccessRequest"},
"output":{"shape":"DisableImageBlockPublicAccessResult"}
},
"DisableImageDeprecation":{
"name":"DisableImageDeprecation",
"http":{
Expand Down Expand Up @@ -3570,6 +3579,15 @@
"input":{"shape":"EnableFastSnapshotRestoresRequest"},
"output":{"shape":"EnableFastSnapshotRestoresResult"}
},
"EnableImageBlockPublicAccess":{
"name":"EnableImageBlockPublicAccess",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"EnableImageBlockPublicAccessRequest"},
"output":{"shape":"EnableImageBlockPublicAccessResult"}
},
"EnableImageDeprecation":{
"name":"EnableImageDeprecation",
"http":{
Expand Down Expand Up @@ -3802,6 +3820,15 @@
"input":{"shape":"GetHostReservationPurchasePreviewRequest"},
"output":{"shape":"GetHostReservationPurchasePreviewResult"}
},
"GetImageBlockPublicAccessState":{
"name":"GetImageBlockPublicAccessState",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"GetImageBlockPublicAccessStateRequest"},
"output":{"shape":"GetImageBlockPublicAccessStateResult"}
},
"GetInstanceTypesFromInstanceRequirements":{
"name":"GetInstanceTypesFromInstanceRequirements",
"http":{
Expand Down Expand Up @@ -19319,6 +19346,21 @@
}
}
},
"DisableImageBlockPublicAccessRequest":{
"type":"structure",
"members":{
"DryRun":{"shape":"Boolean"}
}
},
"DisableImageBlockPublicAccessResult":{
"type":"structure",
"members":{
"ImageBlockPublicAccessState":{
"shape":"ImageBlockPublicAccessDisabledState",
"locationName":"imageBlockPublicAccessState"
}
}
},
"DisableImageDeprecationRequest":{
"type":"structure",
"required":["ImageId"],
Expand Down Expand Up @@ -20661,6 +20703,23 @@
}
}
},
"EnableImageBlockPublicAccessRequest":{
"type":"structure",
"required":["ImageBlockPublicAccessState"],
"members":{
"ImageBlockPublicAccessState":{"shape":"ImageBlockPublicAccessEnabledState"},
"DryRun":{"shape":"Boolean"}
}
},
"EnableImageBlockPublicAccessResult":{
"type":"structure",
"members":{
"ImageBlockPublicAccessState":{
"shape":"ImageBlockPublicAccessEnabledState",
"locationName":"imageBlockPublicAccessState"
}
}
},
"EnableImageDeprecationRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -22745,6 +22804,21 @@
}
}
},
"GetImageBlockPublicAccessStateRequest":{
"type":"structure",
"members":{
"DryRun":{"shape":"Boolean"}
}
},
"GetImageBlockPublicAccessStateResult":{
"type":"structure",
"members":{
"ImageBlockPublicAccessState":{
"shape":"String",
"locationName":"imageBlockPublicAccessState"
}
}
},
"GetInstanceTypesFromInstanceRequirementsRequest":{
"type":"structure",
"required":[
Expand Down Expand Up @@ -24392,6 +24466,14 @@
"imdsSupport"
]
},
"ImageBlockPublicAccessDisabledState":{
"type":"string",
"enum":["unblocked"]
},
"ImageBlockPublicAccessEnabledState":{
"type":"string",
"enum":["block-new-sharing"]
},
"ImageDiskContainer":{
"type":"structure",
"members":{
Expand Down
Loading

0 comments on commit 6955eb6

Please sign in to comment.