Skip to content

Release v1.54.1 #5286

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
Release v1.54.1 (2024-06-13)
===

### Service Client Updates
* `service/cloudhsmv2`: Updates service API and documentation
* Added support for hsm type hsm2m.medium. Added supported for creating a cluster in FIPS or NON_FIPS mode.
* `service/glue`: Updates service API and documentation
* This release adds support for configuration of evaluation method for composite rules in Glue Data Quality rulesets.
* `service/iotwireless`: Updates service API
* `service/kms`: Updates service API, documentation, and examples
* This feature allows customers to use their keys stored in KMS to derive a shared secret which can then be used to establish a secured channel for communication, provide proof of possession, or establish trust with other parties.
* `service/mediapackagev2`: Updates service API, documentation, and examples

Release v1.54.0 (2024-06-12)
===

Expand Down
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.54.0"
const SDKVersion = "1.54.1"
26 changes: 20 additions & 6 deletions models/apis/cloudhsmv2/2017-04-28/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"endpointPrefix":"cloudhsmv2",
"jsonVersion":"1.1",
"protocol":"json",
"protocols":["json"],
"serviceAbbreviation":"CloudHSM V2",
"serviceFullName":"AWS CloudHSM V2",
"serviceId":"CloudHSM V2",
Expand Down Expand Up @@ -277,7 +278,9 @@
"SourceBackup":{"shape":"BackupId"},
"SourceCluster":{"shape":"ClusterId"},
"DeleteTimestamp":{"shape":"Timestamp"},
"TagList":{"shape":"TagList"}
"TagList":{"shape":"TagList"},
"HsmType":{"shape":"HsmType"},
"Mode":{"shape":"ClusterMode"}
}
},
"BackupId":{
Expand Down Expand Up @@ -326,7 +329,7 @@
"Boolean":{"type":"boolean"},
"Cert":{
"type":"string",
"max":5000,
"max":20000,
"pattern":"[a-zA-Z0-9+-/=\\s]*"
},
"Certificates":{
Expand Down Expand Up @@ -399,13 +402,21 @@
"SubnetMapping":{"shape":"ExternalSubnetMapping"},
"VpcId":{"shape":"VpcId"},
"Certificates":{"shape":"Certificates"},
"TagList":{"shape":"TagList"}
"TagList":{"shape":"TagList"},
"Mode":{"shape":"ClusterMode"}
}
},
"ClusterId":{
"type":"string",
"pattern":"cluster-[2-7a-zA-Z]{11,16}"
},
"ClusterMode":{
"type":"string",
"enum":[
"FIPS",
"NON_FIPS"
]
},
"ClusterState":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -458,7 +469,8 @@
"HsmType":{"shape":"HsmType"},
"SourceBackupId":{"shape":"BackupId"},
"SubnetIds":{"shape":"SubnetIds"},
"TagList":{"shape":"TagList"}
"TagList":{"shape":"TagList"},
"Mode":{"shape":"ClusterMode"}
}
},
"CreateClusterResponse":{
Expand Down Expand Up @@ -587,7 +599,8 @@
"Filters":{
"type":"map",
"key":{"shape":"Field"},
"value":{"shape":"Strings"}
"value":{"shape":"Strings"},
"max":30
},
"Hsm":{
"type":"structure",
Expand Down Expand Up @@ -619,7 +632,8 @@
},
"HsmType":{
"type":"string",
"pattern":"(hsm1\\.medium)"
"max":32,
"pattern":"((p|)hsm[0-9][a-z.]*\\.[a-zA-Z]+)"
},
"Hsms":{
"type":"list",
Expand Down
11 changes: 10 additions & 1 deletion models/apis/cloudhsmv2/2017-04-28/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,14 @@
"ModifyClusterRequest$ClusterId": "<p>The identifier (ID) of the cluster that you want to modify. To find the cluster ID, use <a>DescribeClusters</a>.</p>"
}
},
"ClusterMode": {
"base": null,
"refs": {
"Backup$Mode": "<p>The mode of the cluster that was backed up.</p>",
"Cluster$Mode": "<p>The mode of the cluster.</p>",
"CreateClusterRequest$Mode": "<p>The mode to use in the cluster. The allowed values are <code>FIPS</code> and <code>NON_FIPS</code>.</p>"
}
},
"ClusterState": {
"base": null,
"refs": {
Expand Down Expand Up @@ -329,8 +337,9 @@
"HsmType": {
"base": null,
"refs": {
"Backup$HsmType": "<p>The HSM type of the cluster that was backed up.</p>",
"Cluster$HsmType": "<p>The type of HSM that the cluster contains.</p>",
"CreateClusterRequest$HsmType": "<p>The type of HSM to use in the cluster. Currently the only allowed value is <code>hsm1.medium</code>.</p>"
"CreateClusterRequest$HsmType": "<p>The type of HSM to use in the cluster. The allowed values are <code>hsm1.medium</code> and <code>hsm2m.medium</code>.</p>"
}
},
"Hsms": {
Expand Down
Loading
Loading