Skip to content

Commit 3c20e0b

Browse files
chore: Updates version to 0.46.0
1 parent 07afa93 commit 3c20e0b

File tree

21 files changed

+5619
-338
lines changed

21 files changed

+5619
-338
lines changed

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ func addResolvedTargets() {
352352
// MARK: - Generated
353353

354354
addDependencies(
355-
clientRuntimeVersion: "0.50.0",
355+
clientRuntimeVersion: "0.51.0",
356356
crtVersion: "0.30.0"
357357
)
358358

Package.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.45.0
1+
0.46.0

Sources/Services/AWSArtifact/Sources/AWSArtifact/Models.swift

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -706,6 +706,8 @@ public struct ListReportsInput {
706706
extension ArtifactClientTypes {
707707
/// Summary for report resource.
708708
public struct ReportSummary {
709+
/// Acceptance type for report.
710+
public var acceptanceType: ArtifactClientTypes.AcceptanceType?
709711
/// ARN for the report resource.
710712
public var arn: Swift.String?
711713
/// Category for the report resource.
@@ -736,6 +738,7 @@ extension ArtifactClientTypes {
736738
public var version: Swift.Int?
737739

738740
public init(
741+
acceptanceType: ArtifactClientTypes.AcceptanceType? = nil,
739742
arn: Swift.String? = nil,
740743
category: Swift.String? = nil,
741744
companyName: Swift.String? = nil,
@@ -752,6 +755,7 @@ extension ArtifactClientTypes {
752755
version: Swift.Int? = nil
753756
)
754757
{
758+
self.acceptanceType = acceptanceType
755759
self.arn = arn
756760
self.category = category
757761
self.companyName = companyName
@@ -1274,6 +1278,7 @@ extension ArtifactClientTypes.ReportSummary {
12741278
value.companyName = try reader["companyName"].readIfPresent()
12751279
value.productName = try reader["productName"].readIfPresent()
12761280
value.statusMessage = try reader["statusMessage"].readIfPresent()
1281+
value.acceptanceType = try reader["acceptanceType"].readIfPresent()
12771282
return value
12781283
}
12791284
}

Sources/Services/AWSBedrockRuntime/Sources/AWSBedrockRuntime/BedrockRuntimeClient.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ extension BedrockRuntimeClient {
161161
extension BedrockRuntimeClient {
162162
/// Performs the `Converse` operation on the `AmazonBedrockFrontendService` service.
163163
///
164-
/// Sends messages to the specified Amazon Bedrock model. Converse provides a consistent interface that works with all models that support messages. This allows you to write code once and use it with different models. Should a model have unique inference parameters, you can also pass those unique parameters to the model. For more information, see [Run inference](https://docs.aws.amazon.com/bedrock/latest/userguide/api-methods-run.html) in the Bedrock User Guide. This operation requires permission for the bedrock:InvokeModel action.
164+
/// Sends messages to the specified Amazon Bedrock model. Converse provides a consistent interface that works with all models that support messages. This allows you to write code once and use it with different models. Should a model have unique inference parameters, you can also pass those unique parameters to the model. For information about the Converse API, see Use the Converse API in the Amazon Bedrock User Guide. To use a guardrail, see Use a guardrail with the Converse API in the Amazon Bedrock User Guide. To use a tool with a model, see Tool use (Function calling) in the Amazon Bedrock User Guide For example code, see Converse API examples in the Amazon Bedrock User Guide. This operation requires permission for the bedrock:InvokeModel action.
165165
///
166166
/// - Parameter ConverseInput : [no documentation found]
167167
///
@@ -216,7 +216,7 @@ extension BedrockRuntimeClient {
216216

217217
/// Performs the `ConverseStream` operation on the `AmazonBedrockFrontendService` service.
218218
///
219-
/// Sends messages to the specified Amazon Bedrock model and returns the response in a stream. ConverseStream provides a consistent API that works with all Amazon Bedrock models that support messages. This allows you to write code once and use it with different models. Should a model have unique inference parameters, you can also pass those unique parameters to the model. For more information, see [Run inference](https://docs.aws.amazon.com/bedrock/latest/userguide/api-methods-run.html) in the Bedrock User Guide. To find out if a model supports streaming, call [GetFoundationModel](https://docs.aws.amazon.com/bedrock/latest/APIReference/API_GetFoundationModel.html) and check the responseStreamingSupported field in the response. For example code, see Invoke model with streaming code example in the Amazon Bedrock User Guide. This operation requires permission for the bedrock:InvokeModelWithResponseStream action.
219+
/// Sends messages to the specified Amazon Bedrock model and returns the response in a stream. ConverseStream provides a consistent API that works with all Amazon Bedrock models that support messages. This allows you to write code once and use it with different models. Should a model have unique inference parameters, you can also pass those unique parameters to the model. To find out if a model supports streaming, call [GetFoundationModel](https://docs.aws.amazon.com/bedrock/latest/APIReference/API_GetFoundationModel.html) and check the responseStreamingSupported field in the response. For information about the Converse API, see Use the Converse API in the Amazon Bedrock User Guide. To use a guardrail, see Use a guardrail with the Converse API in the Amazon Bedrock User Guide. To use a tool with a model, see Tool use (Function calling) in the Amazon Bedrock User Guide For example code, see Conversation streaming example in the Amazon Bedrock User Guide. This operation requires permission for the bedrock:InvokeModelWithResponseStream action.
220220
///
221221
/// - Parameter ConverseStreamInput : [no documentation found]
222222
///

0 commit comments

Comments
 (0)