Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Add a public set_storage_credentials method in cloud_client #303

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
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
11 changes: 10 additions & 1 deletion Microsoft.WindowsAzure.Storage/includes/was/service_client.h
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,16 @@ namespace azure { namespace storage {
{
return m_base_uri;
}


/// <summary>
/// Sets the storage credentials to use for the service client.
/// </summary>
/// <param name="credentials">The <see cref="azure::storage::storage_credentials" /> to use.</param>
void set_storage_credentials(azure::storage::storage_credentials credentials)
{
m_credentials = std::move(credentials);
}

/// <summary>
/// Gets the storage account credentials for the service client.
/// </summary>
Expand Down