6#include "azure/storage/common/internal/constants.hpp"
7#include "azure/storage/common/storage_credential.hpp"
9#include <azure/core/datetime.hpp>
10#include <azure/core/nullable.hpp>
15namespace Azure {
namespace Storage {
namespace Sas {
21 enum class SasProtocol
35 inline std::string SasProtocolToString(SasProtocol protocol)
37 return protocol == SasProtocol::HttpsAndHttp ?
"https,http" :
"https";
45 enum class AccountSasResource
72 inline AccountSasResource operator|(AccountSasResource lhs, AccountSasResource rhs)
74 using type = std::underlying_type_t<AccountSasResource>;
75 return static_cast<AccountSasResource
>(
static_cast<type
>(lhs) |
static_cast<type
>(rhs));
78 inline AccountSasResource operator&(AccountSasResource lhs, AccountSasResource rhs)
80 using type = std::underlying_type_t<AccountSasResource>;
81 return static_cast<AccountSasResource
>(
static_cast<type
>(lhs) &
static_cast<type
>(rhs));
87 enum class AccountSasServices
114 inline AccountSasServices operator|(AccountSasServices lhs, AccountSasServices rhs)
116 using type = std::underlying_type_t<AccountSasServices>;
117 return static_cast<AccountSasServices
>(
static_cast<type
>(lhs) |
static_cast<type
>(rhs));
120 inline AccountSasServices operator&(AccountSasServices lhs, AccountSasServices rhs)
122 using type = std::underlying_type_t<AccountSasServices>;
123 return static_cast<AccountSasServices
>(
static_cast<type
>(lhs) &
static_cast<type
>(rhs));
129 enum class AccountSasPermissions
189 SetImmutabilityPolicy = 2048,
194 PermanentDelete = 4096,
202 inline AccountSasPermissions operator|(AccountSasPermissions lhs, AccountSasPermissions rhs)
204 using type = std::underlying_type_t<AccountSasPermissions>;
205 return static_cast<AccountSasPermissions
>(
static_cast<type
>(lhs) |
static_cast<type
>(rhs));
208 inline AccountSasPermissions operator&(AccountSasPermissions lhs, AccountSasPermissions rhs)
210 using type = std::underlying_type_t<AccountSasPermissions>;
211 return static_cast<AccountSasPermissions
>(
static_cast<type
>(lhs) &
static_cast<type
>(rhs));
276 void SetPermissions(std::string rawPermissions) { Permissions = std::move(rawPermissions); }
300 std::string Permissions;
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