Loading [MathJax]/extensions/tex2jax.js
azure-storage-common
All Classes Functions Variables Pages
account_sas_builder.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
6#include "azure/storage/common/internal/constants.hpp"
7#include "azure/storage/common/storage_credential.hpp"
8
9#include <azure/core/datetime.hpp>
10#include <azure/core/nullable.hpp>
11
12#include <string>
13#include <type_traits>
14
15namespace Azure { namespace Storage { namespace Sas {
16
21 enum class SasProtocol
22 {
26 HttpsAndHttp,
27
31 HttpsOnly,
32 };
33
34 namespace _detail {
35 inline std::string SasProtocolToString(SasProtocol protocol)
36 {
37 return protocol == SasProtocol::HttpsAndHttp ? "https,http" : "https";
38 }
39 } // namespace _detail
40
45 enum class AccountSasResource
46 {
51 Service = 1,
52
57 Container = 2,
58
63 Object = 4,
64
69 All = ~0,
70 };
71
72 inline AccountSasResource operator|(AccountSasResource lhs, AccountSasResource rhs)
73 {
74 using type = std::underlying_type_t<AccountSasResource>;
75 return static_cast<AccountSasResource>(static_cast<type>(lhs) | static_cast<type>(rhs));
76 }
77
78 inline AccountSasResource operator&(AccountSasResource lhs, AccountSasResource rhs)
79 {
80 using type = std::underlying_type_t<AccountSasResource>;
81 return static_cast<AccountSasResource>(static_cast<type>(lhs) & static_cast<type>(rhs));
82 }
83
87 enum class AccountSasServices
88 {
93 Blobs = 1,
94
99 Queue = 2,
100
105 Files = 4,
106
111 All = ~0,
112 };
113
114 inline AccountSasServices operator|(AccountSasServices lhs, AccountSasServices rhs)
115 {
116 using type = std::underlying_type_t<AccountSasServices>;
117 return static_cast<AccountSasServices>(static_cast<type>(lhs) | static_cast<type>(rhs));
118 }
119
120 inline AccountSasServices operator&(AccountSasServices lhs, AccountSasServices rhs)
121 {
122 using type = std::underlying_type_t<AccountSasServices>;
123 return static_cast<AccountSasServices>(static_cast<type>(lhs) & static_cast<type>(rhs));
124 }
125
129 enum class AccountSasPermissions
130 {
134 Read = 1,
135
139 Write = 2,
140
144 Delete = 4,
145
149 DeleteVersion = 8,
150
154 List = 16,
155
159 Add = 32,
160
164 Create = 64,
165
169 Update = 128,
170
174 Process = 256,
175
179 Tags = 512,
180
184 Filter = 1024,
185
189 SetImmutabilityPolicy = 2048,
190
194 PermanentDelete = 4096,
195
199 All = ~0,
200 };
201
202 inline AccountSasPermissions operator|(AccountSasPermissions lhs, AccountSasPermissions rhs)
203 {
204 using type = std::underlying_type_t<AccountSasPermissions>;
205 return static_cast<AccountSasPermissions>(static_cast<type>(lhs) | static_cast<type>(rhs));
206 }
207
208 inline AccountSasPermissions operator&(AccountSasPermissions lhs, AccountSasPermissions rhs)
209 {
210 using type = std::underlying_type_t<AccountSasPermissions>;
211 return static_cast<AccountSasPermissions>(static_cast<type>(lhs) & static_cast<type>(rhs));
212 }
213
218 struct AccountSasBuilder final
219 {
224 SasProtocol Protocol = SasProtocol::HttpsOnly;
225
230 Azure::Nullable<Azure::DateTime> StartsOn;
231
236 Azure::DateTime ExpiresOn;
237
244 Azure::Nullable<std::string> IPRange;
245
250 AccountSasServices Services;
251
256 AccountSasResource ResourceTypes;
257
261 std::string EncryptionScope;
262
269 void SetPermissions(AccountSasPermissions permissions);
270
276 void SetPermissions(std::string rawPermissions) { Permissions = std::move(rawPermissions); }
277
287 std::string GenerateSasToken(const StorageSharedKeyCredential& credential);
288
298
299 private:
300 std::string Permissions;
301 };
302
303}}} // namespace Azure::Storage::Sas
A StorageSharedKeyCredential is a credential backed by a storage account's name and one of its access...
Definition storage_credential.hpp:30
AccountSasBuilder is used to generate an account level Shared Access Signature (SAS) for Azure Storag...
Definition account_sas_builder.hpp:219
SasProtocol Protocol
The optional signed protocol field specifies the protocol permitted for a request made with the SAS.
Definition account_sas_builder.hpp:224
std::string EncryptionScope
Optional encryption scope to use when sending requests authorized with this SAS url.
Definition account_sas_builder.hpp:261
Azure::DateTime ExpiresOn
The time at which the shared access signature becomes invalid. This field must be omitted if it has b...
Definition account_sas_builder.hpp:236
Azure::Nullable< Azure::DateTime > StartsOn
Optionally specify the time at which the shared access signature becomes valid.
Definition account_sas_builder.hpp:230
void SetPermissions(AccountSasPermissions permissions)
Sets the permissions for an account SAS.
std::string GenerateSasToken(const StorageSharedKeyCredential &credential)
Uses the StorageSharedKeyCredential to sign this shared access signature, to produce the proper SAS q...
void SetPermissions(std::string rawPermissions)
Sets the permissions for the SAS using a raw permissions string.
Definition account_sas_builder.hpp:276
AccountSasServices Services
The services associated with the shared access signature. The user is restricted to operations with t...
Definition account_sas_builder.hpp:250
std::string GenerateSasStringToSign(const StorageSharedKeyCredential &credential)
For debugging purposes only.
Azure::Nullable< std::string > IPRange
Specifies an IP address or a range of IP addresses from which to accept requests. If the IP address f...
Definition account_sas_builder.hpp:244
AccountSasResource ResourceTypes
Definition account_sas_builder.hpp:256