docs: add GCS storage provider, update SDK storage API references#39
Merged
sasha-computer merged 2 commits intomasterfrom Feb 17, 2026
Merged
docs: add GCS storage provider, update SDK storage API references#39sasha-computer merged 2 commits intomasterfrom
sasha-computer merged 2 commits intomasterfrom
Conversation
- Add Google Cloud Storage (GCS) section to request tutorial with env vars, authentication (ADC), and public URL configuration - Update all code examples from old storage_provider_from_env() API to new with_uploader_config() / StorageUploaderConfig pattern - Update S3 env var names (S3_ACCESS_KEY -> AWS_ACCESS_KEY_ID, etc.) - Update SDK overview to list GCS alongside S3 and Pinata uploaders - Update sensitive-inputs tutorial with new env vars and docs.rs links - Add gcs feature flag note for cargo dependency
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds documentation for the new Google Cloud Storage (GCS) upload/download support added in boundless-xyz/boundless#1497 (Unified Download/Upload Handlers), and updates all stale SDK API references.
Changes
GCS storage provider docs (
developers/tutorials/request.mdx)GCS_BUCKET)GCS_URL,GCS_CREDENTIALS_JSON,GCS_PUBLIC_URLgcsfeature flag requirementSDK API updates (all three files)
storage_provider_from_env()/with_storage_provider()calls with the newwith_uploader_config(&storage_config).await?patternAWS_ACCESS_KEY_ID,AWS_SECRET_ACCESS_KEY,S3_PRESIGNED,S3_PUBLIC_URLdevelopers/tooling/sdk.mdxstorage module description to list GCS uploaders and the new downloader abstractiondevelopers/tutorials/sensitive-inputs.mdxwith corrected env vars and new docs.rs links (StorageUploader,StorageUploaderConfig)