Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Support generating presigned url for UploadPart operation #1809

Open
wants to merge 16 commits into
base: main
Choose a base branch
from

Conversation

plu
Copy link

@plu plu commented Oct 30, 2024

It adds methods to generate a presigned url for the UploadPart operation.

Issue

Fixes #1808, #723

Description of changes

It generates two new methods:

  • UploadPartInput.presignURL(config:expiration:)
  • S3Client.presignedURLForUploadPart(input:expiration:)

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.

@plu plu closed this Oct 30, 2024
@plu plu reopened this Oct 31, 2024
@plu
Copy link
Author

plu commented Oct 31, 2024

After 9e3244e the generated URL's are correct and uploading works :).

Will look into writing tests for this now.

Comment on lines +32 to +39
if let partNumber = input.partNumber {
let queryItem = Smithy.URIQueryItem(name: "partNumber".urlPercentEncoding(), value: Swift.String(partNumber).urlPercentEncoding())
builder.withQueryItem(queryItem)
}
if let uploadId = input.uploadId {
let queryItem = Smithy.URIQueryItem(name: "uploadId".urlPercentEncoding(), value: Swift.String(uploadId).urlPercentEncoding())
builder.withQueryItem(queryItem)
}
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wondering if there is a way to generate this.

@plu plu changed the title feat: Add UploadPart to list of presignable url operations feat: Support presigning url for UploadPart operation Nov 1, 2024
@plu plu changed the title feat: Support presigning url for UploadPart operation feat: Support generating presigned url for UploadPart operation Nov 1, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Unable to get presigned URL for UploadPart with all mandatory query parameters
1 participant