Skip to content

Commit 24bae88

Browse files
Ed PauloskyAWS CI
andauthored
chore: kick off release 0.13.0 (#933)
* chore: bumps client runtime version * aws-sdk-swift release build artifacts * kick off ci --------- Co-authored-by: AWS CI <[email protected]>
1 parent 954fb17 commit 24bae88

File tree

496 files changed

+51139
-20103
lines changed

Some content is hidden

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

496 files changed

+51139
-20103
lines changed

Package.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ let package = Package(
169169
.library(name: "AWSHealthLake", targets: ["AWSHealthLake"]),
170170
.library(name: "AWSHoneycode", targets: ["AWSHoneycode"]),
171171
.library(name: "AWSIAM", targets: ["AWSIAM"]),
172+
.library(name: "AWSIVSRealTime", targets: ["AWSIVSRealTime"]),
172173
.library(name: "AWSIdentitystore", targets: ["AWSIdentitystore"]),
173174
.library(name: "AWSImagebuilder", targets: ["AWSImagebuilder"]),
174175
.library(name: "AWSInspector", targets: ["AWSInspector"]),
@@ -521,6 +522,7 @@ let package = Package(
521522
.target(name: "AWSHealthLake", dependencies: [clientRuntime, "AWSClientRuntime"], path: "./Sources/Services/AWSHealthLake"),
522523
.target(name: "AWSHoneycode", dependencies: [clientRuntime, "AWSClientRuntime"], path: "./Sources/Services/AWSHoneycode"),
523524
.target(name: "AWSIAM", dependencies: [clientRuntime, "AWSClientRuntime"], path: "./Sources/Services/AWSIAM"),
525+
.target(name: "AWSIVSRealTime", dependencies: [clientRuntime, "AWSClientRuntime"], path: "./Sources/Services/AWSIVSRealTime"),
524526
.target(name: "AWSIdentitystore", dependencies: [clientRuntime, "AWSClientRuntime"], path: "./Sources/Services/AWSIdentitystore"),
525527
.target(name: "AWSImagebuilder", dependencies: [clientRuntime, "AWSClientRuntime"], path: "./Sources/Services/AWSImagebuilder"),
526528
.target(name: "AWSInspector", dependencies: [clientRuntime, "AWSClientRuntime"], path: "./Sources/Services/AWSInspector"),
@@ -863,6 +865,7 @@ let package = Package(
863865
.testTarget(name: "AWSHealthLakeTests", dependencies: [awsCommonRuntimeKit, clientRuntime, "AWSClientRuntime", "AWSHealthLake", smithyTestUtil], path: "./Tests/Services/AWSHealthLakeTests"),
864866
.testTarget(name: "AWSHoneycodeTests", dependencies: [awsCommonRuntimeKit, clientRuntime, "AWSClientRuntime", "AWSHoneycode", smithyTestUtil], path: "./Tests/Services/AWSHoneycodeTests"),
865867
.testTarget(name: "AWSIAMTests", dependencies: [awsCommonRuntimeKit, clientRuntime, "AWSClientRuntime", "AWSIAM", smithyTestUtil], path: "./Tests/Services/AWSIAMTests"),
868+
.testTarget(name: "AWSIVSRealTimeTests", dependencies: [awsCommonRuntimeKit, clientRuntime, "AWSClientRuntime", "AWSIVSRealTime", smithyTestUtil], path: "./Tests/Services/AWSIVSRealTimeTests"),
866869
.testTarget(name: "AWSIdentitystoreTests", dependencies: [awsCommonRuntimeKit, clientRuntime, "AWSClientRuntime", "AWSIdentitystore", smithyTestUtil], path: "./Tests/Services/AWSIdentitystoreTests"),
867870
.testTarget(name: "AWSImagebuilderTests", dependencies: [awsCommonRuntimeKit, clientRuntime, "AWSClientRuntime", "AWSImagebuilder", smithyTestUtil], path: "./Tests/Services/AWSImagebuilderTests"),
868871
.testTarget(name: "AWSInspectorTests", dependencies: [awsCommonRuntimeKit, clientRuntime, "AWSClientRuntime", "AWSInspector", smithyTestUtil], path: "./Tests/Services/AWSInspectorTests"),
@@ -1078,6 +1081,6 @@ case (false, true):
10781081
]
10791082
case (false, false):
10801083
package.dependencies += [
1081-
.package(url: "https://github.com/awslabs/smithy-swift", .exact("0.14.0"))
1084+
.package(url: "https://github.com/awslabs/smithy-swift", .exact("0.15.0"))
10821085
]
10831086
}

Sources/Services/AWSACM/ACMClient.swift

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

Sources/Services/AWSACMPCA/ACMPCAClient.swift

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

Sources/Services/AWSAPIGateway/APIGatewayClient.swift

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

Sources/Services/AWSARCZonalShift/ARCZonalShiftClient.swift

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -231,8 +231,8 @@ extension ARCZonalShiftClient: ARCZonalShiftClientProtocol {
231231
operation.finalizeStep.intercept(position: .after, middleware: ClientRuntime.RetryerMiddleware<CancelZonalShiftOutputResponse, CancelZonalShiftOutputError>(retryer: config.retryer))
232232
let sigv4Config = AWSClientRuntime.SigV4Config(unsignedBody: false, signingAlgorithm: .sigv4)
233233
operation.finalizeStep.intercept(position: .before, middleware: AWSClientRuntime.SigV4Middleware<CancelZonalShiftOutputResponse, CancelZonalShiftOutputError>(config: sigv4Config))
234-
operation.deserializeStep.intercept(position: .before, middleware: ClientRuntime.LoggerMiddleware<CancelZonalShiftOutputResponse, CancelZonalShiftOutputError>(clientLogMode: config.clientLogMode))
235234
operation.deserializeStep.intercept(position: .after, middleware: ClientRuntime.DeserializeMiddleware<CancelZonalShiftOutputResponse, CancelZonalShiftOutputError>())
235+
operation.deserializeStep.intercept(position: .after, middleware: ClientRuntime.LoggerMiddleware<CancelZonalShiftOutputResponse, CancelZonalShiftOutputError>(clientLogMode: config.clientLogMode))
236236
let result = try await operation.handleMiddleware(context: context.build(), input: input, next: client.getHandler())
237237
return result
238238
}
@@ -263,8 +263,8 @@ extension ARCZonalShiftClient: ARCZonalShiftClientProtocol {
263263
operation.finalizeStep.intercept(position: .after, middleware: ClientRuntime.RetryerMiddleware<GetManagedResourceOutputResponse, GetManagedResourceOutputError>(retryer: config.retryer))
264264
let sigv4Config = AWSClientRuntime.SigV4Config(unsignedBody: false, signingAlgorithm: .sigv4)
265265
operation.finalizeStep.intercept(position: .before, middleware: AWSClientRuntime.SigV4Middleware<GetManagedResourceOutputResponse, GetManagedResourceOutputError>(config: sigv4Config))
266-
operation.deserializeStep.intercept(position: .before, middleware: ClientRuntime.LoggerMiddleware<GetManagedResourceOutputResponse, GetManagedResourceOutputError>(clientLogMode: config.clientLogMode))
267266
operation.deserializeStep.intercept(position: .after, middleware: ClientRuntime.DeserializeMiddleware<GetManagedResourceOutputResponse, GetManagedResourceOutputError>())
267+
operation.deserializeStep.intercept(position: .after, middleware: ClientRuntime.LoggerMiddleware<GetManagedResourceOutputResponse, GetManagedResourceOutputError>(clientLogMode: config.clientLogMode))
268268
let result = try await operation.handleMiddleware(context: context.build(), input: input, next: client.getHandler())
269269
return result
270270
}
@@ -296,8 +296,8 @@ extension ARCZonalShiftClient: ARCZonalShiftClientProtocol {
296296
operation.finalizeStep.intercept(position: .after, middleware: ClientRuntime.RetryerMiddleware<ListManagedResourcesOutputResponse, ListManagedResourcesOutputError>(retryer: config.retryer))
297297
let sigv4Config = AWSClientRuntime.SigV4Config(unsignedBody: false, signingAlgorithm: .sigv4)
298298
operation.finalizeStep.intercept(position: .before, middleware: AWSClientRuntime.SigV4Middleware<ListManagedResourcesOutputResponse, ListManagedResourcesOutputError>(config: sigv4Config))
299-
operation.deserializeStep.intercept(position: .before, middleware: ClientRuntime.LoggerMiddleware<ListManagedResourcesOutputResponse, ListManagedResourcesOutputError>(clientLogMode: config.clientLogMode))
300299
operation.deserializeStep.intercept(position: .after, middleware: ClientRuntime.DeserializeMiddleware<ListManagedResourcesOutputResponse, ListManagedResourcesOutputError>())
300+
operation.deserializeStep.intercept(position: .after, middleware: ClientRuntime.LoggerMiddleware<ListManagedResourcesOutputResponse, ListManagedResourcesOutputError>(clientLogMode: config.clientLogMode))
301301
let result = try await operation.handleMiddleware(context: context.build(), input: input, next: client.getHandler())
302302
return result
303303
}
@@ -329,8 +329,8 @@ extension ARCZonalShiftClient: ARCZonalShiftClientProtocol {
329329
operation.finalizeStep.intercept(position: .after, middleware: ClientRuntime.RetryerMiddleware<ListZonalShiftsOutputResponse, ListZonalShiftsOutputError>(retryer: config.retryer))
330330
let sigv4Config = AWSClientRuntime.SigV4Config(unsignedBody: false, signingAlgorithm: .sigv4)
331331
operation.finalizeStep.intercept(position: .before, middleware: AWSClientRuntime.SigV4Middleware<ListZonalShiftsOutputResponse, ListZonalShiftsOutputError>(config: sigv4Config))
332-
operation.deserializeStep.intercept(position: .before, middleware: ClientRuntime.LoggerMiddleware<ListZonalShiftsOutputResponse, ListZonalShiftsOutputError>(clientLogMode: config.clientLogMode))
333332
operation.deserializeStep.intercept(position: .after, middleware: ClientRuntime.DeserializeMiddleware<ListZonalShiftsOutputResponse, ListZonalShiftsOutputError>())
333+
operation.deserializeStep.intercept(position: .after, middleware: ClientRuntime.LoggerMiddleware<ListZonalShiftsOutputResponse, ListZonalShiftsOutputError>(clientLogMode: config.clientLogMode))
334334
let result = try await operation.handleMiddleware(context: context.build(), input: input, next: client.getHandler())
335335
return result
336336
}
@@ -364,8 +364,8 @@ extension ARCZonalShiftClient: ARCZonalShiftClientProtocol {
364364
operation.finalizeStep.intercept(position: .after, middleware: ClientRuntime.RetryerMiddleware<StartZonalShiftOutputResponse, StartZonalShiftOutputError>(retryer: config.retryer))
365365
let sigv4Config = AWSClientRuntime.SigV4Config(unsignedBody: false, signingAlgorithm: .sigv4)
366366
operation.finalizeStep.intercept(position: .before, middleware: AWSClientRuntime.SigV4Middleware<StartZonalShiftOutputResponse, StartZonalShiftOutputError>(config: sigv4Config))
367-
operation.deserializeStep.intercept(position: .before, middleware: ClientRuntime.LoggerMiddleware<StartZonalShiftOutputResponse, StartZonalShiftOutputError>(clientLogMode: config.clientLogMode))
368367
operation.deserializeStep.intercept(position: .after, middleware: ClientRuntime.DeserializeMiddleware<StartZonalShiftOutputResponse, StartZonalShiftOutputError>())
368+
operation.deserializeStep.intercept(position: .after, middleware: ClientRuntime.LoggerMiddleware<StartZonalShiftOutputResponse, StartZonalShiftOutputError>(clientLogMode: config.clientLogMode))
369369
let result = try await operation.handleMiddleware(context: context.build(), input: input, next: client.getHandler())
370370
return result
371371
}
@@ -399,8 +399,8 @@ extension ARCZonalShiftClient: ARCZonalShiftClientProtocol {
399399
operation.finalizeStep.intercept(position: .after, middleware: ClientRuntime.RetryerMiddleware<UpdateZonalShiftOutputResponse, UpdateZonalShiftOutputError>(retryer: config.retryer))
400400
let sigv4Config = AWSClientRuntime.SigV4Config(unsignedBody: false, signingAlgorithm: .sigv4)
401401
operation.finalizeStep.intercept(position: .before, middleware: AWSClientRuntime.SigV4Middleware<UpdateZonalShiftOutputResponse, UpdateZonalShiftOutputError>(config: sigv4Config))
402-
operation.deserializeStep.intercept(position: .before, middleware: ClientRuntime.LoggerMiddleware<UpdateZonalShiftOutputResponse, UpdateZonalShiftOutputError>(clientLogMode: config.clientLogMode))
403402
operation.deserializeStep.intercept(position: .after, middleware: ClientRuntime.DeserializeMiddleware<UpdateZonalShiftOutputResponse, UpdateZonalShiftOutputError>())
403+
operation.deserializeStep.intercept(position: .after, middleware: ClientRuntime.LoggerMiddleware<UpdateZonalShiftOutputResponse, UpdateZonalShiftOutputError>(clientLogMode: config.clientLogMode))
404404
let result = try await operation.handleMiddleware(context: context.build(), input: input, next: client.getHandler())
405405
return result
406406
}

0 commit comments

Comments
 (0)