Loading [MathJax]/extensions/tex2jax.js
azure-storage-common
All Classes Functions Variables Pages
storage_credential.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
6#include <azure/core/http/http.hpp>
7
8#include <memory>
9#include <mutex>
10#include <string>
11
12namespace Azure { namespace Storage {
13
14 namespace Sas {
15 struct AccountSasBuilder;
16 struct BlobSasBuilder;
17 struct ShareSasBuilder;
18 struct DataLakeSasBuilder;
19 struct QueueSasBuilder;
20 } // namespace Sas
21
22 namespace _internal {
23 class SharedKeyPolicy;
24 }
25
31 public:
39 explicit StorageSharedKeyCredential(std::string accountName, std::string accountKey)
40 : AccountName(std::move(accountName)), m_accountKey(std::move(accountKey))
41 {
42 }
43
50 void Update(std::string accountKey)
51 {
52 std::lock_guard<std::mutex> guard(m_mutex);
53 m_accountKey = std::move(accountKey);
54 }
55
59 const std::string AccountName;
60
61 private:
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;
67 friend struct Sas::AccountSasBuilder;
68 std::string GetAccountKey() const
69 {
70 std::lock_guard<std::mutex> guard(m_mutex);
71 return m_accountKey;
72 }
73
74 mutable std::mutex m_mutex;
75 std::string m_accountKey;
76 };
77
78 namespace _internal {
79
80 struct ConnectionStringParts
81 {
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;
89 };
90
91 ConnectionStringParts ParseConnectionString(const std::string& connectionString);
92
93 std::string GetDefaultScopeForAudience(const std::string& audience);
94
95 } // namespace _internal
96
97}} // namespace Azure::Storage
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