Skip to content

Commit

Permalink
Release v1.54.6 (2024-06-20) (#5292)
Browse files Browse the repository at this point in the history
Release v1.54.6 (2024-06-20)
===

### Service Client Updates
* `service/bedrock-runtime`: Updates service API and documentation
* `service/codeartifact`: Updates service API and documentation
* `service/compute-optimizer`: Updates service API and documentation
* `service/cost-optimization-hub`: Updates service API, documentation, and waiters
* `service/dynamodb`: Updates service API, documentation, waiters, paginators, and examples
  * Doc-only update for DynamoDB. Fixed Important note in 6 Global table APIs - CreateGlobalTable, DescribeGlobalTable, DescribeGlobalTableSettings, ListGlobalTables, UpdateGlobalTable, and UpdateGlobalTableSettings.
* `service/glue`: Updates service paginators
  * Fix Glue paginators for Jobs, JobRuns, Triggers, Blueprints and Workflows.
* `service/ivs-realtime`: Updates service API, documentation, and waiters
* `service/sagemaker`: Updates service API and documentation
  * Adds support for model references in Hub service, and adds support for cross-account access of Hubs
* `service/securityhub`: Updates service API and documentation
  • Loading branch information
aws-sdk-go-automation committed Jun 20, 2024
1 parent 66bfa6b commit 9bdfe74
Show file tree
Hide file tree
Showing 36 changed files with 5,548 additions and 679 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
Release v1.54.6 (2024-06-20)
===

### Service Client Updates
* `service/bedrock-runtime`: Updates service API and documentation
* `service/codeartifact`: Updates service API and documentation
* `service/compute-optimizer`: Updates service API and documentation
* `service/cost-optimization-hub`: Updates service API, documentation, and waiters
* `service/dynamodb`: Updates service API, documentation, waiters, paginators, and examples
* Doc-only update for DynamoDB. Fixed Important note in 6 Global table APIs - CreateGlobalTable, DescribeGlobalTable, DescribeGlobalTableSettings, ListGlobalTables, UpdateGlobalTable, and UpdateGlobalTableSettings.
* `service/glue`: Updates service paginators
* Fix Glue paginators for Jobs, JobRuns, Triggers, Blueprints and Workflows.
* `service/ivs-realtime`: Updates service API, documentation, and waiters
* `service/sagemaker`: Updates service API and documentation
* Adds support for model references in Hub service, and adds support for cross-account access of Hubs
* `service/securityhub`: Updates service API and documentation

Release v1.54.5 (2024-06-19)
===

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.54.5"
const SDKVersion = "1.54.6"
57 changes: 57 additions & 0 deletions models/apis/bedrock-runtime/2023-09-30/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,9 @@
},
"ContentBlock": {
"members": {
"document": {
"shape": "DocumentBlock"
},
"guardContent": {
"shape": "GuardrailConverseContentBlock"
},
Expand Down Expand Up @@ -538,6 +541,57 @@
},
"type": "structure"
},
"DocumentBlock": {
"members": {
"format": {
"shape": "DocumentFormat"
},
"name": {
"shape": "DocumentBlockNameString"
},
"source": {
"shape": "DocumentSource"
}
},
"required": [
"format",
"name",
"source"
],
"type": "structure"
},
"DocumentBlockNameString": {
"max": 64,
"min": 1,
"type": "string"
},
"DocumentFormat": {
"enum": [
"pdf",
"csv",
"doc",
"docx",
"xls",
"xlsx",
"html",
"txt",
"md"
],
"type": "string"
},
"DocumentSource": {
"members": {
"bytes": {
"shape": "DocumentSourceBytesBlob"
}
},
"type": "structure",
"union": true
},
"DocumentSourceBytesBlob": {
"min": 1,
"type": "blob"
},
"GuardrailAssessment": {
"members": {
"contentPolicy": {
Expand Down Expand Up @@ -1564,6 +1618,9 @@
},
"ToolResultContentBlock": {
"members": {
"document": {
"shape": "DocumentBlock"
},
"image": {
"shape": "ImageBlock"
},
Expand Down
31 changes: 31 additions & 0 deletions models/apis/bedrock-runtime/2023-09-30/docs-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,37 @@
"ToolUseBlock$input": "<p>The input to pass to the tool. </p>"
}
},
"DocumentBlock": {
"base": "<p>A document to include in a message when sending a <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html\">Converse</a> or <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_ConverseStream.html\">ConverseStream</a> request. You can include up to 5 documents in a request. The maximum document size is 50 MB.</p>",
"refs": {
"ContentBlock$document": "<p>A document to include in the message.</p>",
"ToolResultContentBlock$document": "<p>A tool result that is a document.</p>"
}
},
"DocumentBlockNameString": {
"base": null,
"refs": {
"DocumentBlock$name": "<p>A name for the document.</p>"
}
},
"DocumentFormat": {
"base": null,
"refs": {
"DocumentBlock$format": "<p>The format of a document, or its extension.</p>"
}
},
"DocumentSource": {
"base": "<p>Contains the content of the document included in a message when sending a <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_Converse.html\">Converse</a> or <a href=\"https://docs.aws.amazon.com/bedrock/latest/APIReference/API_runtime_ConverseStream.html\">ConverseStream</a> request or in the response.</p>",
"refs": {
"DocumentBlock$source": "<p>Contains the content of the document.</p>"
}
},
"DocumentSourceBytesBlob": {
"base": null,
"refs": {
"DocumentSource$bytes": "<p>A base64-encoded string of a UTF-8 encoded file, that is the document to include in the message.</p>"
}
},
"GuardrailAssessment": {
"base": "<p>A behavior assessment of the guardrail policies used in a call to the Converse API. </p>",
"refs": {
Expand Down
7 changes: 5 additions & 2 deletions models/apis/codeartifact/2018-09-22/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@
"endpointPrefix":"codeartifact",
"jsonVersion":"1.1",
"protocol":"rest-json",
"protocols":["rest-json"],
"serviceFullName":"CodeArtifact",
"serviceId":"codeartifact",
"signatureVersion":"v4",
"signingName":"codeartifact",
"uid":"codeartifact-2018-09-22"
"uid":"codeartifact-2018-09-22",
"auth":["aws.auth#sigv4"]
},
"operations":{
"AssociateExternalConnection":{
Expand Down Expand Up @@ -2621,7 +2623,8 @@
"nuget",
"generic",
"ruby",
"swift"
"swift",
"cargo"
]
},
"PackageGroupAllowedRepository":{
Expand Down
54 changes: 27 additions & 27 deletions models/apis/codeartifact/2018-09-22/docs-2.json

Large diffs are not rendered by default.

Loading

0 comments on commit 9bdfe74

Please sign in to comment.