6#include "azure/storage/files/shares/share_options.hpp"
7#include "azure/storage/files/shares/share_responses.hpp"
8#include "azure/storage/files/shares/share_service_client.hpp"
10#include <azure/core/response.hpp>
11#include <azure/storage/common/storage_credential.hpp>
16namespace Azure {
namespace Storage {
namespace Files {
namespace Shares {
18 class ShareDirectoryClient;
34 const std::string& connectionString,
35 const std::string& shareName,
45 const std::string& shareUrl,
46 std::shared_ptr<StorageSharedKeyCredential> credential,
56 const std::string& shareUrl,
57 std::shared_ptr<Core::Credentials::TokenCredential> credential,
67 const std::string& shareUrl,
75 std::string
GetUrl()
const {
return m_shareUrl.GetAbsoluteUrl(); }
101 Azure::Response<Models::CreateShareResult>
Create(
103 const Azure::Core::Context& context = Azure::Core::Context())
const;
115 const Azure::Core::Context& context = Azure::Core::Context())
const;
124 Azure::Response<Models::DeleteShareResult>
Delete(
126 const Azure::Core::Context& context = Azure::Core::Context())
const;
137 const Azure::Core::Context& context = Azure::Core::Context())
const;
148 const Azure::Core::Context& context = Azure::Core::Context())
const;
159 const Azure::Core::Context& context = Azure::Core::Context())
const;
170 const Azure::Core::Context& context = Azure::Core::Context())
const;
181 Storage::Metadata metadata,
183 const Azure::Core::Context& context = Azure::Core::Context())
const;
194 const Azure::Core::Context& context = Azure::Core::Context())
const;
205 const std::vector<Models::SignedIdentifier>& accessPolicy,
207 const Azure::Core::Context& context = Azure::Core::Context())
const;
218 const Azure::Core::Context& context = Azure::Core::Context())
const;
229 const std::string& permission,
231 const Azure::Core::Context& context = Azure::Core::Context())
const;
241 const std::string& permissionKey,
243 const Azure::Core::Context& context = Azure::Core::Context())
const;
246 Azure::Core::Url m_shareUrl;
247 std::shared_ptr<Azure::Core::Http::_internal::HttpPipeline> m_pipeline;
248 Nullable<bool> m_allowTrailingDot;
249 Nullable<bool> m_allowSourceTrailingDot;
250 Nullable<Models::ShareTokenIntent> m_shareTokenIntent;
253 Azure::Core::Url shareUrl,
254 std::shared_ptr<Azure::Core::Http::_internal::HttpPipeline> pipeline)
255 : m_shareUrl(std::move(shareUrl)), m_pipeline(std::move(pipeline))
The ShareClient allows you to manipulate Azure Storage shares and their directories and files.
Definition share_client.hpp:24
Azure::Response< Models::SetSharePropertiesResult > SetProperties(const SetSharePropertiesOptions &options=SetSharePropertiesOptions(), const Azure::Core::Context &context=Azure::Core::Context()) const
Sets the properties of the share.
Azure::Response< Models::SetShareMetadataResult > SetMetadata(Storage::Metadata metadata, const SetShareMetadataOptions &options=SetShareMetadataOptions(), const Azure::Core::Context &context=Azure::Core::Context()) const
Sets the metadata to the share.
Azure::Response< std::string > GetPermission(const std::string &permissionKey, const GetSharePermissionOptions &options=GetSharePermissionOptions(), const Azure::Core::Context &context=Azure::Core::Context()) const
Gets the permission of the share using the specific key.
Azure::Response< Models::CreateShareResult > Create(const CreateShareOptions &options=CreateShareOptions(), const Azure::Core::Context &context=Azure::Core::Context()) const
Creates the file share.
ShareClient WithSnapshot(const std::string &snapshot) const
Initializes a new instance of the ShareClient class with an identical URL source but the specified sh...
Azure::Response< Models::ShareProperties > GetProperties(const GetSharePropertiesOptions &options=GetSharePropertiesOptions(), const Azure::Core::Context &context=Azure::Core::Context()) const
Gets the properties of the share.
Azure::Response< Models::ShareAccessPolicy > GetAccessPolicy(const GetShareAccessPolicyOptions &options=GetShareAccessPolicyOptions(), const Azure::Core::Context &context=Azure::Core::Context()) const
Gets the access policy of the share.
ShareClient(const std::string &shareUrl, std::shared_ptr< StorageSharedKeyCredential > credential, const ShareClientOptions &options=ShareClientOptions())
Initialize a new instance of ShareClient using shared key authentication.
Azure::Response< Models::CreateShareResult > CreateIfNotExists(const CreateShareOptions &options=CreateShareOptions(), const Azure::Core::Context &context=Azure::Core::Context()) const
Creates the file share if it does not exist, nothing will happen if the file share already exists.
ShareClient(const std::string &shareUrl, std::shared_ptr< Core::Credentials::TokenCredential > credential, const ShareClientOptions &options=ShareClientOptions())
Initialize a new instance of ShareClient using shared key authentication.
Azure::Response< Models::CreateSharePermissionResult > CreatePermission(const std::string &permission, const CreateSharePermissionOptions &options=CreateSharePermissionOptions(), const Azure::Core::Context &context=Azure::Core::Context()) const
Creates a permission on the share.
ShareDirectoryClient GetRootDirectoryClient() const
Gets the ShareDirectoryClient that's pointing to the root directory of current ShareClient.
Azure::Response< Models::ShareStatistics > GetStatistics(const GetShareStatisticsOptions &options=GetShareStatisticsOptions(), const Azure::Core::Context &context=Azure::Core::Context()) const
Gets the stats of the share.
Azure::Response< Models::DeleteShareResult > DeleteIfExists(const DeleteShareOptions &options=DeleteShareOptions(), const Azure::Core::Context &context=Azure::Core::Context()) const
Deletes the file share if it exists.
std::string GetUrl() const
Gets the share's primary URL endpoint.
Definition share_client.hpp:75
Azure::Response< Models::DeleteShareResult > Delete(const DeleteShareOptions &options=DeleteShareOptions(), const Azure::Core::Context &context=Azure::Core::Context()) const
Deletes the file share.
Azure::Response< Models::SetShareAccessPolicyResult > SetAccessPolicy(const std::vector< Models::SignedIdentifier > &accessPolicy, const SetShareAccessPolicyOptions &options=SetShareAccessPolicyOptions(), const Azure::Core::Context &context=Azure::Core::Context()) const
Sets the access policy of the share.
ShareClient(const std::string &shareUrl, const ShareClientOptions &options=ShareClientOptions())
Initialize a new instance of ShareClient using anonymous access or shared access signature.
Azure::Response< Models::CreateShareSnapshotResult > CreateSnapshot(const CreateShareSnapshotOptions &options=CreateShareSnapshotOptions(), const Azure::Core::Context &context=Azure::Core::Context()) const
Creates a snapshot for the share.
static ShareClient CreateFromConnectionString(const std::string &connectionString, const std::string &shareName, const ShareClientOptions &options=ShareClientOptions())
Create A ShareClient from connection string to manage a File Share resource.
The ShareDirectoryClient allows you to manipulate Azure Storage shares and their directories and file...
Definition share_directory_client.hpp:25
ShareLeaseClient allows you to manipulate Azure Storage leases on shares and files.
Definition share_lease_client.hpp:18
The ShareServiceClient allows you to manipulate Azure Storage shares and their directories and files.
Definition share_service_client.hpp:24
Optional parameters for Azure::Storage::Files::Shares::ShareClient::Create.
Definition share_options.hpp:352
Optional parameters for Azure::Storage::Files::Shares::ShareClient::CreatePermission.
Definition share_options.hpp:542
Optional parameters for Azure::Storage::Files::Shares::ShareClient::CreateSnapshot.
Definition share_options.hpp:435
Optional parameters for Azure::Storage::Files::Shares::ShareClient::Delete.
Definition share_options.hpp:424
Optional parameters for Azure::Storage::Files::Shares::ShareClient::GetAccessPolicy.
Definition share_options.hpp:521
Optional parameters for Azure::Storage::Files::Shares::ShareClient::GetPermission.
Definition share_options.hpp:556
Optional parameters for Azure::Storage::Files::Shares::ShareClient::GetProperties.
Definition share_options.hpp:446
Optional parameters for Azure::Storage::Files::Shares::ShareClient::GetStatistics.
Definition share_options.hpp:535
Optional parameters for Azure::Storage::Files::Shares::ShareClient::SetAccessPolicy.
Definition share_options.hpp:528
Optional parameters for Azure::Storage::Files::Shares::ShareClient::SetProperties.
Definition share_options.hpp:453
Client options used to initialize share clients.
Definition share_options.hpp:265