6#include <azure/core/nullable.hpp>
7#include <azure/storage/common/account_sas_builder.hpp>
8#include <azure/storage/common/internal/constants.hpp>
13namespace Azure {
namespace Storage {
namespace Sas {
18 enum class ShareSasResource
35 enum class ShareSasPermissions
68 inline ShareSasPermissions operator|(ShareSasPermissions lhs, ShareSasPermissions rhs)
70 using type = std::underlying_type_t<ShareSasPermissions>;
71 return static_cast<ShareSasPermissions
>(
static_cast<type
>(lhs) |
static_cast<type
>(rhs));
74 inline ShareSasPermissions operator&(ShareSasPermissions lhs, ShareSasPermissions rhs)
76 using type = std::underlying_type_t<ShareSasPermissions>;
77 return static_cast<ShareSasPermissions
>(
static_cast<type
>(lhs) &
static_cast<type
>(rhs));
83 enum class ShareFileSasPermissions
112 inline ShareFileSasPermissions operator|(ShareFileSasPermissions lhs, ShareFileSasPermissions rhs)
114 using type = std::underlying_type_t<ShareFileSasPermissions>;
115 return static_cast<ShareFileSasPermissions
>(
static_cast<type
>(lhs) |
static_cast<type
>(rhs));
118 inline ShareFileSasPermissions operator&(ShareFileSasPermissions lhs, ShareFileSasPermissions rhs)
120 using type = std::underlying_type_t<ShareFileSasPermissions>;
121 return static_cast<ShareFileSasPermissions
>(
static_cast<type
>(lhs) &
static_cast<type
>(rhs));
222 void SetPermissions(std::string rawPermissions) { Permissions = std::move(rawPermissions); }
244 std::string Permissions;
ShareSasBuilder is used to generate a Shared Access Signature (SAS) for an Azure Storage share or fil...
Definition share_sas_builder.hpp:129
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 share_sas_builder.hpp:155
std::string GenerateSasToken(const StorageSharedKeyCredential &credential)
Uses the StorageSharedKeyCredential to sign this shared access signature, to produce the proper SAS q...
std::string ContentEncoding
Override the value returned for Content-Encoding response header..
Definition share_sas_builder.hpp:191
std::string ShareName
The name of the file share being made accessible.
Definition share_sas_builder.hpp:166
std::string FilePath
The name of the share file being made accessible, or empty for a share SAS..
Definition share_sas_builder.hpp:171
std::string Identifier
An optional unique value up to 64 characters in length that correlates to an access policy specified ...
Definition share_sas_builder.hpp:161
Azure::Nullable< Azure::DateTime > StartsOn
Optionally specify the time at which the shared access signature becomes valid. This timestamp will b...
Definition share_sas_builder.hpp:140
ShareSasResource Resource
Specifies which resources are accessible via the shared access signature.
Definition share_sas_builder.hpp:176
void SetPermissions(std::string rawPermissions)
Sets the permissions for the SAS using a raw permissions string.
Definition share_sas_builder.hpp:222
void SetPermissions(ShareFileSasPermissions permissions)
Sets the permissions for the share SAS.
std::string ContentType
Override the value returned for Content-Type response header..
Definition share_sas_builder.hpp:201
Azure::DateTime ExpiresOn
The time at which the shared access signature becomes invalid. This field must be omitted if it has b...
Definition share_sas_builder.hpp:147
std::string ContentDisposition
Override the value returned for Content-Disposition response header..
Definition share_sas_builder.hpp:186
SasProtocol Protocol
The optional signed protocol field specifies the protocol permitted for a request made with the SAS.
Definition share_sas_builder.hpp:134
std::string GenerateSasStringToSign(const StorageSharedKeyCredential &credential)
For debugging purposes only.
std::string ContentLanguage
Override the value returned for Content-Language response header..
Definition share_sas_builder.hpp:196
void SetPermissions(ShareSasPermissions permissions)
Sets the permissions for the share SAS.
std::string CacheControl
Override the value returned for Cache-Control response header..
Definition share_sas_builder.hpp:181