Skip to content

Commit

Permalink
Fix codegen tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jbelkins committed Jan 15, 2025
1 parent 6eeb569 commit 2b6c726
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Package.version.next
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.1.1
1.1.0
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ extension GetFooInput {
.withIdentityResolver(value: config.bearerTokenIdentityResolver, schemeID: "smithy.api#httpBearerAuth")
.withFlowType(value: .PRESIGN_REQUEST)
.withExpiration(value: expiration)
.withAccountIDEndpointMode(value: config.accountIdEndpointMode)
.withIdentityResolver(value: config.awsCredentialIdentityResolver, schemeID: "aws.auth#sigv4")
.withIdentityResolver(value: config.awsCredentialIdentityResolver, schemeID: "aws.auth#sigv4a")
.withRegion(value: config.region)
Expand Down Expand Up @@ -106,6 +107,7 @@ extension PostFooInput {
.withIdentityResolver(value: config.bearerTokenIdentityResolver, schemeID: "smithy.api#httpBearerAuth")
.withFlowType(value: .PRESIGN_REQUEST)
.withExpiration(value: expiration)
.withAccountIDEndpointMode(value: config.accountIdEndpointMode)
.withIdentityResolver(value: config.awsCredentialIdentityResolver, schemeID: "aws.auth#sigv4")
.withIdentityResolver(value: config.awsCredentialIdentityResolver, schemeID: "aws.auth#sigv4a")
.withRegion(value: config.region)
Expand Down Expand Up @@ -182,6 +184,7 @@ extension PutFooInput {
.withIdentityResolver(value: config.bearerTokenIdentityResolver, schemeID: "smithy.api#httpBearerAuth")
.withFlowType(value: .PRESIGN_REQUEST)
.withExpiration(value: expiration)
.withAccountIDEndpointMode(value: config.accountIdEndpointMode)
.withIdentityResolver(value: config.awsCredentialIdentityResolver, schemeID: "aws.auth#sigv4")
.withIdentityResolver(value: config.awsCredentialIdentityResolver, schemeID: "aws.auth#sigv4a")
.withRegion(value: config.region)
Expand Down Expand Up @@ -258,6 +261,7 @@ extension PutObjectInput {
.withIdentityResolver(value: config.bearerTokenIdentityResolver, schemeID: "smithy.api#httpBearerAuth")
.withFlowType(value: .PRESIGN_REQUEST)
.withExpiration(value: expiration)
.withAccountIDEndpointMode(value: config.accountIdEndpointMode)
.withIdentityResolver(value: config.awsCredentialIdentityResolver, schemeID: "aws.auth#sigv4")
.withIdentityResolver(value: config.awsCredentialIdentityResolver, schemeID: "aws.auth#sigv4a")
.withRegion(value: config.region)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -309,6 +309,8 @@ extension ExampleClient {
try AWSClientConfigDefaultsProvider.awsCredentialIdentityResolver(),
try AWSClientRuntime.AWSClientConfigDefaultsProvider.retryMode(),
nil,
try AWSClientConfigDefaultsProvider.requestChecksumCalculation(),
try AWSClientConfigDefaultsProvider.responseChecksumValidation(),
nil,
region,
region,
Expand Down

0 comments on commit 2b6c726

Please sign in to comment.