Loading [MathJax]/extensions/tex2jax.js
azure-storage-files-shares
All Classes Functions Variables Pages
share_constants.hpp
1
2// Copyright (c) Microsoft Corporation.
3// Licensed under the MIT License.
4
5#pragma once
6
7namespace Azure { namespace Storage { namespace Files { namespace Shares {
8
9 constexpr static const char* FileDefaultTimeValue = "now";
10 constexpr static const char* FileCopySourceTime = "source";
11 constexpr static const char* FileInheritPermission = "inherit";
12 constexpr static const char* FilePreserveSmbProperties = "preserve";
13 constexpr static const char* FileAllHandles = "*";
14
15 namespace _detail {
16 constexpr static const char* ShareSnapshotQueryParameter = "sharesnapshot";
17
18 // Error codes:
19 constexpr static const char* ParentNotFound = "ParentNotFound";
20 constexpr static const char* ResourceNotFound = "ResourceNotFound";
21 constexpr static const char* ShareAlreadyExists = "ShareAlreadyExists";
22 constexpr static const char* ShareNotFound = "ShareNotFound";
23 constexpr static const char* ResourceAlreadyExists = "ResourceAlreadyExists";
24 } // namespace _detail
25
26}}}} // namespace Azure::Storage::Files::Shares