change protected to private (#1315)

This commit is contained in:
JinmingHu 2021-01-12 11:35:45 +08:00 committed by GitHub
parent 99a6ec5395
commit 7d377f5290
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -324,13 +324,12 @@ namespace Azure { namespace Storage { namespace Blobs {
Azure::Core::Response<Models::BreakBlobContainerLeaseResult> BreakLease(
const BreakBlobContainerLeaseOptions& options = BreakBlobContainerLeaseOptions()) const;
protected:
private:
Azure::Core::Http::Url m_blobContainerUrl;
std::shared_ptr<Azure::Core::Http::HttpPipeline> m_pipeline;
Azure::Core::Nullable<EncryptionKey> m_customerProvidedKey;
Azure::Core::Nullable<std::string> m_encryptionScope;
private:
explicit BlobContainerClient(
Azure::Core::Http::Url blobContainerUrl,
std::shared_ptr<Azure::Core::Http::HttpPipeline> pipeline,

View File

@ -179,7 +179,7 @@ namespace Azure { namespace Storage { namespace Blobs {
const std::string& tagFilterSqlExpression,
const FindBlobsByTagsSinglePageOptions& options = FindBlobsByTagsSinglePageOptions()) const;
protected:
private:
Azure::Core::Http::Url m_serviceUrl;
std::shared_ptr<Azure::Core::Http::HttpPipeline> m_pipeline;
Azure::Core::Nullable<EncryptionKey> m_customerProvidedKey;