Loading [MathJax]/extensions/tex2jax.js
azure-storage-files-shares
All Classes Functions Variables Pages
share_responses.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
6#include "azure/storage/files/shares/share_constants.hpp"
7#include "azure/storage/files/shares/share_options.hpp"
8
9#include <azure/core/azure_assert.hpp>
10#include <azure/core/operation.hpp>
11#include <azure/core/paged_response.hpp>
12
13namespace Azure { namespace Storage { namespace Files { namespace Shares {
14
15 class ShareServiceClient;
16 class ShareFileClient;
17 class ShareDirectoryClient;
18
19 namespace Models {
20
21 using LeaseDuration [[deprecated]] = LeaseDurationType;
22
27 {
28 };
29
34 {
38 Azure::ETag ETag;
39
43 DateTime LastModified;
44
48 bool IsServerEncrypted = bool();
49 };
50
55 {
60 Azure::ETag ETag;
66 DateTime LastModified;
70 Core::CaseInsensitiveMap Metadata;
75 Nullable<std::string> CopyId;
83 Nullable<std::string> CopySource;
87 Nullable<Models::CopyStatus> CopyStatus;
95 Nullable<std::string> CopyStatusDescription;
103 Nullable<std::string> CopyProgress;
111 Nullable<DateTime> CopyCompletedOn;
117 bool IsServerEncrypted = bool();
125 Nullable<LeaseDurationType> LeaseDuration;
129 Nullable<Models::LeaseState> LeaseState;
133 Nullable<Models::LeaseStatus> LeaseStatus;
134
139 };
140
145 {
149 std::unique_ptr<Core::IO::BodyStream> BodyStream;
153 Core::Http::HttpRange ContentRange;
157 std::int64_t FileSize = std::int64_t();
161 Nullable<ContentHash> TransactionalContentHash;
170 };
171
176 {
180 int64_t FileSize = 0;
181
185 Azure::Core::Http::HttpRange ContentRange;
186
191
196 };
197
202 {
203 };
204
209 {
213 bool IsServerEncrypted = false;
214 };
215
220 {
225 Azure::ETag ETag;
231 DateTime LastModified;
235 std::string LeaseId;
236 };
241 {
246 Azure::ETag ETag;
252 DateTime LastModified;
253 };
257 struct ChangeLeaseResult final
258 {
263 Azure::ETag ETag;
269 DateTime LastModified;
273 std::string LeaseId;
274 };
278 struct RenewLeaseResult final
279 {
284 Azure::ETag ETag;
290 DateTime LastModified;
294 std::string LeaseId;
295 };
299 struct BreakLeaseResult final
300 {
305 Azure::ETag ETag;
311 DateTime LastModified;
312 };
313
318 public:
319 ShareFileHandleAccessRights() = default;
324 explicit ShareFileHandleAccessRights(const std::string& value);
327 {
328 return m_value == other.m_value;
329 }
331 bool operator!=(const ShareFileHandleAccessRights& other) const { return !(*this == other); }
333 const std::set<std::string>& GetValues() const { return m_value; }
342 {
343 *this = *this | other;
344 return *this;
345 }
348 {
349 *this = *this & other;
350 return *this;
351 }
354 {
355 *this = *this ^ other;
356 return *this;
357 }
359 AZ_STORAGE_FILES_SHARES_DLLEXPORT const static ShareFileHandleAccessRights Read;
361 AZ_STORAGE_FILES_SHARES_DLLEXPORT const static ShareFileHandleAccessRights Write;
363 AZ_STORAGE_FILES_SHARES_DLLEXPORT const static ShareFileHandleAccessRights Delete;
364
365 private:
366 std::set<std::string> m_value;
367 };
368
372 struct DirectoryItem final
373 {
375 std::string Name;
380 };
381
385 struct FileItem final
386 {
388 std::string Name;
393 };
394
398 struct HandleItem final
399 {
403 std::string HandleId;
407 std::string Path;
411 std::string FileId;
415 std::string ParentId;
419 std::string SessionId;
423 std::string ClientIp;
427 std::string ClientName;
431 DateTime OpenedOn;
439 Azure::Nullable<ShareFileHandleAccessRights> AccessRights;
440 };
441
445 struct FileProperties final
446 {
459 DateTime LastModified;
463 Core::CaseInsensitiveMap Metadata;
468 std::int64_t FileSize = std::int64_t();
473 Azure::ETag ETag;
479 Nullable<DateTime> CopyCompletedOn;
484 Nullable<std::string> CopyStatusDescription;
489 Nullable<std::string> CopyId;
495 Nullable<std::string> CopyProgress;
500 Nullable<std::string> CopySource;
504 Nullable<Models::CopyStatus> CopyStatus;
511 bool IsServerEncrypted = bool();
515 Nullable<LeaseDurationType> LeaseDuration;
519 Nullable<Models::LeaseState> LeaseState;
523 Nullable<Models::LeaseStatus> LeaseStatus;
528 };
529
533 struct CreateFileResult final
534 {
538 bool Created = true;
546 Azure::ETag ETag;
552 DateTime LastModified;
557 bool IsServerEncrypted = bool();
562 };
563
568 {
576 Azure::ETag ETag;
582 DateTime LastModified;
587 bool IsServerEncrypted = bool();
592 };
593
598 {
602 Azure::ETag ETag;
603
609 DateTime LastModified;
610
615
620 };
621
626 {
630 bool Created = true;
638 Azure::ETag ETag;
644 DateTime LastModified;
649 bool IsServerEncrypted = bool();
654 };
660 {
668 Core::CaseInsensitiveMap Metadata;
673 Azure::ETag ETag;
678 DateTime LastModified;
683 bool IsServerEncrypted = bool();
688 };
689
695 {
703 Azure::ETag ETag;
709 DateTime LastModified;
714 bool IsServerEncrypted = bool();
719 };
720 } // namespace Models
721
725 class StartFileCopyOperation final : public Azure::Core::Operation<Models::FileProperties> {
726 public:
733 Models::FileProperties Value() const override { return m_pollResult; }
734
735 StartFileCopyOperation() = default;
736
740
743
744 ~StartFileCopyOperation() override {}
745
746 private:
747 std::string GetResumeToken() const override { AZURE_NOT_IMPLEMENTED(); }
748
749 std::unique_ptr<Azure::Core::Http::RawResponse> PollInternal(
750 const Azure::Core::Context& context) override;
751
752 Azure::Response<Models::FileProperties> PollUntilDoneInternal(
753 std::chrono::milliseconds period,
754 Azure::Core::Context& context) override;
755
756 std::shared_ptr<ShareFileClient> m_fileClient;
757 Models::FileProperties m_pollResult;
758
759 friend class ShareFileClient;
760 };
761
765 class ListSharesPagedResponse final : public Azure::Core::PagedResponse<ListSharesPagedResponse> {
766 public:
770 std::string ServiceEndpoint;
774 std::string Prefix;
778 std::vector<Models::ShareItem> Shares;
779
780 private:
781 void OnNextPage(const Azure::Core::Context& context);
782
783 std::shared_ptr<ShareServiceClient> m_shareServiceClient;
784 ListSharesOptions m_operationOptions;
785
786 friend class ShareServiceClient;
787 friend class Azure::Core::PagedResponse<ListSharesPagedResponse>;
788 };
789
795 : public Azure::Core::PagedResponse<ListFilesAndDirectoriesPagedResponse> {
796 public:
800 std::string ServiceEndpoint;
804 std::string ShareName;
808 std::string ShareSnapshot;
812 std::string DirectoryPath;
816 std::string Prefix;
820 std::vector<Models::DirectoryItem> Directories;
824 std::vector<Models::FileItem> Files;
828 std::string DirectoryId;
829
830 private:
831 void OnNextPage(const Azure::Core::Context& context);
832
833 std::shared_ptr<ShareDirectoryClient> m_shareDirectoryClient;
834 ListFilesAndDirectoriesOptions m_operationOptions;
835
836 friend class ShareDirectoryClient;
837 friend class Azure::Core::PagedResponse<ListFilesAndDirectoriesPagedResponse>;
838 };
839
844 : public Azure::Core::PagedResponse<ListFileHandlesPagedResponse> {
845 public:
849 std::vector<Models::HandleItem> FileHandles;
850
851 private:
852 void OnNextPage(const Azure::Core::Context& context);
853
854 std::shared_ptr<ShareFileClient> m_shareFileClient;
855 ListFileHandlesOptions m_operationOptions;
856
857 friend class ShareFileClient;
858 friend class Azure::Core::PagedResponse<ListFileHandlesPagedResponse>;
859 };
860
865 : public Azure::Core::PagedResponse<ForceCloseAllFileHandlesPagedResponse> {
866 public:
875
876 private:
877 void OnNextPage(const Azure::Core::Context& context);
878
879 std::shared_ptr<ShareFileClient> m_shareFileClient;
880 ForceCloseAllFileHandlesOptions m_operationOptions;
881
882 friend class ShareFileClient;
883 friend class Azure::Core::PagedResponse<ForceCloseAllFileHandlesPagedResponse>;
884 };
885
890 : public Azure::Core::PagedResponse<ListDirectoryHandlesPagedResponse> {
891 public:
895 std::vector<Models::HandleItem> DirectoryHandles;
896
897 private:
898 void OnNextPage(const Azure::Core::Context& context);
899
900 std::shared_ptr<ShareDirectoryClient> m_shareDirectoryClient;
901 ListDirectoryHandlesOptions m_operationOptions;
902
903 friend class ShareDirectoryClient;
904 friend class Azure::Core::PagedResponse<ListDirectoryHandlesPagedResponse>;
905 };
906
912 : public Azure::Core::PagedResponse<ForceCloseAllDirectoryHandlesPagedResponse> {
913 public:
922
923 private:
924 void OnNextPage(const Azure::Core::Context& context);
925
926 std::shared_ptr<ShareDirectoryClient> m_shareDirectoryClient;
927 ForceCloseAllDirectoryHandlesOptions m_operationOptions;
928
929 friend class ShareDirectoryClient;
930 friend class Azure::Core::PagedResponse<ForceCloseAllDirectoryHandlesPagedResponse>;
931 };
932
933}}}} // namespace Azure::Storage::Files::Shares
Response type for Azure::Storage::Files::Shares::ShareDirectoryClient::ForceCloseAllHandles.
Definition share_responses.hpp:912
int32_t NumberOfHandlesFailedToClose
Definition share_responses.hpp:921
Response type for Azure::Storage::Files::Shares::ShareFileClient::ForceCloseAllHandles.
Definition share_responses.hpp:865
int32_t NumberOfHandlesFailedToClose
Definition share_responses.hpp:874
int32_t NumberOfHandlesClosed
Definition share_responses.hpp:870
Response type for Azure::Storage::Files::Shares::ShareDirectoryClient::ListHandles.
Definition share_responses.hpp:890
std::vector< Models::HandleItem > DirectoryHandles
Definition share_responses.hpp:895
Response type for Azure::Storage::Files::Shares::ShareFileClient::ListHandles.
Definition share_responses.hpp:844
std::vector< Models::HandleItem > FileHandles
Definition share_responses.hpp:849
Response type for Azure::Storage::Files::Shares::ShareDirectoryClient::ListFilesAndDirectories.
Definition share_responses.hpp:795
std::string ServiceEndpoint
Definition share_responses.hpp:800
std::string DirectoryPath
Definition share_responses.hpp:812
std::string ShareSnapshot
Definition share_responses.hpp:808
std::vector< Models::DirectoryItem > Directories
Definition share_responses.hpp:820
std::string DirectoryId
Definition share_responses.hpp:828
std::string Prefix
Definition share_responses.hpp:816
std::string ShareName
Definition share_responses.hpp:804
std::vector< Models::FileItem > Files
Definition share_responses.hpp:824
Response type for Azure::Storage::Files::Shares::ShareServiceClient::ListShares.
Definition share_responses.hpp:765
std::string ServiceEndpoint
Definition share_responses.hpp:770
std::vector< Models::ShareItem > Shares
Definition share_responses.hpp:778
std::string Prefix
Definition share_responses.hpp:774
Access rights of the handle.
Definition share_responses.hpp:317
AZ_STORAGE_FILES_SHARES_DLLEXPORT static const ShareFileHandleAccessRights Read
Read access rights.
Definition share_responses.hpp:359
const std::set< std::string > & GetValues() const
Return the values of the FileAttributes as an array.
Definition share_responses.hpp:333
bool operator!=(const ShareFileHandleAccessRights &other) const
Compare two values for inequality.
Definition share_responses.hpp:331
ShareFileHandleAccessRights operator&(const ShareFileHandleAccessRights &other) const
Bitwise AND of two values.
ShareFileHandleAccessRights & operator&=(const ShareFileHandleAccessRights &other)
Bitwise AND and assignment of two values.
Definition share_responses.hpp:347
ShareFileHandleAccessRights & operator|=(const ShareFileHandleAccessRights &other)
Bitwise OR and assignment of two values.
Definition share_responses.hpp:341
bool operator==(const ShareFileHandleAccessRights &other) const
Compare two values for equality.
Definition share_responses.hpp:326
ShareFileHandleAccessRights(const std::string &value)
Create from a string.
ShareFileHandleAccessRights & operator^=(const ShareFileHandleAccessRights &other)
Bitwise XOR and assignment of two values.
Definition share_responses.hpp:353
ShareFileHandleAccessRights operator|(const ShareFileHandleAccessRights &other) const
Bitwise OR of two values.
ShareFileHandleAccessRights operator^(const ShareFileHandleAccessRights &other) const
Bitwise XOR of two values.
AZ_STORAGE_FILES_SHARES_DLLEXPORT static const ShareFileHandleAccessRights Write
Write access rights.
Definition share_responses.hpp:361
AZ_STORAGE_FILES_SHARES_DLLEXPORT static const ShareFileHandleAccessRights Delete
Delete access rights.
Definition share_responses.hpp:363
The ShareDirectoryClient allows you to manipulate Azure Storage shares and their directories and file...
Definition share_directory_client.hpp:25
The ShareFileClient allows you to manipulate Azure Storage shares and their directories and files.
Definition share_file_client.hpp:24
The ShareServiceClient allows you to manipulate Azure Storage shares and their directories and files.
Definition share_service_client.hpp:24
A long-running operation to copy a file.
Definition share_responses.hpp:725
StartFileCopyOperation & operator=(StartFileCopyOperation &&)=default
Move a StartFileCopyOperation to another.
Models::FileProperties Value() const override
Get the Azure::Storage::Files::Shares::Models::FileProperties object which includes the latest copy i...
Definition share_responses.hpp:733
StartFileCopyOperation(StartFileCopyOperation &&)=default
Construct a new StartFileCopyOperation object moving from another StartFileCopyOperation object.
Optional parameters for Azure::Storage::Files::Shares::ShareDirectoryClient::ForceCloseAllHandles.
Definition share_options.hpp:855
Optional parameters for Azure::Storage::Files::Shares::ShareFileClient::ForceCloseAllHandles.
Definition share_options.hpp:1239
Optional parameters for Azure::Storage::Files::Shares::ShareDirectoryClient::ListHandles.
Definition share_options.hpp:819
Optional parameters for Azure::Storage::Files::Shares::ShareFileClient::ListHandles.
Definition share_options.hpp:1209
Optional parameters for Azure::Storage::Files::Shares::ShareDirectoryClient::ListFilesAndDirectories.
Definition share_options.hpp:780
Optional parameters for Azure::Storage::Files::Shares::ShareServiceClient::ListShares.
Definition share_options.hpp:304
Response type for Azure::Storage::Files::Shares::ShareLeaseClient::Acquire.
Definition share_responses.hpp:220
Azure::ETag ETag
Definition share_responses.hpp:225
DateTime LastModified
Definition share_responses.hpp:231
std::string LeaseId
Definition share_responses.hpp:235
Response type for Azure::Storage::Files::Shares::ShareLeaseClient::Break.
Definition share_responses.hpp:300
DateTime LastModified
Definition share_responses.hpp:311
Azure::ETag ETag
Definition share_responses.hpp:305
Response type for Azure::Storage::Files::Shares::ShareLeaseClient::Change.
Definition share_responses.hpp:258
DateTime LastModified
Definition share_responses.hpp:269
std::string LeaseId
Definition share_responses.hpp:273
Azure::ETag ETag
Definition share_responses.hpp:263
The information returned when clearing a range in the file.
Definition share_responses.hpp:34
Azure::ETag ETag
Definition share_responses.hpp:38
DateTime LastModified
Definition share_responses.hpp:43
bool IsServerEncrypted
Definition share_responses.hpp:48
Response type for Azure::Storage::Files::Shares::ShareDirectoryClient::Create.
Definition share_responses.hpp:626
FilePosixProperties PosixProperties
Definition share_responses.hpp:653
FileSmbProperties SmbProperties
Definition share_responses.hpp:634
bool Created
Definition share_responses.hpp:630
DateTime LastModified
Definition share_responses.hpp:644
Azure::ETag ETag
Definition share_responses.hpp:638
bool IsServerEncrypted
Definition share_responses.hpp:649
Response type for Azure::Storage::Files::Shares::ShareFileClient::Create.
Definition share_responses.hpp:534
Azure::ETag ETag
Definition share_responses.hpp:546
DateTime LastModified
Definition share_responses.hpp:552
FilePosixProperties PosixProperties
Definition share_responses.hpp:561
bool Created
Definition share_responses.hpp:538
bool IsServerEncrypted
Definition share_responses.hpp:557
FileSmbProperties SmbProperties
Definition share_responses.hpp:542
File properties.
Definition rest_client.hpp:1276
A listed directory item.
Definition share_responses.hpp:373
DirectoryItemDetails Details
Definition share_responses.hpp:379
std::string Name
The name of the item.
Definition share_responses.hpp:375
Response type for Azure::Storage::Files::Shares::ShareDirectoryClient::GetProperties.
Definition share_responses.hpp:660
Azure::ETag ETag
Definition share_responses.hpp:673
FileSmbProperties SmbProperties
Definition share_responses.hpp:664
bool IsServerEncrypted
Definition share_responses.hpp:683
DateTime LastModified
Definition share_responses.hpp:678
FilePosixProperties PosixProperties
Definition share_responses.hpp:687
Core::CaseInsensitiveMap Metadata
Definition share_responses.hpp:668
Detailed information of the downloaded file.
Definition share_responses.hpp:55
Nullable< Models::LeaseState > LeaseState
Definition share_responses.hpp:129
FilePosixProperties PosixProperties
Definition share_responses.hpp:138
Nullable< std::string > CopyId
Definition share_responses.hpp:75
Azure::ETag ETag
Definition share_responses.hpp:60
DateTime LastModified
Definition share_responses.hpp:66
Core::CaseInsensitiveMap Metadata
Definition share_responses.hpp:70
Nullable< std::string > CopySource
Definition share_responses.hpp:83
Nullable< Models::LeaseStatus > LeaseStatus
Definition share_responses.hpp:133
Nullable< DateTime > CopyCompletedOn
Definition share_responses.hpp:111
Nullable< std::string > CopyStatusDescription
Definition share_responses.hpp:95
bool IsServerEncrypted
Definition share_responses.hpp:117
Nullable< Models::CopyStatus > CopyStatus
Definition share_responses.hpp:87
Nullable< LeaseDurationType > LeaseDuration
Definition share_responses.hpp:125
FileSmbProperties SmbProperties
Definition share_responses.hpp:121
Nullable< std::string > CopyProgress
Definition share_responses.hpp:103
Response type for Azure::Storage::Files::Shares::ShareFileClient::Download.
Definition share_responses.hpp:145
std::int64_t FileSize
Definition share_responses.hpp:157
FileHttpHeaders HttpHeaders
Definition share_responses.hpp:165
DownloadFileDetails Details
Definition share_responses.hpp:169
std::unique_ptr< Core::IO::BodyStream > BodyStream
Definition share_responses.hpp:149
Nullable< ContentHash > TransactionalContentHash
Definition share_responses.hpp:161
Core::Http::HttpRange ContentRange
Definition share_responses.hpp:153
The information returned when downloading a file to a destination.
Definition share_responses.hpp:176
DownloadFileDetails Details
Definition share_responses.hpp:195
FileHttpHeaders HttpHeaders
Definition share_responses.hpp:190
int64_t FileSize
Definition share_responses.hpp:180
Azure::Core::Http::HttpRange ContentRange
Definition share_responses.hpp:185
Standard HTTP properties supported files.
Definition rest_client.hpp:1597
File properties.
Definition rest_client.hpp:1311
A listed file item.
Definition share_responses.hpp:386
FileItemDetails Details
Definition share_responses.hpp:392
std::string Name
The name of the item.
Definition share_responses.hpp:388
NFS properties. Note that these properties only apply to files or directories in premium NFS file acc...
Definition share_options.hpp:123
Response type for Azure::Storage::Files::Shares::ShareFileClient::GetProperties.
Definition share_responses.hpp:446
Nullable< std::string > CopyStatusDescription
Definition share_responses.hpp:484
Azure::ETag ETag
Definition share_responses.hpp:473
FilePosixProperties PosixProperties
Definition share_responses.hpp:527
Nullable< std::string > CopyProgress
Definition share_responses.hpp:495
Core::CaseInsensitiveMap Metadata
Definition share_responses.hpp:463
DateTime LastModified
Definition share_responses.hpp:459
FileHttpHeaders HttpHeaders
Definition share_responses.hpp:454
Nullable< DateTime > CopyCompletedOn
Definition share_responses.hpp:479
Nullable< std::string > CopySource
Definition share_responses.hpp:500
std::int64_t FileSize
Definition share_responses.hpp:468
Nullable< std::string > CopyId
Definition share_responses.hpp:489
Nullable< Models::LeaseStatus > LeaseStatus
Definition share_responses.hpp:523
Nullable< Models::LeaseState > LeaseState
Definition share_responses.hpp:519
FileSmbProperties SmbProperties
Definition share_responses.hpp:450
Nullable< Models::CopyStatus > CopyStatus
Definition share_responses.hpp:504
bool IsServerEncrypted
Definition share_responses.hpp:511
Nullable< LeaseDurationType > LeaseDuration
Definition share_responses.hpp:515
The SMB related properties for the file.
Definition rest_client.hpp:1060
The information returned when forcing the directory handles to close.
Definition share_responses.hpp:27
The information returned when forcing a file handle to close.
Definition share_responses.hpp:202
A listed Azure Storage handle item.
Definition share_responses.hpp:399
std::string ClientName
Definition share_responses.hpp:427
std::string SessionId
Definition share_responses.hpp:419
DateTime LastReconnectedOn
Definition share_responses.hpp:435
std::string Path
Definition share_responses.hpp:407
std::string ParentId
Definition share_responses.hpp:415
std::string ClientIp
Definition share_responses.hpp:423
std::string FileId
Definition share_responses.hpp:411
Azure::Nullable< ShareFileHandleAccessRights > AccessRights
Definition share_responses.hpp:439
std::string HandleId
Definition share_responses.hpp:403
DateTime OpenedOn
Definition share_responses.hpp:431
Response type for Azure::Storage::Files::Shares::ShareLeaseClient::Release.
Definition share_responses.hpp:241
DateTime LastModified
Definition share_responses.hpp:252
Azure::ETag ETag
Definition share_responses.hpp:246
Response type for Azure::Storage::Files::Shares::ShareLeaseClient::Renew.
Definition share_responses.hpp:279
DateTime LastModified
Definition share_responses.hpp:290
Azure::ETag ETag
Definition share_responses.hpp:284
std::string LeaseId
Definition share_responses.hpp:294
Response type for Azure::Storage::Files::Shares::ShareDirectoryClient::SetProperties.
Definition share_responses.hpp:695
DateTime LastModified
Definition share_responses.hpp:709
FileSmbProperties SmbProperties
Definition share_responses.hpp:699
FilePosixProperties PosixProperties
Definition share_responses.hpp:718
Azure::ETag ETag
Definition share_responses.hpp:703
Response type for Azure::Storage::Files::Shares::ShareFileClient::SetProperties.
Definition share_responses.hpp:568
bool IsServerEncrypted
Definition share_responses.hpp:587
FilePosixProperties PosixProperties
Definition share_responses.hpp:591
FileSmbProperties SmbProperties
Definition share_responses.hpp:572
DateTime LastModified
Definition share_responses.hpp:582
Azure::ETag ETag
Definition share_responses.hpp:576
The information returned when uploading a file from a source.
Definition share_responses.hpp:209
bool IsServerEncrypted
Definition share_responses.hpp:213