Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/gcp/builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,12 @@ impl GoogleCloudStorageBuilder {
self
}

/// Set the signing credential provider overriding any other options
pub fn with_signing_credentials(mut self, credentials: GcpSigningCredentialProvider) -> Self {
self.signing_credentials = Some(credentials);
self
}

/// Set the retry configuration
pub fn with_retry(mut self, retry_config: RetryConfig) -> Self {
self.retry_config = retry_config;
Expand Down