6#include <azure/core/http/http.hpp>
12namespace Azure {
namespace Storage {
15 struct AccountSasBuilder;
16 struct BlobSasBuilder;
17 struct ShareSasBuilder;
18 struct DataLakeSasBuilder;
19 struct QueueSasBuilder;
23 class SharedKeyPolicy;
40 :
AccountName(std::move(accountName)), m_accountKey(std::move(accountKey))
52 std::lock_guard<std::mutex> guard(m_mutex);
53 m_accountKey = std::move(accountKey);
62 friend class _internal::SharedKeyPolicy;
63 friend struct Sas::BlobSasBuilder;
64 friend struct Sas::ShareSasBuilder;
65 friend struct Sas::DataLakeSasBuilder;
66 friend struct Sas::QueueSasBuilder;
68 std::string GetAccountKey()
const
70 std::lock_guard<std::mutex> guard(m_mutex);
74 mutable std::mutex m_mutex;
75 std::string m_accountKey;
80 struct ConnectionStringParts
82 std::string AccountName;
83 std::string AccountKey;
84 Azure::Core::Url BlobServiceUrl;
85 Azure::Core::Url FileServiceUrl;
86 Azure::Core::Url QueueServiceUrl;
87 Azure::Core::Url DataLakeServiceUrl;
88 std::shared_ptr<StorageSharedKeyCredential> KeyCredential;
91 ConnectionStringParts ParseConnectionString(
const std::string& connectionString);
93 std::string GetDefaultScopeForAudience(
const std::string& audience);
A StorageSharedKeyCredential is a credential backed by a storage account's name and one of its access...
Definition storage_credential.hpp:30
const std::string AccountName
Gets the name of the Storage Account.
Definition storage_credential.hpp:59
StorageSharedKeyCredential(std::string accountName, std::string accountKey)
Initializes a new instance of the StorageSharedKeyCredential.
Definition storage_credential.hpp:39
void Update(std::string accountKey)
Update the storage account's access key. This intended to be used when you've regenerated your storag...
Definition storage_credential.hpp:50
AccountSasBuilder is used to generate an account level Shared Access Signature (SAS) for Azure Storag...
Definition account_sas_builder.hpp:219