Skip to content

Commit 6820186

Browse files
chore: Updates version to 0.42.0
1 parent 8d45783 commit 6820186

File tree

100 files changed

+33177
-4726
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+33177
-4726
lines changed

Package.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ func addResolvedTargets() {
244244
// MARK: - Generated
245245

246246
addDependencies(
247-
clientRuntimeVersion: "0.46.0",
247+
clientRuntimeVersion: "0.47.0",
248248
crtVersion: "0.30.0"
249249
)
250250

@@ -557,6 +557,7 @@ let serviceTargets: [String] = [
557557
"AWSRolesAnywhere",
558558
"AWSRoute53",
559559
"AWSRoute53Domains",
560+
"AWSRoute53Profiles",
560561
"AWSRoute53RecoveryCluster",
561562
"AWSRoute53RecoveryControlConfig",
562563
"AWSRoute53RecoveryReadiness",

Package.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.41.0
1+
0.42.0

Sources/Core/AWSSDKForSwift/Documentation.docc/AWSSDKForSwift.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -621,6 +621,8 @@ This SDK is open-source. Code is available on Github [here](https://github.com/
621621

622622
[AWSRoute53Domains](../../../../../swift/api/awsroute53domains/latest)
623623

624+
[AWSRoute53Profiles](../../../../../swift/api/awsroute53profiles/latest)
625+
624626
[AWSRoute53RecoveryCluster](../../../../../swift/api/awsroute53recoverycluster/latest)
625627

626628
[AWSRoute53RecoveryControlConfig](../../../../../swift/api/awsroute53recoverycontrolconfig/latest)

Sources/Services/AWSBatch/models/Models.swift

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

Sources/Services/AWSBedrockAgent/BedrockAgentClient.swift

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

Sources/Services/AWSBedrockAgent/models/Models.swift

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

Sources/Services/AWSBedrockAgentRuntime/BedrockAgentRuntimeClient.swift

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -142,15 +142,17 @@ public struct BedrockAgentRuntimeClientLogHandlerFactory: ClientRuntime.SDKLogHa
142142
extension BedrockAgentRuntimeClient {
143143
/// Performs the `InvokeAgent` operation on the `AmazonBedrockAgentRunTimeService` service.
144144
///
145-
/// Sends a prompt for the agent to process and respond to. The CLI doesn't support InvokeAgent.
145+
/// Sends a prompt for the agent to process and respond to. Use return control event type for function calling. The CLI doesn't support InvokeAgent.
146146
///
147147
/// * To continue the same conversation with an agent, use the same sessionId value in the request.
148148
///
149149
/// * To activate trace enablement, turn enableTrace to true. Trace enablement helps you follow the agent's reasoning process that led it to the information it processed, the actions it took, and the final result it yielded. For more information, see [Trace enablement](https://docs.aws.amazon.com/bedrock/latest/userguide/agents-test.html#trace-events).
150150
///
151151
/// * End a conversation by setting endSession to true.
152152
///
153-
/// * Include attributes for the session or prompt in the sessionState object.
153+
/// * In the sessionState object, you can include attributes for the session or prompt or parameters returned from the action group.
154+
///
155+
/// * Use return control event type for function calling.
154156
///
155157
///
156158
/// The response is returned in the bytes field of the chunk object.
@@ -173,7 +175,7 @@ extension BedrockAgentRuntimeClient {
173175
/// - `ConflictException` : There was a conflict performing an operation. Resolve the conflict and retry your request.
174176
/// - `DependencyFailedException` : There was an issue with a dependency. Check the resource configurations and retry the request.
175177
/// - `InternalServerException` : An internal server error occurred. Retry your request.
176-
/// - `ResourceNotFoundException` : The specified resource ARN was not found. Check the ARN and try your request again.
178+
/// - `ResourceNotFoundException` : The specified resource Amazon Resource Name (ARN) was not found. Check the Amazon Resource Name (ARN) and try your request again.
177179
/// - `ServiceQuotaExceededException` : The number of requests exceeds the service quota. Resubmit your request later.
178180
/// - `ThrottlingException` : The number of requests exceeds the limit. Resubmit your request later.
179181
/// - `ValidationException` : Input validation failed. Check your request parameters and retry the request.
@@ -231,7 +233,7 @@ extension BedrockAgentRuntimeClient {
231233
/// - `ConflictException` : There was a conflict performing an operation. Resolve the conflict and retry your request.
232234
/// - `DependencyFailedException` : There was an issue with a dependency. Check the resource configurations and retry the request.
233235
/// - `InternalServerException` : An internal server error occurred. Retry your request.
234-
/// - `ResourceNotFoundException` : The specified resource ARN was not found. Check the ARN and try your request again.
236+
/// - `ResourceNotFoundException` : The specified resource Amazon Resource Name (ARN) was not found. Check the Amazon Resource Name (ARN) and try your request again.
235237
/// - `ServiceQuotaExceededException` : The number of requests exceeds the service quota. Resubmit your request later.
236238
/// - `ThrottlingException` : The number of requests exceeds the limit. Resubmit your request later.
237239
/// - `ValidationException` : Input validation failed. Check your request parameters and retry the request.
@@ -289,7 +291,7 @@ extension BedrockAgentRuntimeClient {
289291
/// - `ConflictException` : There was a conflict performing an operation. Resolve the conflict and retry your request.
290292
/// - `DependencyFailedException` : There was an issue with a dependency. Check the resource configurations and retry the request.
291293
/// - `InternalServerException` : An internal server error occurred. Retry your request.
292-
/// - `ResourceNotFoundException` : The specified resource ARN was not found. Check the ARN and try your request again.
294+
/// - `ResourceNotFoundException` : The specified resource Amazon Resource Name (ARN) was not found. Check the Amazon Resource Name (ARN) and try your request again.
293295
/// - `ServiceQuotaExceededException` : The number of requests exceeds the service quota. Resubmit your request later.
294296
/// - `ThrottlingException` : The number of requests exceeds the limit. Resubmit your request later.
295297
/// - `ValidationException` : Input validation failed. Check your request parameters and retry the request.

0 commit comments

Comments
 (0)