Skip to content

Commit 9bdfe74

Browse files
Release v1.54.6 (2024-06-20) (#5292)
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
1 parent 66bfa6b commit 9bdfe74

File tree

36 files changed

+5548
-679
lines changed

36 files changed

+5548
-679
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
Release v1.54.6 (2024-06-20)
2+
===
3+
4+
### Service Client Updates
5+
* `service/bedrock-runtime`: Updates service API and documentation
6+
* `service/codeartifact`: Updates service API and documentation
7+
* `service/compute-optimizer`: Updates service API and documentation
8+
* `service/cost-optimization-hub`: Updates service API, documentation, and waiters
9+
* `service/dynamodb`: Updates service API, documentation, waiters, paginators, and examples
10+
* Doc-only update for DynamoDB. Fixed Important note in 6 Global table APIs - CreateGlobalTable, DescribeGlobalTable, DescribeGlobalTableSettings, ListGlobalTables, UpdateGlobalTable, and UpdateGlobalTableSettings.
11+
* `service/glue`: Updates service paginators
12+
* Fix Glue paginators for Jobs, JobRuns, Triggers, Blueprints and Workflows.
13+
* `service/ivs-realtime`: Updates service API, documentation, and waiters
14+
* `service/sagemaker`: Updates service API and documentation
15+
* Adds support for model references in Hub service, and adds support for cross-account access of Hubs
16+
* `service/securityhub`: Updates service API and documentation
17+
118
Release v1.54.5 (2024-06-19)
219
===
320

aws/endpoints/defaults.go

Lines changed: 6 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

aws/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ package aws
55
const SDKName = "aws-sdk-go"
66

77
// SDKVersion is the version of this SDK
8-
const SDKVersion = "1.54.5"
8+
const SDKVersion = "1.54.6"

models/apis/bedrock-runtime/2023-09-30/api-2.json

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,9 @@
211211
},
212212
"ContentBlock": {
213213
"members": {
214+
"document": {
215+
"shape": "DocumentBlock"
216+
},
214217
"guardContent": {
215218
"shape": "GuardrailConverseContentBlock"
216219
},
@@ -538,6 +541,57 @@
538541
},
539542
"type": "structure"
540543
},
544+
"DocumentBlock": {
545+
"members": {
546+
"format": {
547+
"shape": "DocumentFormat"
548+
},
549+
"name": {
550+
"shape": "DocumentBlockNameString"
551+
},
552+
"source": {
553+
"shape": "DocumentSource"
554+
}
555+
},
556+
"required": [
557+
"format",
558+
"name",
559+
"source"
560+
],
561+
"type": "structure"
562+
},
563+
"DocumentBlockNameString": {
564+
"max": 64,
565+
"min": 1,
566+
"type": "string"
567+
},
568+
"DocumentFormat": {
569+
"enum": [
570+
"pdf",
571+
"csv",
572+
"doc",
573+
"docx",
574+
"xls",
575+
"xlsx",
576+
"html",
577+
"txt",
578+
"md"
579+
],
580+
"type": "string"
581+
},
582+
"DocumentSource": {
583+
"members": {
584+
"bytes": {
585+
"shape": "DocumentSourceBytesBlob"
586+
}
587+
},
588+
"type": "structure",
589+
"union": true
590+
},
591+
"DocumentSourceBytesBlob": {
592+
"min": 1,
593+
"type": "blob"
594+
},
541595
"GuardrailAssessment": {
542596
"members": {
543597
"contentPolicy": {
@@ -1564,6 +1618,9 @@
15641618
},
15651619
"ToolResultContentBlock": {
15661620
"members": {
1621+
"document": {
1622+
"shape": "DocumentBlock"
1623+
},
15671624
"image": {
15681625
"shape": "ImageBlock"
15691626
},

models/apis/bedrock-runtime/2023-09-30/docs-2.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,37 @@
187187
"ToolUseBlock$input": "<p>The input to pass to the tool. </p>"
188188
}
189189
},
190+
"DocumentBlock": {
191+
"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>",
192+
"refs": {
193+
"ContentBlock$document": "<p>A document to include in the message.</p>",
194+
"ToolResultContentBlock$document": "<p>A tool result that is a document.</p>"
195+
}
196+
},
197+
"DocumentBlockNameString": {
198+
"base": null,
199+
"refs": {
200+
"DocumentBlock$name": "<p>A name for the document.</p>"
201+
}
202+
},
203+
"DocumentFormat": {
204+
"base": null,
205+
"refs": {
206+
"DocumentBlock$format": "<p>The format of a document, or its extension.</p>"
207+
}
208+
},
209+
"DocumentSource": {
210+
"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>",
211+
"refs": {
212+
"DocumentBlock$source": "<p>Contains the content of the document.</p>"
213+
}
214+
},
215+
"DocumentSourceBytesBlob": {
216+
"base": null,
217+
"refs": {
218+
"DocumentSource$bytes": "<p>A base64-encoded string of a UTF-8 encoded file, that is the document to include in the message.</p>"
219+
}
220+
},
190221
"GuardrailAssessment": {
191222
"base": "<p>A behavior assessment of the guardrail policies used in a call to the Converse API. </p>",
192223
"refs": {

models/apis/codeartifact/2018-09-22/api-2.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,13 @@
55
"endpointPrefix":"codeartifact",
66
"jsonVersion":"1.1",
77
"protocol":"rest-json",
8+
"protocols":["rest-json"],
89
"serviceFullName":"CodeArtifact",
910
"serviceId":"codeartifact",
1011
"signatureVersion":"v4",
1112
"signingName":"codeartifact",
12-
"uid":"codeartifact-2018-09-22"
13+
"uid":"codeartifact-2018-09-22",
14+
"auth":["aws.auth#sigv4"]
1315
},
1416
"operations":{
1517
"AssociateExternalConnection":{
@@ -2621,7 +2623,8 @@
26212623
"nuget",
26222624
"generic",
26232625
"ruby",
2624-
"swift"
2626+
"swift",
2627+
"cargo"
26252628
]
26262629
},
26272630
"PackageGroupAllowedRepository":{

models/apis/codeartifact/2018-09-22/docs-2.json

Lines changed: 27 additions & 27 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)