diff --git a/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_options.hpp b/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_options.hpp index f885e0f8e..7b48658a1 100644 --- a/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_options.hpp +++ b/sdk/storage/azure-storage-blobs/inc/azure/storage/blobs/blob_options.hpp @@ -503,7 +503,7 @@ namespace Azure { namespace Storage { namespace Blobs { * available before the break period has expired, but the lease may be held for longer than the * break period. */ - Azure::Core::Nullable breakPeriod; + Azure::Core::Nullable BreakPeriod; }; /** @@ -879,7 +879,7 @@ namespace Azure { namespace Storage { namespace Blobs { * available before the break period has expired, but the lease may be held for longer than the * break period. */ - Azure::Core::Nullable breakPeriod; + Azure::Core::Nullable BreakPeriod; }; /** diff --git a/sdk/storage/azure-storage-blobs/src/blob_client.cpp b/sdk/storage/azure-storage-blobs/src/blob_client.cpp index 1917501da..728d9f59a 100644 --- a/sdk/storage/azure-storage-blobs/src/blob_client.cpp +++ b/sdk/storage/azure-storage-blobs/src/blob_client.cpp @@ -695,7 +695,7 @@ namespace Azure { namespace Storage { namespace Blobs { const BreakBlobLeaseOptions& options) const { BlobRestClient::Blob::BreakBlobLeaseOptions protocolLayerOptions; - protocolLayerOptions.BreakPeriod = options.breakPeriod; + protocolLayerOptions.BreakPeriod = options.BreakPeriod; protocolLayerOptions.IfModifiedSince = options.IfModifiedSince; protocolLayerOptions.IfUnmodifiedSince = options.IfUnmodifiedSince; protocolLayerOptions.IfMatch = options.IfMatch; diff --git a/sdk/storage/azure-storage-blobs/src/blob_container_client.cpp b/sdk/storage/azure-storage-blobs/src/blob_container_client.cpp index dfdeccf5a..adcd65dc3 100644 --- a/sdk/storage/azure-storage-blobs/src/blob_container_client.cpp +++ b/sdk/storage/azure-storage-blobs/src/blob_container_client.cpp @@ -323,7 +323,7 @@ namespace Azure { namespace Storage { namespace Blobs { const BreakContainerLeaseOptions& options) const { BlobRestClient::Container::BreakContainerLeaseOptions protocolLayerOptions; - protocolLayerOptions.BreakPeriod = options.breakPeriod; + protocolLayerOptions.BreakPeriod = options.BreakPeriod; protocolLayerOptions.IfModifiedSince = options.IfModifiedSince; protocolLayerOptions.IfUnmodifiedSince = options.IfUnmodifiedSince; return BlobRestClient::Container::BreakLease( diff --git a/sdk/storage/azure-storage-blobs/test/blob_container_client_test.cpp b/sdk/storage/azure-storage-blobs/test/blob_container_client_test.cpp index 451f94fbb..5735590d7 100644 --- a/sdk/storage/azure-storage-blobs/test/blob_container_client_test.cpp +++ b/sdk/storage/azure-storage-blobs/test/blob_container_client_test.cpp @@ -427,7 +427,7 @@ namespace Azure { namespace Storage { namespace Test { EXPECT_NE(brokenLease.LeaseTime, 0); Blobs::BreakContainerLeaseOptions options; - options.breakPeriod = 0; + options.BreakPeriod = 0; m_blobContainerClient->BreakLease(options); } diff --git a/sdk/storage/azure-storage-blobs/test/page_blob_client_test.cpp b/sdk/storage/azure-storage-blobs/test/page_blob_client_test.cpp index d1dbce123..c9a0264a2 100644 --- a/sdk/storage/azure-storage-blobs/test/page_blob_client_test.cpp +++ b/sdk/storage/azure-storage-blobs/test/page_blob_client_test.cpp @@ -205,7 +205,7 @@ namespace Azure { namespace Storage { namespace Test { EXPECT_NE(brokenLease.LeaseTime, 0); Blobs::BreakBlobLeaseOptions options; - options.breakPeriod = 0; + options.BreakPeriod = 0; m_pageBlobClient->BreakLease(options); } diff --git a/sdk/storage/azure-storage-files-datalake/test/datalake_path_client_test.cpp b/sdk/storage/azure-storage-files-datalake/test/datalake_path_client_test.cpp index dc268d335..3f236dad0 100644 --- a/sdk/storage/azure-storage-files-datalake/test/datalake_path_client_test.cpp +++ b/sdk/storage/azure-storage-files-datalake/test/datalake_path_client_test.cpp @@ -276,14 +276,14 @@ namespace Azure { namespace Storage { namespace Test { aLease = *m_pathClient->AcquireLease(CreateUniqueLeaseId(), leaseDuration); Files::DataLake::BreakPathLeaseOptions breakOptions; - breakOptions.breakPeriod = 30; + breakOptions.BreakPeriod = 30; brokenLease = *m_pathClient->BreakLease(breakOptions); EXPECT_FALSE(brokenLease.ETag.empty()); EXPECT_FALSE(brokenLease.LastModified.empty()); EXPECT_NE(brokenLease.LeaseTime, 0); Files::DataLake::BreakPathLeaseOptions options; - options.breakPeriod = 0; + options.BreakPeriod = 0; m_pathClient->BreakLease(options); } }}} // namespace Azure::Storage::Test