Loading [MathJax]/jax/output/HTML-CSS/config.js
azure-storage-common
All Classes Functions Variables Pages
access_conditions.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
6#include "azure/storage/common/storage_common.hpp"
7
8#include <azure/core/etag.hpp>
9#include <azure/core/nullable.hpp>
10
11#include <string>
12
13namespace Azure { namespace Storage {
14
19 {
24 virtual ~LeaseAccessConditions() = default;
25
30 Azure::Nullable<std::string> LeaseId;
31 };
32
37 {
42 Azure::Nullable<ContentHash> IfMatchContentHash;
43
48 Azure::Nullable<ContentHash> IfNoneMatchContentHash;
49 };
50
51}} // namespace Azure::Storage
Specifies HTTP options for conditional requests based on ContentHash.
Definition access_conditions.hpp:37
Azure::Nullable< ContentHash > IfMatchContentHash
Specify this header to perform the operation only if the resource's ContentHash matches the value spe...
Definition access_conditions.hpp:42
Azure::Nullable< ContentHash > IfNoneMatchContentHash
Specify this header to perform the operation only if the resource's ContentHash does not match the va...
Definition access_conditions.hpp:48
Specifies HTTP options for conditional requests based on lease.
Definition access_conditions.hpp:19
virtual ~LeaseAccessConditions()=default
Destructor.
Azure::Nullable< std::string > LeaseId
Specify this header to perform the operation only if the resource has an active lease mathing this ID...
Definition access_conditions.hpp:30