From 6c8a0b15343eb3e704d73f105d32ebdd8ece60c5 Mon Sep 17 00:00:00 2001 From: Tamer Sherif Date: Wed, 7 Oct 2020 22:18:45 -0700 Subject: [PATCH 01/11] added access tiers --- .../azure/storage/fileshare/__init__.py | 4 +- .../azure/storage/fileshare/_models.py | 4 ++ .../azure/storage/fileshare/_share_client.py | 52 +++++++++++++++++++ .../fileshare/aio/_share_client_async.py | 51 ++++++++++++++++++ .../samples/file_samples_share.py | 41 ++++++++++++--- .../samples/file_samples_share_async.py | 29 +++++++++++ 6 files changed, 173 insertions(+), 8 deletions(-) diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/__init__.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/__init__.py index 7c838c1d1707..d5a1b769973a 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/__init__.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/__init__.py @@ -34,7 +34,8 @@ ContentSettings, NTFSAttributes) from ._generated.models import ( - HandleItem + HandleItem, + ShareAccessTier ) __version__ = VERSION @@ -56,6 +57,7 @@ 'RetentionPolicy', 'CorsRule', 'ShareSmbSettings', + 'ShareAccessTier', 'SmbMultichannel', 'ShareProtocolSettings', 'AccessPolicy', diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py index 5a96c48a6d82..b8a1b050013f 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py @@ -308,6 +308,8 @@ class ShareProperties(DictMixin): conditionally. :ivar int quota: The allocated quota. + :ivar str access_tier: + The share's tier. :ivar dict metadata: A dict with name_value pairs to associate with the share as metadata. :ivar str snapshot: @@ -331,6 +333,7 @@ def __init__(self, **kwargs): self.last_modified = kwargs.get('Last-Modified') self.etag = kwargs.get('ETag') self.quota = kwargs.get('x-ms-share-quota') + self.access_tier = kwargs.get('x-ms-access-tier') self.next_allowed_quota_downgrade_time = kwargs.get('x-ms-share-next-allowed-quota-downgrade-time') self.metadata = kwargs.get('metadata') self.snapshot = None @@ -350,6 +353,7 @@ def _from_generated(cls, generated): props.last_modified = generated.properties.last_modified props.etag = generated.properties.etag props.quota = generated.properties.quota + props.access_tier = generated.properties.access_tier props.next_allowed_quota_downgrade_time = generated.properties.next_allowed_quota_downgrade_time props.metadata = generated.metadata props.snapshot = generated.snapshot diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py index 6f18739a2238..c2251f75f689 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py @@ -22,6 +22,7 @@ return_response_headers, process_storage_error, return_headers_and_deserialized) +from ._generated.models import ShareAccessTier from ._generated import AzureFileStorage from ._generated.version import VERSION from ._generated.models import ( @@ -305,6 +306,13 @@ def create_share(self, **kwargs): Name-value pairs associated with the share as metadata. :keyword int quota: The quota to be allotted. + :keyword access_tier: + Specifies the access tier of the share. + Possible values: 'TransactionOptimized', 'Hot', 'Cool' + :paramtype access_tier: str or ~azure.storage.fileshare.models.ShareAccessTier + + .. versionadded:: 12.6.0 + :keyword int timeout: The timeout parameter is expressed in seconds. :returns: Share-updated property dict (Etag and last modified). @@ -321,6 +329,7 @@ def create_share(self, **kwargs): """ metadata = kwargs.pop('metadata', None) quota = kwargs.pop('quota', None) + access_tier = kwargs.pop('access_tier', None) timeout = kwargs.pop('timeout', None) headers = kwargs.pop('headers', {}) headers.update(add_metadata_headers(metadata)) # type: ignore @@ -330,6 +339,7 @@ def create_share(self, **kwargs): timeout=timeout, metadata=metadata, quota=quota, + access_tier=access_tier, cls=return_response_headers, headers=headers, **kwargs) @@ -504,6 +514,48 @@ def set_share_quota(self, quota, **kwargs): return self._client.share.set_properties( # type: ignore timeout=timeout, quota=quota, + access_tier= None, + lease_access_conditions=access_conditions, + cls=return_response_headers, + **kwargs) + except StorageErrorException as error: + process_storage_error(error) + + @distributed_trace + def set_share_tier(self, access_tier, **kwargs): + # type: (Union[str, ShareAccessTier], Any) -> Dict[str, Any] + """Sets the tier for the share. + + .. versionadded:: 12.6.0 + + :param int access_tier: + Specifies the access tier of the share. + Possible values: 'TransactionOptimized', 'Hot', 'Cool' + :type access_tier: str or ~azure.storage.fileshare.models.ShareAccessTier + :keyword int timeout: + The timeout parameter is expressed in seconds. + :keyword lease: + Required if the share has an active lease. Value can be a ShareLeaseClient object + or the lease ID as a string. + :returns: Share-updated property dict (Etag and last modified). + :rtype: dict(str, Any) + + .. admonition:: Example: + + .. literalinclude:: ../samples/file_samples_share.py + :start-after: [START set_share_tier] + :end-before: [END set_share_tier] + :language: python + :dedent: 12 + :caption: Sets the share quota. + """ + access_conditions = get_access_conditions(kwargs.pop('lease', None)) + timeout = kwargs.pop('timeout', None) + try: + return self._client.share.set_properties( # type: ignore + timeout=timeout, + quota=None, + access_tier=access_tier, lease_access_conditions=access_conditions, cls=return_response_headers, **kwargs) diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py index 1803443d2f6d..4f9e3c05d065 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py @@ -18,6 +18,7 @@ return_response_headers, process_storage_error, return_headers_and_deserialized) +from .._generated.models import ShareAccessTier from .._generated.aio import AzureFileStorage from .._generated.version import VERSION from .._generated.models import ( @@ -176,6 +177,13 @@ async def create_share(self, **kwargs): Name-value pairs associated with the share as metadata. :keyword int quota: The quota to be allotted. + :keyword access_tier: + Specifies the access tier of the share. + Possible values: 'TransactionOptimized', 'Hot', 'Cool' + :paramtype access_tier: str or ~azure.storage.fileshare.models.ShareAccessTier + + .. versionadded:: 12.6.0 + :keyword int timeout: The timeout parameter is expressed in seconds. :returns: Share-updated property dict (Etag and last modified). @@ -192,6 +200,7 @@ async def create_share(self, **kwargs): """ metadata = kwargs.pop('metadata', None) quota = kwargs.pop('quota', None) + access_tier = kwargs.pop('access_tier', None) timeout = kwargs.pop('timeout', None) headers = kwargs.pop('headers', {}) headers.update(add_metadata_headers(metadata)) # type: ignore @@ -201,6 +210,7 @@ async def create_share(self, **kwargs): timeout=timeout, metadata=metadata, quota=quota, + access_tier=access_tier, cls=return_response_headers, headers=headers, **kwargs) @@ -374,6 +384,47 @@ async def set_share_quota(self, quota, **kwargs): return await self._client.share.set_properties( # type: ignore timeout=timeout, quota=quota, + access_tier=None, + cls=return_response_headers, + lease_access_conditions=access_conditions, + **kwargs) + except StorageErrorException as error: + process_storage_error(error) + + async def set_share_tier(self, access_tier, **kwargs): + # type: (Union[str, ShareAccessTier], Any) -> Dict[str, Any] + """Sets the tier for the share. + + .. versionadded:: 12.6.0 + + :param int access_tier: + Specifies the access tier of the share. + Possible values: 'TransactionOptimized', 'Hot', 'Cool' + :type access_tier: str or ~azure.storage.fileshare.models.ShareAccessTier + :keyword int timeout: + The timeout parameter is expressed in seconds. + :keyword lease: + Required if the share has an active lease. Value can be a ShareLeaseClient object + or the lease ID as a string. + :returns: Share-updated property dict (Etag and last modified). + :rtype: dict(str, Any) + + .. admonition:: Example: + + .. literalinclude:: ../samples/file_samples_share_async.py + :start-after: [START set_share_quota] + :end-before: [END set_share_quota] + :language: python + :dedent: 16 + :caption: Sets the share quota. + """ + access_conditions = get_access_conditions(kwargs.pop('lease', None)) + timeout = kwargs.pop('timeout', None) + try: + return await self._client.share.set_properties( # type: ignore + timeout=timeout, + quota=None, + access_tier=access_tier, cls=return_response_headers, lease_access_conditions=access_conditions, **kwargs) diff --git a/sdk/storage/azure-storage-file-share/samples/file_samples_share.py b/sdk/storage/azure-storage-file-share/samples/file_samples_share.py index ec915500b825..00938b311799 100644 --- a/sdk/storage/azure-storage-file-share/samples/file_samples_share.py +++ b/sdk/storage/azure-storage-file-share/samples/file_samples_share.py @@ -22,6 +22,7 @@ """ import os +from azure.storage.fileshare import ShareAccessTier SOURCE_FILE = './SampleSource.txt' DEST_FILE = './SampleDestination.txt' @@ -75,10 +76,35 @@ def set_share_quota_and_metadata(self): # Delete the share share.delete_share() + def set_share_tier(self): + from azure.storage.fileshare import ShareClient + share1 = ShareClient.from_connection_string(self.connection_string, "sharesamples3a") + share2 = ShareClient.from_connection_string(self.connection_string, "sharesamples3b") + + # Create the share + share1.create_share() + share2.create_share() + + try: + # [START set_share_tier] + # Set the tier for the first share to Hot + share1.set_share_tier(access_tier="Hot") + # Set the tier for the second share to Hot + share2.set_share_tier(access_tier=ShareAccessTier("Cool")) + # Get the shares' properties + print(share1.get_share_properties().access_tier) + print(share2.get_share_properties().access_tier) + # [END set_share_tier] + + finally: + # Delete the shares + share1.delete_share() + share2.delete_share() + def list_directories_and_files(self): # Instantiate the ShareClient from a connection string from azure.storage.fileshare import ShareClient - share = ShareClient.from_connection_string(self.connection_string, "sharesamples3") + share = ShareClient.from_connection_string(self.connection_string, "sharesamples4") # Create the share share.create_share() @@ -103,7 +129,7 @@ def list_directories_and_files(self): def get_directory_or_file_client(self): # Instantiate the ShareClient from a connection string from azure.storage.fileshare import ShareClient - share = ShareClient.from_connection_string(self.connection_string, "sharesamples4") + share = ShareClient.from_connection_string(self.connection_string, "sharesamples5") # Get the directory client to interact with a specific directory my_dir = share.get_directory_client("dir1") @@ -129,8 +155,9 @@ def acquire_share_lease(self): if __name__ == '__main__': sample = ShareSamples() - sample.create_share_snapshot() - sample.set_share_quota_and_metadata() - sample.list_directories_and_files() - sample.get_directory_or_file_client() - sample.acquire_share_lease() + # sample.create_share_snapshot() + # sample.set_share_quota_and_metadata() + sample.set_share_tier() + # sample.list_directories_and_files() + # sample.get_directory_or_file_client() + # sample.acquire_share_lease() diff --git a/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py b/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py index a29e7335099c..5b7da0117503 100644 --- a/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py +++ b/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py @@ -23,6 +23,7 @@ import os import asyncio +from azure.storage.fileshare import ShareAccessTier SOURCE_FILE = './SampleSource.txt' DEST_FILE = './SampleDestination.txt' @@ -78,6 +79,33 @@ async def set_share_quota_and_metadata_async(self): # Delete the share await share.delete_share() + async def set_share_tier(self): + from azure.storage.fileshare.aio import ShareClient + share1 = ShareClient.from_connection_string(self.connection_string, "sharesamples3a") + share2 = ShareClient.from_connection_string(self.connection_string, "sharesamples3b") + + # Create the share + await share1.create_share() + await share2.create_share() + + try: + # [START set_share_tier] + # Set the tier for the first share to Hot + await share1.set_share_tier(access_tier="Hot") + # Set the tier for the second share to Hot + await share2.set_share_tier(access_tier=ShareAccessTier("Cool")) + # Get the shares' properties + props1 = await share1.get_share_properties() + print(props1.access_tier) + props2 = await share2.get_share_properties() + print(props2.access_tier) + # [END set_share_tier] + + finally: + # Delete the shares + await share1.delete_share() + await share2.delete_share() + async def list_directories_and_files_async(self): # Instantiate the ShareClient from a connection string from azure.storage.fileshare.aio import ShareClient @@ -122,6 +150,7 @@ async def main(): sample = ShareSamplesAsync() await sample.create_share_snapshot_async() await sample.set_share_quota_and_metadata_async() + await sample.set_share_tier() await sample.list_directories_and_files_async() await sample.get_directory_or_file_client_async() From 0b0c4a9830cd4949b38f17421874085adc1c8d7f Mon Sep 17 00:00:00 2001 From: Tamer Sherif Date: Wed, 7 Oct 2020 22:27:14 -0700 Subject: [PATCH 02/11] fixed async sample --- .../azure/storage/fileshare/_share_client.py | 2 +- .../fileshare/aio/_share_client_async.py | 6 +-- .../samples/file_samples_share_async.py | 53 ++++++++++--------- 3 files changed, 31 insertions(+), 30 deletions(-) diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py index c2251f75f689..6fe62869eab0 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py @@ -547,7 +547,7 @@ def set_share_tier(self, access_tier, **kwargs): :end-before: [END set_share_tier] :language: python :dedent: 12 - :caption: Sets the share quota. + :caption: Sets the share tier. """ access_conditions = get_access_conditions(kwargs.pop('lease', None)) timeout = kwargs.pop('timeout', None) diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py index 4f9e3c05d065..f4bd4c59958f 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py @@ -412,11 +412,11 @@ async def set_share_tier(self, access_tier, **kwargs): .. admonition:: Example: .. literalinclude:: ../samples/file_samples_share_async.py - :start-after: [START set_share_quota] - :end-before: [END set_share_quota] + :start-after: [START set_share_tier] + :end-before: [END set_share_tier] :language: python :dedent: 16 - :caption: Sets the share quota. + :caption: Sets the share tier. """ access_conditions = get_access_conditions(kwargs.pop('lease', None)) timeout = kwargs.pop('timeout', None) diff --git a/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py b/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py index 5b7da0117503..6a6b7376d523 100644 --- a/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py +++ b/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py @@ -85,31 +85,32 @@ async def set_share_tier(self): share2 = ShareClient.from_connection_string(self.connection_string, "sharesamples3b") # Create the share - await share1.create_share() - await share2.create_share() - - try: - # [START set_share_tier] - # Set the tier for the first share to Hot - await share1.set_share_tier(access_tier="Hot") - # Set the tier for the second share to Hot - await share2.set_share_tier(access_tier=ShareAccessTier("Cool")) - # Get the shares' properties - props1 = await share1.get_share_properties() - print(props1.access_tier) - props2 = await share2.get_share_properties() - print(props2.access_tier) - # [END set_share_tier] - - finally: - # Delete the shares - await share1.delete_share() - await share2.delete_share() + async with share1 and share2: + await share1.create_share() + await share2.create_share() + + try: + # [START set_share_tier] + # Set the tier for the first share to Hot + await share1.set_share_tier(access_tier="Hot") + # Set the tier for the second share to Hot + await share2.set_share_tier(access_tier=ShareAccessTier("Cool")) + # Get the shares' properties + props1 = await share1.get_share_properties() + print(props1.access_tier) + props2 = await share2.get_share_properties() + print(props2.access_tier) + # [END set_share_tier] + + finally: + # Delete the shares + await share1.delete_share() + await share2.delete_share() async def list_directories_and_files_async(self): # Instantiate the ShareClient from a connection string from azure.storage.fileshare.aio import ShareClient - share = ShareClient.from_connection_string(self.connection_string, "sharesamples3") + share = ShareClient.from_connection_string(self.connection_string, "sharesamples4") # Create the share async with share: @@ -137,7 +138,7 @@ async def list_directories_and_files_async(self): async def get_directory_or_file_client_async(self): # Instantiate the ShareClient from a connection string from azure.storage.fileshare.aio import ShareClient - share = ShareClient.from_connection_string(self.connection_string, "sharesamples4") + share = ShareClient.from_connection_string(self.connection_string, "sharesamples5") # Get the directory client to interact with a specific directory my_dir = share.get_directory_client("dir1") @@ -148,11 +149,11 @@ async def get_directory_or_file_client_async(self): async def main(): sample = ShareSamplesAsync() - await sample.create_share_snapshot_async() - await sample.set_share_quota_and_metadata_async() + # await sample.create_share_snapshot_async() + # await sample.set_share_quota_and_metadata_async() await sample.set_share_tier() - await sample.list_directories_and_files_async() - await sample.get_directory_or_file_client_async() + # await sample.list_directories_and_files_async() + # await sample.get_directory_or_file_client_async() if __name__ == '__main__': loop = asyncio.get_event_loop() From 49e07f6b76e92cde7b3967c27b3d96c149f95b62 Mon Sep 17 00:00:00 2001 From: Tamer Sherif Date: Wed, 7 Oct 2020 22:30:13 -0700 Subject: [PATCH 03/11] removed comments --- .../samples/file_samples_share.py | 10 +++++----- .../samples/file_samples_share_async.py | 8 ++++---- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/sdk/storage/azure-storage-file-share/samples/file_samples_share.py b/sdk/storage/azure-storage-file-share/samples/file_samples_share.py index 00938b311799..d64389f603d1 100644 --- a/sdk/storage/azure-storage-file-share/samples/file_samples_share.py +++ b/sdk/storage/azure-storage-file-share/samples/file_samples_share.py @@ -155,9 +155,9 @@ def acquire_share_lease(self): if __name__ == '__main__': sample = ShareSamples() - # sample.create_share_snapshot() - # sample.set_share_quota_and_metadata() + sample.create_share_snapshot() + sample.set_share_quota_and_metadata() sample.set_share_tier() - # sample.list_directories_and_files() - # sample.get_directory_or_file_client() - # sample.acquire_share_lease() + sample.list_directories_and_files() + sample.get_directory_or_file_client() + sample.acquire_share_lease() diff --git a/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py b/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py index 6a6b7376d523..477ed33e8b06 100644 --- a/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py +++ b/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py @@ -149,11 +149,11 @@ async def get_directory_or_file_client_async(self): async def main(): sample = ShareSamplesAsync() - # await sample.create_share_snapshot_async() - # await sample.set_share_quota_and_metadata_async() + await sample.create_share_snapshot_async() + await sample.set_share_quota_and_metadata_async() await sample.set_share_tier() - # await sample.list_directories_and_files_async() - # await sample.get_directory_or_file_client_async() + await sample.list_directories_and_files_async() + await sample.get_directory_or_file_client_async() if __name__ == '__main__': loop = asyncio.get_event_loop() From dc9ed8f34d5653213980152588e3ebbbd70f42b1 Mon Sep 17 00:00:00 2001 From: Tamer Sherif Date: Wed, 7 Oct 2020 22:47:46 -0700 Subject: [PATCH 04/11] added sync test --- ...re.test_create_share_with_access_tier.yaml | 2589 ++++++++++++++++ .../test_share.test_set_share_properties.yaml | 2678 ++++++++++++++++- .../tests/test_share.py | 42 +- 3 files changed, 5266 insertions(+), 43 deletions(-) create mode 100644 sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_create_share_with_access_tier.yaml diff --git a/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_create_share_with_access_tier.yaml b/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_create_share_with_access_tier.yaml new file mode 100644 index 000000000000..4843d8f6f7ee --- /dev/null +++ b/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_create_share_with_access_tier.yaml @@ -0,0 +1,2589 @@ +interactions: +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-access-tier: + - Hot + x-ms-date: + - Thu, 08 Oct 2020 05:44:10 GMT + x-ms-version: + - '2020-02-10' + method: PUT + uri: https://storagename.file.core.windows.net/sharea6671265?restype=share + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 08 Oct 2020 05:44:10 GMT + etag: + - '"0x8D86B4D2E80AA52"' + last-modified: + - Thu, 08 Oct 2020 05:44:10 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-02-10' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:10 GMT + x-ms-version: + - '2020-02-10' + method: GET + uri: https://storagename.file.core.windows.net/sharea6671265?restype=share + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 08 Oct 2020 05:44:10 GMT + etag: + - '"0x8D86B4D2E80AA52"' + last-modified: + - Thu, 08 Oct 2020 05:44:10 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + vary: + - Origin + x-ms-access-tier: + - Hot + x-ms-access-tier-change-time: + - Thu, 08 Oct 2020 05:44:10 GMT + x-ms-has-immutability-policy: + - 'false' + x-ms-has-legal-hold: + - 'false' + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-share-quota: + - '5120' + x-ms-version: + - '2020-02-10' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/xml + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:11 GMT + x-ms-version: + - '2020-02-10' + method: GET + uri: https://storagename.file.core.windows.net/?include=snapshots&comp=list + response: + body: + string: "\uFEFFshare1816f1171Fri, + 11 Sep 2020 00:43:37 GMT\"0x8D855EBB87CFF33\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:43:37 GMT$account-encryption-keyfalseshare182b3117dFri, + 11 Sep 2020 00:44:44 GMT\"0x8D855EBE0710239\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:44:44 GMT$account-encryption-keyfalseshare336d1532Fri, + 11 Sep 2020 00:02:03 GMT\"0x8D855E5EA1BA89C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:02:03 GMT$account-encryption-keyfalseshare50ad1060Tue, + 29 Sep 2020 22:27:37 GMT\"0x8D864C6DE6E6B78\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:27:37 GMT$account-encryption-keyfalseshare602310dcThu, + 10 Sep 2020 23:45:57 GMT\"0x8D855E3AA5BA817\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:45:57 GMT$account-encryption-keyfalseshare801b1156Thu, + 10 Sep 2020 23:48:33 GMT\"0x8D855E4070545FC\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:48:33 GMT$account-encryption-keyfalsesharea6671265Thu, + 08 Oct 2020 05:44:10 GMT\"0x8D86B4D2E80AA52\"unlockedavailable5120HotThu, + 08 Oct 2020 05:44:10 GMT$account-encryption-keyfalsesharea7a1477Thu, + 10 Sep 2020 23:48:04 GMT\"0x8D855E3F609C583\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:48:04 GMT$account-encryption-keyfalseshareba3e12f12020-09-28T14:03:31.0000000ZMon, + 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"lockedleasedinfinite5120$account-encryption-keyfalseshareba3e12f1Mon, + 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"lockedleasedinfinite5120TransactionOptimizedMon, + 28 Sep 2020 14:03:31 GMT$account-encryption-keyfalsesharec80148eFri, + 11 Sep 2020 00:25:51 GMT\"0x8D855E93D722BB0\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:03:40 GMT$account-encryption-keyfalsesharecb2f1317Fri, + 11 Sep 2020 00:59:09 GMT\"0x8D855EDE422992F\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:59:09 GMT$account-encryption-keyfalsesharee121138eFri, + 11 Sep 2020 00:00:54 GMT\"0x8D855E5C0C0BD1C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:00:53 GMT$account-encryption-keyfalsesharee52d0d77Thu, + 10 Sep 2020 23:47:27 GMT\"0x8D855E3DFBB5CB3\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:47:20 GMT$account-encryption-keyfalsesharerestorecb2f1317Thu, + 10 Sep 2020 22:44:32 GMT\"0x8D855DB159313DC\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 22:44:32 GMT$account-encryption-keyfalsesharesamples5Tue, + 15 Sep 2020 19:39:56 GMT\"0x8D859AF1FEB001F\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:39:55 GMT$account-encryption-keyfalsesharesamples6Tue, + 15 Sep 2020 19:43:57 GMT\"0x8D859AFAFBA3E88\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:43:57 GMT$account-encryption-keyfalsesharesamples7Tue, + 15 Sep 2020 19:44:49 GMT\"0x8D859AFCEB7CC2D\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:44:49 GMT$account-encryption-keyfalsesharetestTue, + 06 Oct 2020 00:55:02 GMT\"0x8D869927570DF94\"unlockedavailable5120TransactionOptimizedTue, + 06 Oct 2020 00:55:02 GMT$account-encryption-keyfalsetest-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7Wed, + 05 Aug 2020 19:06:51 GMT\"0x8D83972B5D1302D\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:51 GMT$account-encryption-keyfalsetest-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31Wed, + 05 Aug 2020 19:06:49 GMT\"0x8D83972B5025718\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:49 GMT$account-encryption-keyfalsetest-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3aWed, + 05 Aug 2020 17:24:15 GMT\"0x8D8396460C3E165\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:15 GMT$account-encryption-keyfalsetest-share-26ae488a-f23e-4b65-aa5b-f273d6179074Wed, + 05 Aug 2020 19:06:50 GMT\"0x8D83972B592F011\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-49d22d21-4363-478e-8f26-1357ef6bd183Wed, + 05 Aug 2020 17:24:21 GMT\"0x8D8396464063943\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:21 GMT$account-encryption-keyfalsetest-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680Wed, + 05 Aug 2020 17:24:17 GMT\"0x8D8396461D987E1\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604Wed, + 05 Aug 2020 17:24:19 GMT\"0x8D83964633A2718\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:19 GMT$account-encryption-keyfalsetest-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52Wed, + 05 Aug 2020 19:06:50 GMT\"0x8D83972B538E3FD\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-8903864e-96ec-44f5-8912-837a9f23cbb5Wed, + 05 Aug 2020 00:04:00 GMT\"0x8D838D30E563856\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 00:04:00 GMT$account-encryption-keyfalsetest-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67aWed, + 05 Aug 2020 17:24:18 GMT\"0x8D8396462815131\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-d5852df4-944a-48b9-8552-eea5bfd94b6bWed, + 05 Aug 2020 17:24:20 GMT\"0x8D8396463BD465A\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:20 GMT$account-encryption-keyfalsetest-share-fa7d1a1f-d065-4d58-bb12-a59f22106473Wed, + 05 Aug 2020 17:24:18 GMT\"0x8D839646251B45A\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-fcc35a78-e231-4233-a311-d48ee9bb2df7Wed, + 05 Aug 2020 17:24:16 GMT\"0x8D83964610EBC77\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest16185160bFri, + 11 Sep 2020 13:51:30 GMT\"0x8D85659C98711F1\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:51:30 GMT$account-encryption-keyfalsetest1bd1a12ddTue, + 29 Sep 2020 22:34:36 GMT\"0x8D864C7D8628CD4\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:34:36 GMT$account-encryption-keyfalsetest2bd1a12ddTue, + 29 Sep 2020 22:38:12 GMT\"0x8D864C858E9FC21\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:38:12 GMT$account-encryption-keyfalsetest403e0ff4Fri, + 11 Sep 2020 13:48:01 GMT\"0x8D856594D05BB2E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:48:01 GMT$account-encryption-keyfalsetest49161594Fri, + 11 Sep 2020 13:44:29 GMT\"0x8D85658CEB83E6D\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:44:29 GMT$account-encryption-keyfalsetest50ad1060Tue, + 29 Sep 2020 22:31:15 GMT\"0x8D864C760543D56\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:31:14 GMT$account-encryption-keyfalsetest600515ffFri, + 11 Sep 2020 13:52:29 GMT\"0x8D85659ECC7BFF5\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:52:29 GMT$account-encryption-keyfalsetest602310dcFri, + 11 Sep 2020 01:46:55 GMT\"0x8D855F490678FD9\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:46:55 GMT$account-encryption-keyfalsetest6185160bFri, + 11 Sep 2020 13:50:04 GMT\"0x8D85659960A4A9F\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:50:03 GMT$account-encryption-keyfalsetest801b1156Fri, + 11 Sep 2020 01:43:39 GMT\"0x8D855F41B7485A5\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:39 GMT$account-encryption-keyfalsetest816f1171Fri, + 11 Sep 2020 01:44:03 GMT\"0x8D855F429A8569E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:44:03 GMT$account-encryption-keyfalsetest82b3117dFri, + 11 Sep 2020 01:44:09 GMT\"0x8D855F42D9DFD7A\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:44:09 GMT$account-encryption-keyfalsetest8fc916f4Fri, + 11 Sep 2020 13:48:35 GMT\"0x8D8565961566D0E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:48:35 GMT$account-encryption-keyfalsetesta7a1477Fri, + 11 Sep 2020 01:42:27 GMT\"0x8D855F3F0B3CE4D\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:42:27 GMT$account-encryption-keyfalsetestcb2f1317Fri, + 11 Sep 2020 01:35:53 GMT\"0x8D855F305C89D8C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:35:53 GMT$account-encryption-keyfalsetestcf0d1359Fri, + 11 Sep 2020 13:46:53 GMT\"0x8D856592431D1AA\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:46:53 GMT$account-encryption-keyfalsetestdfa11382Fri, + 11 Sep 2020 01:43:51 GMT\"0x8D855F422BEA24C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:51 GMT$account-encryption-keyfalseteste121138eFri, + 11 Sep 2020 01:43:45 GMT\"0x8D855F41F52C3FB\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:45 GMT$account-encryption-keyfalseteste52d0d77Fri, + 11 Sep 2020 01:42:19 GMT\"0x8D855F3EC19CB5C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:42:19 GMT$account-encryption-keyfalsetestf3ff13d3Fri, + 11 Sep 2020 13:49:19 GMT\"0x8D856597B1CC145\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:49:19 GMT$account-encryption-keyfalsetestf55313eeFri, + 11 Sep 2020 13:53:58 GMT\"0x8D8565A21BA7745\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:53:58 GMT$account-encryption-keyfalsetestf69713faFri, + 11 Sep 2020 13:54:36 GMT\"0x8D8565A3813B91A\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:54:35 GMT$account-encryption-keyfalsetestsharecredTue, + 06 Oct 2020 00:53:39 GMT\"0x8D8699243F74EE6\"unlockedavailable5120TransactionOptimizedTue, + 06 Oct 2020 00:53:39 GMT$account-encryption-keyfalse" + headers: + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:10 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: + - chunked + vary: + - Origin + x-ms-version: + - '2020-02-10' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:11 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share1816f1171?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d22b-f01a-0030-6c36-9d640d000000\nTime:2020-10-08T05:44:11.5006879Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:10 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:11 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share182b3117d?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d22c-f01a-0030-6d36-9d640d000000\nTime:2020-10-08T05:44:11.6347827Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:10 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:11 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share336d1532?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d22e-f01a-0030-6f36-9d640d000000\nTime:2020-10-08T05:44:11.7438606Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:10 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:11 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share50ad1060?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d230-f01a-0030-7136-9d640d000000\nTime:2020-10-08T05:44:11.8679487Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:10 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:11 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share602310dc?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d231-f01a-0030-7236-9d640d000000\nTime:2020-10-08T05:44:11.9920369Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:11 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:11 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share801b1156?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d232-f01a-0030-7336-9d640d000000\nTime:2020-10-08T05:44:12.1171257Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:11 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:11 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharea6671265?restype=share + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 08 Oct 2020 05:44:11 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-02-10' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:12 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharea7a1477?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d234-f01a-0030-7536-9d640d000000\nTime:2020-10-08T05:44:12.3693044Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:11 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:12 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/shareba3e12f1?restype=share + response: + body: + string: "\uFEFFDeleteShareWhenSnapshotLeasedUnable + to delete share because one or more share snapshots have active leases. Release + the share snapshot leases or delete the share with the include-leased parameter + for x-ms-delete-snapshots.\nRequestId:e169d235-f01a-0030-7636-9d640d000000\nTime:2020-10-08T05:44:12.4873883Z" + headers: + content-length: + - '391' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:11 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - DeleteShareWhenSnapshotLeased + x-ms-version: + - '2020-02-10' + status: + code: 409 + message: Unable to delete share because one or more share snapshots have active + leases. Release the share snapshot leases or delete the share with the include-leased + parameter for x-ms-delete-snapshots. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:12 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/shareba3e12f1?restype=share + response: + body: + string: "\uFEFFDeleteShareWhenSnapshotLeasedUnable + to delete share because one or more share snapshots have active leases. Release + the share snapshot leases or delete the share with the include-leased parameter + for x-ms-delete-snapshots.\nRequestId:e169d236-f01a-0030-7736-9d640d000000\nTime:2020-10-08T05:44:12.6094754Z" + headers: + content-length: + - '391' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:11 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - DeleteShareWhenSnapshotLeased + x-ms-version: + - '2020-02-10' + status: + code: 409 + message: Unable to delete share because one or more share snapshots have active + leases. Release the share snapshot leases or delete the share with the include-leased + parameter for x-ms-delete-snapshots. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:12 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharec80148e?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d237-f01a-0030-7836-9d640d000000\nTime:2020-10-08T05:44:12.7395687Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:11 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:12 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharecb2f1317?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d238-f01a-0030-7936-9d640d000000\nTime:2020-10-08T05:44:12.8686595Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:11 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:12 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharee121138e?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d239-f01a-0030-7a36-9d640d000000\nTime:2020-10-08T05:44:13.0157635Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:12 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:12 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharee52d0d77?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d23a-f01a-0030-7b36-9d640d000000\nTime:2020-10-08T05:44:13.1488585Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:12 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:13 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharerestorecb2f1317?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d23c-f01a-0030-7c36-9d640d000000\nTime:2020-10-08T05:44:13.2779498Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:12 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:13 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharesamples5?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d23d-f01a-0030-7d36-9d640d000000\nTime:2020-10-08T05:44:13.4110443Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:12 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:13 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharesamples6?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d23e-f01a-0030-7e36-9d640d000000\nTime:2020-10-08T05:44:13.5391353Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:12 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:13 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharesamples7?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d23f-f01a-0030-7f36-9d640d000000\nTime:2020-10-08T05:44:13.6732309Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:12 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:13 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharetest?restype=share + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 08 Oct 2020 05:44:12 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-02-10' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:13 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d241-f01a-0030-0136-9d640d000000\nTime:2020-10-08T05:44:13.9394200Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:12 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:13 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d242-f01a-0030-0236-9d640d000000\nTime:2020-10-08T05:44:14.0555016Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:13 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:13 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3a?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d243-f01a-0030-0336-9d640d000000\nTime:2020-10-08T05:44:14.1895969Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:13 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:14 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-26ae488a-f23e-4b65-aa5b-f273d6179074?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d246-f01a-0030-0536-9d640d000000\nTime:2020-10-08T05:44:14.3226902Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:13 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:14 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-49d22d21-4363-478e-8f26-1357ef6bd183?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d247-f01a-0030-0636-9d640d000000\nTime:2020-10-08T05:44:14.4457769Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:13 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:14 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d249-f01a-0030-0736-9d640d000000\nTime:2020-10-08T05:44:14.5648608Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:13 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:14 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d24a-f01a-0030-0836-9d640d000000\nTime:2020-10-08T05:44:14.6779400Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:13 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:14 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d24b-f01a-0030-0936-9d640d000000\nTime:2020-10-08T05:44:14.8040288Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:13 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:14 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-8903864e-96ec-44f5-8912-837a9f23cbb5?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d24d-f01a-0030-0b36-9d640d000000\nTime:2020-10-08T05:44:14.9341204Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:13 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:14 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67a?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d24f-f01a-0030-0d36-9d640d000000\nTime:2020-10-08T05:44:15.0512037Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:14 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:14 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-d5852df4-944a-48b9-8552-eea5bfd94b6b?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d250-f01a-0030-0e36-9d640d000000\nTime:2020-10-08T05:44:15.2013103Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:14 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:15 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-fa7d1a1f-d065-4d58-bb12-a59f22106473?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d251-f01a-0030-0f36-9d640d000000\nTime:2020-10-08T05:44:15.3213956Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:14 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:15 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-fcc35a78-e231-4233-a311-d48ee9bb2df7?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d252-f01a-0030-1036-9d640d000000\nTime:2020-10-08T05:44:15.4294723Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:14 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:15 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test16185160b?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d253-f01a-0030-1136-9d640d000000\nTime:2020-10-08T05:44:15.5545607Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:14 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:15 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test1bd1a12dd?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d254-f01a-0030-1236-9d640d000000\nTime:2020-10-08T05:44:15.6816514Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:14 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:15 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test2bd1a12dd?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d256-f01a-0030-1336-9d640d000000\nTime:2020-10-08T05:44:15.8097420Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:14 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:15 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test403e0ff4?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d257-f01a-0030-1436-9d640d000000\nTime:2020-10-08T05:44:15.9448379Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:14 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:15 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test49161594?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d258-f01a-0030-1536-9d640d000000\nTime:2020-10-08T05:44:16.0779329Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:15 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:15 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test50ad1060?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d259-f01a-0030-1636-9d640d000000\nTime:2020-10-08T05:44:16.2140296Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:15 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:16 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test600515ff?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d25a-f01a-0030-1736-9d640d000000\nTime:2020-10-08T05:44:16.3491251Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:15 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:16 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test602310dc?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d25b-f01a-0030-1836-9d640d000000\nTime:2020-10-08T05:44:16.4632061Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:15 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:16 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test6185160b?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d25c-f01a-0030-1936-9d640d000000\nTime:2020-10-08T05:44:16.6063090Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:15 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:16 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test801b1156?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d25d-f01a-0030-1a36-9d640d000000\nTime:2020-10-08T05:44:16.7333985Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:15 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:16 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test816f1171?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d25e-f01a-0030-1b36-9d640d000000\nTime:2020-10-08T05:44:16.8464788Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:15 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:16 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test82b3117d?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d25f-f01a-0030-1c36-9d640d000000\nTime:2020-10-08T05:44:16.9795729Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:15 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:16 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test8fc916f4?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d260-f01a-0030-1d36-9d640d000000\nTime:2020-10-08T05:44:17.1046621Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:16 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:16 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testa7a1477?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d261-f01a-0030-1e36-9d640d000000\nTime:2020-10-08T05:44:17.2357557Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:16 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:17 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testcb2f1317?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d262-f01a-0030-1f36-9d640d000000\nTime:2020-10-08T05:44:17.3678491Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:16 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:17 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testcf0d1359?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d263-f01a-0030-2036-9d640d000000\nTime:2020-10-08T05:44:17.5039453Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:16 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:17 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testdfa11382?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d264-f01a-0030-2136-9d640d000000\nTime:2020-10-08T05:44:17.6430445Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:16 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:17 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/teste121138e?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d265-f01a-0030-2236-9d640d000000\nTime:2020-10-08T05:44:17.7761386Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:16 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:17 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/teste52d0d77?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d266-f01a-0030-2336-9d640d000000\nTime:2020-10-08T05:44:17.9132364Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:16 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:17 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testf3ff13d3?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d267-f01a-0030-2436-9d640d000000\nTime:2020-10-08T05:44:18.0413274Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:17 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:17 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testf55313ee?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d268-f01a-0030-2536-9d640d000000\nTime:2020-10-08T05:44:18.1894322Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:17 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:18 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testf69713fa?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e169d26a-f01a-0030-2636-9d640d000000\nTime:2020-10-08T05:44:18.3495463Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:44:17 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:44:18 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testsharecred?restype=share + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 08 Oct 2020 05:44:17 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-02-10' + status: + code: 202 + message: Accepted +version: 1 diff --git a/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_set_share_properties.yaml b/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_set_share_properties.yaml index 8f31b91af9ec..350b128d220a 100644 --- a/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_set_share_properties.yaml +++ b/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_set_share_properties.yaml @@ -11,13 +11,13 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0) + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 15 Jan 2020 23:54:49 GMT + - Thu, 08 Oct 2020 05:45:43 GMT x-ms-version: - - '2019-02-02' + - '2020-02-10' method: PUT - uri: https://storagename.file.core.windows.net/share12220eea?restype=share + uri: https://storagename.file.core.windows.net/share112220eea?restype=share response: body: string: '' @@ -25,15 +25,15 @@ interactions: content-length: - '0' date: - - Wed, 15 Jan 2020 23:54:48 GMT + - Thu, 08 Oct 2020 05:45:44 GMT etag: - - '"0x8D79A164E7FC863"' + - '"0x8D86B4D6657A2CB"' last-modified: - - Wed, 15 Jan 2020 23:54:49 GMT + - Thu, 08 Oct 2020 05:45:44 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: - - '2019-02-02' + - '2020-02-10' status: code: 201 message: Created @@ -49,15 +49,173 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0) + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 15 Jan 2020 23:54:49 GMT + - Thu, 08 Oct 2020 05:45:45 GMT + x-ms-version: + - '2020-02-10' + method: PUT + uri: https://storagename.file.core.windows.net/share212220eea?restype=share + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 08 Oct 2020 05:45:45 GMT + etag: + - '"0x8D86B4D670AE6CD"' + last-modified: + - Thu, 08 Oct 2020 05:45:45 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-02-10' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:45:46 GMT x-ms-share-quota: - '1' x-ms-version: - - '2019-02-02' + - '2020-02-10' + method: PUT + uri: https://storagename.file.core.windows.net/share112220eea?restype=share&comp=properties + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 08 Oct 2020 05:45:46 GMT + etag: + - '"0x8D86B4D6801488B"' + last-modified: + - Thu, 08 Oct 2020 05:45:47 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-02-10' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-access-tier: + - Hot + x-ms-date: + - Thu, 08 Oct 2020 05:45:47 GMT + x-ms-version: + - '2020-02-10' + method: PUT + uri: https://storagename.file.core.windows.net/share112220eea?restype=share&comp=properties + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 08 Oct 2020 05:45:47 GMT + etag: + - '"0x8D86B4D688F236A"' + last-modified: + - Thu, 08 Oct 2020 05:45:48 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-02-10' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-access-tier: + - Cool + x-ms-date: + - Thu, 08 Oct 2020 05:45:49 GMT + x-ms-version: + - '2020-02-10' + method: PUT + uri: https://storagename.file.core.windows.net/share212220eea?restype=share&comp=properties + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 08 Oct 2020 05:45:49 GMT + etag: + - '"0x8D86B4D69871DAA"' + last-modified: + - Thu, 08 Oct 2020 05:45:50 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-02-10' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:45:53 GMT + x-ms-share-quota: + - '2' + x-ms-version: + - '2020-02-10' method: PUT - uri: https://storagename.file.core.windows.net/share12220eea?restype=share&comp=properties + uri: https://storagename.file.core.windows.net/share212220eea?restype=share&comp=properties response: body: string: '' @@ -65,15 +223,15 @@ interactions: content-length: - '0' date: - - Wed, 15 Jan 2020 23:54:48 GMT + - Thu, 08 Oct 2020 05:45:53 GMT etag: - - '"0x8D79A164E8CF764"' + - '"0x8D86B4D6BB7D088"' last-modified: - - Wed, 15 Jan 2020 23:54:49 GMT + - Thu, 08 Oct 2020 05:45:53 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: - - '2019-02-02' + - '2020-02-10' status: code: 200 message: OK @@ -87,13 +245,13 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0) + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 15 Jan 2020 23:54:49 GMT + - Thu, 08 Oct 2020 05:45:54 GMT x-ms-version: - - '2019-02-02' + - '2020-02-10' method: GET - uri: https://storagename.file.core.windows.net/share12220eea?restype=share + uri: https://storagename.file.core.windows.net/share112220eea?restype=share response: body: string: '' @@ -101,23 +259,87 @@ interactions: content-length: - '0' date: - - Wed, 15 Jan 2020 23:54:48 GMT + - Thu, 08 Oct 2020 05:45:54 GMT etag: - - '"0x8D79A164E8CF764"' + - '"0x8D86B4D688F236A"' last-modified: - - Wed, 15 Jan 2020 23:54:49 GMT + - Thu, 08 Oct 2020 05:45:48 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 vary: - Origin + x-ms-access-tier: + - Hot + x-ms-access-tier-change-time: + - Thu, 08 Oct 2020 05:45:48 GMT + x-ms-access-tier-transition-state: + - pending-from-transactionOptimized x-ms-has-immutability-policy: - 'false' x-ms-has-legal-hold: - 'false' + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked x-ms-share-quota: - '1' x-ms-version: - - '2019-02-02' + - '2020-02-10' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:45:54 GMT + x-ms-version: + - '2020-02-10' + method: GET + uri: https://storagename.file.core.windows.net/share212220eea?restype=share + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 08 Oct 2020 05:45:54 GMT + etag: + - '"0x8D86B4D6BB7D088"' + last-modified: + - Thu, 08 Oct 2020 05:45:53 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + vary: + - Origin + x-ms-access-tier: + - Cool + x-ms-access-tier-change-time: + - Thu, 08 Oct 2020 05:45:50 GMT + x-ms-access-tier-transition-state: + - pending-from-transactionOptimized + x-ms-has-immutability-policy: + - 'false' + x-ms-has-legal-hold: + - 'false' + x-ms-lease-state: + - available + x-ms-lease-status: + - unlocked + x-ms-share-quota: + - '2' + x-ms-version: + - '2020-02-10' status: code: 200 message: OK @@ -131,24 +353,130 @@ interactions: Connection: - keep-alive User-Agent: - - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0) + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 15 Jan 2020 23:54:49 GMT + - Thu, 08 Oct 2020 05:46:11 GMT x-ms-version: - - '2019-02-02' + - '2020-02-10' method: GET uri: https://storagename.file.core.windows.net/?include=snapshots&comp=list response: body: string: "\uFEFFshare12220eeaWed, - 15 Jan 2020 23:54:49 GMT\"0x8D79A164E8CF764\"1share112220eeaThu, + 08 Oct 2020 05:45:48 GMT\"0x8D86B4D688F236A\"unlockedavailable1HotThu, + 08 Oct 2020 05:45:48 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare1816f1171Fri, + 11 Sep 2020 00:43:37 GMT\"0x8D855EBB87CFF33\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:43:37 GMT$account-encryption-keyfalseshare182b3117dFri, + 11 Sep 2020 00:44:44 GMT\"0x8D855EBE0710239\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:44:44 GMT$account-encryption-keyfalseshare212220eeaThu, + 08 Oct 2020 05:45:53 GMT\"0x8D86B4D6BB7D088\"unlockedavailable2CoolThu, + 08 Oct 2020 05:45:50 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare336d1532Fri, + 11 Sep 2020 00:02:03 GMT\"0x8D855E5EA1BA89C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:02:03 GMT$account-encryption-keyfalseshare50ad1060Tue, + 29 Sep 2020 22:27:37 GMT\"0x8D864C6DE6E6B78\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:27:37 GMT$account-encryption-keyfalseshare602310dcThu, + 10 Sep 2020 23:45:57 GMT\"0x8D855E3AA5BA817\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:45:57 GMT$account-encryption-keyfalseshare801b1156Thu, + 10 Sep 2020 23:48:33 GMT\"0x8D855E4070545FC\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:48:33 GMT$account-encryption-keyfalsesharea7a1477Thu, + 10 Sep 2020 23:48:04 GMT\"0x8D855E3F609C583\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:48:04 GMT$account-encryption-keyfalseshareba3e12f12020-09-28T14:03:31.0000000ZMon, + 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"lockedleasedinfinite5120$account-encryption-keyfalseshareba3e12f1Mon, + 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"lockedleasedinfinite5120TransactionOptimizedMon, + 28 Sep 2020 14:03:31 GMT$account-encryption-keyfalsesharec80148eFri, + 11 Sep 2020 00:25:51 GMT\"0x8D855E93D722BB0\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:03:40 GMT$account-encryption-keyfalsesharecb2f1317Fri, + 11 Sep 2020 00:59:09 GMT\"0x8D855EDE422992F\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:59:09 GMT$account-encryption-keyfalsesharee121138eFri, + 11 Sep 2020 00:00:54 GMT\"0x8D855E5C0C0BD1C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:00:53 GMT$account-encryption-keyfalsesharee52d0d77Thu, + 10 Sep 2020 23:47:27 GMT\"0x8D855E3DFBB5CB3\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:47:20 GMT$account-encryption-keyfalsesharerestorecb2f1317Thu, + 10 Sep 2020 22:44:32 GMT\"0x8D855DB159313DC\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 22:44:32 GMT$account-encryption-keyfalsesharesamples5Tue, + 15 Sep 2020 19:39:56 GMT\"0x8D859AF1FEB001F\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:39:55 GMT$account-encryption-keyfalsesharesamples6Tue, + 15 Sep 2020 19:43:57 GMT\"0x8D859AFAFBA3E88\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:43:57 GMT$account-encryption-keyfalsesharesamples7Tue, + 15 Sep 2020 19:44:49 GMT\"0x8D859AFCEB7CC2D\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:44:49 GMT$account-encryption-keyfalsetest-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7Wed, + 05 Aug 2020 19:06:51 GMT\"0x8D83972B5D1302D\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:51 GMT$account-encryption-keyfalsetest-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31Wed, + 05 Aug 2020 19:06:49 GMT\"0x8D83972B5025718\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:49 GMT$account-encryption-keyfalsetest-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3aWed, + 05 Aug 2020 17:24:15 GMT\"0x8D8396460C3E165\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:15 GMT$account-encryption-keyfalsetest-share-26ae488a-f23e-4b65-aa5b-f273d6179074Wed, + 05 Aug 2020 19:06:50 GMT\"0x8D83972B592F011\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-49d22d21-4363-478e-8f26-1357ef6bd183Wed, + 05 Aug 2020 17:24:21 GMT\"0x8D8396464063943\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:21 GMT$account-encryption-keyfalsetest-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680Wed, + 05 Aug 2020 17:24:17 GMT\"0x8D8396461D987E1\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604Wed, + 05 Aug 2020 17:24:19 GMT\"0x8D83964633A2718\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:19 GMT$account-encryption-keyfalsetest-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52Wed, + 05 Aug 2020 19:06:50 GMT\"0x8D83972B538E3FD\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-8903864e-96ec-44f5-8912-837a9f23cbb5Wed, + 05 Aug 2020 00:04:00 GMT\"0x8D838D30E563856\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 00:04:00 GMT$account-encryption-keyfalsetest-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67aWed, + 05 Aug 2020 17:24:18 GMT\"0x8D8396462815131\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-d5852df4-944a-48b9-8552-eea5bfd94b6bWed, + 05 Aug 2020 17:24:20 GMT\"0x8D8396463BD465A\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:20 GMT$account-encryption-keyfalsetest-share-fa7d1a1f-d065-4d58-bb12-a59f22106473Wed, + 05 Aug 2020 17:24:18 GMT\"0x8D839646251B45A\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-fcc35a78-e231-4233-a311-d48ee9bb2df7Wed, + 05 Aug 2020 17:24:16 GMT\"0x8D83964610EBC77\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest16185160bFri, + 11 Sep 2020 13:51:30 GMT\"0x8D85659C98711F1\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:51:30 GMT$account-encryption-keyfalsetest1bd1a12ddTue, + 29 Sep 2020 22:34:36 GMT\"0x8D864C7D8628CD4\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:34:36 GMT$account-encryption-keyfalsetest2bd1a12ddTue, + 29 Sep 2020 22:38:12 GMT\"0x8D864C858E9FC21\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:38:12 GMT$account-encryption-keyfalsetest403e0ff4Fri, + 11 Sep 2020 13:48:01 GMT\"0x8D856594D05BB2E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:48:01 GMT$account-encryption-keyfalsetest49161594Fri, + 11 Sep 2020 13:44:29 GMT\"0x8D85658CEB83E6D\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:44:29 GMT$account-encryption-keyfalsetest50ad1060Tue, + 29 Sep 2020 22:31:15 GMT\"0x8D864C760543D56\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:31:14 GMT$account-encryption-keyfalsetest600515ffFri, + 11 Sep 2020 13:52:29 GMT\"0x8D85659ECC7BFF5\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:52:29 GMT$account-encryption-keyfalsetest602310dcFri, + 11 Sep 2020 01:46:55 GMT\"0x8D855F490678FD9\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:46:55 GMT$account-encryption-keyfalsetest6185160bFri, + 11 Sep 2020 13:50:04 GMT\"0x8D85659960A4A9F\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:50:03 GMT$account-encryption-keyfalsetest801b1156Fri, + 11 Sep 2020 01:43:39 GMT\"0x8D855F41B7485A5\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:39 GMT$account-encryption-keyfalsetest816f1171Fri, + 11 Sep 2020 01:44:03 GMT\"0x8D855F429A8569E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:44:03 GMT$account-encryption-keyfalsetest82b3117dFri, + 11 Sep 2020 01:44:09 GMT\"0x8D855F42D9DFD7A\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:44:09 GMT$account-encryption-keyfalsetest8fc916f4Fri, + 11 Sep 2020 13:48:35 GMT\"0x8D8565961566D0E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:48:35 GMT$account-encryption-keyfalsetesta7a1477Fri, + 11 Sep 2020 01:42:27 GMT\"0x8D855F3F0B3CE4D\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:42:27 GMT$account-encryption-keyfalsetestcb2f1317Fri, + 11 Sep 2020 01:35:53 GMT\"0x8D855F305C89D8C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:35:53 GMT$account-encryption-keyfalsetestcf0d1359Fri, + 11 Sep 2020 13:46:53 GMT\"0x8D856592431D1AA\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:46:53 GMT$account-encryption-keyfalsetestdfa11382Fri, + 11 Sep 2020 01:43:51 GMT\"0x8D855F422BEA24C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:51 GMT$account-encryption-keyfalseteste121138eFri, + 11 Sep 2020 01:43:45 GMT\"0x8D855F41F52C3FB\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:45 GMT$account-encryption-keyfalseteste52d0d77Fri, + 11 Sep 2020 01:42:19 GMT\"0x8D855F3EC19CB5C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:42:19 GMT$account-encryption-keyfalsetestf3ff13d3Fri, + 11 Sep 2020 13:49:19 GMT\"0x8D856597B1CC145\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:49:19 GMT$account-encryption-keyfalsetestf55313eeFri, + 11 Sep 2020 13:53:58 GMT\"0x8D8565A21BA7745\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:53:58 GMT$account-encryption-keyfalsetestf69713faFri, + 11 Sep 2020 13:54:36 GMT\"0x8D8565A3813B91A\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:54:35 GMT$account-encryption-keyfalse" headers: content-type: - application/xml date: - - Wed, 15 Jan 2020 23:54:48 GMT + - Thu, 08 Oct 2020 05:46:11 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -156,7 +484,7 @@ interactions: vary: - Origin x-ms-version: - - '2019-02-02' + - '2020-02-10' status: code: 200 message: OK @@ -172,15 +500,137 @@ interactions: Content-Length: - '0' User-Agent: - - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0) + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:11 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share112220eea?restype=share + response: + body: + string: '' + headers: + content-length: + - '0' + date: + - Thu, 08 Oct 2020 05:46:11 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: + - '2020-02-10' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:12 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share1816f1171?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47625b1-701a-005c-2c36-9d8f9a000000\nTime:2020-10-08T05:46:12.8188789Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:12 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:12 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share182b3117d?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47625cb-701a-005c-4536-9d8f9a000000\nTime:2020-10-08T05:46:13.1911439Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:12 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 15 Jan 2020 23:54:49 GMT + - Thu, 08 Oct 2020 05:46:13 GMT x-ms-delete-snapshots: - include x-ms-version: - - '2019-02-02' + - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/share12220eea?restype=share + uri: https://storagename.file.core.windows.net/share212220eea?restype=share response: body: string: '' @@ -188,12 +638,2166 @@ interactions: content-length: - '0' date: - - Wed, 15 Jan 2020 23:54:49 GMT + - Thu, 08 Oct 2020 05:46:12 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: - - '2019-02-02' + - '2020-02-10' status: code: 202 message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:13 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share336d1532?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47625f0-701a-005c-6936-9d8f9a000000\nTime:2020-10-08T05:46:13.8586179Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:13 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:13 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share50ad1060?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762606-701a-005c-7e36-9d8f9a000000\nTime:2020-10-08T05:46:14.2208753Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:13 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:14 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share602310dc?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762607-701a-005c-7f36-9d8f9a000000\nTime:2020-10-08T05:46:14.5891373Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:14 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:14 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share801b1156?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e476260e-701a-005c-0536-9d8f9a000000\nTime:2020-10-08T05:46:14.9924269Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:14 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:14 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharea7a1477?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762618-701a-005c-0e36-9d8f9a000000\nTime:2020-10-08T05:46:15.3406762Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:14 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:15 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/shareba3e12f1?restype=share + response: + body: + string: "\uFEFFDeleteShareWhenSnapshotLeasedUnable + to delete share because one or more share snapshots have active leases. Release + the share snapshot leases or delete the share with the include-leased parameter + for x-ms-delete-snapshots.\nRequestId:e476261e-701a-005c-1336-9d8f9a000000\nTime:2020-10-08T05:46:15.7189464Z" + headers: + content-length: + - '391' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:15 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - DeleteShareWhenSnapshotLeased + x-ms-version: + - '2020-02-10' + status: + code: 409 + message: Unable to delete share because one or more share snapshots have active + leases. Release the share snapshot leases or delete the share with the include-leased + parameter for x-ms-delete-snapshots. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:15 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/shareba3e12f1?restype=share + response: + body: + string: "\uFEFFDeleteShareWhenSnapshotLeasedUnable + to delete share because one or more share snapshots have active leases. Release + the share snapshot leases or delete the share with the include-leased parameter + for x-ms-delete-snapshots.\nRequestId:e4762623-701a-005c-1836-9d8f9a000000\nTime:2020-10-08T05:46:16.0872081Z" + headers: + content-length: + - '391' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:15 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - DeleteShareWhenSnapshotLeased + x-ms-version: + - '2020-02-10' + status: + code: 409 + message: Unable to delete share because one or more share snapshots have active + leases. Release the share snapshot leases or delete the share with the include-leased + parameter for x-ms-delete-snapshots. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:15 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharec80148e?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e476262d-701a-005c-2236-9d8f9a000000\nTime:2020-10-08T05:46:16.4584720Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:15 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:16 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharecb2f1317?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e476262e-701a-005c-2336-9d8f9a000000\nTime:2020-10-08T05:46:16.8697643Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:16 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:16 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharee121138e?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762633-701a-005c-2836-9d8f9a000000\nTime:2020-10-08T05:46:17.2330224Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:16 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:17 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharee52d0d77?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762634-701a-005c-2936-9d8f9a000000\nTime:2020-10-08T05:46:17.5982824Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:17 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:17 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharerestorecb2f1317?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762636-701a-005c-2a36-9d8f9a000000\nTime:2020-10-08T05:46:17.9705461Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:17 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:17 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharesamples5?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e476263f-701a-005c-3336-9d8f9a000000\nTime:2020-10-08T05:46:18.3688296Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:17 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:18 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharesamples6?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762640-701a-005c-3436-9d8f9a000000\nTime:2020-10-08T05:46:18.7330885Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:18 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:18 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharesamples7?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762641-701a-005c-3536-9d8f9a000000\nTime:2020-10-08T05:46:19.1303708Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:18 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:19 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762648-701a-005c-3b36-9d8f9a000000\nTime:2020-10-08T05:46:19.4866240Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:18 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:19 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762649-701a-005c-3c36-9d8f9a000000\nTime:2020-10-08T05:46:19.8819054Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:19 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:19 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3a?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e476264a-701a-005c-3d36-9d8f9a000000\nTime:2020-10-08T05:46:20.3172143Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:19 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-26ae488a-f23e-4b65-aa5b-f273d6179074?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762651-701a-005c-4236-9d8f9a000000\nTime:2020-10-08T05:46:20.6954844Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:20 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-49d22d21-4363-478e-8f26-1357ef6bd183?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e476265c-701a-005c-4d36-9d8f9a000000\nTime:2020-10-08T05:46:21.0957711Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:20 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762676-701a-005c-6736-9d8f9a000000\nTime:2020-10-08T05:46:21.5090674Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:20 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762681-701a-005c-7236-9d8f9a000000\nTime:2020-10-08T05:46:21.9523828Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:21 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762689-701a-005c-7a36-9d8f9a000000\nTime:2020-10-08T05:46:22.3396580Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:21 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-8903864e-96ec-44f5-8912-837a9f23cbb5?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e476269d-701a-005c-0e36-9d8f9a000000\nTime:2020-10-08T05:46:22.6919084Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:22 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67a?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47626b5-701a-005c-2436-9d8f9a000000\nTime:2020-10-08T05:46:23.1092049Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:22 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-d5852df4-944a-48b9-8552-eea5bfd94b6b?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47626c6-701a-005c-3536-9d8f9a000000\nTime:2020-10-08T05:46:23.4694605Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:22 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-fa7d1a1f-d065-4d58-bb12-a59f22106473?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47626d0-701a-005c-3e36-9d8f9a000000\nTime:2020-10-08T05:46:23.9137772Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:23 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-fcc35a78-e231-4233-a311-d48ee9bb2df7?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47626da-701a-005c-4736-9d8f9a000000\nTime:2020-10-08T05:46:24.3570922Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:23 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:24 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test16185160b?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47626df-701a-005c-4c36-9d8f9a000000\nTime:2020-10-08T05:46:24.7263542Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:24 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:24 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test1bd1a12dd?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47626e6-701a-005c-5236-9d8f9a000000\nTime:2020-10-08T05:46:25.1346444Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:24 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test2bd1a12dd?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47626f0-701a-005c-5a36-9d8f9a000000\nTime:2020-10-08T05:46:25.5879666Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:25 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test403e0ff4?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47626fa-701a-005c-6336-9d8f9a000000\nTime:2020-10-08T05:46:25.9712389Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:25 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test49161594?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e476270f-701a-005c-7836-9d8f9a000000\nTime:2020-10-08T05:46:26.3565127Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:25 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:26 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test50ad1060?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762721-701a-005c-0936-9d8f9a000000\nTime:2020-10-08T05:46:26.7848190Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:26 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:26 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test600515ff?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762733-701a-005c-1b36-9d8f9a000000\nTime:2020-10-08T05:46:27.1921106Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:26 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:27 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test602310dc?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762739-701a-005c-2136-9d8f9a000000\nTime:2020-10-08T05:46:27.5563718Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:27 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:27 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test6185160b?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e476274f-701a-005c-3636-9d8f9a000000\nTime:2020-10-08T05:46:27.9796727Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:27 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:27 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test801b1156?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e476275c-701a-005c-4236-9d8f9a000000\nTime:2020-10-08T05:46:28.3749536Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:27 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:28 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test816f1171?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e476276a-701a-005c-4f36-9d8f9a000000\nTime:2020-10-08T05:46:28.7862455Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:28 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:28 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test82b3117d?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762770-701a-005c-5336-9d8f9a000000\nTime:2020-10-08T05:46:29.2425702Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:28 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:29 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test8fc916f4?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e476277d-701a-005c-6036-9d8f9a000000\nTime:2020-10-08T05:46:29.6628689Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:29 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:29 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testa7a1477?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e4762786-701a-005c-6936-9d8f9a000000\nTime:2020-10-08T05:46:30.0601513Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:29 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:29 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testcb2f1317?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e476279a-701a-005c-7b36-9d8f9a000000\nTime:2020-10-08T05:46:30.4794488Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:29 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:30 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testcf0d1359?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47627a8-701a-005c-0936-9d8f9a000000\nTime:2020-10-08T05:46:30.8767312Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:30 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:30 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testdfa11382?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47627b2-701a-005c-1336-9d8f9a000000\nTime:2020-10-08T05:46:31.2630057Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:30 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:31 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/teste121138e?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47627bd-701a-005c-1e36-9d8f9a000000\nTime:2020-10-08T05:46:31.6342704Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:31 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:31 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/teste52d0d77?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47627ca-701a-005c-2b36-9d8f9a000000\nTime:2020-10-08T05:46:32.0245503Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:31 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:31 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testf3ff13d3?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47627d6-701a-005c-3736-9d8f9a000000\nTime:2020-10-08T05:46:32.4898840Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:31 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:32 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testf55313ee?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47627e0-701a-005c-4036-9d8f9a000000\nTime:2020-10-08T05:46:32.9011768Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:32 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:46:32 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testf69713fa?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:e47627e2-701a-005c-4236-9d8f9a000000\nTime:2020-10-08T05:46:33.3284804Z" + headers: + content-length: + - '273' + content-type: + - application/xml + date: + - Thu, 08 Oct 2020 05:46:32 GMT + server: + - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: + - LeaseIdMissing + x-ms-version: + - '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. version: 1 diff --git a/sdk/storage/azure-storage-file-share/tests/test_share.py b/sdk/storage/azure-storage-file-share/tests/test_share.py index b3daed35e1f7..edbd44cd50db 100644 --- a/sdk/storage/azure-storage-file-share/tests/test_share.py +++ b/sdk/storage/azure-storage-file-share/tests/test_share.py @@ -20,6 +20,7 @@ from azure.storage.fileshare import ( AccessPolicy, ShareSasPermissions, + ShareAccessTier, ShareServiceClient, ShareDirectoryClient, ShareFileClient, @@ -520,6 +521,20 @@ def test_create_share_with_quota(self, resource_group, location, storage_account self.assertEqual(props.quota, 1) self._delete_shares() + @GlobalStorageAccountPreparer() + def test_create_share_with_access_tier(self, resource_group, location, storage_account, storage_account_key): + self._setup(storage_account, storage_account_key) + + # Act + client = self._get_share_reference() + created = client.create_share(access_tier="Hot") + + # Assert + props = client.get_share_properties() + self.assertTrue(created) + self.assertEqual(props.access_tier, "Hot") + self._delete_shares() + @GlobalStorageAccountPreparer() def test_share_exists(self, resource_group, location, storage_account, storage_account_key): self._setup(storage_account, storage_account_key) @@ -773,15 +788,30 @@ def test_get_share_metadata_with_snapshot(self, resource_group, location, storag @GlobalStorageAccountPreparer() def test_set_share_properties(self, resource_group, location, storage_account, storage_account_key): self._setup(storage_account, storage_account_key) - share = self._create_share() - share.set_share_quota(1) + share1 = self._create_share("share1") + share2 = self._create_share("share2") + + share1.set_share_quota(1) + share1.set_share_tier("Hot") + + share2.set_share_tier(ShareAccessTier("Cool")) + share2.set_share_quota(2) # Act - props = share.get_share_properties() + props1 = share1.get_share_properties() + props2 = share2.get_share_properties() - # Assert - self.assertIsNotNone(props) - self.assertEqual(props.quota, 1) + share1_quota = props1.quota + share1_tier = props1.access_tier + + share2_quota = props2.quota + share2_tier = props2.access_tier + + # Assert quotas and access tiers don't change by calling the other method. + self.assertEqual(share1_quota, 1) + self.assertEqual(share1_tier, "Hot") + self.assertEqual(share2_quota, 2) + self.assertEqual(share2_tier, "Cool") self._delete_shares() @GlobalResourceGroupPreparer() From 510464f86ea633010b0341610662a90ff66bcea2 Mon Sep 17 00:00:00 2001 From: Tamer Sherif Date: Wed, 7 Oct 2020 22:53:05 -0700 Subject: [PATCH 05/11] added all tests --- ...nc.test_create_share_with_access_tier.yaml | 1785 +++++++++++++++ ...async.test_set_share_properties_async.yaml | 1959 ++++++++++++++++- .../tests/test_share_async.py | 45 +- 3 files changed, 3705 insertions(+), 84 deletions(-) create mode 100644 sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_create_share_with_access_tier.yaml diff --git a/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_create_share_with_access_tier.yaml b/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_create_share_with_access_tier.yaml new file mode 100644 index 000000000000..225350e49b45 --- /dev/null +++ b/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_create_share_with_access_tier.yaml @@ -0,0 +1,1785 @@ +interactions: +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-access-tier: + - Hot + x-ms-date: + - Thu, 08 Oct 2020 05:52:49 GMT + x-ms-version: + - '2020-02-10' + method: PUT + uri: https://storagename.file.core.windows.net/share1f5414e2?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 08 Oct 2020 05:52:49 GMT + etag: '"0x8D86B4E63AB399D"' + last-modified: Thu, 08 Oct 2020 05:52:49 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 201 + message: Created + url: https://seanmcccanary3.file.core.windows.net/share1f5414e2?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:49 GMT + x-ms-version: + - '2020-02-10' + method: GET + uri: https://storagename.file.core.windows.net/share1f5414e2?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 08 Oct 2020 05:52:49 GMT + etag: '"0x8D86B4E63AB399D"' + last-modified: Thu, 08 Oct 2020 05:52:49 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + vary: Origin + x-ms-access-tier: Hot + x-ms-access-tier-change-time: Thu, 08 Oct 2020 05:52:49 GMT + x-ms-has-immutability-policy: 'false' + x-ms-has-legal-hold: 'false' + x-ms-lease-state: available + x-ms-lease-status: unlocked + x-ms-share-quota: '5120' + x-ms-version: '2020-02-10' + status: + code: 200 + message: OK + url: https://seanmcccanary3.file.core.windows.net/share1f5414e2?restype=share +- request: + body: null + headers: + Accept: + - application/xml + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:49 GMT + x-ms-version: + - '2020-02-10' + method: GET + uri: https://storagename.file.core.windows.net/?include=snapshots&comp=list + response: + body: + string: "\uFEFFshare1816f1171Fri, + 11 Sep 2020 00:43:37 GMT\"0x8D855EBB87CFF33\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:43:37 GMT$account-encryption-keyfalseshare182b3117dFri, + 11 Sep 2020 00:44:44 GMT\"0x8D855EBE0710239\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:44:44 GMT$account-encryption-keyfalseshare1f5414e2Thu, + 08 Oct 2020 05:52:49 GMT\"0x8D86B4E63AB399D\"unlockedavailable5120HotThu, + 08 Oct 2020 05:52:49 GMT$account-encryption-keyfalseshare336d1532Fri, + 11 Sep 2020 00:02:03 GMT\"0x8D855E5EA1BA89C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:02:03 GMT$account-encryption-keyfalseshare50ad1060Tue, + 29 Sep 2020 22:27:37 GMT\"0x8D864C6DE6E6B78\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:27:37 GMT$account-encryption-keyfalseshare602310dcThu, + 10 Sep 2020 23:45:57 GMT\"0x8D855E3AA5BA817\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:45:57 GMT$account-encryption-keyfalseshare801b1156Thu, + 10 Sep 2020 23:48:33 GMT\"0x8D855E4070545FC\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:48:33 GMT$account-encryption-keyfalsesharea7a1477Thu, + 10 Sep 2020 23:48:04 GMT\"0x8D855E3F609C583\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:48:04 GMT$account-encryption-keyfalseshareba3e12f12020-09-28T14:03:31.0000000ZMon, + 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"lockedleasedinfinite5120$account-encryption-keyfalseshareba3e12f1Mon, + 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"lockedleasedinfinite5120TransactionOptimizedMon, + 28 Sep 2020 14:03:31 GMT$account-encryption-keyfalsesharec80148eFri, + 11 Sep 2020 00:25:51 GMT\"0x8D855E93D722BB0\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:03:40 GMT$account-encryption-keyfalsesharecb2f1317Fri, + 11 Sep 2020 00:59:09 GMT\"0x8D855EDE422992F\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:59:09 GMT$account-encryption-keyfalsesharee121138eFri, + 11 Sep 2020 00:00:54 GMT\"0x8D855E5C0C0BD1C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:00:53 GMT$account-encryption-keyfalsesharee52d0d77Thu, + 10 Sep 2020 23:47:27 GMT\"0x8D855E3DFBB5CB3\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:47:20 GMT$account-encryption-keyfalsesharerestorecb2f1317Thu, + 10 Sep 2020 22:44:32 GMT\"0x8D855DB159313DC\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 22:44:32 GMT$account-encryption-keyfalsesharesamples5Tue, + 15 Sep 2020 19:39:56 GMT\"0x8D859AF1FEB001F\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:39:55 GMT$account-encryption-keyfalsesharesamples6Tue, + 15 Sep 2020 19:43:57 GMT\"0x8D859AFAFBA3E88\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:43:57 GMT$account-encryption-keyfalsesharesamples7Tue, + 15 Sep 2020 19:44:49 GMT\"0x8D859AFCEB7CC2D\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:44:49 GMT$account-encryption-keyfalsetest-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7Wed, + 05 Aug 2020 19:06:51 GMT\"0x8D83972B5D1302D\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:51 GMT$account-encryption-keyfalsetest-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31Wed, + 05 Aug 2020 19:06:49 GMT\"0x8D83972B5025718\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:49 GMT$account-encryption-keyfalsetest-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3aWed, + 05 Aug 2020 17:24:15 GMT\"0x8D8396460C3E165\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:15 GMT$account-encryption-keyfalsetest-share-26ae488a-f23e-4b65-aa5b-f273d6179074Wed, + 05 Aug 2020 19:06:50 GMT\"0x8D83972B592F011\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-49d22d21-4363-478e-8f26-1357ef6bd183Wed, + 05 Aug 2020 17:24:21 GMT\"0x8D8396464063943\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:21 GMT$account-encryption-keyfalsetest-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680Wed, + 05 Aug 2020 17:24:17 GMT\"0x8D8396461D987E1\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604Wed, + 05 Aug 2020 17:24:19 GMT\"0x8D83964633A2718\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:19 GMT$account-encryption-keyfalsetest-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52Wed, + 05 Aug 2020 19:06:50 GMT\"0x8D83972B538E3FD\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-8903864e-96ec-44f5-8912-837a9f23cbb5Wed, + 05 Aug 2020 00:04:00 GMT\"0x8D838D30E563856\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 00:04:00 GMT$account-encryption-keyfalsetest-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67aWed, + 05 Aug 2020 17:24:18 GMT\"0x8D8396462815131\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-d5852df4-944a-48b9-8552-eea5bfd94b6bWed, + 05 Aug 2020 17:24:20 GMT\"0x8D8396463BD465A\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:20 GMT$account-encryption-keyfalsetest-share-fa7d1a1f-d065-4d58-bb12-a59f22106473Wed, + 05 Aug 2020 17:24:18 GMT\"0x8D839646251B45A\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-fcc35a78-e231-4233-a311-d48ee9bb2df7Wed, + 05 Aug 2020 17:24:16 GMT\"0x8D83964610EBC77\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest16185160bFri, + 11 Sep 2020 13:51:30 GMT\"0x8D85659C98711F1\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:51:30 GMT$account-encryption-keyfalsetest1bd1a12ddTue, + 29 Sep 2020 22:34:36 GMT\"0x8D864C7D8628CD4\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:34:36 GMT$account-encryption-keyfalsetest2bd1a12ddTue, + 29 Sep 2020 22:38:12 GMT\"0x8D864C858E9FC21\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:38:12 GMT$account-encryption-keyfalsetest403e0ff4Fri, + 11 Sep 2020 13:48:01 GMT\"0x8D856594D05BB2E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:48:01 GMT$account-encryption-keyfalsetest49161594Fri, + 11 Sep 2020 13:44:29 GMT\"0x8D85658CEB83E6D\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:44:29 GMT$account-encryption-keyfalsetest50ad1060Tue, + 29 Sep 2020 22:31:15 GMT\"0x8D864C760543D56\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:31:14 GMT$account-encryption-keyfalsetest600515ffFri, + 11 Sep 2020 13:52:29 GMT\"0x8D85659ECC7BFF5\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:52:29 GMT$account-encryption-keyfalsetest602310dcFri, + 11 Sep 2020 01:46:55 GMT\"0x8D855F490678FD9\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:46:55 GMT$account-encryption-keyfalsetest6185160bFri, + 11 Sep 2020 13:50:04 GMT\"0x8D85659960A4A9F\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:50:03 GMT$account-encryption-keyfalsetest801b1156Fri, + 11 Sep 2020 01:43:39 GMT\"0x8D855F41B7485A5\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:39 GMT$account-encryption-keyfalsetest816f1171Fri, + 11 Sep 2020 01:44:03 GMT\"0x8D855F429A8569E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:44:03 GMT$account-encryption-keyfalsetest82b3117dFri, + 11 Sep 2020 01:44:09 GMT\"0x8D855F42D9DFD7A\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:44:09 GMT$account-encryption-keyfalsetest8fc916f4Fri, + 11 Sep 2020 13:48:35 GMT\"0x8D8565961566D0E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:48:35 GMT$account-encryption-keyfalsetesta7a1477Fri, + 11 Sep 2020 01:42:27 GMT\"0x8D855F3F0B3CE4D\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:42:27 GMT$account-encryption-keyfalsetestcb2f1317Fri, + 11 Sep 2020 01:35:53 GMT\"0x8D855F305C89D8C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:35:53 GMT$account-encryption-keyfalsetestcf0d1359Fri, + 11 Sep 2020 13:46:53 GMT\"0x8D856592431D1AA\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:46:53 GMT$account-encryption-keyfalsetestdfa11382Fri, + 11 Sep 2020 01:43:51 GMT\"0x8D855F422BEA24C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:51 GMT$account-encryption-keyfalseteste121138eFri, + 11 Sep 2020 01:43:45 GMT\"0x8D855F41F52C3FB\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:45 GMT$account-encryption-keyfalseteste52d0d77Fri, + 11 Sep 2020 01:42:19 GMT\"0x8D855F3EC19CB5C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:42:19 GMT$account-encryption-keyfalsetestf3ff13d3Fri, + 11 Sep 2020 13:49:19 GMT\"0x8D856597B1CC145\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:49:19 GMT$account-encryption-keyfalsetestf55313eeFri, + 11 Sep 2020 13:53:58 GMT\"0x8D8565A21BA7745\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:53:58 GMT$account-encryption-keyfalsetestf69713faFri, + 11 Sep 2020 13:54:36 GMT\"0x8D8565A3813B91A\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:54:35 GMT$account-encryption-keyfalse" + headers: + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:49 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + transfer-encoding: chunked + vary: Origin + x-ms-version: '2020-02-10' + status: + code: 200 + message: OK + url: https://seanmcccanary3.file.core.windows.net/?include=snapshots&comp=list +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:49 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share1816f1171?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3607-c01a-0082-2037-9d9b7c000000\nTime:2020-10-08T05:52:50.0094491Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:49 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/share1816f1171?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:49 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share182b3117d?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3609-c01a-0082-2237-9d9b7c000000\nTime:2020-10-08T05:52:50.0744953Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:49 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/share182b3117d?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:49 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share1f5414e2?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 08 Oct 2020 05:52:49 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/share1f5414e2?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:50 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share336d1532?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f360b-c01a-0082-2437-9d9b7c000000\nTime:2020-10-08T05:52:50.2075898Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:49 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/share336d1532?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:50 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share50ad1060?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f360c-c01a-0082-2537-9d9b7c000000\nTime:2020-10-08T05:52:50.2736367Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:49 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/share50ad1060?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:50 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share602310dc?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f360d-c01a-0082-2637-9d9b7c000000\nTime:2020-10-08T05:52:50.3707057Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:50 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/share602310dc?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:50 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share801b1156?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f360e-c01a-0082-2737-9d9b7c000000\nTime:2020-10-08T05:52:50.4727786Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:50 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/share801b1156?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:50 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharea7a1477?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f360f-c01a-0082-2837-9d9b7c000000\nTime:2020-10-08T05:52:50.5358230Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:50 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharea7a1477?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:50 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/shareba3e12f1?restype=share + response: + body: + string: "\uFEFFDeleteShareWhenSnapshotLeasedUnable + to delete share because one or more share snapshots have active leases. Release + the share snapshot leases or delete the share with the include-leased parameter + for x-ms-delete-snapshots.\nRequestId:076f3612-c01a-0082-2b37-9d9b7c000000\nTime:2020-10-08T05:52:50.5998693Z" + headers: + content-length: '391' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:50 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: DeleteShareWhenSnapshotLeased + x-ms-version: '2020-02-10' + status: + code: 409 + message: Unable to delete share because one or more share snapshots have active + leases. Release the share snapshot leases or delete the share with the include-leased + parameter for x-ms-delete-snapshots. + url: https://seanmcccanary3.file.core.windows.net/shareba3e12f1?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:50 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/shareba3e12f1?restype=share + response: + body: + string: "\uFEFFDeleteShareWhenSnapshotLeasedUnable + to delete share because one or more share snapshots have active leases. Release + the share snapshot leases or delete the share with the include-leased parameter + for x-ms-delete-snapshots.\nRequestId:076f3613-c01a-0082-2c37-9d9b7c000000\nTime:2020-10-08T05:52:50.6679176Z" + headers: + content-length: '391' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:50 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: DeleteShareWhenSnapshotLeased + x-ms-version: '2020-02-10' + status: + code: 409 + message: Unable to delete share because one or more share snapshots have active + leases. Release the share snapshot leases or delete the share with the include-leased + parameter for x-ms-delete-snapshots. + url: https://seanmcccanary3.file.core.windows.net/shareba3e12f1?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:50 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharec80148e?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3614-c01a-0082-2d37-9d9b7c000000\nTime:2020-10-08T05:52:50.7479736Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:50 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharec80148e?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:50 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharecb2f1317?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3615-c01a-0082-2e37-9d9b7c000000\nTime:2020-10-08T05:52:50.8120196Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:50 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharecb2f1317?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:50 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharee121138e?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3616-c01a-0082-2f37-9d9b7c000000\nTime:2020-10-08T05:52:50.8770658Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:50 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharee121138e?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:50 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharee52d0d77?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3619-c01a-0082-3237-9d9b7c000000\nTime:2020-10-08T05:52:50.9541205Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:50 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharee52d0d77?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:50 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharerestorecb2f1317?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f361b-c01a-0082-3337-9d9b7c000000\nTime:2020-10-08T05:52:51.0231695Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:50 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharerestorecb2f1317?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:50 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharesamples5?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f361c-c01a-0082-3437-9d9b7c000000\nTime:2020-10-08T05:52:51.0912174Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:50 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharesamples5?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:50 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharesamples6?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f361e-c01a-0082-3537-9d9b7c000000\nTime:2020-10-08T05:52:51.1622687Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:50 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharesamples6?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharesamples7?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3620-c01a-0082-3737-9d9b7c000000\nTime:2020-10-08T05:52:51.2253127Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:50 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharesamples7?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3621-c01a-0082-3837-9d9b7c000000\nTime:2020-10-08T05:52:51.2883579Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:50 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3622-c01a-0082-3937-9d9b7c000000\nTime:2020-10-08T05:52:51.3534041Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:51 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3a?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3623-c01a-0082-3a37-9d9b7c000000\nTime:2020-10-08T05:52:51.4164489Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:51 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3a?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-26ae488a-f23e-4b65-aa5b-f273d6179074?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3624-c01a-0082-3b37-9d9b7c000000\nTime:2020-10-08T05:52:51.4824953Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:51 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-26ae488a-f23e-4b65-aa5b-f273d6179074?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-49d22d21-4363-478e-8f26-1357ef6bd183?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3625-c01a-0082-3c37-9d9b7c000000\nTime:2020-10-08T05:52:51.5525455Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:51 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-49d22d21-4363-478e-8f26-1357ef6bd183?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3626-c01a-0082-3d37-9d9b7c000000\nTime:2020-10-08T05:52:51.6155903Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:51 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3627-c01a-0082-3e37-9d9b7c000000\nTime:2020-10-08T05:52:51.6806365Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:51 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3628-c01a-0082-3f37-9d9b7c000000\nTime:2020-10-08T05:52:51.7446820Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:51 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-8903864e-96ec-44f5-8912-837a9f23cbb5?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3629-c01a-0082-4037-9d9b7c000000\nTime:2020-10-08T05:52:51.8117292Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:51 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-8903864e-96ec-44f5-8912-837a9f23cbb5?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67a?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f362a-c01a-0082-4137-9d9b7c000000\nTime:2020-10-08T05:52:51.8757755Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:51 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67a?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-d5852df4-944a-48b9-8552-eea5bfd94b6b?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f362d-c01a-0082-4437-9d9b7c000000\nTime:2020-10-08T05:52:51.9458253Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:51 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-d5852df4-944a-48b9-8552-eea5bfd94b6b?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-fa7d1a1f-d065-4d58-bb12-a59f22106473?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f362e-c01a-0082-4537-9d9b7c000000\nTime:2020-10-08T05:52:52.0118718Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:51 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-fa7d1a1f-d065-4d58-bb12-a59f22106473?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-fcc35a78-e231-4233-a311-d48ee9bb2df7?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3630-c01a-0082-4737-9d9b7c000000\nTime:2020-10-08T05:52:52.0779187Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:51 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-fcc35a78-e231-4233-a311-d48ee9bb2df7?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:51 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test16185160b?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3631-c01a-0082-4837-9d9b7c000000\nTime:2020-10-08T05:52:52.1499698Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:51 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test16185160b?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:52 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test1bd1a12dd?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3632-c01a-0082-4937-9d9b7c000000\nTime:2020-10-08T05:52:52.2270246Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:51 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test1bd1a12dd?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:52 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test2bd1a12dd?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3635-c01a-0082-4c37-9d9b7c000000\nTime:2020-10-08T05:52:52.2980746Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:52 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test2bd1a12dd?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:52 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test403e0ff4?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3636-c01a-0082-4d37-9d9b7c000000\nTime:2020-10-08T05:52:52.3731288Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:52 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test403e0ff4?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:52 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test49161594?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3637-c01a-0082-4e37-9d9b7c000000\nTime:2020-10-08T05:52:52.4461802Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:52 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test49161594?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:52 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test50ad1060?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3638-c01a-0082-4f37-9d9b7c000000\nTime:2020-10-08T05:52:52.5182310Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:52 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test50ad1060?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:52 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test600515ff?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f363a-c01a-0082-5137-9d9b7c000000\nTime:2020-10-08T05:52:52.5912829Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:52 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test600515ff?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:52 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test602310dc?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f363b-c01a-0082-5237-9d9b7c000000\nTime:2020-10-08T05:52:52.6663362Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:52 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test602310dc?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:52 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test6185160b?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f363d-c01a-0082-5437-9d9b7c000000\nTime:2020-10-08T05:52:52.7413895Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:52 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test6185160b?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:52 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test801b1156?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f363e-c01a-0082-5537-9d9b7c000000\nTime:2020-10-08T05:52:52.8174439Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:52 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test801b1156?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:52 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test816f1171?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f363f-c01a-0082-5637-9d9b7c000000\nTime:2020-10-08T05:52:52.8924972Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:52 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test816f1171?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:52 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test82b3117d?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3640-c01a-0082-5737-9d9b7c000000\nTime:2020-10-08T05:52:52.9685508Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:52 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test82b3117d?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:52 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test8fc916f4?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3641-c01a-0082-5837-9d9b7c000000\nTime:2020-10-08T05:52:53.0365991Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:52 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test8fc916f4?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:52 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testa7a1477?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3642-c01a-0082-5937-9d9b7c000000\nTime:2020-10-08T05:52:53.1126532Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:52 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/testa7a1477?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:52 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testcb2f1317?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3643-c01a-0082-5a37-9d9b7c000000\nTime:2020-10-08T05:52:53.1907086Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:52 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/testcb2f1317?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:53 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testcf0d1359?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3644-c01a-0082-5b37-9d9b7c000000\nTime:2020-10-08T05:52:53.2667631Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:52 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/testcf0d1359?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:53 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testdfa11382?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3645-c01a-0082-5c37-9d9b7c000000\nTime:2020-10-08T05:52:53.3418159Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:53 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/testdfa11382?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:53 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/teste121138e?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3646-c01a-0082-5d37-9d9b7c000000\nTime:2020-10-08T05:52:53.4168701Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:53 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/teste121138e?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:53 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/teste52d0d77?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3647-c01a-0082-5e37-9d9b7c000000\nTime:2020-10-08T05:52:53.4919230Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:53 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/teste52d0d77?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:53 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testf3ff13d3?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f3649-c01a-0082-5f37-9d9b7c000000\nTime:2020-10-08T05:52:53.5679766Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:53 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/testf3ff13d3?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:53 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testf55313ee?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f364a-c01a-0082-6037-9d9b7c000000\nTime:2020-10-08T05:52:53.6450317Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:53 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/testf55313ee?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:52:53 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testf69713fa?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:076f364b-c01a-0082-6137-9d9b7c000000\nTime:2020-10-08T05:52:53.7150823Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:52:53 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/testf69713fa?restype=share +version: 1 diff --git a/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_set_share_properties_async.yaml b/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_set_share_properties_async.yaml index 57131a24fe3b..52aa132b9015 100644 --- a/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_set_share_properties_async.yaml +++ b/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_set_share_properties_async.yaml @@ -3,171 +3,1976 @@ interactions: body: null headers: User-Agent: - - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0) + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 15 Jan 2020 23:55:14 GMT + - Thu, 08 Oct 2020 05:50:02 GMT x-ms-version: - - '2019-02-02' + - '2020-02-10' method: PUT - uri: https://storagename.file.core.windows.net/sharee59a13e4?restype=share + uri: https://storagename.file.core.windows.net/share1e59a13e4?restype=share response: body: string: '' headers: content-length: '0' - date: Wed, 15 Jan 2020 23:55:14 GMT - etag: '"0x8D79A165DA4593F"' - last-modified: Wed, 15 Jan 2020 23:55:14 GMT + date: Thu, 08 Oct 2020 05:50:03 GMT + etag: '"0x8D86B4E0095EE15"' + last-modified: Thu, 08 Oct 2020 05:50:03 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2019-02-02' + x-ms-version: '2020-02-10' status: code: 201 message: Created - url: !!python/object/new:yarl.URL - state: !!python/tuple - - !!python/object/new:urllib.parse.SplitResult - - https - - pyacrstorage43x4qoc3y4bx.file.core.windows.net - - /sharee59a13e4 - - restype=share - - '' + url: https://seanmcccanary3.file.core.windows.net/share1e59a13e4?restype=share - request: body: null headers: User-Agent: - - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0) + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 15 Jan 2020 23:55:14 GMT + - Thu, 08 Oct 2020 05:50:03 GMT + x-ms-version: + - '2020-02-10' + method: PUT + uri: https://storagename.file.core.windows.net/share2e59a13e4?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 08 Oct 2020 05:50:03 GMT + etag: '"0x8D86B4E00A09E64"' + last-modified: Thu, 08 Oct 2020 05:50:03 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 201 + message: Created + url: https://seanmcccanary3.file.core.windows.net/share2e59a13e4?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:03 GMT x-ms-share-quota: - '1' x-ms-version: - - '2019-02-02' + - '2020-02-10' + method: PUT + uri: https://storagename.file.core.windows.net/share1e59a13e4?restype=share&comp=properties + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 08 Oct 2020 05:50:03 GMT + etag: '"0x8D86B4E00AA8505"' + last-modified: Thu, 08 Oct 2020 05:50:03 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 200 + message: OK + url: https://seanmcccanary3.file.core.windows.net/share1e59a13e4?restype=share&comp=properties +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-access-tier: + - Hot + x-ms-date: + - Thu, 08 Oct 2020 05:50:03 GMT + x-ms-version: + - '2020-02-10' + method: PUT + uri: https://storagename.file.core.windows.net/share1e59a13e4?restype=share&comp=properties + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 08 Oct 2020 05:50:03 GMT + etag: '"0x8D86B4E00B61FDD"' + last-modified: Thu, 08 Oct 2020 05:50:03 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 200 + message: OK + url: https://seanmcccanary3.file.core.windows.net/share1e59a13e4?restype=share&comp=properties +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-access-tier: + - Cool + x-ms-date: + - Thu, 08 Oct 2020 05:50:03 GMT + x-ms-version: + - '2020-02-10' + method: PUT + uri: https://storagename.file.core.windows.net/share2e59a13e4?restype=share&comp=properties + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 08 Oct 2020 05:50:03 GMT + etag: '"0x8D86B4E00BF976E"' + last-modified: Thu, 08 Oct 2020 05:50:03 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 200 + message: OK + url: https://seanmcccanary3.file.core.windows.net/share2e59a13e4?restype=share&comp=properties +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:03 GMT + x-ms-share-quota: + - '2' + x-ms-version: + - '2020-02-10' method: PUT - uri: https://storagename.file.core.windows.net/sharee59a13e4?restype=share&comp=properties + uri: https://storagename.file.core.windows.net/share2e59a13e4?restype=share&comp=properties response: body: string: '' headers: content-length: '0' - date: Wed, 15 Jan 2020 23:55:14 GMT - etag: '"0x8D79A165DB7DB43"' - last-modified: Wed, 15 Jan 2020 23:55:14 GMT + date: Thu, 08 Oct 2020 05:50:03 GMT + etag: '"0x8D86B4E00C9844D"' + last-modified: Thu, 08 Oct 2020 05:50:03 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2019-02-02' + x-ms-version: '2020-02-10' status: code: 200 message: OK - url: !!python/object/new:yarl.URL - state: !!python/tuple - - !!python/object/new:urllib.parse.SplitResult - - https - - pyacrstorage43x4qoc3y4bx.file.core.windows.net - - /sharee59a13e4 - - restype=share&comp=properties - - '' + url: https://seanmcccanary3.file.core.windows.net/share2e59a13e4?restype=share&comp=properties - request: body: null headers: User-Agent: - - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0) + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 15 Jan 2020 23:55:14 GMT + - Thu, 08 Oct 2020 05:50:03 GMT x-ms-version: - - '2019-02-02' + - '2020-02-10' method: GET - uri: https://storagename.file.core.windows.net/sharee59a13e4?restype=share + uri: https://storagename.file.core.windows.net/share1e59a13e4?restype=share response: body: string: '' headers: content-length: '0' - date: Wed, 15 Jan 2020 23:55:14 GMT - etag: '"0x8D79A165DB7DB43"' - last-modified: Wed, 15 Jan 2020 23:55:14 GMT + date: Thu, 08 Oct 2020 05:50:03 GMT + etag: '"0x8D86B4E00B61FDD"' + last-modified: Thu, 08 Oct 2020 05:50:03 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 vary: Origin + x-ms-access-tier: Hot + x-ms-access-tier-change-time: Thu, 08 Oct 2020 05:50:03 GMT + x-ms-access-tier-transition-state: pending-from-transactionOptimized x-ms-has-immutability-policy: 'false' x-ms-has-legal-hold: 'false' + x-ms-lease-state: available + x-ms-lease-status: unlocked x-ms-share-quota: '1' - x-ms-version: '2019-02-02' + x-ms-version: '2020-02-10' + status: + code: 200 + message: OK + url: https://seanmcccanary3.file.core.windows.net/share1e59a13e4?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:03 GMT + x-ms-version: + - '2020-02-10' + method: GET + uri: https://storagename.file.core.windows.net/share2e59a13e4?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 08 Oct 2020 05:50:03 GMT + etag: '"0x8D86B4E00C9844D"' + last-modified: Thu, 08 Oct 2020 05:50:03 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + vary: Origin + x-ms-access-tier: Cool + x-ms-access-tier-change-time: Thu, 08 Oct 2020 05:50:03 GMT + x-ms-access-tier-transition-state: pending-from-transactionOptimized + x-ms-has-immutability-policy: 'false' + x-ms-has-legal-hold: 'false' + x-ms-lease-state: available + x-ms-lease-status: unlocked + x-ms-share-quota: '2' + x-ms-version: '2020-02-10' status: code: 200 message: OK - url: !!python/object/new:yarl.URL - state: !!python/tuple - - !!python/object/new:urllib.parse.SplitResult - - https - - pyacrstorage43x4qoc3y4bx.file.core.windows.net - - /sharee59a13e4 - - restype=share - - '' + url: https://seanmcccanary3.file.core.windows.net/share2e59a13e4?restype=share - request: body: null headers: Accept: - application/xml User-Agent: - - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0) + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 15 Jan 2020 23:55:14 GMT + - Thu, 08 Oct 2020 05:50:03 GMT x-ms-version: - - '2019-02-02' + - '2020-02-10' method: GET uri: https://storagename.file.core.windows.net/?include=snapshots&comp=list response: body: string: "\uFEFFsharee59a13e4Wed, - 15 Jan 2020 23:55:14 GMT\"0x8D79A165DB7DB43\"1share1816f1171Fri, + 11 Sep 2020 00:43:37 GMT\"0x8D855EBB87CFF33\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:43:37 GMT$account-encryption-keyfalseshare182b3117dFri, + 11 Sep 2020 00:44:44 GMT\"0x8D855EBE0710239\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:44:44 GMT$account-encryption-keyfalseshare1e59a13e4Thu, + 08 Oct 2020 05:50:03 GMT\"0x8D86B4E00B61FDD\"unlockedavailable1HotThu, + 08 Oct 2020 05:50:03 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare2e59a13e4Thu, + 08 Oct 2020 05:50:03 GMT\"0x8D86B4E00C9844D\"unlockedavailable2CoolThu, + 08 Oct 2020 05:50:03 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare336d1532Fri, + 11 Sep 2020 00:02:03 GMT\"0x8D855E5EA1BA89C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:02:03 GMT$account-encryption-keyfalseshare50ad1060Tue, + 29 Sep 2020 22:27:37 GMT\"0x8D864C6DE6E6B78\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:27:37 GMT$account-encryption-keyfalseshare602310dcThu, + 10 Sep 2020 23:45:57 GMT\"0x8D855E3AA5BA817\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:45:57 GMT$account-encryption-keyfalseshare801b1156Thu, + 10 Sep 2020 23:48:33 GMT\"0x8D855E4070545FC\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:48:33 GMT$account-encryption-keyfalsesharea7a1477Thu, + 10 Sep 2020 23:48:04 GMT\"0x8D855E3F609C583\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:48:04 GMT$account-encryption-keyfalseshareba3e12f12020-09-28T14:03:31.0000000ZMon, + 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"lockedleasedinfinite5120$account-encryption-keyfalseshareba3e12f1Mon, + 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"lockedleasedinfinite5120TransactionOptimizedMon, + 28 Sep 2020 14:03:31 GMT$account-encryption-keyfalsesharec80148eFri, + 11 Sep 2020 00:25:51 GMT\"0x8D855E93D722BB0\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:03:40 GMT$account-encryption-keyfalsesharecb2f1317Fri, + 11 Sep 2020 00:59:09 GMT\"0x8D855EDE422992F\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:59:09 GMT$account-encryption-keyfalsesharee121138eFri, + 11 Sep 2020 00:00:54 GMT\"0x8D855E5C0C0BD1C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:00:53 GMT$account-encryption-keyfalsesharee52d0d77Thu, + 10 Sep 2020 23:47:27 GMT\"0x8D855E3DFBB5CB3\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:47:20 GMT$account-encryption-keyfalsesharerestorecb2f1317Thu, + 10 Sep 2020 22:44:32 GMT\"0x8D855DB159313DC\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 22:44:32 GMT$account-encryption-keyfalsesharesamples5Tue, + 15 Sep 2020 19:39:56 GMT\"0x8D859AF1FEB001F\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:39:55 GMT$account-encryption-keyfalsesharesamples6Tue, + 15 Sep 2020 19:43:57 GMT\"0x8D859AFAFBA3E88\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:43:57 GMT$account-encryption-keyfalsesharesamples7Tue, + 15 Sep 2020 19:44:49 GMT\"0x8D859AFCEB7CC2D\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:44:49 GMT$account-encryption-keyfalsetest-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7Wed, + 05 Aug 2020 19:06:51 GMT\"0x8D83972B5D1302D\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:51 GMT$account-encryption-keyfalsetest-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31Wed, + 05 Aug 2020 19:06:49 GMT\"0x8D83972B5025718\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:49 GMT$account-encryption-keyfalsetest-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3aWed, + 05 Aug 2020 17:24:15 GMT\"0x8D8396460C3E165\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:15 GMT$account-encryption-keyfalsetest-share-26ae488a-f23e-4b65-aa5b-f273d6179074Wed, + 05 Aug 2020 19:06:50 GMT\"0x8D83972B592F011\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-49d22d21-4363-478e-8f26-1357ef6bd183Wed, + 05 Aug 2020 17:24:21 GMT\"0x8D8396464063943\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:21 GMT$account-encryption-keyfalsetest-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680Wed, + 05 Aug 2020 17:24:17 GMT\"0x8D8396461D987E1\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604Wed, + 05 Aug 2020 17:24:19 GMT\"0x8D83964633A2718\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:19 GMT$account-encryption-keyfalsetest-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52Wed, + 05 Aug 2020 19:06:50 GMT\"0x8D83972B538E3FD\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-8903864e-96ec-44f5-8912-837a9f23cbb5Wed, + 05 Aug 2020 00:04:00 GMT\"0x8D838D30E563856\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 00:04:00 GMT$account-encryption-keyfalsetest-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67aWed, + 05 Aug 2020 17:24:18 GMT\"0x8D8396462815131\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-d5852df4-944a-48b9-8552-eea5bfd94b6bWed, + 05 Aug 2020 17:24:20 GMT\"0x8D8396463BD465A\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:20 GMT$account-encryption-keyfalsetest-share-fa7d1a1f-d065-4d58-bb12-a59f22106473Wed, + 05 Aug 2020 17:24:18 GMT\"0x8D839646251B45A\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-fcc35a78-e231-4233-a311-d48ee9bb2df7Wed, + 05 Aug 2020 17:24:16 GMT\"0x8D83964610EBC77\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest16185160bFri, + 11 Sep 2020 13:51:30 GMT\"0x8D85659C98711F1\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:51:30 GMT$account-encryption-keyfalsetest1bd1a12ddTue, + 29 Sep 2020 22:34:36 GMT\"0x8D864C7D8628CD4\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:34:36 GMT$account-encryption-keyfalsetest2bd1a12ddTue, + 29 Sep 2020 22:38:12 GMT\"0x8D864C858E9FC21\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:38:12 GMT$account-encryption-keyfalsetest403e0ff4Fri, + 11 Sep 2020 13:48:01 GMT\"0x8D856594D05BB2E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:48:01 GMT$account-encryption-keyfalsetest49161594Fri, + 11 Sep 2020 13:44:29 GMT\"0x8D85658CEB83E6D\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:44:29 GMT$account-encryption-keyfalsetest50ad1060Tue, + 29 Sep 2020 22:31:15 GMT\"0x8D864C760543D56\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:31:14 GMT$account-encryption-keyfalsetest600515ffFri, + 11 Sep 2020 13:52:29 GMT\"0x8D85659ECC7BFF5\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:52:29 GMT$account-encryption-keyfalsetest602310dcFri, + 11 Sep 2020 01:46:55 GMT\"0x8D855F490678FD9\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:46:55 GMT$account-encryption-keyfalsetest6185160bFri, + 11 Sep 2020 13:50:04 GMT\"0x8D85659960A4A9F\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:50:03 GMT$account-encryption-keyfalsetest801b1156Fri, + 11 Sep 2020 01:43:39 GMT\"0x8D855F41B7485A5\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:39 GMT$account-encryption-keyfalsetest816f1171Fri, + 11 Sep 2020 01:44:03 GMT\"0x8D855F429A8569E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:44:03 GMT$account-encryption-keyfalsetest82b3117dFri, + 11 Sep 2020 01:44:09 GMT\"0x8D855F42D9DFD7A\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:44:09 GMT$account-encryption-keyfalsetest8fc916f4Fri, + 11 Sep 2020 13:48:35 GMT\"0x8D8565961566D0E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:48:35 GMT$account-encryption-keyfalsetesta7a1477Fri, + 11 Sep 2020 01:42:27 GMT\"0x8D855F3F0B3CE4D\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:42:27 GMT$account-encryption-keyfalsetestcb2f1317Fri, + 11 Sep 2020 01:35:53 GMT\"0x8D855F305C89D8C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:35:53 GMT$account-encryption-keyfalsetestcf0d1359Fri, + 11 Sep 2020 13:46:53 GMT\"0x8D856592431D1AA\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:46:53 GMT$account-encryption-keyfalsetestdfa11382Fri, + 11 Sep 2020 01:43:51 GMT\"0x8D855F422BEA24C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:51 GMT$account-encryption-keyfalseteste121138eFri, + 11 Sep 2020 01:43:45 GMT\"0x8D855F41F52C3FB\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:45 GMT$account-encryption-keyfalseteste52d0d77Fri, + 11 Sep 2020 01:42:19 GMT\"0x8D855F3EC19CB5C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:42:19 GMT$account-encryption-keyfalsetestf3ff13d3Fri, + 11 Sep 2020 13:49:19 GMT\"0x8D856597B1CC145\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:49:19 GMT$account-encryption-keyfalsetestf55313eeFri, + 11 Sep 2020 13:53:58 GMT\"0x8D8565A21BA7745\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:53:58 GMT$account-encryption-keyfalsetestf69713faFri, + 11 Sep 2020 13:54:36 GMT\"0x8D8565A3813B91A\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:54:35 GMT$account-encryption-keyfalse" headers: content-type: application/xml - date: Wed, 15 Jan 2020 23:55:14 GMT + date: Thu, 08 Oct 2020 05:50:03 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: chunked vary: Origin - x-ms-version: '2019-02-02' + x-ms-version: '2020-02-10' status: code: 200 message: OK - url: !!python/object/new:yarl.URL - state: !!python/tuple - - !!python/object/new:urllib.parse.SplitResult - - https - - pyacrstorage43x4qoc3y4bx.file.core.windows.net - - / - - include=snapshots&comp=list - - '' + url: https://seanmcccanary3.file.core.windows.net/?include=snapshots&comp=list +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:03 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share1816f1171?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd72f-701a-003e-6536-9d4dbd000000\nTime:2020-10-08T05:50:04.2968295Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:04 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/share1816f1171?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:04 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share182b3117d?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd730-701a-003e-6636-9d4dbd000000\nTime:2020-10-08T05:50:04.4089101Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:04 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/share182b3117d?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:04 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share1e59a13e4?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 08 Oct 2020 05:50:04 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/share1e59a13e4?restype=share - request: body: null headers: User-Agent: - - azsdk-python-storage-file-share/12.0.1 Python/3.7.3 (Windows-10-10.0.17763-SP0) + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Wed, 15 Jan 2020 23:55:14 GMT + - Thu, 08 Oct 2020 05:50:04 GMT x-ms-delete-snapshots: - include x-ms-version: - - '2019-02-02' + - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/sharee59a13e4?restype=share + uri: https://storagename.file.core.windows.net/share2e59a13e4?restype=share response: body: string: '' headers: content-length: '0' - date: Wed, 15 Jan 2020 23:55:14 GMT + date: Thu, 08 Oct 2020 05:50:04 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2019-02-02' + x-ms-version: '2020-02-10' status: code: 202 message: Accepted - url: !!python/object/new:yarl.URL - state: !!python/tuple - - !!python/object/new:urllib.parse.SplitResult - - https - - pyacrstorage43x4qoc3y4bx.file.core.windows.net - - /sharee59a13e4 - - restype=share - - '' + url: https://seanmcccanary3.file.core.windows.net/share2e59a13e4?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:04 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share336d1532?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd733-701a-003e-6936-9d4dbd000000\nTime:2020-10-08T05:50:04.6060519Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:04 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/share336d1532?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:04 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share50ad1060?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd734-701a-003e-6a36-9d4dbd000000\nTime:2020-10-08T05:50:04.6811054Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:04 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/share50ad1060?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:04 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share602310dc?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd735-701a-003e-6b36-9d4dbd000000\nTime:2020-10-08T05:50:04.8302127Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:04 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/share602310dc?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:04 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/share801b1156?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd737-701a-003e-6c36-9d4dbd000000\nTime:2020-10-08T05:50:04.8992624Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:04 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/share801b1156?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:04 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharea7a1477?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd738-701a-003e-6d36-9d4dbd000000\nTime:2020-10-08T05:50:04.9773185Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:04 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharea7a1477?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:04 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/shareba3e12f1?restype=share + response: + body: + string: "\uFEFFDeleteShareWhenSnapshotLeasedUnable + to delete share because one or more share snapshots have active leases. Release + the share snapshot leases or delete the share with the include-leased parameter + for x-ms-delete-snapshots.\nRequestId:936bd739-701a-003e-6e36-9d4dbd000000\nTime:2020-10-08T05:50:05.0493707Z" + headers: + content-length: '391' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:04 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: DeleteShareWhenSnapshotLeased + x-ms-version: '2020-02-10' + status: + code: 409 + message: Unable to delete share because one or more share snapshots have active + leases. Release the share snapshot leases or delete the share with the include-leased + parameter for x-ms-delete-snapshots. + url: https://seanmcccanary3.file.core.windows.net/shareba3e12f1?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:04 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/shareba3e12f1?restype=share + response: + body: + string: "\uFEFFDeleteShareWhenSnapshotLeasedUnable + to delete share because one or more share snapshots have active leases. Release + the share snapshot leases or delete the share with the include-leased parameter + for x-ms-delete-snapshots.\nRequestId:936bd73a-701a-003e-6f36-9d4dbd000000\nTime:2020-10-08T05:50:05.1184204Z" + headers: + content-length: '391' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:04 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: DeleteShareWhenSnapshotLeased + x-ms-version: '2020-02-10' + status: + code: 409 + message: Unable to delete share because one or more share snapshots have active + leases. Release the share snapshot leases or delete the share with the include-leased + parameter for x-ms-delete-snapshots. + url: https://seanmcccanary3.file.core.windows.net/shareba3e12f1?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:04 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharec80148e?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd73c-701a-003e-7036-9d4dbd000000\nTime:2020-10-08T05:50:05.1834668Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:04 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharec80148e?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:05 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharecb2f1317?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd73d-701a-003e-7136-9d4dbd000000\nTime:2020-10-08T05:50:05.2635252Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:05 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharecb2f1317?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:05 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharee121138e?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd73e-701a-003e-7236-9d4dbd000000\nTime:2020-10-08T05:50:05.3365773Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:05 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharee121138e?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:05 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharee52d0d77?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd73f-701a-003e-7336-9d4dbd000000\nTime:2020-10-08T05:50:05.4026252Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:05 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharee52d0d77?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:05 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharerestorecb2f1317?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd740-701a-003e-7436-9d4dbd000000\nTime:2020-10-08T05:50:05.4656697Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:05 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharerestorecb2f1317?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:05 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharesamples5?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd741-701a-003e-7536-9d4dbd000000\nTime:2020-10-08T05:50:05.5377220Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:05 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharesamples5?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:05 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharesamples6?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd742-701a-003e-7636-9d4dbd000000\nTime:2020-10-08T05:50:05.6147774Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:05 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharesamples6?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:05 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/sharesamples7?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd743-701a-003e-7736-9d4dbd000000\nTime:2020-10-08T05:50:05.6898310Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:05 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/sharesamples7?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:05 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd744-701a-003e-7836-9d4dbd000000\nTime:2020-10-08T05:50:05.7678875Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:05 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:05 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd745-701a-003e-7936-9d4dbd000000\nTime:2020-10-08T05:50:05.8319336Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:05 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:05 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3a?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd746-701a-003e-7a36-9d4dbd000000\nTime:2020-10-08T05:50:05.9099897Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:05 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3a?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:05 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-26ae488a-f23e-4b65-aa5b-f273d6179074?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd747-701a-003e-7b36-9d4dbd000000\nTime:2020-10-08T05:50:05.9930495Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:05 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-26ae488a-f23e-4b65-aa5b-f273d6179074?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:05 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-49d22d21-4363-478e-8f26-1357ef6bd183?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd748-701a-003e-7c36-9d4dbd000000\nTime:2020-10-08T05:50:06.0580962Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:05 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-49d22d21-4363-478e-8f26-1357ef6bd183?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:05 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd74a-701a-003e-7d36-9d4dbd000000\nTime:2020-10-08T05:50:06.1211412Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:05 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:05 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd74b-701a-003e-7e36-9d4dbd000000\nTime:2020-10-08T05:50:06.1861879Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:05 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:06 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd74c-701a-003e-7f36-9d4dbd000000\nTime:2020-10-08T05:50:06.2492337Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:06 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-8903864e-96ec-44f5-8912-837a9f23cbb5?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd74d-701a-003e-8036-9d4dbd000000\nTime:2020-10-08T05:50:06.3132798Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-8903864e-96ec-44f5-8912-837a9f23cbb5?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:06 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67a?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd74e-701a-003e-0136-9d4dbd000000\nTime:2020-10-08T05:50:06.3773254Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67a?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:06 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-d5852df4-944a-48b9-8552-eea5bfd94b6b?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd74f-701a-003e-0236-9d4dbd000000\nTime:2020-10-08T05:50:06.4423726Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-d5852df4-944a-48b9-8552-eea5bfd94b6b?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:06 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-fa7d1a1f-d065-4d58-bb12-a59f22106473?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd750-701a-003e-0336-9d4dbd000000\nTime:2020-10-08T05:50:06.5084197Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-fa7d1a1f-d065-4d58-bb12-a59f22106473?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:06 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-fcc35a78-e231-4233-a311-d48ee9bb2df7?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd751-701a-003e-0436-9d4dbd000000\nTime:2020-10-08T05:50:06.5744672Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-fcc35a78-e231-4233-a311-d48ee9bb2df7?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:06 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test16185160b?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd752-701a-003e-0536-9d4dbd000000\nTime:2020-10-08T05:50:06.6385133Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test16185160b?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:06 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test1bd1a12dd?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd753-701a-003e-0636-9d4dbd000000\nTime:2020-10-08T05:50:06.7035601Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test1bd1a12dd?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:06 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test2bd1a12dd?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd754-701a-003e-0736-9d4dbd000000\nTime:2020-10-08T05:50:06.7766126Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test2bd1a12dd?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:06 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test403e0ff4?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd755-701a-003e-0836-9d4dbd000000\nTime:2020-10-08T05:50:06.8656767Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test403e0ff4?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:06 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test49161594?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd756-701a-003e-0936-9d4dbd000000\nTime:2020-10-08T05:50:06.9387292Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test49161594?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:06 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test50ad1060?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd757-701a-003e-0a36-9d4dbd000000\nTime:2020-10-08T05:50:07.0117819Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test50ad1060?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:06 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test600515ff?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd759-701a-003e-0b36-9d4dbd000000\nTime:2020-10-08T05:50:07.0878356Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test600515ff?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:06 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test602310dc?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd75b-701a-003e-0c36-9d4dbd000000\nTime:2020-10-08T05:50:07.1568849Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test602310dc?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:07 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test6185160b?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd75c-701a-003e-0d36-9d4dbd000000\nTime:2020-10-08T05:50:07.2229319Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:06 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test6185160b?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:07 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test801b1156?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd75d-701a-003e-0e36-9d4dbd000000\nTime:2020-10-08T05:50:07.2879787Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:07 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test801b1156?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:07 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test816f1171?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd75e-701a-003e-0f36-9d4dbd000000\nTime:2020-10-08T05:50:07.3530251Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:07 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test816f1171?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:07 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test82b3117d?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd75f-701a-003e-1036-9d4dbd000000\nTime:2020-10-08T05:50:07.4290793Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:07 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test82b3117d?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:07 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test8fc916f4?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd760-701a-003e-1136-9d4dbd000000\nTime:2020-10-08T05:50:07.5051340Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:07 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test8fc916f4?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:07 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testa7a1477?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd761-701a-003e-1236-9d4dbd000000\nTime:2020-10-08T05:50:07.5801870Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:07 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/testa7a1477?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:07 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testcb2f1317?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd762-701a-003e-1336-9d4dbd000000\nTime:2020-10-08T05:50:07.6552401Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:07 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/testcb2f1317?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:07 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testcf0d1359?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd764-701a-003e-1436-9d4dbd000000\nTime:2020-10-08T05:50:07.7332962Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:07 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/testcf0d1359?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:07 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testdfa11382?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd765-701a-003e-1536-9d4dbd000000\nTime:2020-10-08T05:50:07.8073485Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:07 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/testdfa11382?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:07 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/teste121138e?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd766-701a-003e-1636-9d4dbd000000\nTime:2020-10-08T05:50:07.8844034Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:07 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/teste121138e?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:07 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/teste52d0d77?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd767-701a-003e-1736-9d4dbd000000\nTime:2020-10-08T05:50:07.9594569Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:07 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/teste52d0d77?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:07 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testf3ff13d3?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd768-701a-003e-1836-9d4dbd000000\nTime:2020-10-08T05:50:08.0395145Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:07 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/testf3ff13d3?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:07 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testf55313ee?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd769-701a-003e-1936-9d4dbd000000\nTime:2020-10-08T05:50:08.1155696Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:07 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/testf55313ee?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 08 Oct 2020 05:50:07 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/testf69713fa?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:936bd76a-701a-003e-1a36-9d4dbd000000\nTime:2020-10-08T05:50:08.1936258Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 08 Oct 2020 05:50:07 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/testf69713fa?restype=share version: 1 diff --git a/sdk/storage/azure-storage-file-share/tests/test_share_async.py b/sdk/storage/azure-storage-file-share/tests/test_share_async.py index 64e3b3818131..67180dbd8273 100644 --- a/sdk/storage/azure-storage-file-share/tests/test_share_async.py +++ b/sdk/storage/azure-storage-file-share/tests/test_share_async.py @@ -22,6 +22,7 @@ from azure.storage.fileshare import ( AccessPolicy, ShareSasPermissions, + ShareAccessTier, generate_share_sas, ) from azure.storage.fileshare.aio import ( @@ -562,6 +563,21 @@ async def test_create_share_with_quota_async(self, resource_group, location, sto self.assertEqual(props.quota, 1) await self._delete_shares(client.share_name) + @GlobalStorageAccountPreparer() + @AsyncStorageTestCase.await_prepared_test + async def test_create_share_with_access_tier(self, resource_group, location, storage_account, storage_account_key): + self._setup(storage_account, storage_account_key) + + # Act + client = self._get_share_reference() + created = await client.create_share(access_tier="Hot") + + # Assert + props = await client.get_share_properties() + self.assertTrue(created) + self.assertEqual(props.access_tier, "Hot") + await self._delete_shares(client.share_name) + @GlobalStorageAccountPreparer() @AsyncStorageTestCase.await_prepared_test async def test_share_exists_async(self, resource_group, location, storage_account, storage_account_key): @@ -851,16 +867,31 @@ async def test_get_share_metadata_with_snapshot_async(self, resource_group, loca @AsyncStorageTestCase.await_prepared_test async def test_set_share_properties_async(self, resource_group, location, storage_account, storage_account_key): self._setup(storage_account, storage_account_key) - share = await self._create_share() - await share.set_share_quota(1) + share1 = await self._create_share("share1") + share2 = await self._create_share("share2") + + await share1.set_share_quota(1) + await share1.set_share_tier("Hot") + + await share2.set_share_tier(ShareAccessTier("Cool")) + await share2.set_share_quota(2) # Act - props = await share.get_share_properties() + props1 = await share1.get_share_properties() + props2 = await share2.get_share_properties() - # Assert - self.assertIsNotNone(props) - self.assertEqual(props.quota, 1) - await self._delete_shares(share.share_name) + share1_quota = props1.quota + share1_tier = props1.access_tier + + share2_quota = props2.quota + share2_tier = props2.access_tier + + # Assert quotas and access tiers don't change by calling the other method. + self.assertEqual(share1_quota, 1) + self.assertEqual(share1_tier, "Hot") + self.assertEqual(share2_quota, 2) + self.assertEqual(share2_tier, "Cool") + await self._delete_shares() @GlobalResourceGroupPreparer() @StorageAccountPreparer(random_name_enabled=True, sku='premium_LRS', name_prefix='pyacrstorage', kind='FileStorage') From 8838d40d24056536ed35d586526dfb3b4fac17d0 Mon Sep 17 00:00:00 2001 From: Tamer Sherif Date: Wed, 7 Oct 2020 22:58:33 -0700 Subject: [PATCH 06/11] docstrings --- .../azure-storage-file-share/azure/storage/fileshare/_models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py index b8a1b050013f..160b856ea8f3 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py @@ -309,7 +309,7 @@ class ShareProperties(DictMixin): :ivar int quota: The allocated quota. :ivar str access_tier: - The share's tier. + The share's access tier. :ivar dict metadata: A dict with name_value pairs to associate with the share as metadata. :ivar str snapshot: From bb6c1f77a5991494ba44ad90cf801ed6912eae31 Mon Sep 17 00:00:00 2001 From: Tamer Sherif Date: Thu, 8 Oct 2020 10:02:38 -0700 Subject: [PATCH 07/11] reset checks --- .../azure-storage-file-share/samples/file_samples_share.py | 1 + .../azure-storage-file-share/samples/file_samples_share_async.py | 1 + 2 files changed, 2 insertions(+) diff --git a/sdk/storage/azure-storage-file-share/samples/file_samples_share.py b/sdk/storage/azure-storage-file-share/samples/file_samples_share.py index d64389f603d1..bbc018a3977a 100644 --- a/sdk/storage/azure-storage-file-share/samples/file_samples_share.py +++ b/sdk/storage/azure-storage-file-share/samples/file_samples_share.py @@ -91,6 +91,7 @@ def set_share_tier(self): share1.set_share_tier(access_tier="Hot") # Set the tier for the second share to Hot share2.set_share_tier(access_tier=ShareAccessTier("Cool")) + # Get the shares' properties print(share1.get_share_properties().access_tier) print(share2.get_share_properties().access_tier) diff --git a/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py b/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py index 477ed33e8b06..09885e586648 100644 --- a/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py +++ b/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py @@ -95,6 +95,7 @@ async def set_share_tier(self): await share1.set_share_tier(access_tier="Hot") # Set the tier for the second share to Hot await share2.set_share_tier(access_tier=ShareAccessTier("Cool")) + # Get the shares' properties props1 = await share1.get_share_properties() print(props1.access_tier) From c50f93732d3b0bf758de02feb8841a27e13cedf9 Mon Sep 17 00:00:00 2001 From: Tamer Sherif Date: Thu, 8 Oct 2020 13:55:16 -0700 Subject: [PATCH 08/11] pylint --- .../azure/storage/fileshare/_share_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py index 6fe62869eab0..0e0e6c981fc1 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py @@ -514,7 +514,7 @@ def set_share_quota(self, quota, **kwargs): return self._client.share.set_properties( # type: ignore timeout=timeout, quota=quota, - access_tier= None, + access_tier=None, lease_access_conditions=access_conditions, cls=return_response_headers, **kwargs) From 5598b19e21261e7923dc08bf395a726b70271db0 Mon Sep 17 00:00:00 2001 From: Tamer Sherif Date: Wed, 14 Oct 2020 18:25:05 -0700 Subject: [PATCH 09/11] changed method to set share properties --- .../azure/storage/fileshare/__init__.py | 2 + .../azure/storage/fileshare/_models.py | 16 + .../azure/storage/fileshare/_share_client.py | 26 +- .../fileshare/aio/_share_client_async.py | 28 +- .../samples/file_samples_share.py | 33 +- .../samples/file_samples_share_async.py | 25 +- .../test_share.test_set_share_properties.yaml | 578 ++-- ...async.test_set_share_properties_async.yaml | 3062 ++++++++++++++--- .../tests/test_share.py | 12 +- .../tests/test_share_async.py | 12 +- 10 files changed, 2951 insertions(+), 843 deletions(-) diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/__init__.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/__init__.py index d5a1b769973a..89951880ecb1 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/__init__.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/__init__.py @@ -28,6 +28,7 @@ ShareSmbSettings, SmbMultichannel, ShareProtocolSettings, + ShareSetPropertiesOptions, AccessPolicy, FileSasPermissions, ShareSasPermissions, @@ -60,6 +61,7 @@ 'ShareAccessTier', 'SmbMultichannel', 'ShareProtocolSettings', + 'ShareSetPropertiesOptions', 'AccessPolicy', 'FileSasPermissions', 'ShareSasPermissions', diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py index 160b856ea8f3..5f99b9affed3 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py @@ -171,6 +171,22 @@ def _from_generated(cls, generated): smb=generated.smb) +class ShareSetPropertiesOptions(object): + """Sets the properties for the share. + + :param access_tier: + Specifies the access tier of the share. + Possible values: 'TransactionOptimized', 'Hot', and 'Cool' + :type access_tier: str or ~azure.storage.fileshare.models.ShareAccessTier + :param int quota: + Specifies the maximum size of the share, in gigabytes. + Must be greater than 0, and less than or equal to 5TB. + """ + def __init__(self, quota=None, access_tier=None): + self.quota = quota + self.access_tier = access_tier + + class AccessPolicy(GenAccessPolicy): """Access Policy class used by the set and get acl methods in each service. diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py index 0e0e6c981fc1..036e042d4955 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py @@ -22,7 +22,6 @@ return_response_headers, process_storage_error, return_headers_and_deserialized) -from ._generated.models import ShareAccessTier from ._generated import AzureFileStorage from ._generated.version import VERSION from ._generated.models import ( @@ -37,7 +36,7 @@ from ._lease import ShareLeaseClient if TYPE_CHECKING: - from ._models import ShareProperties, AccessPolicy + from ._models import ShareProperties, AccessPolicy, ShareSetPropertiesOptions class ShareClient(StorageAccountHostsMixin): @@ -522,16 +521,15 @@ def set_share_quota(self, quota, **kwargs): process_storage_error(error) @distributed_trace - def set_share_tier(self, access_tier, **kwargs): - # type: (Union[str, ShareAccessTier], Any) -> Dict[str, Any] - """Sets the tier for the share. + def set_share_properties(self, options, **kwargs): + # type: (ShareSetPropertiesOptions, Any) -> Dict[str, Any] + """Sets the share properties. .. versionadded:: 12.6.0 - :param int access_tier: - Specifies the access tier of the share. - Possible values: 'TransactionOptimized', 'Hot', 'Cool' - :type access_tier: str or ~azure.storage.fileshare.models.ShareAccessTier + :param options: + Specifies the properties to set on the share. + :type options: ~azure.storage.fileshare.models.ShareSetPropertiesOptions :keyword int timeout: The timeout parameter is expressed in seconds. :keyword lease: @@ -543,19 +541,19 @@ def set_share_tier(self, access_tier, **kwargs): .. admonition:: Example: .. literalinclude:: ../samples/file_samples_share.py - :start-after: [START set_share_tier] - :end-before: [END set_share_tier] + :start-after: [START set_share_properties] + :end-before: [END set_share_properties] :language: python :dedent: 12 - :caption: Sets the share tier. + :caption: Sets the share properties. """ access_conditions = get_access_conditions(kwargs.pop('lease', None)) timeout = kwargs.pop('timeout', None) try: return self._client.share.set_properties( # type: ignore timeout=timeout, - quota=None, - access_tier=access_tier, + quota=options.quota, + access_tier=options.access_tier, lease_access_conditions=access_conditions, cls=return_response_headers, **kwargs) diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py index f4bd4c59958f..f5404472b28d 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py @@ -18,7 +18,6 @@ return_response_headers, process_storage_error, return_headers_and_deserialized) -from .._generated.models import ShareAccessTier from .._generated.aio import AzureFileStorage from .._generated.version import VERSION from .._generated.models import ( @@ -34,7 +33,7 @@ if TYPE_CHECKING: - from .._models import ShareProperties, AccessPolicy + from .._models import ShareProperties, AccessPolicy, ShareSetPropertiesOptions class ShareClient(AsyncStorageAccountHostsMixin, ShareClientBase): @@ -391,16 +390,15 @@ async def set_share_quota(self, quota, **kwargs): except StorageErrorException as error: process_storage_error(error) - async def set_share_tier(self, access_tier, **kwargs): - # type: (Union[str, ShareAccessTier], Any) -> Dict[str, Any] - """Sets the tier for the share. + async def set_share_properties(self, options, **kwargs): + # type: (ShareSetPropertiesOptions, Any) -> Dict[str, Any] + """Sets the share properties. .. versionadded:: 12.6.0 - :param int access_tier: - Specifies the access tier of the share. - Possible values: 'TransactionOptimized', 'Hot', 'Cool' - :type access_tier: str or ~azure.storage.fileshare.models.ShareAccessTier + :param options: + Specifies the properties to set on the share. + :type options: ~azure.storage.fileshare.models.ShareSetPropertiesOptions :keyword int timeout: The timeout parameter is expressed in seconds. :keyword lease: @@ -412,21 +410,21 @@ async def set_share_tier(self, access_tier, **kwargs): .. admonition:: Example: .. literalinclude:: ../samples/file_samples_share_async.py - :start-after: [START set_share_tier] - :end-before: [END set_share_tier] + :start-after: [START set_share_properties] + :end-before: [END set_share_properties] :language: python :dedent: 16 - :caption: Sets the share tier. + :caption: Sets the share properties. """ access_conditions = get_access_conditions(kwargs.pop('lease', None)) timeout = kwargs.pop('timeout', None) try: return await self._client.share.set_properties( # type: ignore timeout=timeout, - quota=None, - access_tier=access_tier, - cls=return_response_headers, + quota=options.quota, + access_tier=options.access_tier, lease_access_conditions=access_conditions, + cls=return_response_headers, **kwargs) except StorageErrorException as error: process_storage_error(error) diff --git a/sdk/storage/azure-storage-file-share/samples/file_samples_share.py b/sdk/storage/azure-storage-file-share/samples/file_samples_share.py index bbc018a3977a..a50b209dc5f2 100644 --- a/sdk/storage/azure-storage-file-share/samples/file_samples_share.py +++ b/sdk/storage/azure-storage-file-share/samples/file_samples_share.py @@ -22,7 +22,7 @@ """ import os -from azure.storage.fileshare import ShareAccessTier +from azure.storage.fileshare import ShareSetPropertiesOptions, ShareAccessTier SOURCE_FILE = './SampleSource.txt' DEST_FILE = './SampleDestination.txt' @@ -38,7 +38,8 @@ def create_share_snapshot(self): share = ShareClient.from_connection_string(self.connection_string, "sharesamples1") # [START create_share] - share.create_share() + # Create share with Access Tier set to Hot + share.create_share(access_tier=ShareAccessTier("Hot")) # [END create_share] try: # [START create_share_snapshot] @@ -76,7 +77,7 @@ def set_share_quota_and_metadata(self): # Delete the share share.delete_share() - def set_share_tier(self): + def set_share_properties(self): from azure.storage.fileshare import ShareClient share1 = ShareClient.from_connection_string(self.connection_string, "sharesamples3a") share2 = ShareClient.from_connection_string(self.connection_string, "sharesamples3b") @@ -86,16 +87,20 @@ def set_share_tier(self): share2.create_share() try: - # [START set_share_tier] + # [START set_share_properties] # Set the tier for the first share to Hot - share1.set_share_tier(access_tier="Hot") - # Set the tier for the second share to Hot - share2.set_share_tier(access_tier=ShareAccessTier("Cool")) + share1.set_share_properties(ShareSetPropertiesOptions(access_tier="Hot")) + # Set the quota for the first share to 3 + share1.set_share_properties(ShareSetPropertiesOptions(quota=3)) + # Set the tier for the second share to Cool and quota to 2 + share2.set_share_properties(ShareSetPropertiesOptions(access_tier=ShareAccessTier("Cool"), quota=2)) # Get the shares' properties print(share1.get_share_properties().access_tier) + print(share1.get_share_properties().quota) print(share2.get_share_properties().access_tier) - # [END set_share_tier] + print(share2.get_share_properties().quota) + # [END set_share_properties] finally: # Delete the shares @@ -156,9 +161,9 @@ def acquire_share_lease(self): if __name__ == '__main__': sample = ShareSamples() - sample.create_share_snapshot() - sample.set_share_quota_and_metadata() - sample.set_share_tier() - sample.list_directories_and_files() - sample.get_directory_or_file_client() - sample.acquire_share_lease() + # sample.create_share_snapshot() + # sample.set_share_quota_and_metadata() + sample.set_share_properties() + # sample.list_directories_and_files() + # sample.get_directory_or_file_client() + # sample.acquire_share_lease() diff --git a/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py b/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py index 09885e586648..ef04ba3f6d77 100644 --- a/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py +++ b/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py @@ -23,7 +23,7 @@ import os import asyncio -from azure.storage.fileshare import ShareAccessTier +from azure.storage.fileshare import ShareSetPropertiesOptions, ShareAccessTier SOURCE_FILE = './SampleSource.txt' DEST_FILE = './SampleDestination.txt' @@ -40,7 +40,8 @@ async def create_share_snapshot_async(self): async with share: # [START create_share] - await share.create_share() + # Create share with Access Tier set to Hot + await share.create_share(access_tier=ShareAccessTier("Hot")) # [END create_share] try: # [START create_share_snapshot] @@ -79,7 +80,7 @@ async def set_share_quota_and_metadata_async(self): # Delete the share await share.delete_share() - async def set_share_tier(self): + async def set_share_properties(self): from azure.storage.fileshare.aio import ShareClient share1 = ShareClient.from_connection_string(self.connection_string, "sharesamples3a") share2 = ShareClient.from_connection_string(self.connection_string, "sharesamples3b") @@ -90,18 +91,22 @@ async def set_share_tier(self): await share2.create_share() try: - # [START set_share_tier] + # [START set_share_properties] # Set the tier for the first share to Hot - await share1.set_share_tier(access_tier="Hot") - # Set the tier for the second share to Hot - await share2.set_share_tier(access_tier=ShareAccessTier("Cool")) + await share1.set_share_properties(ShareSetPropertiesOptions(access_tier="Hot")) + # Set the quota for the first share to 3 + await share1.set_share_properties(ShareSetPropertiesOptions(quota=3)) + # Set the tier for the second share to Cool and quota to 2 + await share2.set_share_properties(ShareSetPropertiesOptions(access_tier=ShareAccessTier("Cool"), quota=2)) # Get the shares' properties props1 = await share1.get_share_properties() - print(props1.access_tier) props2 = await share2.get_share_properties() + print(props1.access_tier) + print(props1.quota) print(props2.access_tier) - # [END set_share_tier] + print(props2.quota) + # [END set_share_properties] finally: # Delete the shares @@ -152,7 +157,7 @@ async def main(): sample = ShareSamplesAsync() await sample.create_share_snapshot_async() await sample.set_share_quota_and_metadata_async() - await sample.set_share_tier() + await sample.set_share_properties() await sample.list_directories_and_files_async() await sample.get_directory_or_file_client_async() diff --git a/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_set_share_properties.yaml b/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_set_share_properties.yaml index 350b128d220a..d3278a305255 100644 --- a/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_set_share_properties.yaml +++ b/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_set_share_properties.yaml @@ -13,7 +13,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:45:43 GMT + - Thu, 15 Oct 2020 01:24:12 GMT x-ms-version: - '2020-02-10' method: PUT @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Thu, 08 Oct 2020 05:45:44 GMT + - Thu, 15 Oct 2020 01:24:12 GMT etag: - - '"0x8D86B4D6657A2CB"' + - '"0x8D870A90659B152"' last-modified: - - Thu, 08 Oct 2020 05:45:44 GMT + - Thu, 15 Oct 2020 01:24:13 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -51,7 +51,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:45:45 GMT + - Thu, 15 Oct 2020 01:24:13 GMT x-ms-version: - '2020-02-10' method: PUT @@ -63,11 +63,11 @@ interactions: content-length: - '0' date: - - Thu, 08 Oct 2020 05:45:45 GMT + - Thu, 15 Oct 2020 01:24:12 GMT etag: - - '"0x8D86B4D670AE6CD"' + - '"0x8D870A9066D63F5"' last-modified: - - Thu, 08 Oct 2020 05:45:45 GMT + - Thu, 15 Oct 2020 01:24:13 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -89,9 +89,9 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:45:46 GMT + - Thu, 15 Oct 2020 01:24:13 GMT x-ms-share-quota: - - '1' + - '3' x-ms-version: - '2020-02-10' method: PUT @@ -103,11 +103,11 @@ interactions: content-length: - '0' date: - - Thu, 08 Oct 2020 05:45:46 GMT + - Thu, 15 Oct 2020 01:24:12 GMT etag: - - '"0x8D86B4D6801488B"' + - '"0x8D870A906984394"' last-modified: - - Thu, 08 Oct 2020 05:45:47 GMT + - Thu, 15 Oct 2020 01:24:13 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -131,7 +131,7 @@ interactions: x-ms-access-tier: - Hot x-ms-date: - - Thu, 08 Oct 2020 05:45:47 GMT + - Thu, 15 Oct 2020 01:24:13 GMT x-ms-version: - '2020-02-10' method: PUT @@ -143,11 +143,11 @@ interactions: content-length: - '0' date: - - Thu, 08 Oct 2020 05:45:47 GMT + - Thu, 15 Oct 2020 01:24:13 GMT etag: - - '"0x8D86B4D688F236A"' + - '"0x8D870A906B10049"' last-modified: - - Thu, 08 Oct 2020 05:45:48 GMT + - Thu, 15 Oct 2020 01:24:13 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -171,45 +171,7 @@ interactions: x-ms-access-tier: - Cool x-ms-date: - - Thu, 08 Oct 2020 05:45:49 GMT - x-ms-version: - - '2020-02-10' - method: PUT - uri: https://storagename.file.core.windows.net/share212220eea?restype=share&comp=properties - response: - body: - string: '' - headers: - content-length: - - '0' - date: - - Thu, 08 Oct 2020 05:45:49 GMT - etag: - - '"0x8D86B4D69871DAA"' - last-modified: - - Thu, 08 Oct 2020 05:45:50 GMT - server: - - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: - - '2020-02-10' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '0' - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 08 Oct 2020 05:45:53 GMT + - Thu, 15 Oct 2020 01:24:13 GMT x-ms-share-quota: - '2' x-ms-version: @@ -223,11 +185,11 @@ interactions: content-length: - '0' date: - - Thu, 08 Oct 2020 05:45:53 GMT + - Thu, 15 Oct 2020 01:24:13 GMT etag: - - '"0x8D86B4D6BB7D088"' + - '"0x8D870A906C8AB64"' last-modified: - - Thu, 08 Oct 2020 05:45:53 GMT + - Thu, 15 Oct 2020 01:24:13 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -247,7 +209,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:45:54 GMT + - Thu, 15 Oct 2020 01:24:14 GMT x-ms-version: - '2020-02-10' method: GET @@ -259,11 +221,11 @@ interactions: content-length: - '0' date: - - Thu, 08 Oct 2020 05:45:54 GMT + - Thu, 15 Oct 2020 01:24:13 GMT etag: - - '"0x8D86B4D688F236A"' + - '"0x8D870A906B10049"' last-modified: - - Thu, 08 Oct 2020 05:45:48 GMT + - Thu, 15 Oct 2020 01:24:13 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 vary: @@ -271,19 +233,15 @@ interactions: x-ms-access-tier: - Hot x-ms-access-tier-change-time: - - Thu, 08 Oct 2020 05:45:48 GMT + - Thu, 15 Oct 2020 01:24:13 GMT x-ms-access-tier-transition-state: - pending-from-transactionOptimized x-ms-has-immutability-policy: - 'false' x-ms-has-legal-hold: - 'false' - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked x-ms-share-quota: - - '1' + - '3' x-ms-version: - '2020-02-10' status: @@ -301,7 +259,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:45:54 GMT + - Thu, 15 Oct 2020 01:24:14 GMT x-ms-version: - '2020-02-10' method: GET @@ -313,11 +271,11 @@ interactions: content-length: - '0' date: - - Thu, 08 Oct 2020 05:45:54 GMT + - Thu, 15 Oct 2020 01:24:13 GMT etag: - - '"0x8D86B4D6BB7D088"' + - '"0x8D870A906C8AB64"' last-modified: - - Thu, 08 Oct 2020 05:45:53 GMT + - Thu, 15 Oct 2020 01:24:13 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 vary: @@ -325,17 +283,13 @@ interactions: x-ms-access-tier: - Cool x-ms-access-tier-change-time: - - Thu, 08 Oct 2020 05:45:50 GMT + - Thu, 15 Oct 2020 01:24:13 GMT x-ms-access-tier-transition-state: - pending-from-transactionOptimized x-ms-has-immutability-policy: - 'false' x-ms-has-legal-hold: - 'false' - x-ms-lease-state: - - available - x-ms-lease-status: - - unlocked x-ms-share-quota: - '2' x-ms-version: @@ -355,7 +309,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:11 GMT + - Thu, 15 Oct 2020 01:24:14 GMT x-ms-version: - '2020-02-10' method: GET @@ -364,119 +318,119 @@ interactions: body: string: "\uFEFFshare112220eeaThu, - 08 Oct 2020 05:45:48 GMT\"0x8D86B4D688F236A\"unlockedavailable1HotThu, - 08 Oct 2020 05:45:48 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare1816f1171Fri, - 11 Sep 2020 00:43:37 GMT\"0x8D855EBB87CFF33\"lockedleasedinfinite5120TransactionOptimizedFri, + 15 Oct 2020 01:24:13 GMT\"0x8D870A906B10049\"3HotThu, + 15 Oct 2020 01:24:13 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare1816f1171Fri, + 11 Sep 2020 00:43:37 GMT\"0x8D855EBB87CFF33\"5120TransactionOptimizedFri, 11 Sep 2020 00:43:37 GMT$account-encryption-keyfalseshare182b3117dFri, - 11 Sep 2020 00:44:44 GMT\"0x8D855EBE0710239\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:44:44 GMT\"0x8D855EBE0710239\"5120TransactionOptimizedFri, 11 Sep 2020 00:44:44 GMT$account-encryption-keyfalseshare212220eeaThu, - 08 Oct 2020 05:45:53 GMT\"0x8D86B4D6BB7D088\"unlockedavailable2CoolThu, - 08 Oct 2020 05:45:50 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare336d1532Fri, - 11 Sep 2020 00:02:03 GMT\"0x8D855E5EA1BA89C\"lockedleasedinfinite5120TransactionOptimizedFri, + 15 Oct 2020 01:24:13 GMT\"0x8D870A906C8AB64\"2CoolThu, + 15 Oct 2020 01:24:13 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare336d1532Fri, + 11 Sep 2020 00:02:03 GMT\"0x8D855E5EA1BA89C\"5120TransactionOptimizedFri, 11 Sep 2020 00:02:03 GMT$account-encryption-keyfalseshare50ad1060Tue, - 29 Sep 2020 22:27:37 GMT\"0x8D864C6DE6E6B78\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:27:37 GMT\"0x8D864C6DE6E6B78\"5120TransactionOptimizedTue, 29 Sep 2020 22:27:37 GMT$account-encryption-keyfalseshare602310dcThu, - 10 Sep 2020 23:45:57 GMT\"0x8D855E3AA5BA817\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:45:57 GMT\"0x8D855E3AA5BA817\"5120TransactionOptimizedThu, 10 Sep 2020 23:45:57 GMT$account-encryption-keyfalseshare801b1156Thu, - 10 Sep 2020 23:48:33 GMT\"0x8D855E4070545FC\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:48:33 GMT\"0x8D855E4070545FC\"5120TransactionOptimizedThu, 10 Sep 2020 23:48:33 GMT$account-encryption-keyfalsesharea7a1477Thu, - 10 Sep 2020 23:48:04 GMT\"0x8D855E3F609C583\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:48:04 GMT\"0x8D855E3F609C583\"5120TransactionOptimizedThu, 10 Sep 2020 23:48:04 GMT$account-encryption-keyfalseshareba3e12f12020-09-28T14:03:31.0000000ZMon, - 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"lockedleasedinfinite5120$account-encryption-keyfalseshareba3e12f1Mon, - 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"lockedleasedinfinite5120TransactionOptimizedMon, + 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"5120$account-encryption-keyfalseshareba3e12f1Mon, + 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"5120TransactionOptimizedMon, 28 Sep 2020 14:03:31 GMT$account-encryption-keyfalsesharec80148eFri, - 11 Sep 2020 00:25:51 GMT\"0x8D855E93D722BB0\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:25:51 GMT\"0x8D855E93D722BB0\"5120TransactionOptimizedFri, 11 Sep 2020 00:03:40 GMT$account-encryption-keyfalsesharecb2f1317Fri, - 11 Sep 2020 00:59:09 GMT\"0x8D855EDE422992F\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:59:09 GMT\"0x8D855EDE422992F\"5120TransactionOptimizedFri, 11 Sep 2020 00:59:09 GMT$account-encryption-keyfalsesharee121138eFri, - 11 Sep 2020 00:00:54 GMT\"0x8D855E5C0C0BD1C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:00:54 GMT\"0x8D855E5C0C0BD1C\"5120TransactionOptimizedFri, 11 Sep 2020 00:00:53 GMT$account-encryption-keyfalsesharee52d0d77Thu, - 10 Sep 2020 23:47:27 GMT\"0x8D855E3DFBB5CB3\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:47:27 GMT\"0x8D855E3DFBB5CB3\"5120TransactionOptimizedThu, 10 Sep 2020 23:47:20 GMT$account-encryption-keyfalsesharerestorecb2f1317Thu, - 10 Sep 2020 22:44:32 GMT\"0x8D855DB159313DC\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 22:44:32 GMT\"0x8D855DB159313DC\"5120TransactionOptimizedThu, 10 Sep 2020 22:44:32 GMT$account-encryption-keyfalsesharesamples5Tue, - 15 Sep 2020 19:39:56 GMT\"0x8D859AF1FEB001F\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:39:56 GMT\"0x8D859AF1FEB001F\"5120TransactionOptimizedTue, 15 Sep 2020 19:39:55 GMT$account-encryption-keyfalsesharesamples6Tue, - 15 Sep 2020 19:43:57 GMT\"0x8D859AFAFBA3E88\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:43:57 GMT\"0x8D859AFAFBA3E88\"5120TransactionOptimizedTue, 15 Sep 2020 19:43:57 GMT$account-encryption-keyfalsesharesamples7Tue, - 15 Sep 2020 19:44:49 GMT\"0x8D859AFCEB7CC2D\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:44:49 GMT\"0x8D859AFCEB7CC2D\"5120TransactionOptimizedTue, 15 Sep 2020 19:44:49 GMT$account-encryption-keyfalsetest-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7Wed, - 05 Aug 2020 19:06:51 GMT\"0x8D83972B5D1302D\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:51 GMT\"0x8D83972B5D1302D\"5120TransactionOptimizedWed, 05 Aug 2020 19:06:51 GMT$account-encryption-keyfalsetest-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31Wed, - 05 Aug 2020 19:06:49 GMT\"0x8D83972B5025718\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:49 GMT\"0x8D83972B5025718\"5120TransactionOptimizedWed, 05 Aug 2020 19:06:49 GMT$account-encryption-keyfalsetest-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3aWed, - 05 Aug 2020 17:24:15 GMT\"0x8D8396460C3E165\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:15 GMT\"0x8D8396460C3E165\"5120TransactionOptimizedWed, 05 Aug 2020 17:24:15 GMT$account-encryption-keyfalsetest-share-26ae488a-f23e-4b65-aa5b-f273d6179074Wed, - 05 Aug 2020 19:06:50 GMT\"0x8D83972B592F011\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:50 GMT\"0x8D83972B592F011\"5120TransactionOptimizedWed, 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-49d22d21-4363-478e-8f26-1357ef6bd183Wed, - 05 Aug 2020 17:24:21 GMT\"0x8D8396464063943\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:21 GMT\"0x8D8396464063943\"5120TransactionOptimizedWed, 05 Aug 2020 17:24:21 GMT$account-encryption-keyfalsetest-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680Wed, - 05 Aug 2020 17:24:17 GMT\"0x8D8396461D987E1\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:17 GMT\"0x8D8396461D987E1\"5120TransactionOptimizedWed, 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604Wed, - 05 Aug 2020 17:24:19 GMT\"0x8D83964633A2718\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:19 GMT\"0x8D83964633A2718\"5120TransactionOptimizedWed, 05 Aug 2020 17:24:19 GMT$account-encryption-keyfalsetest-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52Wed, - 05 Aug 2020 19:06:50 GMT\"0x8D83972B538E3FD\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:50 GMT\"0x8D83972B538E3FD\"5120TransactionOptimizedWed, 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-8903864e-96ec-44f5-8912-837a9f23cbb5Wed, - 05 Aug 2020 00:04:00 GMT\"0x8D838D30E563856\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 00:04:00 GMT\"0x8D838D30E563856\"5120TransactionOptimizedWed, 05 Aug 2020 00:04:00 GMT$account-encryption-keyfalsetest-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67aWed, - 05 Aug 2020 17:24:18 GMT\"0x8D8396462815131\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:18 GMT\"0x8D8396462815131\"5120TransactionOptimizedWed, 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-d5852df4-944a-48b9-8552-eea5bfd94b6bWed, - 05 Aug 2020 17:24:20 GMT\"0x8D8396463BD465A\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:20 GMT\"0x8D8396463BD465A\"5120TransactionOptimizedWed, 05 Aug 2020 17:24:20 GMT$account-encryption-keyfalsetest-share-fa7d1a1f-d065-4d58-bb12-a59f22106473Wed, - 05 Aug 2020 17:24:18 GMT\"0x8D839646251B45A\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:18 GMT\"0x8D839646251B45A\"5120TransactionOptimizedWed, 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-fcc35a78-e231-4233-a311-d48ee9bb2df7Wed, - 05 Aug 2020 17:24:16 GMT\"0x8D83964610EBC77\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:16 GMT\"0x8D83964610EBC77\"5120TransactionOptimizedWed, 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest16185160bFri, - 11 Sep 2020 13:51:30 GMT\"0x8D85659C98711F1\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:51:30 GMT\"0x8D85659C98711F1\"5120TransactionOptimizedFri, 11 Sep 2020 13:51:30 GMT$account-encryption-keyfalsetest1bd1a12ddTue, - 29 Sep 2020 22:34:36 GMT\"0x8D864C7D8628CD4\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:34:36 GMT\"0x8D864C7D8628CD4\"5120TransactionOptimizedTue, 29 Sep 2020 22:34:36 GMT$account-encryption-keyfalsetest2bd1a12ddTue, - 29 Sep 2020 22:38:12 GMT\"0x8D864C858E9FC21\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:38:12 GMT\"0x8D864C858E9FC21\"5120TransactionOptimizedTue, 29 Sep 2020 22:38:12 GMT$account-encryption-keyfalsetest403e0ff4Fri, - 11 Sep 2020 13:48:01 GMT\"0x8D856594D05BB2E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:48:01 GMT\"0x8D856594D05BB2E\"5120TransactionOptimizedFri, 11 Sep 2020 13:48:01 GMT$account-encryption-keyfalsetest49161594Fri, - 11 Sep 2020 13:44:29 GMT\"0x8D85658CEB83E6D\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:44:29 GMT\"0x8D85658CEB83E6D\"5120TransactionOptimizedFri, 11 Sep 2020 13:44:29 GMT$account-encryption-keyfalsetest50ad1060Tue, - 29 Sep 2020 22:31:15 GMT\"0x8D864C760543D56\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:31:15 GMT\"0x8D864C760543D56\"5120TransactionOptimizedTue, 29 Sep 2020 22:31:14 GMT$account-encryption-keyfalsetest600515ffFri, - 11 Sep 2020 13:52:29 GMT\"0x8D85659ECC7BFF5\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:52:29 GMT\"0x8D85659ECC7BFF5\"5120TransactionOptimizedFri, 11 Sep 2020 13:52:29 GMT$account-encryption-keyfalsetest602310dcFri, - 11 Sep 2020 01:46:55 GMT\"0x8D855F490678FD9\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:46:55 GMT\"0x8D855F490678FD9\"5120TransactionOptimizedFri, 11 Sep 2020 01:46:55 GMT$account-encryption-keyfalsetest6185160bFri, - 11 Sep 2020 13:50:04 GMT\"0x8D85659960A4A9F\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:50:04 GMT\"0x8D85659960A4A9F\"5120TransactionOptimizedFri, 11 Sep 2020 13:50:03 GMT$account-encryption-keyfalsetest801b1156Fri, - 11 Sep 2020 01:43:39 GMT\"0x8D855F41B7485A5\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:39 GMT\"0x8D855F41B7485A5\"5120TransactionOptimizedFri, 11 Sep 2020 01:43:39 GMT$account-encryption-keyfalsetest816f1171Fri, - 11 Sep 2020 01:44:03 GMT\"0x8D855F429A8569E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:44:03 GMT\"0x8D855F429A8569E\"5120TransactionOptimizedFri, 11 Sep 2020 01:44:03 GMT$account-encryption-keyfalsetest82b3117dFri, - 11 Sep 2020 01:44:09 GMT\"0x8D855F42D9DFD7A\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:44:09 GMT\"0x8D855F42D9DFD7A\"5120TransactionOptimizedFri, 11 Sep 2020 01:44:09 GMT$account-encryption-keyfalsetest8fc916f4Fri, - 11 Sep 2020 13:48:35 GMT\"0x8D8565961566D0E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:48:35 GMT\"0x8D8565961566D0E\"5120TransactionOptimizedFri, 11 Sep 2020 13:48:35 GMT$account-encryption-keyfalsetesta7a1477Fri, - 11 Sep 2020 01:42:27 GMT\"0x8D855F3F0B3CE4D\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:42:27 GMT\"0x8D855F3F0B3CE4D\"5120TransactionOptimizedFri, 11 Sep 2020 01:42:27 GMT$account-encryption-keyfalsetestcb2f1317Fri, - 11 Sep 2020 01:35:53 GMT\"0x8D855F305C89D8C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:35:53 GMT\"0x8D855F305C89D8C\"5120TransactionOptimizedFri, 11 Sep 2020 01:35:53 GMT$account-encryption-keyfalsetestcf0d1359Fri, - 11 Sep 2020 13:46:53 GMT\"0x8D856592431D1AA\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:46:53 GMT\"0x8D856592431D1AA\"5120TransactionOptimizedFri, 11 Sep 2020 13:46:53 GMT$account-encryption-keyfalsetestdfa11382Fri, - 11 Sep 2020 01:43:51 GMT\"0x8D855F422BEA24C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:51 GMT\"0x8D855F422BEA24C\"5120TransactionOptimizedFri, 11 Sep 2020 01:43:51 GMT$account-encryption-keyfalseteste121138eFri, - 11 Sep 2020 01:43:45 GMT\"0x8D855F41F52C3FB\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:45 GMT\"0x8D855F41F52C3FB\"5120TransactionOptimizedFri, 11 Sep 2020 01:43:45 GMT$account-encryption-keyfalseteste52d0d77Fri, - 11 Sep 2020 01:42:19 GMT\"0x8D855F3EC19CB5C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:42:19 GMT\"0x8D855F3EC19CB5C\"5120TransactionOptimizedFri, 11 Sep 2020 01:42:19 GMT$account-encryption-keyfalsetestf3ff13d3Fri, - 11 Sep 2020 13:49:19 GMT\"0x8D856597B1CC145\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:49:19 GMT\"0x8D856597B1CC145\"5120TransactionOptimizedFri, 11 Sep 2020 13:49:19 GMT$account-encryption-keyfalsetestf55313eeFri, - 11 Sep 2020 13:53:58 GMT\"0x8D8565A21BA7745\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:53:58 GMT\"0x8D8565A21BA7745\"5120TransactionOptimizedFri, 11 Sep 2020 13:53:58 GMT$account-encryption-keyfalsetestf69713faFri, - 11 Sep 2020 13:54:36 GMT\"0x8D8565A3813B91A\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:54:36 GMT\"0x8D8565A3813B91A\"5120TransactionOptimizedFri, 11 Sep 2020 13:54:35 GMT$account-encryption-keyfalse" headers: content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:11 GMT + - Thu, 15 Oct 2020 01:24:13 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -502,7 +456,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:11 GMT + - Thu, 15 Oct 2020 01:24:14 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -516,7 +470,7 @@ interactions: content-length: - '0' date: - - Thu, 08 Oct 2020 05:46:11 GMT + - Thu, 15 Oct 2020 01:24:13 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -538,7 +492,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:12 GMT + - Thu, 15 Oct 2020 01:24:14 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -549,14 +503,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47625b1-701a-005c-2c36-9d8f9a000000\nTime:2020-10-08T05:46:12.8188789Z" + request.\nRequestId:1bcbde18-d01a-0045-6091-a20f21000000\nTime:2020-10-15T01:24:15.2165342Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:12 GMT + - Thu, 15 Oct 2020 01:24:14 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -581,7 +535,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:12 GMT + - Thu, 15 Oct 2020 01:24:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -592,14 +546,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47625cb-701a-005c-4536-9d8f9a000000\nTime:2020-10-08T05:46:13.1911439Z" + request.\nRequestId:1bcbde1a-d01a-0045-6291-a20f21000000\nTime:2020-10-15T01:24:15.6328293Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:12 GMT + - Thu, 15 Oct 2020 01:24:14 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -624,7 +578,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:13 GMT + - Thu, 15 Oct 2020 01:24:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -638,7 +592,7 @@ interactions: content-length: - '0' date: - - Thu, 08 Oct 2020 05:46:12 GMT + - Thu, 15 Oct 2020 01:24:15 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -660,7 +614,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:13 GMT + - Thu, 15 Oct 2020 01:24:16 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -671,14 +625,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47625f0-701a-005c-6936-9d8f9a000000\nTime:2020-10-08T05:46:13.8586179Z" + request.\nRequestId:1bcbde1f-d01a-0045-6491-a20f21000000\nTime:2020-10-15T01:24:16.0521266Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:13 GMT + - Thu, 15 Oct 2020 01:24:15 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -703,7 +657,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:13 GMT + - Thu, 15 Oct 2020 01:24:16 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -714,14 +668,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762606-701a-005c-7e36-9d8f9a000000\nTime:2020-10-08T05:46:14.2208753Z" + request.\nRequestId:1bcbde20-d01a-0045-6591-a20f21000000\nTime:2020-10-15T01:24:16.2222476Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:13 GMT + - Thu, 15 Oct 2020 01:24:15 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -746,7 +700,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:14 GMT + - Thu, 15 Oct 2020 01:24:16 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -757,14 +711,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762607-701a-005c-7f36-9d8f9a000000\nTime:2020-10-08T05:46:14.5891373Z" + request.\nRequestId:1bcbde21-d01a-0045-6691-a20f21000000\nTime:2020-10-15T01:24:16.3583437Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:14 GMT + - Thu, 15 Oct 2020 01:24:15 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -789,7 +743,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:14 GMT + - Thu, 15 Oct 2020 01:24:16 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -800,14 +754,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e476260e-701a-005c-0536-9d8f9a000000\nTime:2020-10-08T05:46:14.9924269Z" + request.\nRequestId:1bcbde22-d01a-0045-6791-a20f21000000\nTime:2020-10-15T01:24:16.5414739Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:14 GMT + - Thu, 15 Oct 2020 01:24:15 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -832,7 +786,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:14 GMT + - Thu, 15 Oct 2020 01:24:16 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -843,14 +797,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762618-701a-005c-0e36-9d8f9a000000\nTime:2020-10-08T05:46:15.3406762Z" + request.\nRequestId:1bcbde23-d01a-0045-6891-a20f21000000\nTime:2020-10-15T01:24:16.8056608Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:14 GMT + - Thu, 15 Oct 2020 01:24:16 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -875,7 +829,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:15 GMT + - Thu, 15 Oct 2020 01:24:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -884,28 +838,26 @@ interactions: uri: https://storagename.file.core.windows.net/shareba3e12f1?restype=share response: body: - string: "\uFEFFDeleteShareWhenSnapshotLeasedUnable - to delete share because one or more share snapshots have active leases. Release - the share snapshot leases or delete the share with the include-leased parameter - for x-ms-delete-snapshots.\nRequestId:e476261e-701a-005c-1336-9d8f9a000000\nTime:2020-10-08T05:46:15.7189464Z" + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:1bcbde24-d01a-0045-6991-a20f21000000\nTime:2020-10-15T01:24:17.0218141Z" headers: content-length: - - '391' + - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:15 GMT + - Thu, 15 Oct 2020 01:24:16 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: - - DeleteShareWhenSnapshotLeased + - LeaseIdMissing x-ms-version: - '2020-02-10' status: - code: 409 - message: Unable to delete share because one or more share snapshots have active - leases. Release the share snapshot leases or delete the share with the include-leased - parameter for x-ms-delete-snapshots. + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. - request: body: null headers: @@ -920,7 +872,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:15 GMT + - Thu, 15 Oct 2020 01:24:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -929,28 +881,26 @@ interactions: uri: https://storagename.file.core.windows.net/shareba3e12f1?restype=share response: body: - string: "\uFEFFDeleteShareWhenSnapshotLeasedUnable - to delete share because one or more share snapshots have active leases. Release - the share snapshot leases or delete the share with the include-leased parameter - for x-ms-delete-snapshots.\nRequestId:e4762623-701a-005c-1836-9d8f9a000000\nTime:2020-10-08T05:46:16.0872081Z" + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:1bcbde26-d01a-0045-6b91-a20f21000000\nTime:2020-10-15T01:24:17.3140217Z" headers: content-length: - - '391' + - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:15 GMT + - Thu, 15 Oct 2020 01:24:16 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: - - DeleteShareWhenSnapshotLeased + - LeaseIdMissing x-ms-version: - '2020-02-10' status: - code: 409 - message: Unable to delete share because one or more share snapshots have active - leases. Release the share snapshot leases or delete the share with the include-leased - parameter for x-ms-delete-snapshots. + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. - request: body: null headers: @@ -965,7 +915,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:15 GMT + - Thu, 15 Oct 2020 01:24:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -976,14 +926,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e476262d-701a-005c-2236-9d8f9a000000\nTime:2020-10-08T05:46:16.4584720Z" + request.\nRequestId:1bcbde27-d01a-0045-6c91-a20f21000000\nTime:2020-10-15T01:24:17.4281021Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:15 GMT + - Thu, 15 Oct 2020 01:24:16 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1008,7 +958,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:16 GMT + - Thu, 15 Oct 2020 01:24:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1019,14 +969,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e476262e-701a-005c-2336-9d8f9a000000\nTime:2020-10-08T05:46:16.8697643Z" + request.\nRequestId:1bcbde28-d01a-0045-6d91-a20f21000000\nTime:2020-10-15T01:24:17.5371795Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:16 GMT + - Thu, 15 Oct 2020 01:24:16 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1051,7 +1001,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:16 GMT + - Thu, 15 Oct 2020 01:24:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1062,14 +1012,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762633-701a-005c-2836-9d8f9a000000\nTime:2020-10-08T05:46:17.2330224Z" + request.\nRequestId:1bcbde29-d01a-0045-6e91-a20f21000000\nTime:2020-10-15T01:24:17.6672717Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:16 GMT + - Thu, 15 Oct 2020 01:24:16 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1094,7 +1044,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:17 GMT + - Thu, 15 Oct 2020 01:24:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1105,14 +1055,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762634-701a-005c-2936-9d8f9a000000\nTime:2020-10-08T05:46:17.5982824Z" + request.\nRequestId:1bcbde2a-d01a-0045-6f91-a20f21000000\nTime:2020-10-15T01:24:17.8083713Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:17 GMT + - Thu, 15 Oct 2020 01:24:17 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1137,7 +1087,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:17 GMT + - Thu, 15 Oct 2020 01:24:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1148,14 +1098,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762636-701a-005c-2a36-9d8f9a000000\nTime:2020-10-08T05:46:17.9705461Z" + request.\nRequestId:1bcbde2b-d01a-0045-7091-a20f21000000\nTime:2020-10-15T01:24:17.9324597Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:17 GMT + - Thu, 15 Oct 2020 01:24:17 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1180,7 +1130,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:17 GMT + - Thu, 15 Oct 2020 01:24:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1191,14 +1141,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e476263f-701a-005c-3336-9d8f9a000000\nTime:2020-10-08T05:46:18.3688296Z" + request.\nRequestId:1bcbde2c-d01a-0045-7191-a20f21000000\nTime:2020-10-15T01:24:18.0895717Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:17 GMT + - Thu, 15 Oct 2020 01:24:17 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1223,7 +1173,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:18 GMT + - Thu, 15 Oct 2020 01:24:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1234,14 +1184,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762640-701a-005c-3436-9d8f9a000000\nTime:2020-10-08T05:46:18.7330885Z" + request.\nRequestId:1bcbde2d-d01a-0045-7291-a20f21000000\nTime:2020-10-15T01:24:18.2176633Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:18 GMT + - Thu, 15 Oct 2020 01:24:17 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1266,7 +1216,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:18 GMT + - Thu, 15 Oct 2020 01:24:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1277,14 +1227,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762641-701a-005c-3536-9d8f9a000000\nTime:2020-10-08T05:46:19.1303708Z" + request.\nRequestId:1bcbde2e-d01a-0045-7391-a20f21000000\nTime:2020-10-15T01:24:18.3537607Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:18 GMT + - Thu, 15 Oct 2020 01:24:17 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1309,7 +1259,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:19 GMT + - Thu, 15 Oct 2020 01:24:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1320,14 +1270,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762648-701a-005c-3b36-9d8f9a000000\nTime:2020-10-08T05:46:19.4866240Z" + request.\nRequestId:1bcbde30-d01a-0045-7491-a20f21000000\nTime:2020-10-15T01:24:18.4848545Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:18 GMT + - Thu, 15 Oct 2020 01:24:17 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1352,7 +1302,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:19 GMT + - Thu, 15 Oct 2020 01:24:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1363,14 +1313,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762649-701a-005c-3c36-9d8f9a000000\nTime:2020-10-08T05:46:19.8819054Z" + request.\nRequestId:1bcbde31-d01a-0045-7591-a20f21000000\nTime:2020-10-15T01:24:18.6129461Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:19 GMT + - Thu, 15 Oct 2020 01:24:17 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1395,7 +1345,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:19 GMT + - Thu, 15 Oct 2020 01:24:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1406,14 +1356,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e476264a-701a-005c-3d36-9d8f9a000000\nTime:2020-10-08T05:46:20.3172143Z" + request.\nRequestId:1bcbde32-d01a-0045-7691-a20f21000000\nTime:2020-10-15T01:24:18.7470420Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:19 GMT + - Thu, 15 Oct 2020 01:24:18 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1438,7 +1388,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:20 GMT + - Thu, 15 Oct 2020 01:24:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1449,14 +1399,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762651-701a-005c-4236-9d8f9a000000\nTime:2020-10-08T05:46:20.6954844Z" + request.\nRequestId:1bcbde34-d01a-0045-7791-a20f21000000\nTime:2020-10-15T01:24:18.8711312Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:20 GMT + - Thu, 15 Oct 2020 01:24:18 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1481,7 +1431,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:20 GMT + - Thu, 15 Oct 2020 01:24:19 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1492,14 +1442,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e476265c-701a-005c-4d36-9d8f9a000000\nTime:2020-10-08T05:46:21.0957711Z" + request.\nRequestId:1bcbde35-d01a-0045-7891-a20f21000000\nTime:2020-10-15T01:24:19.1963626Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:20 GMT + - Thu, 15 Oct 2020 01:24:18 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1524,7 +1474,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:20 GMT + - Thu, 15 Oct 2020 01:24:19 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1535,14 +1485,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762676-701a-005c-6736-9d8f9a000000\nTime:2020-10-08T05:46:21.5090674Z" + request.\nRequestId:1bcbde37-d01a-0045-7a91-a20f21000000\nTime:2020-10-15T01:24:19.3094424Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:20 GMT + - Thu, 15 Oct 2020 01:24:18 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1567,7 +1517,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:21 GMT + - Thu, 15 Oct 2020 01:24:19 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1578,14 +1528,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762681-701a-005c-7236-9d8f9a000000\nTime:2020-10-08T05:46:21.9523828Z" + request.\nRequestId:1bcbde38-d01a-0045-7b91-a20f21000000\nTime:2020-10-15T01:24:19.4605495Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:21 GMT + - Thu, 15 Oct 2020 01:24:18 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1610,7 +1560,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:21 GMT + - Thu, 15 Oct 2020 01:24:19 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1621,14 +1571,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762689-701a-005c-7a36-9d8f9a000000\nTime:2020-10-08T05:46:22.3396580Z" + request.\nRequestId:1bcbde39-d01a-0045-7c91-a20f21000000\nTime:2020-10-15T01:24:19.6676963Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:21 GMT + - Thu, 15 Oct 2020 01:24:18 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1653,7 +1603,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:22 GMT + - Thu, 15 Oct 2020 01:24:19 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1664,14 +1614,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e476269d-701a-005c-0e36-9d8f9a000000\nTime:2020-10-08T05:46:22.6919084Z" + request.\nRequestId:1bcbde3a-d01a-0045-7d91-a20f21000000\nTime:2020-10-15T01:24:19.8398184Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:22 GMT + - Thu, 15 Oct 2020 01:24:19 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1696,7 +1646,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:22 GMT + - Thu, 15 Oct 2020 01:24:20 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1707,14 +1657,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47626b5-701a-005c-2436-9d8f9a000000\nTime:2020-10-08T05:46:23.1092049Z" + request.\nRequestId:1bcbde3b-d01a-0045-7e91-a20f21000000\nTime:2020-10-15T01:24:20.0919976Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:22 GMT + - Thu, 15 Oct 2020 01:24:19 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1739,7 +1689,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:23 GMT + - Thu, 15 Oct 2020 01:24:20 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1750,14 +1700,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47626c6-701a-005c-3536-9d8f9a000000\nTime:2020-10-08T05:46:23.4694605Z" + request.\nRequestId:1bcbde3c-d01a-0045-7f91-a20f21000000\nTime:2020-10-15T01:24:20.2180866Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:22 GMT + - Thu, 15 Oct 2020 01:24:19 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1782,7 +1732,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:23 GMT + - Thu, 15 Oct 2020 01:24:20 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1793,14 +1743,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47626d0-701a-005c-3e36-9d8f9a000000\nTime:2020-10-08T05:46:23.9137772Z" + request.\nRequestId:1bcbde3e-d01a-0045-0191-a20f21000000\nTime:2020-10-15T01:24:20.3792004Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:23 GMT + - Thu, 15 Oct 2020 01:24:19 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1825,7 +1775,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:23 GMT + - Thu, 15 Oct 2020 01:24:20 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1836,14 +1786,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47626da-701a-005c-4736-9d8f9a000000\nTime:2020-10-08T05:46:24.3570922Z" + request.\nRequestId:1bcbde3f-d01a-0045-0291-a20f21000000\nTime:2020-10-15T01:24:20.4972845Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:23 GMT + - Thu, 15 Oct 2020 01:24:19 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1868,7 +1818,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:24 GMT + - Thu, 15 Oct 2020 01:24:20 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1879,14 +1829,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47626df-701a-005c-4c36-9d8f9a000000\nTime:2020-10-08T05:46:24.7263542Z" + request.\nRequestId:1bcbde40-d01a-0045-0391-a20f21000000\nTime:2020-10-15T01:24:20.6093640Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:24 GMT + - Thu, 15 Oct 2020 01:24:19 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1911,7 +1861,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:24 GMT + - Thu, 15 Oct 2020 01:24:20 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1922,14 +1872,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47626e6-701a-005c-5236-9d8f9a000000\nTime:2020-10-08T05:46:25.1346444Z" + request.\nRequestId:1bcbde42-d01a-0045-0491-a20f21000000\nTime:2020-10-15T01:24:20.7274477Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:24 GMT + - Thu, 15 Oct 2020 01:24:20 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1954,7 +1904,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:25 GMT + - Thu, 15 Oct 2020 01:24:20 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1965,14 +1915,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47626f0-701a-005c-5a36-9d8f9a000000\nTime:2020-10-08T05:46:25.5879666Z" + request.\nRequestId:1bcbde43-d01a-0045-0591-a20f21000000\nTime:2020-10-15T01:24:20.8555385Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:25 GMT + - Thu, 15 Oct 2020 01:24:20 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1997,7 +1947,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:25 GMT + - Thu, 15 Oct 2020 01:24:21 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2008,14 +1958,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47626fa-701a-005c-6336-9d8f9a000000\nTime:2020-10-08T05:46:25.9712389Z" + request.\nRequestId:1bcbde47-d01a-0045-0691-a20f21000000\nTime:2020-10-15T01:24:20.9936368Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:25 GMT + - Thu, 15 Oct 2020 01:24:20 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2040,7 +1990,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:25 GMT + - Thu, 15 Oct 2020 01:24:21 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2051,14 +2001,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e476270f-701a-005c-7836-9d8f9a000000\nTime:2020-10-08T05:46:26.3565127Z" + request.\nRequestId:1bcbde48-d01a-0045-0791-a20f21000000\nTime:2020-10-15T01:24:21.1377390Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:25 GMT + - Thu, 15 Oct 2020 01:24:20 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2083,7 +2033,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:26 GMT + - Thu, 15 Oct 2020 01:24:21 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2094,14 +2044,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762721-701a-005c-0936-9d8f9a000000\nTime:2020-10-08T05:46:26.7848190Z" + request.\nRequestId:1bcbde49-d01a-0045-0891-a20f21000000\nTime:2020-10-15T01:24:21.2728343Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:26 GMT + - Thu, 15 Oct 2020 01:24:20 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2126,7 +2076,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:26 GMT + - Thu, 15 Oct 2020 01:24:21 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2137,14 +2087,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762733-701a-005c-1b36-9d8f9a000000\nTime:2020-10-08T05:46:27.1921106Z" + request.\nRequestId:1bcbde4a-d01a-0045-0991-a20f21000000\nTime:2020-10-15T01:24:21.4079297Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:26 GMT + - Thu, 15 Oct 2020 01:24:20 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2169,7 +2119,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:27 GMT + - Thu, 15 Oct 2020 01:24:21 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2180,14 +2130,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762739-701a-005c-2136-9d8f9a000000\nTime:2020-10-08T05:46:27.5563718Z" + request.\nRequestId:1bcbde4c-d01a-0045-0b91-a20f21000000\nTime:2020-10-15T01:24:21.5420252Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:27 GMT + - Thu, 15 Oct 2020 01:24:20 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2212,7 +2162,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:27 GMT + - Thu, 15 Oct 2020 01:24:21 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2223,14 +2173,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e476274f-701a-005c-3636-9d8f9a000000\nTime:2020-10-08T05:46:27.9796727Z" + request.\nRequestId:1bcbde4e-d01a-0045-0d91-a20f21000000\nTime:2020-10-15T01:24:21.6681146Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:27 GMT + - Thu, 15 Oct 2020 01:24:20 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2255,7 +2205,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:27 GMT + - Thu, 15 Oct 2020 01:24:21 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2266,14 +2216,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e476275c-701a-005c-4236-9d8f9a000000\nTime:2020-10-08T05:46:28.3749536Z" + request.\nRequestId:1bcbde50-d01a-0045-0f91-a20f21000000\nTime:2020-10-15T01:24:21.8412373Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:27 GMT + - Thu, 15 Oct 2020 01:24:21 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2298,7 +2248,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:28 GMT + - Thu, 15 Oct 2020 01:24:22 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2309,14 +2259,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e476276a-701a-005c-4f36-9d8f9a000000\nTime:2020-10-08T05:46:28.7862455Z" + request.\nRequestId:1bcbde51-d01a-0045-1091-a20f21000000\nTime:2020-10-15T01:24:21.9733310Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:28 GMT + - Thu, 15 Oct 2020 01:24:21 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2341,7 +2291,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:28 GMT + - Thu, 15 Oct 2020 01:24:22 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2352,14 +2302,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762770-701a-005c-5336-9d8f9a000000\nTime:2020-10-08T05:46:29.2425702Z" + request.\nRequestId:1bcbde52-d01a-0045-1191-a20f21000000\nTime:2020-10-15T01:24:22.1034232Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:28 GMT + - Thu, 15 Oct 2020 01:24:21 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2384,7 +2334,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:29 GMT + - Thu, 15 Oct 2020 01:24:22 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2395,14 +2345,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e476277d-701a-005c-6036-9d8f9a000000\nTime:2020-10-08T05:46:29.6628689Z" + request.\nRequestId:1bcbde53-d01a-0045-1291-a20f21000000\nTime:2020-10-15T01:24:22.2335154Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:29 GMT + - Thu, 15 Oct 2020 01:24:21 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2427,7 +2377,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:29 GMT + - Thu, 15 Oct 2020 01:24:22 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2438,14 +2388,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e4762786-701a-005c-6936-9d8f9a000000\nTime:2020-10-08T05:46:30.0601513Z" + request.\nRequestId:1bcbde54-d01a-0045-1391-a20f21000000\nTime:2020-10-15T01:24:22.3636073Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:29 GMT + - Thu, 15 Oct 2020 01:24:21 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2470,7 +2420,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:29 GMT + - Thu, 15 Oct 2020 01:24:22 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2481,14 +2431,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e476279a-701a-005c-7b36-9d8f9a000000\nTime:2020-10-08T05:46:30.4794488Z" + request.\nRequestId:1bcbde55-d01a-0045-1491-a20f21000000\nTime:2020-10-15T01:24:22.5117127Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:29 GMT + - Thu, 15 Oct 2020 01:24:21 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2513,7 +2463,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:30 GMT + - Thu, 15 Oct 2020 01:24:22 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2524,14 +2474,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47627a8-701a-005c-0936-9d8f9a000000\nTime:2020-10-08T05:46:30.8767312Z" + request.\nRequestId:1bcbde56-d01a-0045-1591-a20f21000000\nTime:2020-10-15T01:24:22.6327985Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:30 GMT + - Thu, 15 Oct 2020 01:24:21 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2556,7 +2506,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:30 GMT + - Thu, 15 Oct 2020 01:24:22 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2567,14 +2517,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47627b2-701a-005c-1336-9d8f9a000000\nTime:2020-10-08T05:46:31.2630057Z" + request.\nRequestId:1bcbde57-d01a-0045-1691-a20f21000000\nTime:2020-10-15T01:24:22.7618901Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:30 GMT + - Thu, 15 Oct 2020 01:24:22 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2599,7 +2549,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:31 GMT + - Thu, 15 Oct 2020 01:24:22 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2610,14 +2560,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47627bd-701a-005c-1e36-9d8f9a000000\nTime:2020-10-08T05:46:31.6342704Z" + request.\nRequestId:1bcbde58-d01a-0045-1791-a20f21000000\nTime:2020-10-15T01:24:22.8859780Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:31 GMT + - Thu, 15 Oct 2020 01:24:22 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2642,7 +2592,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:31 GMT + - Thu, 15 Oct 2020 01:24:23 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2653,14 +2603,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47627ca-701a-005c-2b36-9d8f9a000000\nTime:2020-10-08T05:46:32.0245503Z" + request.\nRequestId:1bcbde59-d01a-0045-1891-a20f21000000\nTime:2020-10-15T01:24:23.0180721Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:31 GMT + - Thu, 15 Oct 2020 01:24:22 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2685,7 +2635,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:31 GMT + - Thu, 15 Oct 2020 01:24:23 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2696,14 +2646,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47627d6-701a-005c-3736-9d8f9a000000\nTime:2020-10-08T05:46:32.4898840Z" + request.\nRequestId:1bcbde5a-d01a-0045-1991-a20f21000000\nTime:2020-10-15T01:24:23.1661771Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:31 GMT + - Thu, 15 Oct 2020 01:24:22 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2728,7 +2678,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:32 GMT + - Thu, 15 Oct 2020 01:24:23 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2739,14 +2689,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47627e0-701a-005c-4036-9d8f9a000000\nTime:2020-10-08T05:46:32.9011768Z" + request.\nRequestId:1bcbde5c-d01a-0045-1b91-a20f21000000\nTime:2020-10-15T01:24:23.2892639Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:32 GMT + - Thu, 15 Oct 2020 01:24:22 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2771,7 +2721,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:46:32 GMT + - Thu, 15 Oct 2020 01:24:23 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2782,14 +2732,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:e47627e2-701a-005c-4236-9d8f9a000000\nTime:2020-10-08T05:46:33.3284804Z" + request.\nRequestId:1bcbde5e-d01a-0045-1c91-a20f21000000\nTime:2020-10-15T01:24:23.4203569Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 08 Oct 2020 05:46:32 GMT + - Thu, 15 Oct 2020 01:24:22 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: diff --git a/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_set_share_properties_async.yaml b/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_set_share_properties_async.yaml index 52aa132b9015..957593f8b6db 100644 --- a/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_set_share_properties_async.yaml +++ b/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_set_share_properties_async.yaml @@ -5,7 +5,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:02 GMT + - Thu, 15 Oct 2020 01:21:58 GMT x-ms-version: - '2020-02-10' method: PUT @@ -15,9 +15,9 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 08 Oct 2020 05:50:03 GMT - etag: '"0x8D86B4E0095EE15"' - last-modified: Thu, 08 Oct 2020 05:50:03 GMT + date: Thu, 15 Oct 2020 01:22:15 GMT + etag: '"0x8D870A8C08C18FE"' + last-modified: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: '2020-02-10' status: @@ -30,7 +30,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:03 GMT + - Thu, 15 Oct 2020 01:22:16 GMT x-ms-version: - '2020-02-10' method: PUT @@ -40,9 +40,9 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 08 Oct 2020 05:50:03 GMT - etag: '"0x8D86B4E00A09E64"' - last-modified: Thu, 08 Oct 2020 05:50:03 GMT + date: Thu, 15 Oct 2020 01:22:15 GMT + etag: '"0x8D870A8C098291B"' + last-modified: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: '2020-02-10' status: @@ -55,9 +55,9 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:03 GMT + - Thu, 15 Oct 2020 01:22:16 GMT x-ms-share-quota: - - '1' + - '3' x-ms-version: - '2020-02-10' method: PUT @@ -67,9 +67,9 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 08 Oct 2020 05:50:03 GMT - etag: '"0x8D86B4E00AA8505"' - last-modified: Thu, 08 Oct 2020 05:50:03 GMT + date: Thu, 15 Oct 2020 01:22:15 GMT + etag: '"0x8D870A8C0B52CF7"' + last-modified: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: '2020-02-10' status: @@ -84,7 +84,7 @@ interactions: x-ms-access-tier: - Hot x-ms-date: - - Thu, 08 Oct 2020 05:50:03 GMT + - Thu, 15 Oct 2020 01:22:16 GMT x-ms-version: - '2020-02-10' method: PUT @@ -94,9 +94,9 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 08 Oct 2020 05:50:03 GMT - etag: '"0x8D86B4E00B61FDD"' - last-modified: Thu, 08 Oct 2020 05:50:03 GMT + date: Thu, 15 Oct 2020 01:22:15 GMT + etag: '"0x8D870A8C0BF40F9"' + last-modified: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: '2020-02-10' status: @@ -111,32 +111,7 @@ interactions: x-ms-access-tier: - Cool x-ms-date: - - Thu, 08 Oct 2020 05:50:03 GMT - x-ms-version: - - '2020-02-10' - method: PUT - uri: https://storagename.file.core.windows.net/share2e59a13e4?restype=share&comp=properties - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 08 Oct 2020 05:50:03 GMT - etag: '"0x8D86B4E00BF976E"' - last-modified: Thu, 08 Oct 2020 05:50:03 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 200 - message: OK - url: https://seanmcccanary3.file.core.windows.net/share2e59a13e4?restype=share&comp=properties -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 08 Oct 2020 05:50:03 GMT + - Thu, 15 Oct 2020 01:22:16 GMT x-ms-share-quota: - '2' x-ms-version: @@ -148,9 +123,9 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 08 Oct 2020 05:50:03 GMT - etag: '"0x8D86B4E00C9844D"' - last-modified: Thu, 08 Oct 2020 05:50:03 GMT + date: Thu, 15 Oct 2020 01:22:15 GMT + etag: '"0x8D870A8C0C8917F"' + last-modified: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: '2020-02-10' status: @@ -163,7 +138,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:03 GMT + - Thu, 15 Oct 2020 01:22:16 GMT x-ms-version: - '2020-02-10' method: GET @@ -173,19 +148,17 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 08 Oct 2020 05:50:03 GMT - etag: '"0x8D86B4E00B61FDD"' - last-modified: Thu, 08 Oct 2020 05:50:03 GMT + date: Thu, 15 Oct 2020 01:22:15 GMT + etag: '"0x8D870A8C0BF40F9"' + last-modified: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 vary: Origin x-ms-access-tier: Hot - x-ms-access-tier-change-time: Thu, 08 Oct 2020 05:50:03 GMT + x-ms-access-tier-change-time: Thu, 15 Oct 2020 01:22:16 GMT x-ms-access-tier-transition-state: pending-from-transactionOptimized x-ms-has-immutability-policy: 'false' x-ms-has-legal-hold: 'false' - x-ms-lease-state: available - x-ms-lease-status: unlocked - x-ms-share-quota: '1' + x-ms-share-quota: '3' x-ms-version: '2020-02-10' status: code: 200 @@ -197,7 +170,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:03 GMT + - Thu, 15 Oct 2020 01:22:16 GMT x-ms-version: - '2020-02-10' method: GET @@ -207,18 +180,16 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 08 Oct 2020 05:50:03 GMT - etag: '"0x8D86B4E00C9844D"' - last-modified: Thu, 08 Oct 2020 05:50:03 GMT + date: Thu, 15 Oct 2020 01:22:15 GMT + etag: '"0x8D870A8C0C8917F"' + last-modified: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 vary: Origin x-ms-access-tier: Cool - x-ms-access-tier-change-time: Thu, 08 Oct 2020 05:50:03 GMT + x-ms-access-tier-change-time: Thu, 15 Oct 2020 01:22:16 GMT x-ms-access-tier-transition-state: pending-from-transactionOptimized x-ms-has-immutability-policy: 'false' x-ms-has-legal-hold: 'false' - x-ms-lease-state: available - x-ms-lease-status: unlocked x-ms-share-quota: '2' x-ms-version: '2020-02-10' status: @@ -233,7 +204,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:03 GMT + - Thu, 15 Oct 2020 01:22:16 GMT x-ms-version: - '2020-02-10' method: GET @@ -242,117 +213,234 @@ interactions: body: string: "\uFEFFshare1816f1171Fri, - 11 Sep 2020 00:43:37 GMT\"0x8D855EBB87CFF33\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:43:37 GMT\"0x8D855EBB87CFF33\"5120TransactionOptimizedFri, 11 Sep 2020 00:43:37 GMT$account-encryption-keyfalseshare182b3117dFri, - 11 Sep 2020 00:44:44 GMT\"0x8D855EBE0710239\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:44:44 GMT\"0x8D855EBE0710239\"5120TransactionOptimizedFri, 11 Sep 2020 00:44:44 GMT$account-encryption-keyfalseshare1e59a13e4Thu, - 08 Oct 2020 05:50:03 GMT\"0x8D86B4E00B61FDD\"unlockedavailable1HotThu, - 08 Oct 2020 05:50:03 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare2e59a13e4Thu, - 08 Oct 2020 05:50:03 GMT\"0x8D86B4E00C9844D\"unlockedavailable2CoolThu, - 08 Oct 2020 05:50:03 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare336d1532Fri, - 11 Sep 2020 00:02:03 GMT\"0x8D855E5EA1BA89C\"lockedleasedinfinite5120TransactionOptimizedFri, + 15 Oct 2020 01:22:16 GMT\"0x8D870A8C0BF40F9\"3HotThu, + 15 Oct 2020 01:22:16 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare2e59a13e4Thu, + 15 Oct 2020 01:22:16 GMT\"0x8D870A8C0C8917F\"2CoolThu, + 15 Oct 2020 01:22:16 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare336d1532Fri, + 11 Sep 2020 00:02:03 GMT\"0x8D855E5EA1BA89C\"5120TransactionOptimizedFri, 11 Sep 2020 00:02:03 GMT$account-encryption-keyfalseshare50ad1060Tue, - 29 Sep 2020 22:27:37 GMT\"0x8D864C6DE6E6B78\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:27:37 GMT\"0x8D864C6DE6E6B78\"5120TransactionOptimizedTue, 29 Sep 2020 22:27:37 GMT$account-encryption-keyfalseshare602310dcThu, - 10 Sep 2020 23:45:57 GMT\"0x8D855E3AA5BA817\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:45:57 GMT\"0x8D855E3AA5BA817\"5120TransactionOptimizedThu, 10 Sep 2020 23:45:57 GMT$account-encryption-keyfalseshare801b1156Thu, - 10 Sep 2020 23:48:33 GMT\"0x8D855E4070545FC\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:48:33 GMT\"0x8D855E4070545FC\"5120TransactionOptimizedThu, 10 Sep 2020 23:48:33 GMT$account-encryption-keyfalsesharea7a1477Thu, - 10 Sep 2020 23:48:04 GMT\"0x8D855E3F609C583\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:48:04 GMT\"0x8D855E3F609C583\"5120TransactionOptimizedThu, 10 Sep 2020 23:48:04 GMT$account-encryption-keyfalseshareba3e12f12020-09-28T14:03:31.0000000ZMon, - 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"lockedleasedinfinite5120$account-encryption-keyfalseshareba3e12f1Mon, - 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"lockedleasedinfinite5120TransactionOptimizedMon, + 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"5120$account-encryption-keyfalseshareba3e12f1Mon, + 28 Sep 2020 14:03:31 GMT\"0x8D863B748689793\"5120TransactionOptimizedMon, 28 Sep 2020 14:03:31 GMT$account-encryption-keyfalsesharec80148eFri, - 11 Sep 2020 00:25:51 GMT\"0x8D855E93D722BB0\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:25:51 GMT\"0x8D855E93D722BB0\"5120TransactionOptimizedFri, 11 Sep 2020 00:03:40 GMT$account-encryption-keyfalsesharecb2f1317Fri, - 11 Sep 2020 00:59:09 GMT\"0x8D855EDE422992F\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:59:09 GMT\"0x8D855EDE422992F\"5120TransactionOptimizedFri, 11 Sep 2020 00:59:09 GMT$account-encryption-keyfalsesharee121138eFri, - 11 Sep 2020 00:00:54 GMT\"0x8D855E5C0C0BD1C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 00:00:54 GMT\"0x8D855E5C0C0BD1C\"5120TransactionOptimizedFri, 11 Sep 2020 00:00:53 GMT$account-encryption-keyfalsesharee52d0d77Thu, - 10 Sep 2020 23:47:27 GMT\"0x8D855E3DFBB5CB3\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 23:47:27 GMT\"0x8D855E3DFBB5CB3\"5120TransactionOptimizedThu, 10 Sep 2020 23:47:20 GMT$account-encryption-keyfalsesharerestorecb2f1317Thu, - 10 Sep 2020 22:44:32 GMT\"0x8D855DB159313DC\"lockedleasedinfinite5120TransactionOptimizedThu, + 10 Sep 2020 22:44:32 GMT\"0x8D855DB159313DC\"5120TransactionOptimizedThu, 10 Sep 2020 22:44:32 GMT$account-encryption-keyfalsesharesamples5Tue, - 15 Sep 2020 19:39:56 GMT\"0x8D859AF1FEB001F\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:39:56 GMT\"0x8D859AF1FEB001F\"5120TransactionOptimizedTue, 15 Sep 2020 19:39:55 GMT$account-encryption-keyfalsesharesamples6Tue, - 15 Sep 2020 19:43:57 GMT\"0x8D859AFAFBA3E88\"lockedleasedinfinite5120TransactionOptimizedTue, + 15 Sep 2020 19:43:57 GMT\"0x8D859AFAFBA3E88\"5120TransactionOptimizedTue, 15 Sep 2020 19:43:57 GMT$account-encryption-keyfalsesharesamples7Tue, - 15 Sep 2020 19:44:49 GMT\"0x8D859AFCEB7CC2D\"lockedleasedinfinite5120TransactionOptimizedTue, - 15 Sep 2020 19:44:49 GMT$account-encryption-keyfalsetest-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7Wed, - 05 Aug 2020 19:06:51 GMT\"0x8D83972B5D1302D\"lockedleasedinfinite5120TransactionOptimizedWed, - 05 Aug 2020 19:06:51 GMT$account-encryption-keyfalsetest-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31Wed, - 05 Aug 2020 19:06:49 GMT\"0x8D83972B5025718\"lockedleasedinfinite5120TransactionOptimizedWed, + 15 Sep 2020 19:44:49 GMT\"0x8D859AFCEB7CC2D\"5120TransactionOptimizedTue, + 15 Sep 2020 19:44:49 GMT$account-encryption-keyfalsetest-share-0883f636-747e-4a87-8604-3d2bd0767c0a2020-10-12T21:41:40.0000000ZMon, + 12 Oct 2020 21:41:39 GMT\"0x8D86EF79A6E9D3F\"1$account-encryption-keyfalsetest-share-0883f636-747e-4a87-8604-3d2bd0767c0a2020-10-12T21:41:41.0000000ZMon, + 12 Oct 2020 21:41:39 GMT\"0x8D86EF79A6E9D3F\"1$account-encryption-keyfalsetest-share-0883f636-747e-4a87-8604-3d2bd0767c0aMon, + 12 Oct 2020 21:41:39 GMT\"0x8D86EF79A6E9D3F\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:39 GMT$account-encryption-keyfalsetest-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f2020-10-12T21:41:43.0000000ZMon, + 12 Oct 2020 21:41:43 GMT\"0x8D86EF79C4F37EB\"1$account-encryption-keyfalsetest-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f2020-10-12T21:41:44.0000000ZMon, + 12 Oct 2020 21:41:43 GMT\"0x8D86EF79C4F37EB\"1$account-encryption-keyfalsetest-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6fMon, + 12 Oct 2020 21:41:43 GMT\"0x8D86EF79C4F37EB\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:43 GMT$account-encryption-keyfalsetest-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7Wed, + 05 Aug 2020 19:06:51 GMT\"0x8D83972B5D1302D\"5120TransactionOptimizedWed, + 05 Aug 2020 19:06:51 GMT$account-encryption-keyfalsetest-share-19944beb-bae2-4a83-9649-e6aab41de17e2020-10-12T21:41:56.0000000ZMon, + 12 Oct 2020 21:41:56 GMT\"0x8D86EF7A41E4FCD\"1$account-encryption-keyfalsetest-share-19944beb-bae2-4a83-9649-e6aab41de17e2020-10-12T21:41:57.0000000ZMon, + 12 Oct 2020 21:41:56 GMT\"0x8D86EF7A41E4FCD\"1$account-encryption-keyfalsetest-share-19944beb-bae2-4a83-9649-e6aab41de17eMon, + 12 Oct 2020 21:41:56 GMT\"0x8D86EF7A41E4FCD\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:56 GMT$account-encryption-keyfalsetest-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31Wed, + 05 Aug 2020 19:06:49 GMT\"0x8D83972B5025718\"5120TransactionOptimizedWed, 05 Aug 2020 19:06:49 GMT$account-encryption-keyfalsetest-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3aWed, - 05 Aug 2020 17:24:15 GMT\"0x8D8396460C3E165\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 17:24:15 GMT\"0x8D8396460C3E165\"5120TransactionOptimizedWed, 05 Aug 2020 17:24:15 GMT$account-encryption-keyfalsetest-share-26ae488a-f23e-4b65-aa5b-f273d6179074Wed, - 05 Aug 2020 19:06:50 GMT\"0x8D83972B592F011\"lockedleasedinfinite5120TransactionOptimizedWed, - 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-49d22d21-4363-478e-8f26-1357ef6bd183Wed, - 05 Aug 2020 17:24:21 GMT\"0x8D8396464063943\"lockedleasedinfinite5120TransactionOptimizedWed, - 05 Aug 2020 17:24:21 GMT$account-encryption-keyfalsetest-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680Wed, - 05 Aug 2020 17:24:17 GMT\"0x8D8396461D987E1\"lockedleasedinfinite5120TransactionOptimizedWed, - 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604Wed, - 05 Aug 2020 17:24:19 GMT\"0x8D83964633A2718\"lockedleasedinfinite5120TransactionOptimizedWed, - 05 Aug 2020 17:24:19 GMT$account-encryption-keyfalsetest-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52Wed, - 05 Aug 2020 19:06:50 GMT\"0x8D83972B538E3FD\"lockedleasedinfinite5120TransactionOptimizedWed, - 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-8903864e-96ec-44f5-8912-837a9f23cbb5Wed, - 05 Aug 2020 00:04:00 GMT\"0x8D838D30E563856\"lockedleasedinfinite5120TransactionOptimizedWed, - 05 Aug 2020 00:04:00 GMT$account-encryption-keyfalsetest-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67aWed, - 05 Aug 2020 17:24:18 GMT\"0x8D8396462815131\"lockedleasedinfinite5120TransactionOptimizedWed, - 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-d5852df4-944a-48b9-8552-eea5bfd94b6bWed, - 05 Aug 2020 17:24:20 GMT\"0x8D8396463BD465A\"lockedleasedinfinite5120TransactionOptimizedWed, - 05 Aug 2020 17:24:20 GMT$account-encryption-keyfalsetest-share-fa7d1a1f-d065-4d58-bb12-a59f22106473Wed, - 05 Aug 2020 17:24:18 GMT\"0x8D839646251B45A\"lockedleasedinfinite5120TransactionOptimizedWed, + 05 Aug 2020 19:06:50 GMT\"0x8D83972B592F011\"5120TransactionOptimizedWed, + 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-2c2c7f92-0d2e-4639-a44b-5aa1ec5e36402020-10-09T15:59:36.0000000ZFri, + 09 Oct 2020 15:59:36 GMT\"0x8D86C6C525FB911\"1$account-encryption-keyfalsetest-share-2c2c7f92-0d2e-4639-a44b-5aa1ec5e3640Fri, + 09 Oct 2020 15:59:36 GMT\"0x8D86C6C525FB911\"1TransactionOptimizedFri, + 09 Oct 2020 15:59:36 GMT$account-encryption-keyfalsetest-share-316ddb11-f173-44be-bf21-53fe312783642020-10-09T16:00:48.0000000ZFri, + 09 Oct 2020 16:00:48 GMT\"0x8D86C6C7CF78FAB\"1$account-encryption-keyfalsetest-share-316ddb11-f173-44be-bf21-53fe31278364Fri, + 09 Oct 2020 16:00:48 GMT\"0x8D86C6C7CF78FAB\"1TransactionOptimizedFri, + 09 Oct 2020 16:00:48 GMT$account-encryption-keyfalsetest-share-3ce34113-3aee-42c5-ad56-7cf7f519ef512020-10-09T16:00:49.0000000ZFri, + 09 Oct 2020 16:00:49 GMT\"0x8D86C6C7E0507AE\"1$account-encryption-keyfalsetest-share-3ce34113-3aee-42c5-ad56-7cf7f519ef51Fri, + 09 Oct 2020 16:00:49 GMT\"0x8D86C6C7E0507AE\"1TransactionOptimizedFri, + 09 Oct 2020 16:00:49 GMT$account-encryption-keyfalsetest-share-41184be7-7e6a-4444-8d5d-108389cffa322020-10-12T21:41:54.0000000ZMon, + 12 Oct 2020 21:41:54 GMT\"0x8D86EF7A3422588\"1$account-encryption-keyfalsetest-share-41184be7-7e6a-4444-8d5d-108389cffa322020-10-12T21:41:55.0000000ZMon, + 12 Oct 2020 21:41:54 GMT\"0x8D86EF7A3422588\"1$account-encryption-keyfalsetest-share-41184be7-7e6a-4444-8d5d-108389cffa32Mon, + 12 Oct 2020 21:41:54 GMT\"0x8D86EF7A3422588\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:54 GMT$account-encryption-keyfalsetest-share-433e59e4-fee3-903f-25ca-df14d66bce5aTue, + 13 Oct 2020 01:38:27 GMT\"0x8D86F18AEC2315D\"5120TransactionOptimizedTue, + 13 Oct 2020 01:38:24 GMT$account-encryption-keyfalsetest-share-49d22d21-4363-478e-8f26-1357ef6bd183Wed, + 05 Aug 2020 17:24:21 GMT\"0x8D8396464063943\"5120TransactionOptimizedWed, + 05 Aug 2020 17:24:21 GMT$account-encryption-keyfalsetest-share-4bbe92b5-59ee-4308-99b8-4f074d25d8492020-10-12T21:41:57.0000000ZMon, + 12 Oct 2020 21:41:56 GMT\"0x8D86EF7A4847A00\"1$account-encryption-keyfalsetest-share-4bbe92b5-59ee-4308-99b8-4f074d25d8492020-10-12T21:41:58.0000000ZMon, + 12 Oct 2020 21:41:56 GMT\"0x8D86EF7A4847A00\"1$account-encryption-keyfalsetest-share-4bbe92b5-59ee-4308-99b8-4f074d25d849Mon, + 12 Oct 2020 21:41:56 GMT\"0x8D86EF7A4847A00\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:56 GMT$account-encryption-keyfalsetest-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a282020-10-12T21:41:50.0000000ZMon, + 12 Oct 2020 21:41:50 GMT\"0x8D86EF7A08A61DE\"1$account-encryption-keyfalsetest-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a282020-10-12T21:41:51.0000000ZMon, + 12 Oct 2020 21:41:50 GMT\"0x8D86EF7A08A61DE\"1$account-encryption-keyfalsetest-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a28Mon, + 12 Oct 2020 21:41:50 GMT\"0x8D86EF7A08A61DE\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:50 GMT$account-encryption-keyfalsetest-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680Wed, + 05 Aug 2020 17:24:17 GMT\"0x8D8396461D987E1\"5120TransactionOptimizedWed, + 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest-share-583835fc-cf3c-4125-bed0-c7484450889c2020-10-09T16:00:49.0000000ZFri, + 09 Oct 2020 16:00:49 GMT\"0x8D86C6C7D9BE783\"1$account-encryption-keyfalsetest-share-583835fc-cf3c-4125-bed0-c7484450889cFri, + 09 Oct 2020 16:00:49 GMT\"0x8D86C6C7D9BE783\"1TransactionOptimizedFri, + 09 Oct 2020 16:00:49 GMT$account-encryption-keyfalsetest-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604Wed, + 05 Aug 2020 17:24:19 GMT\"0x8D83964633A2718\"5120TransactionOptimizedWed, + 05 Aug 2020 17:24:19 GMT$account-encryption-keyfalsetest-share-786c4245-f779-4819-9560-9ca6f310ee542020-10-09T16:00:51.0000000ZFri, + 09 Oct 2020 16:00:51 GMT\"0x8D86C6C7F0D694A\"1$account-encryption-keyfalsetest-share-786c4245-f779-4819-9560-9ca6f310ee54Fri, + 09 Oct 2020 16:00:51 GMT\"0x8D86C6C7F0D694A\"1TransactionOptimizedFri, + 09 Oct 2020 16:00:51 GMT$account-encryption-keyfalsetest-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52Wed, + 05 Aug 2020 19:06:50 GMT\"0x8D83972B538E3FD\"5120TransactionOptimizedWed, + 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-86909a2e-b781-44ee-8718-96f1784d7d982020-10-09T16:00:48.0000000ZFri, + 09 Oct 2020 16:00:48 GMT\"0x8D86C6C7D424CDB\"1$account-encryption-keyfalsetest-share-86909a2e-b781-44ee-8718-96f1784d7d98Fri, + 09 Oct 2020 16:00:48 GMT\"0x8D86C6C7D424CDB\"1TransactionOptimizedFri, + 09 Oct 2020 16:00:48 GMT$account-encryption-keyfalsetest-share-8903864e-96ec-44f5-8912-837a9f23cbb5Wed, + 05 Aug 2020 00:04:00 GMT\"0x8D838D30E563856\"5120TransactionOptimizedWed, + 05 Aug 2020 00:04:00 GMT$account-encryption-keyfalsetest-share-8d686f58-2056-4433-b854-59c319e5dc3a2020-10-09T15:59:38.0000000ZFri, + 09 Oct 2020 15:59:37 GMT\"0x8D86C6C531DFC59\"1$account-encryption-keyfalsetest-share-8d686f58-2056-4433-b854-59c319e5dc3aFri, + 09 Oct 2020 15:59:37 GMT\"0x8D86C6C531DFC59\"1TransactionOptimizedFri, + 09 Oct 2020 15:59:37 GMT$account-encryption-keyfalsetest-share-9032063a-67fc-4ae4-8367-b3c707724f582020-10-12T21:41:51.0000000ZMon, + 12 Oct 2020 21:41:51 GMT\"0x8D86EF7A16FB5A8\"1$account-encryption-keyfalsetest-share-9032063a-67fc-4ae4-8367-b3c707724f582020-10-12T21:41:52.0000000ZMon, + 12 Oct 2020 21:41:51 GMT\"0x8D86EF7A16FB5A8\"1$account-encryption-keyfalsetest-share-9032063a-67fc-4ae4-8367-b3c707724f58Mon, + 12 Oct 2020 21:41:51 GMT\"0x8D86EF7A16FB5A8\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:51 GMT$account-encryption-keyfalsetest-share-91530c85-00f7-4298-b490-14719e46bc682020-10-12T21:41:40.0000000ZMon, + 12 Oct 2020 21:41:40 GMT\"0x8D86EF79AE7E49B\"1$account-encryption-keyfalsetest-share-91530c85-00f7-4298-b490-14719e46bc682020-10-12T21:41:41.0000000ZMon, + 12 Oct 2020 21:41:40 GMT\"0x8D86EF79AE7E49B\"1$account-encryption-keyfalsetest-share-91530c85-00f7-4298-b490-14719e46bc68Mon, + 12 Oct 2020 21:41:40 GMT\"0x8D86EF79AE7E49B\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:40 GMT$account-encryption-keyfalsetest-share-939d0375-070c-464d-9446-0e1d3783a5832020-10-09T15:59:40.0000000ZFri, + 09 Oct 2020 15:59:40 GMT\"0x8D86C6C5477092A\"1$account-encryption-keyfalsetest-share-939d0375-070c-464d-9446-0e1d3783a583Fri, + 09 Oct 2020 15:59:40 GMT\"0x8D86C6C5477092A\"1TransactionOptimizedFri, + 09 Oct 2020 15:59:40 GMT$account-encryption-keyfalsetest-share-9c85091c-816c-4284-a0a3-41614160f9a52020-10-09T15:59:40.0000000ZFri, + 09 Oct 2020 15:59:40 GMT\"0x8D86C6C54A64BB9\"1$account-encryption-keyfalsetest-share-9c85091c-816c-4284-a0a3-41614160f9a5Fri, + 09 Oct 2020 15:59:40 GMT\"0x8D86C6C54A64BB9\"1TransactionOptimizedFri, + 09 Oct 2020 15:59:40 GMT$account-encryption-keyfalsetest-share-aa7d75e0-afb6-4622-ac6c-63b08633fe26Wed, + 14 Oct 2020 21:28:30 GMT\"0x8D8708818B307AC\"5120TransactionOptimizedWed, + 14 Oct 2020 21:28:30 GMT$account-encryption-keyfalsetest-share-b57b3375-b6d5-4e82-ad5e-bbfad3988fb7Wed, + 14 Oct 2020 21:25:34 GMT\"0x8D87087AFAAA995\"5120TransactionOptimizedWed, + 14 Oct 2020 21:25:34 GMT$account-encryption-keyfalsetest-share-b77d6f52-7214-4fbc-82d9-b0e046245d8f2020-10-09T15:59:38.0000000ZFri, + 09 Oct 2020 15:59:38 GMT\"0x8D86C6C5363863B\"1$account-encryption-keyfalsetest-share-b77d6f52-7214-4fbc-82d9-b0e046245d8fFri, + 09 Oct 2020 15:59:38 GMT\"0x8D86C6C5363863B\"1TransactionOptimizedFri, + 09 Oct 2020 15:59:38 GMT$account-encryption-keyfalsetest-share-b9b66681-31a1-4a51-bf38-5b130a101a7c2020-10-09T15:59:37.0000000ZFri, + 09 Oct 2020 15:59:37 GMT\"0x8D86C6C52E22583\"1$account-encryption-keyfalsetest-share-b9b66681-31a1-4a51-bf38-5b130a101a7cFri, + 09 Oct 2020 15:59:37 GMT\"0x8D86C6C52E22583\"1TransactionOptimizedFri, + 09 Oct 2020 15:59:37 GMT$account-encryption-keyfalsetest-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67aWed, + 05 Aug 2020 17:24:18 GMT\"0x8D8396462815131\"5120TransactionOptimizedWed, + 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c22020-10-12T21:41:58.0000000ZMon, + 12 Oct 2020 21:41:58 GMT\"0x8D86EF7A59EDAE6\"1$account-encryption-keyfalsetest-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c22020-10-12T21:41:59.0000000ZMon, + 12 Oct 2020 21:41:58 GMT\"0x8D86EF7A59EDAE6\"1$account-encryption-keyfalsetest-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c2Mon, + 12 Oct 2020 21:41:58 GMT\"0x8D86EF7A59EDAE6\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:58 GMT$account-encryption-keyfalsetest-share-c8963579-8f4d-4729-b0c2-f9a62a2adc6b2020-10-09T16:00:50.0000000ZFri, + 09 Oct 2020 16:00:50 GMT\"0x8D86C6C7E9196C0\"1$account-encryption-keyfalsetest-share-c8963579-8f4d-4729-b0c2-f9a62a2adc6bFri, + 09 Oct 2020 16:00:50 GMT\"0x8D86C6C7E9196C0\"1TransactionOptimizedFri, + 09 Oct 2020 16:00:50 GMT$account-encryption-keyfalsetest-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc2020-10-12T21:41:47.0000000ZMon, + 12 Oct 2020 21:41:47 GMT\"0x8D86EF79EC05911\"1$account-encryption-keyfalsetest-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc2020-10-12T21:41:48.0000000ZMon, + 12 Oct 2020 21:41:47 GMT\"0x8D86EF79EC05911\"1$account-encryption-keyfalsetest-share-d12ca04d-51c8-4a02-b133-dcbec1b439fcMon, + 12 Oct 2020 21:41:47 GMT\"0x8D86EF79EC05911\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:47 GMT$account-encryption-keyfalsetest-share-d468d64f-34b2-43c2-b517-8b8756e3b58e2020-10-12T21:41:47.0000000ZMon, + 12 Oct 2020 21:41:47 GMT\"0x8D86EF79F05DB00\"1$account-encryption-keyfalsetest-share-d468d64f-34b2-43c2-b517-8b8756e3b58e2020-10-12T21:41:48.0000000ZMon, + 12 Oct 2020 21:41:47 GMT\"0x8D86EF79F05DB00\"1$account-encryption-keyfalsetest-share-d468d64f-34b2-43c2-b517-8b8756e3b58eMon, + 12 Oct 2020 21:41:47 GMT\"0x8D86EF79F05DB00\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:47 GMT$account-encryption-keyfalsetest-share-d5852df4-944a-48b9-8552-eea5bfd94b6bWed, + 05 Aug 2020 17:24:20 GMT\"0x8D8396463BD465A\"5120TransactionOptimizedWed, + 05 Aug 2020 17:24:20 GMT$account-encryption-keyfalsetest-share-d878ae6e-db35-418d-b454-033415d655592020-10-12T21:41:59.0000000ZMon, + 12 Oct 2020 21:41:59 GMT\"0x8D86EF7A64C4162\"1$account-encryption-keyfalsetest-share-d878ae6e-db35-418d-b454-033415d655592020-10-12T21:42:00.0000000ZMon, + 12 Oct 2020 21:41:59 GMT\"0x8D86EF7A64C4162\"1$account-encryption-keyfalsetest-share-d878ae6e-db35-418d-b454-033415d65559Mon, + 12 Oct 2020 21:41:59 GMT\"0x8D86EF7A64C4162\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:59 GMT$account-encryption-keyfalsetest-share-dfad7dbd-450e-4b7b-8659-0d78619eed162020-10-09T15:59:39.0000000ZFri, + 09 Oct 2020 15:59:39 GMT\"0x8D86C6C541FBFF7\"1$account-encryption-keyfalsetest-share-dfad7dbd-450e-4b7b-8659-0d78619eed16Fri, + 09 Oct 2020 15:59:39 GMT\"0x8D86C6C541FBFF7\"1TransactionOptimizedFri, + 09 Oct 2020 15:59:38 GMT$account-encryption-keyfalsetest-share-e125b24e-2090-43ad-85b4-834e93679ccf2020-10-12T21:41:42.0000000ZMon, + 12 Oct 2020 21:41:42 GMT\"0x8D86EF79BEDDB6A\"1$account-encryption-keyfalsetest-share-e125b24e-2090-43ad-85b4-834e93679ccf2020-10-12T21:41:43.0000000ZMon, + 12 Oct 2020 21:41:42 GMT\"0x8D86EF79BEDDB6A\"1$account-encryption-keyfalsetest-share-e125b24e-2090-43ad-85b4-834e93679ccfMon, + 12 Oct 2020 21:41:42 GMT\"0x8D86EF79BEDDB6A\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:42 GMT$account-encryption-keyfalsetest-share-e3ab5189-b505-4194-ad27-9468dd1975952020-10-09T16:00:52.0000000ZFri, + 09 Oct 2020 16:00:52 GMT\"0x8D86C6C7F461382\"1$account-encryption-keyfalsetest-share-e3ab5189-b505-4194-ad27-9468dd197595Fri, + 09 Oct 2020 16:00:52 GMT\"0x8D86C6C7F461382\"1TransactionOptimizedFri, + 09 Oct 2020 16:00:51 GMT$account-encryption-keyfalsetest-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f2020-10-12T21:41:52.0000000ZMon, + 12 Oct 2020 21:41:52 GMT\"0x8D86EF7A1BD13E2\"1$account-encryption-keyfalsetest-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f2020-10-12T21:41:53.0000000ZMon, + 12 Oct 2020 21:41:52 GMT\"0x8D86EF7A1BD13E2\"1$account-encryption-keyfalsetest-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889fMon, + 12 Oct 2020 21:41:52 GMT\"0x8D86EF7A1BD13E2\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:52 GMT$account-encryption-keyfalsetest-share-ecabdad0-45cc-4b68-8316-4a8c0f631da52020-10-12T21:41:49.0000000ZMon, + 12 Oct 2020 21:41:49 GMT\"0x8D86EF7A01C1593\"1$account-encryption-keyfalsetest-share-ecabdad0-45cc-4b68-8316-4a8c0f631da52020-10-12T21:41:50.0000000ZMon, + 12 Oct 2020 21:41:49 GMT\"0x8D86EF7A01C1593\"1$account-encryption-keyfalsetest-share-ecabdad0-45cc-4b68-8316-4a8c0f631da5Mon, + 12 Oct 2020 21:41:49 GMT\"0x8D86EF7A01C1593\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:49 GMT$account-encryption-keyfalsetest-share-eda1f524-4414-4ac1-82e7-b07a41a114502020-10-09T15:59:37.0000000ZFri, + 09 Oct 2020 15:59:37 GMT\"0x8D86C6C52AA5004\"1$account-encryption-keyfalsetest-share-eda1f524-4414-4ac1-82e7-b07a41a11450Fri, + 09 Oct 2020 15:59:37 GMT\"0x8D86C6C52AA5004\"1TransactionOptimizedFri, + 09 Oct 2020 15:59:37 GMT$account-encryption-keyfalsetest-share-fa7d1a1f-d065-4d58-bb12-a59f22106473Wed, + 05 Aug 2020 17:24:18 GMT\"0x8D839646251B45A\"5120TransactionOptimizedWed, 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-fcc35a78-e231-4233-a311-d48ee9bb2df7Wed, - 05 Aug 2020 17:24:16 GMT\"0x8D83964610EBC77\"lockedleasedinfinite5120TransactionOptimizedWed, - 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest16185160bFri, - 11 Sep 2020 13:51:30 GMT\"0x8D85659C98711F1\"lockedleasedinfinite5120TransactionOptimizedFri, + 05 Aug 2020 17:24:16 GMT\"0x8D83964610EBC77\"5120TransactionOptimizedWed, + 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest-share-ff58f16b-05bc-418d-9982-4ba47e55637b2020-10-12T21:41:54.0000000ZMon, + 12 Oct 2020 21:41:54 GMT\"0x8D86EF7A2DFE946\"1$account-encryption-keyfalsetest-share-ff58f16b-05bc-418d-9982-4ba47e55637b2020-10-12T21:41:55.0000000ZMon, + 12 Oct 2020 21:41:54 GMT\"0x8D86EF7A2DFE946\"1$account-encryption-keyfalsetest-share-ff58f16b-05bc-418d-9982-4ba47e55637bMon, + 12 Oct 2020 21:41:54 GMT\"0x8D86EF7A2DFE946\"1TransactionOptimizedMon, + 12 Oct 2020 21:41:54 GMT$account-encryption-keyfalsetest16185160bFri, + 11 Sep 2020 13:51:30 GMT\"0x8D85659C98711F1\"5120TransactionOptimizedFri, 11 Sep 2020 13:51:30 GMT$account-encryption-keyfalsetest1bd1a12ddTue, - 29 Sep 2020 22:34:36 GMT\"0x8D864C7D8628CD4\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:34:36 GMT\"0x8D864C7D8628CD4\"5120TransactionOptimizedTue, 29 Sep 2020 22:34:36 GMT$account-encryption-keyfalsetest2bd1a12ddTue, - 29 Sep 2020 22:38:12 GMT\"0x8D864C858E9FC21\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:38:12 GMT\"0x8D864C858E9FC21\"5120TransactionOptimizedTue, 29 Sep 2020 22:38:12 GMT$account-encryption-keyfalsetest403e0ff4Fri, - 11 Sep 2020 13:48:01 GMT\"0x8D856594D05BB2E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:48:01 GMT\"0x8D856594D05BB2E\"5120TransactionOptimizedFri, 11 Sep 2020 13:48:01 GMT$account-encryption-keyfalsetest49161594Fri, - 11 Sep 2020 13:44:29 GMT\"0x8D85658CEB83E6D\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:44:29 GMT\"0x8D85658CEB83E6D\"5120TransactionOptimizedFri, 11 Sep 2020 13:44:29 GMT$account-encryption-keyfalsetest50ad1060Tue, - 29 Sep 2020 22:31:15 GMT\"0x8D864C760543D56\"lockedleasedinfinite5120TransactionOptimizedTue, + 29 Sep 2020 22:31:15 GMT\"0x8D864C760543D56\"5120TransactionOptimizedTue, 29 Sep 2020 22:31:14 GMT$account-encryption-keyfalsetest600515ffFri, - 11 Sep 2020 13:52:29 GMT\"0x8D85659ECC7BFF5\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:52:29 GMT\"0x8D85659ECC7BFF5\"5120TransactionOptimizedFri, 11 Sep 2020 13:52:29 GMT$account-encryption-keyfalsetest602310dcFri, - 11 Sep 2020 01:46:55 GMT\"0x8D855F490678FD9\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:46:55 GMT\"0x8D855F490678FD9\"5120TransactionOptimizedFri, 11 Sep 2020 01:46:55 GMT$account-encryption-keyfalsetest6185160bFri, - 11 Sep 2020 13:50:04 GMT\"0x8D85659960A4A9F\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:50:04 GMT\"0x8D85659960A4A9F\"5120TransactionOptimizedFri, 11 Sep 2020 13:50:03 GMT$account-encryption-keyfalsetest801b1156Fri, - 11 Sep 2020 01:43:39 GMT\"0x8D855F41B7485A5\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:39 GMT\"0x8D855F41B7485A5\"5120TransactionOptimizedFri, 11 Sep 2020 01:43:39 GMT$account-encryption-keyfalsetest816f1171Fri, - 11 Sep 2020 01:44:03 GMT\"0x8D855F429A8569E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:44:03 GMT\"0x8D855F429A8569E\"5120TransactionOptimizedFri, 11 Sep 2020 01:44:03 GMT$account-encryption-keyfalsetest82b3117dFri, - 11 Sep 2020 01:44:09 GMT\"0x8D855F42D9DFD7A\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:44:09 GMT\"0x8D855F42D9DFD7A\"5120TransactionOptimizedFri, 11 Sep 2020 01:44:09 GMT$account-encryption-keyfalsetest8fc916f4Fri, - 11 Sep 2020 13:48:35 GMT\"0x8D8565961566D0E\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:48:35 GMT\"0x8D8565961566D0E\"5120TransactionOptimizedFri, 11 Sep 2020 13:48:35 GMT$account-encryption-keyfalsetesta7a1477Fri, - 11 Sep 2020 01:42:27 GMT\"0x8D855F3F0B3CE4D\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:42:27 GMT\"0x8D855F3F0B3CE4D\"5120TransactionOptimizedFri, 11 Sep 2020 01:42:27 GMT$account-encryption-keyfalsetestcb2f1317Fri, - 11 Sep 2020 01:35:53 GMT\"0x8D855F305C89D8C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:35:53 GMT\"0x8D855F305C89D8C\"5120TransactionOptimizedFri, 11 Sep 2020 01:35:53 GMT$account-encryption-keyfalsetestcf0d1359Fri, - 11 Sep 2020 13:46:53 GMT\"0x8D856592431D1AA\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:46:53 GMT\"0x8D856592431D1AA\"5120TransactionOptimizedFri, 11 Sep 2020 13:46:53 GMT$account-encryption-keyfalsetestdfa11382Fri, - 11 Sep 2020 01:43:51 GMT\"0x8D855F422BEA24C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:51 GMT\"0x8D855F422BEA24C\"5120TransactionOptimizedFri, 11 Sep 2020 01:43:51 GMT$account-encryption-keyfalseteste121138eFri, - 11 Sep 2020 01:43:45 GMT\"0x8D855F41F52C3FB\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:43:45 GMT\"0x8D855F41F52C3FB\"5120TransactionOptimizedFri, 11 Sep 2020 01:43:45 GMT$account-encryption-keyfalseteste52d0d77Fri, - 11 Sep 2020 01:42:19 GMT\"0x8D855F3EC19CB5C\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 01:42:19 GMT\"0x8D855F3EC19CB5C\"5120TransactionOptimizedFri, 11 Sep 2020 01:42:19 GMT$account-encryption-keyfalsetestf3ff13d3Fri, - 11 Sep 2020 13:49:19 GMT\"0x8D856597B1CC145\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:49:19 GMT\"0x8D856597B1CC145\"5120TransactionOptimizedFri, 11 Sep 2020 13:49:19 GMT$account-encryption-keyfalsetestf55313eeFri, - 11 Sep 2020 13:53:58 GMT\"0x8D8565A21BA7745\"lockedleasedinfinite5120TransactionOptimizedFri, + 11 Sep 2020 13:53:58 GMT\"0x8D8565A21BA7745\"5120TransactionOptimizedFri, 11 Sep 2020 13:53:58 GMT$account-encryption-keyfalsetestf69713faFri, - 11 Sep 2020 13:54:36 GMT\"0x8D8565A3813B91A\"lockedleasedinfinite5120TransactionOptimizedFri, - 11 Sep 2020 13:54:35 GMT$account-encryption-keyfalse\"0x8D8565A3813B91A\"5120TransactionOptimizedFri, + 11 Sep 2020 13:54:35 GMT$account-encryption-keyfalseutshare1d770f1dTue, + 13 Oct 2020 20:11:58 GMT\"0x8D86FB43D37AB6F\"5120TransactionOptimizedTue, + 13 Oct 2020 20:11:58 GMT$account-encryption-keyfalse" headers: content-type: application/xml - date: Thu, 08 Oct 2020 05:50:03 GMT + date: Thu, 15 Oct 2020 01:22:15 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: chunked vary: Origin @@ -367,7 +455,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:03 GMT + - Thu, 15 Oct 2020 01:22:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -378,11 +466,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd72f-701a-003e-6536-9d4dbd000000\nTime:2020-10-08T05:50:04.2968295Z" + request.\nRequestId:d30fedfa-001a-0024-2c91-a22c62000000\nTime:2020-10-15T01:22:17.0045713Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:04 GMT + date: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -397,7 +485,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:04 GMT + - Thu, 15 Oct 2020 01:22:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -408,11 +496,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd730-701a-003e-6636-9d4dbd000000\nTime:2020-10-08T05:50:04.4089101Z" + request.\nRequestId:d30fedfb-001a-0024-2d91-a22c62000000\nTime:2020-10-15T01:22:17.1146493Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:04 GMT + date: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -427,7 +515,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:04 GMT + - Thu, 15 Oct 2020 01:22:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -439,7 +527,7 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 08 Oct 2020 05:50:04 GMT + date: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: '2020-02-10' status: @@ -452,7 +540,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:04 GMT + - Thu, 15 Oct 2020 01:22:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -464,7 +552,7 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 08 Oct 2020 05:50:04 GMT + date: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: '2020-02-10' status: @@ -477,7 +565,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:04 GMT + - Thu, 15 Oct 2020 01:22:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -488,11 +576,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd733-701a-003e-6936-9d4dbd000000\nTime:2020-10-08T05:50:04.6060519Z" + request.\nRequestId:d30fee01-001a-0024-3391-a22c62000000\nTime:2020-10-15T01:22:17.3648253Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:04 GMT + date: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -507,7 +595,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:04 GMT + - Thu, 15 Oct 2020 01:22:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -518,11 +606,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd734-701a-003e-6a36-9d4dbd000000\nTime:2020-10-08T05:50:04.6811054Z" + request.\nRequestId:d30fee02-001a-0024-3491-a22c62000000\nTime:2020-10-15T01:22:17.4438810Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:04 GMT + date: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -537,7 +625,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:04 GMT + - Thu, 15 Oct 2020 01:22:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -548,11 +636,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd735-701a-003e-6b36-9d4dbd000000\nTime:2020-10-08T05:50:04.8302127Z" + request.\nRequestId:d30fee03-001a-0024-3591-a22c62000000\nTime:2020-10-15T01:22:17.5069259Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:04 GMT + date: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -567,7 +655,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:04 GMT + - Thu, 15 Oct 2020 01:22:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -578,11 +666,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd737-701a-003e-6c36-9d4dbd000000\nTime:2020-10-08T05:50:04.8992624Z" + request.\nRequestId:d30fee04-001a-0024-3691-a22c62000000\nTime:2020-10-15T01:22:17.5689697Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:04 GMT + date: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -597,7 +685,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:04 GMT + - Thu, 15 Oct 2020 01:22:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -608,11 +696,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd738-701a-003e-6d36-9d4dbd000000\nTime:2020-10-08T05:50:04.9773185Z" + request.\nRequestId:d30fee05-001a-0024-3791-a22c62000000\nTime:2020-10-15T01:22:17.6460236Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:04 GMT + date: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -627,7 +715,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:04 GMT + - Thu, 15 Oct 2020 01:22:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -636,22 +724,20 @@ interactions: uri: https://storagename.file.core.windows.net/shareba3e12f1?restype=share response: body: - string: "\uFEFFDeleteShareWhenSnapshotLeasedUnable - to delete share because one or more share snapshots have active leases. Release - the share snapshot leases or delete the share with the include-leased parameter - for x-ms-delete-snapshots.\nRequestId:936bd739-701a-003e-6e36-9d4dbd000000\nTime:2020-10-08T05:50:05.0493707Z" + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee06-001a-0024-3891-a22c62000000\nTime:2020-10-15T01:22:17.7240786Z" headers: - content-length: '391' + content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:04 GMT + date: Thu, 15 Oct 2020 01:22:16 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: DeleteShareWhenSnapshotLeased + x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 409 - message: Unable to delete share because one or more share snapshots have active - leases. Release the share snapshot leases or delete the share with the include-leased - parameter for x-ms-delete-snapshots. + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. url: https://seanmcccanary3.file.core.windows.net/shareba3e12f1?restype=share - request: body: null @@ -659,7 +745,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:04 GMT + - Thu, 15 Oct 2020 01:22:17 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -668,22 +754,20 @@ interactions: uri: https://storagename.file.core.windows.net/shareba3e12f1?restype=share response: body: - string: "\uFEFFDeleteShareWhenSnapshotLeasedUnable - to delete share because one or more share snapshots have active leases. Release - the share snapshot leases or delete the share with the include-leased parameter - for x-ms-delete-snapshots.\nRequestId:936bd73a-701a-003e-6f36-9d4dbd000000\nTime:2020-10-08T05:50:05.1184204Z" + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee07-001a-0024-3991-a22c62000000\nTime:2020-10-15T01:22:17.7851221Z" headers: - content-length: '391' + content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:04 GMT + date: Thu, 15 Oct 2020 01:22:17 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: DeleteShareWhenSnapshotLeased + x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 409 - message: Unable to delete share because one or more share snapshots have active - leases. Release the share snapshot leases or delete the share with the include-leased - parameter for x-ms-delete-snapshots. + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. url: https://seanmcccanary3.file.core.windows.net/shareba3e12f1?restype=share - request: body: null @@ -691,7 +775,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:04 GMT + - Thu, 15 Oct 2020 01:22:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -702,11 +786,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd73c-701a-003e-7036-9d4dbd000000\nTime:2020-10-08T05:50:05.1834668Z" + request.\nRequestId:d30fee09-001a-0024-3a91-a22c62000000\nTime:2020-10-15T01:22:17.8901957Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:04 GMT + date: Thu, 15 Oct 2020 01:22:17 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -721,7 +805,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:05 GMT + - Thu, 15 Oct 2020 01:22:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -732,11 +816,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd73d-701a-003e-7136-9d4dbd000000\nTime:2020-10-08T05:50:05.2635252Z" + request.\nRequestId:d30fee0c-001a-0024-3d91-a22c62000000\nTime:2020-10-15T01:22:17.9812600Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:05 GMT + date: Thu, 15 Oct 2020 01:22:17 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -751,7 +835,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:05 GMT + - Thu, 15 Oct 2020 01:22:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -762,11 +846,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd73e-701a-003e-7236-9d4dbd000000\nTime:2020-10-08T05:50:05.3365773Z" + request.\nRequestId:d30fee0d-001a-0024-3e91-a22c62000000\nTime:2020-10-15T01:22:18.0673216Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:05 GMT + date: Thu, 15 Oct 2020 01:22:17 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -781,7 +865,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:05 GMT + - Thu, 15 Oct 2020 01:22:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -792,11 +876,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd73f-701a-003e-7336-9d4dbd000000\nTime:2020-10-08T05:50:05.4026252Z" + request.\nRequestId:d30fee0e-001a-0024-3f91-a22c62000000\nTime:2020-10-15T01:22:18.1563850Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:05 GMT + date: Thu, 15 Oct 2020 01:22:17 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -811,7 +895,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:05 GMT + - Thu, 15 Oct 2020 01:22:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -822,11 +906,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd740-701a-003e-7436-9d4dbd000000\nTime:2020-10-08T05:50:05.4656697Z" + request.\nRequestId:d30fee0f-001a-0024-4091-a22c62000000\nTime:2020-10-15T01:22:18.2224324Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:05 GMT + date: Thu, 15 Oct 2020 01:22:17 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -841,7 +925,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:05 GMT + - Thu, 15 Oct 2020 01:22:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -852,11 +936,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd741-701a-003e-7536-9d4dbd000000\nTime:2020-10-08T05:50:05.5377220Z" + request.\nRequestId:d30fee11-001a-0024-4291-a22c62000000\nTime:2020-10-15T01:22:18.2864770Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:05 GMT + date: Thu, 15 Oct 2020 01:22:17 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -871,7 +955,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:05 GMT + - Thu, 15 Oct 2020 01:22:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -882,11 +966,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd742-701a-003e-7636-9d4dbd000000\nTime:2020-10-08T05:50:05.6147774Z" + request.\nRequestId:d30fee12-001a-0024-4391-a22c62000000\nTime:2020-10-15T01:22:18.3545254Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:05 GMT + date: Thu, 15 Oct 2020 01:22:17 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -901,7 +985,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:05 GMT + - Thu, 15 Oct 2020 01:22:18 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -912,11 +996,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd743-701a-003e-7736-9d4dbd000000\nTime:2020-10-08T05:50:05.6898310Z" + request.\nRequestId:d30fee13-001a-0024-4491-a22c62000000\nTime:2020-10-15T01:22:18.4175703Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:05 GMT + date: Thu, 15 Oct 2020 01:22:17 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -931,202 +1015,172 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:05 GMT + - Thu, 15 Oct 2020 01:22:18 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7?restype=share + uri: https://storagename.file.core.windows.net/test-share-0883f636-747e-4a87-8604-3d2bd0767c0a?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd744-701a-003e-7836-9d4dbd000000\nTime:2020-10-08T05:50:05.7678875Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:05 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:17 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7?restype=share + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-0883f636-747e-4a87-8604-3d2bd0767c0a?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:05 GMT + - Thu, 15 Oct 2020 01:22:18 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31?restype=share + uri: https://storagename.file.core.windows.net/test-share-0883f636-747e-4a87-8604-3d2bd0767c0a?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd745-701a-003e-7936-9d4dbd000000\nTime:2020-10-08T05:50:05.8319336Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:05 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:17 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31?restype=share + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-0883f636-747e-4a87-8604-3d2bd0767c0a?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:05 GMT + - Thu, 15 Oct 2020 01:22:18 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3a?restype=share + uri: https://storagename.file.core.windows.net/test-share-0883f636-747e-4a87-8604-3d2bd0767c0a?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd746-701a-003e-7a36-9d4dbd000000\nTime:2020-10-08T05:50:05.9099897Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:05 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:17 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3a?restype=share + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-0883f636-747e-4a87-8604-3d2bd0767c0a?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:05 GMT + - Thu, 15 Oct 2020 01:22:18 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-26ae488a-f23e-4b65-aa5b-f273d6179074?restype=share + uri: https://storagename.file.core.windows.net/test-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd747-701a-003e-7b36-9d4dbd000000\nTime:2020-10-08T05:50:05.9930495Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:05 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-26ae488a-f23e-4b65-aa5b-f273d6179074?restype=share + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:05 GMT + - Thu, 15 Oct 2020 01:22:18 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-49d22d21-4363-478e-8f26-1357ef6bd183?restype=share + uri: https://storagename.file.core.windows.net/test-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd748-701a-003e-7c36-9d4dbd000000\nTime:2020-10-08T05:50:06.0580962Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:05 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-49d22d21-4363-478e-8f26-1357ef6bd183?restype=share + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:05 GMT + - Thu, 15 Oct 2020 01:22:19 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680?restype=share + uri: https://storagename.file.core.windows.net/test-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd74a-701a-003e-7d36-9d4dbd000000\nTime:2020-10-08T05:50:06.1211412Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:05 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680?restype=share + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:05 GMT + - Thu, 15 Oct 2020 01:22:19 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604?restype=share + uri: https://storagename.file.core.windows.net/test-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7?restype=share response: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd74b-701a-003e-7e36-9d4dbd000000\nTime:2020-10-08T05:50:06.1861879Z" + request.\nRequestId:d30fee1b-001a-0024-4c91-a22c62000000\nTime:2020-10-15T01:22:18.9959820Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:05 GMT + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1134,119 +1188,104 @@ interactions: code: 412 message: There is currently a lease on the file share and no lease ID was specified in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604?restype=share + url: https://seanmcccanary3.file.core.windows.net/test-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:06 GMT + - Thu, 15 Oct 2020 01:22:19 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52?restype=share + uri: https://storagename.file.core.windows.net/test-share-19944beb-bae2-4a83-9649-e6aab41de17e?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd74c-701a-003e-7f36-9d4dbd000000\nTime:2020-10-08T05:50:06.2492337Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52?restype=share + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-19944beb-bae2-4a83-9649-e6aab41de17e?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:06 GMT + - Thu, 15 Oct 2020 01:22:19 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-8903864e-96ec-44f5-8912-837a9f23cbb5?restype=share + uri: https://storagename.file.core.windows.net/test-share-19944beb-bae2-4a83-9649-e6aab41de17e?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd74d-701a-003e-8036-9d4dbd000000\nTime:2020-10-08T05:50:06.3132798Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-8903864e-96ec-44f5-8912-837a9f23cbb5?restype=share + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-19944beb-bae2-4a83-9649-e6aab41de17e?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:06 GMT + - Thu, 15 Oct 2020 01:22:19 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67a?restype=share + uri: https://storagename.file.core.windows.net/test-share-19944beb-bae2-4a83-9649-e6aab41de17e?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd74e-701a-003e-0136-9d4dbd000000\nTime:2020-10-08T05:50:06.3773254Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67a?restype=share + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-19944beb-bae2-4a83-9649-e6aab41de17e?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:06 GMT + - Thu, 15 Oct 2020 01:22:19 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-d5852df4-944a-48b9-8552-eea5bfd94b6b?restype=share + uri: https://storagename.file.core.windows.net/test-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31?restype=share response: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd74f-701a-003e-0236-9d4dbd000000\nTime:2020-10-08T05:50:06.4423726Z" + request.\nRequestId:d30fee21-001a-0024-5291-a22c62000000\nTime:2020-10-15T01:22:19.2771815Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1254,29 +1293,29 @@ interactions: code: 412 message: There is currently a lease on the file share and no lease ID was specified in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-d5852df4-944a-48b9-8552-eea5bfd94b6b?restype=share + url: https://seanmcccanary3.file.core.windows.net/test-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:06 GMT + - Thu, 15 Oct 2020 01:22:19 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-fa7d1a1f-d065-4d58-bb12-a59f22106473?restype=share + uri: https://storagename.file.core.windows.net/test-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3a?restype=share response: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd750-701a-003e-0336-9d4dbd000000\nTime:2020-10-08T05:50:06.5084197Z" + request.\nRequestId:d30fee22-001a-0024-5391-a22c62000000\nTime:2020-10-15T01:22:19.3402264Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1284,29 +1323,29 @@ interactions: code: 412 message: There is currently a lease on the file share and no lease ID was specified in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-fa7d1a1f-d065-4d58-bb12-a59f22106473?restype=share + url: https://seanmcccanary3.file.core.windows.net/test-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3a?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:06 GMT + - Thu, 15 Oct 2020 01:22:19 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-fcc35a78-e231-4233-a311-d48ee9bb2df7?restype=share + uri: https://storagename.file.core.windows.net/test-share-26ae488a-f23e-4b65-aa5b-f273d6179074?restype=share response: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd751-701a-003e-0436-9d4dbd000000\nTime:2020-10-08T05:50:06.5744672Z" + request.\nRequestId:d30fee23-001a-0024-5491-a22c62000000\nTime:2020-10-15T01:22:19.4082752Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1314,184 +1353,2254 @@ interactions: code: 412 message: There is currently a lease on the file share and no lease ID was specified in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-fcc35a78-e231-4233-a311-d48ee9bb2df7?restype=share + url: https://seanmcccanary3.file.core.windows.net/test-share-26ae488a-f23e-4b65-aa5b-f273d6179074?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:06 GMT + - Thu, 15 Oct 2020 01:22:19 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test16185160b?restype=share + uri: https://storagename.file.core.windows.net/test-share-2c2c7f92-0d2e-4639-a44b-5aa1ec5e3640?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd752-701a-003e-0536-9d4dbd000000\nTime:2020-10-08T05:50:06.6385133Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test16185160b?restype=share + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-2c2c7f92-0d2e-4639-a44b-5aa1ec5e3640?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:06 GMT + - Thu, 15 Oct 2020 01:22:19 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test1bd1a12dd?restype=share + uri: https://storagename.file.core.windows.net/test-share-2c2c7f92-0d2e-4639-a44b-5aa1ec5e3640?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd753-701a-003e-0636-9d4dbd000000\nTime:2020-10-08T05:50:06.7035601Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test1bd1a12dd?restype=share + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-2c2c7f92-0d2e-4639-a44b-5aa1ec5e3640?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:06 GMT + - Thu, 15 Oct 2020 01:22:19 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test2bd1a12dd?restype=share + uri: https://storagename.file.core.windows.net/test-share-316ddb11-f173-44be-bf21-53fe31278364?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd754-701a-003e-0736-9d4dbd000000\nTime:2020-10-08T05:50:06.7766126Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test2bd1a12dd?restype=share + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-316ddb11-f173-44be-bf21-53fe31278364?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:06 GMT + - Thu, 15 Oct 2020 01:22:19 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test403e0ff4?restype=share + uri: https://storagename.file.core.windows.net/test-share-316ddb11-f173-44be-bf21-53fe31278364?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd755-701a-003e-0836-9d4dbd000000\nTime:2020-10-08T05:50:06.8656767Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test403e0ff4?restype=share + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-316ddb11-f173-44be-bf21-53fe31278364?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:06 GMT + - Thu, 15 Oct 2020 01:22:19 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test49161594?restype=share + uri: https://storagename.file.core.windows.net/test-share-3ce34113-3aee-42c5-ad56-7cf7f519ef51?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd756-701a-003e-0936-9d4dbd000000\nTime:2020-10-08T05:50:06.9387292Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:18 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test49161594?restype=share + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-3ce34113-3aee-42c5-ad56-7cf7f519ef51?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:06 GMT + - Thu, 15 Oct 2020 01:22:19 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test50ad1060?restype=share + uri: https://storagename.file.core.windows.net/test-share-3ce34113-3aee-42c5-ad56-7cf7f519ef51?restype=share response: body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd757-701a-003e-0a36-9d4dbd000000\nTime:2020-10-08T05:50:07.0117819Z" + string: '' headers: - content-length: '273' - content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + content-length: '0' + date: Thu, 15 Oct 2020 01:22:19 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 412 + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-3ce34113-3aee-42c5-ad56-7cf7f519ef51?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:19 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-41184be7-7e6a-4444-8d5d-108389cffa32?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:19 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-41184be7-7e6a-4444-8d5d-108389cffa32?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-41184be7-7e6a-4444-8d5d-108389cffa32?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:19 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-41184be7-7e6a-4444-8d5d-108389cffa32?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-41184be7-7e6a-4444-8d5d-108389cffa32?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:19 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-41184be7-7e6a-4444-8d5d-108389cffa32?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-433e59e4-fee3-903f-25ca-df14d66bce5a?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:19 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-433e59e4-fee3-903f-25ca-df14d66bce5a?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-49d22d21-4363-478e-8f26-1357ef6bd183?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee32-001a-0024-6291-a22c62000000\nTime:2020-10-15T01:22:20.1558063Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:19 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-49d22d21-4363-478e-8f26-1357ef6bd183?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-4bbe92b5-59ee-4308-99b8-4f074d25d849?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:19 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-4bbe92b5-59ee-4308-99b8-4f074d25d849?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-4bbe92b5-59ee-4308-99b8-4f074d25d849?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:19 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-4bbe92b5-59ee-4308-99b8-4f074d25d849?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-4bbe92b5-59ee-4308-99b8-4f074d25d849?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:19 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-4bbe92b5-59ee-4308-99b8-4f074d25d849?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a28?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:19 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a28?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a28?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:19 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a28?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a28?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:19 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a28?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee3b-001a-0024-6a91-a22c62000000\nTime:2020-10-15T01:22:20.6541612Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:19 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-583835fc-cf3c-4125-bed0-c7484450889c?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:19 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-583835fc-cf3c-4125-bed0-c7484450889c?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:20 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-583835fc-cf3c-4125-bed0-c7484450889c?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:20 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-583835fc-cf3c-4125-bed0-c7484450889c?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee3e-001a-0024-6d91-a22c62000000\nTime:2020-10-15T01:22:20.8833237Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:20 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-786c4245-f779-4819-9560-9ca6f310ee54?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:20 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-786c4245-f779-4819-9560-9ca6f310ee54?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-786c4245-f779-4819-9560-9ca6f310ee54?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:20 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-786c4245-f779-4819-9560-9ca6f310ee54?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee43-001a-0024-7191-a22c62000000\nTime:2020-10-15T01:22:21.1074835Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:20 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-86909a2e-b781-44ee-8718-96f1784d7d98?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:20 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-86909a2e-b781-44ee-8718-96f1784d7d98?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-86909a2e-b781-44ee-8718-96f1784d7d98?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:20 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-86909a2e-b781-44ee-8718-96f1784d7d98?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-8903864e-96ec-44f5-8912-837a9f23cbb5?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee46-001a-0024-7491-a22c62000000\nTime:2020-10-15T01:22:21.3186332Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:20 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-8903864e-96ec-44f5-8912-837a9f23cbb5?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-8d686f58-2056-4433-b854-59c319e5dc3a?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:20 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-8d686f58-2056-4433-b854-59c319e5dc3a?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-8d686f58-2056-4433-b854-59c319e5dc3a?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:20 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-8d686f58-2056-4433-b854-59c319e5dc3a?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-9032063a-67fc-4ae4-8367-b3c707724f58?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:20 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-9032063a-67fc-4ae4-8367-b3c707724f58?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-9032063a-67fc-4ae4-8367-b3c707724f58?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:20 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-9032063a-67fc-4ae4-8367-b3c707724f58?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-9032063a-67fc-4ae4-8367-b3c707724f58?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:20 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-9032063a-67fc-4ae4-8367-b3c707724f58?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-91530c85-00f7-4298-b490-14719e46bc68?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:21 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-91530c85-00f7-4298-b490-14719e46bc68?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:21 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-91530c85-00f7-4298-b490-14719e46bc68?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:21 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-91530c85-00f7-4298-b490-14719e46bc68?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-91530c85-00f7-4298-b490-14719e46bc68?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:21 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-91530c85-00f7-4298-b490-14719e46bc68?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-939d0375-070c-464d-9446-0e1d3783a583?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:21 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-939d0375-070c-464d-9446-0e1d3783a583?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-939d0375-070c-464d-9446-0e1d3783a583?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:21 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-939d0375-070c-464d-9446-0e1d3783a583?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-9c85091c-816c-4284-a0a3-41614160f9a5?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:21 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-9c85091c-816c-4284-a0a3-41614160f9a5?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-9c85091c-816c-4284-a0a3-41614160f9a5?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:21 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-9c85091c-816c-4284-a0a3-41614160f9a5?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-aa7d75e0-afb6-4622-ac6c-63b08633fe26?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:21 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-aa7d75e0-afb6-4622-ac6c-63b08633fe26?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-b57b3375-b6d5-4e82-ad5e-bbfad3988fb7?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:21 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-b57b3375-b6d5-4e82-ad5e-bbfad3988fb7?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-b77d6f52-7214-4fbc-82d9-b0e046245d8f?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:21 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-b77d6f52-7214-4fbc-82d9-b0e046245d8f?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-b77d6f52-7214-4fbc-82d9-b0e046245d8f?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:21 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-b77d6f52-7214-4fbc-82d9-b0e046245d8f?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-b9b66681-31a1-4a51-bf38-5b130a101a7c?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:21 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-b9b66681-31a1-4a51-bf38-5b130a101a7c?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-b9b66681-31a1-4a51-bf38-5b130a101a7c?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:21 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-b9b66681-31a1-4a51-bf38-5b130a101a7c?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67a?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee5a-001a-0024-0891-a22c62000000\nTime:2020-10-15T01:22:22.7546498Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:22 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67a?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:22 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c2?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:22 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c2?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c2?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:22 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c2?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c2?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:22 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c2?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-c8963579-8f4d-4729-b0c2-f9a62a2adc6b?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:22 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-c8963579-8f4d-4729-b0c2-f9a62a2adc6b?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-c8963579-8f4d-4729-b0c2-f9a62a2adc6b?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:22 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-c8963579-8f4d-4729-b0c2-f9a62a2adc6b?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:22 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:22 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:22 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-d468d64f-34b2-43c2-b517-8b8756e3b58e?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:22 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-d468d64f-34b2-43c2-b517-8b8756e3b58e?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-d468d64f-34b2-43c2-b517-8b8756e3b58e?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:22 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-d468d64f-34b2-43c2-b517-8b8756e3b58e?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-d468d64f-34b2-43c2-b517-8b8756e3b58e?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:22 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-d468d64f-34b2-43c2-b517-8b8756e3b58e?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-d5852df4-944a-48b9-8552-eea5bfd94b6b?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee6a-001a-0024-1791-a22c62000000\nTime:2020-10-15T01:22:23.6632950Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:22 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-d5852df4-944a-48b9-8552-eea5bfd94b6b?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-d878ae6e-db35-418d-b454-033415d65559?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:22 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-d878ae6e-db35-418d-b454-033415d65559?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:23 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-d878ae6e-db35-418d-b454-033415d65559?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:23 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-d878ae6e-db35-418d-b454-033415d65559?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:24 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-d878ae6e-db35-418d-b454-033415d65559?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:23 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-d878ae6e-db35-418d-b454-033415d65559?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:24 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-dfad7dbd-450e-4b7b-8659-0d78619eed16?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:23 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-dfad7dbd-450e-4b7b-8659-0d78619eed16?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:24 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-dfad7dbd-450e-4b7b-8659-0d78619eed16?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:23 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-dfad7dbd-450e-4b7b-8659-0d78619eed16?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:24 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-e125b24e-2090-43ad-85b4-834e93679ccf?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:23 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-e125b24e-2090-43ad-85b4-834e93679ccf?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:24 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-e125b24e-2090-43ad-85b4-834e93679ccf?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:23 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-e125b24e-2090-43ad-85b4-834e93679ccf?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:24 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-e125b24e-2090-43ad-85b4-834e93679ccf?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:23 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-e125b24e-2090-43ad-85b4-834e93679ccf?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:24 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-e3ab5189-b505-4194-ad27-9468dd197595?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:23 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-e3ab5189-b505-4194-ad27-9468dd197595?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:24 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-e3ab5189-b505-4194-ad27-9468dd197595?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:23 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-e3ab5189-b505-4194-ad27-9468dd197595?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:24 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:23 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:24 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:23 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:24 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:23 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:24 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-ecabdad0-45cc-4b68-8316-4a8c0f631da5?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:24 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-ecabdad0-45cc-4b68-8316-4a8c0f631da5?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-ecabdad0-45cc-4b68-8316-4a8c0f631da5?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:24 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-ecabdad0-45cc-4b68-8316-4a8c0f631da5?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-ecabdad0-45cc-4b68-8316-4a8c0f631da5?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:24 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-ecabdad0-45cc-4b68-8316-4a8c0f631da5?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-eda1f524-4414-4ac1-82e7-b07a41a11450?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:24 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-eda1f524-4414-4ac1-82e7-b07a41a11450?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-eda1f524-4414-4ac1-82e7-b07a41a11450?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:24 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-eda1f524-4414-4ac1-82e7-b07a41a11450?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-fa7d1a1f-d065-4d58-bb12-a59f22106473?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee81-001a-0024-2c91-a22c62000000\nTime:2020-10-15T01:22:25.2424179Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:24 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-fa7d1a1f-d065-4d58-bb12-a59f22106473?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-fcc35a78-e231-4233-a311-d48ee9bb2df7?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee82-001a-0024-2d91-a22c62000000\nTime:2020-10-15T01:22:25.3264773Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:24 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-fcc35a78-e231-4233-a311-d48ee9bb2df7?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-ff58f16b-05bc-418d-9982-4ba47e55637b?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:24 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-ff58f16b-05bc-418d-9982-4ba47e55637b?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-ff58f16b-05bc-418d-9982-4ba47e55637b?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:24 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-ff58f16b-05bc-418d-9982-4ba47e55637b?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test-share-ff58f16b-05bc-418d-9982-4ba47e55637b?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:24 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/test-share-ff58f16b-05bc-418d-9982-4ba47e55637b?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test16185160b?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee89-001a-0024-3391-a22c62000000\nTime:2020-10-15T01:22:25.6617161Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:24 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test16185160b?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test1bd1a12dd?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee8a-001a-0024-3491-a22c62000000\nTime:2020-10-15T01:22:25.7477769Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:24 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test1bd1a12dd?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:25 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test2bd1a12dd?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee8b-001a-0024-3591-a22c62000000\nTime:2020-10-15T01:22:25.8348388Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:25 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test2bd1a12dd?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:26 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test403e0ff4?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee8c-001a-0024-3691-a22c62000000\nTime:2020-10-15T01:22:25.9229014Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:25 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test403e0ff4?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:26 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test49161594?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee8e-001a-0024-3791-a22c62000000\nTime:2020-10-15T01:22:26.0109645Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:25 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test49161594?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:26 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/test50ad1060?restype=share + response: + body: + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:d30fee8f-001a-0024-3891-a22c62000000\nTime:2020-10-15T01:22:26.0950238Z" + headers: + content-length: '273' + content-type: application/xml + date: Thu, 15 Oct 2020 01:22:25 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing + x-ms-version: '2020-02-10' + status: + code: 412 message: There is currently a lease on the file share and no lease ID was specified in the request. url: https://seanmcccanary3.file.core.windows.net/test50ad1060?restype=share @@ -1501,7 +3610,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:06 GMT + - Thu, 15 Oct 2020 01:22:26 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1512,11 +3621,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd759-701a-003e-0b36-9d4dbd000000\nTime:2020-10-08T05:50:07.0878356Z" + request.\nRequestId:d30fee90-001a-0024-3991-a22c62000000\nTime:2020-10-15T01:22:26.1810854Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + date: Thu, 15 Oct 2020 01:22:25 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1531,7 +3640,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:06 GMT + - Thu, 15 Oct 2020 01:22:26 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1542,11 +3651,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd75b-701a-003e-0c36-9d4dbd000000\nTime:2020-10-08T05:50:07.1568849Z" + request.\nRequestId:d30fee91-001a-0024-3a91-a22c62000000\nTime:2020-10-15T01:22:26.2671466Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + date: Thu, 15 Oct 2020 01:22:25 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1561,7 +3670,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:07 GMT + - Thu, 15 Oct 2020 01:22:26 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1572,11 +3681,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd75c-701a-003e-0d36-9d4dbd000000\nTime:2020-10-08T05:50:07.2229319Z" + request.\nRequestId:d30fee92-001a-0024-3b91-a22c62000000\nTime:2020-10-15T01:22:26.3522071Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:06 GMT + date: Thu, 15 Oct 2020 01:22:25 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1591,7 +3700,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:07 GMT + - Thu, 15 Oct 2020 01:22:26 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1602,11 +3711,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd75d-701a-003e-0e36-9d4dbd000000\nTime:2020-10-08T05:50:07.2879787Z" + request.\nRequestId:d30fee94-001a-0024-3c91-a22c62000000\nTime:2020-10-15T01:22:26.4362669Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:07 GMT + date: Thu, 15 Oct 2020 01:22:25 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1621,7 +3730,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:07 GMT + - Thu, 15 Oct 2020 01:22:26 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1632,11 +3741,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd75e-701a-003e-0f36-9d4dbd000000\nTime:2020-10-08T05:50:07.3530251Z" + request.\nRequestId:d30fee95-001a-0024-3d91-a22c62000000\nTime:2020-10-15T01:22:26.5233284Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:07 GMT + date: Thu, 15 Oct 2020 01:22:25 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1651,7 +3760,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:07 GMT + - Thu, 15 Oct 2020 01:22:26 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1662,11 +3771,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd75f-701a-003e-1036-9d4dbd000000\nTime:2020-10-08T05:50:07.4290793Z" + request.\nRequestId:d30fee96-001a-0024-3e91-a22c62000000\nTime:2020-10-15T01:22:26.6083893Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:07 GMT + date: Thu, 15 Oct 2020 01:22:25 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1681,7 +3790,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:07 GMT + - Thu, 15 Oct 2020 01:22:26 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1692,11 +3801,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd760-701a-003e-1136-9d4dbd000000\nTime:2020-10-08T05:50:07.5051340Z" + request.\nRequestId:d30fee97-001a-0024-3f91-a22c62000000\nTime:2020-10-15T01:22:26.6844434Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:07 GMT + date: Thu, 15 Oct 2020 01:22:25 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1711,7 +3820,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:07 GMT + - Thu, 15 Oct 2020 01:22:26 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1722,11 +3831,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd761-701a-003e-1236-9d4dbd000000\nTime:2020-10-08T05:50:07.5801870Z" + request.\nRequestId:d30fee98-001a-0024-4091-a22c62000000\nTime:2020-10-15T01:22:26.7735067Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:07 GMT + date: Thu, 15 Oct 2020 01:22:26 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1741,7 +3850,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:07 GMT + - Thu, 15 Oct 2020 01:22:26 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1752,11 +3861,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd762-701a-003e-1336-9d4dbd000000\nTime:2020-10-08T05:50:07.6552401Z" + request.\nRequestId:d30fee99-001a-0024-4191-a22c62000000\nTime:2020-10-15T01:22:26.8535636Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:07 GMT + date: Thu, 15 Oct 2020 01:22:26 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1771,7 +3880,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:07 GMT + - Thu, 15 Oct 2020 01:22:27 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1782,11 +3891,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd764-701a-003e-1436-9d4dbd000000\nTime:2020-10-08T05:50:07.7332962Z" + request.\nRequestId:d30fee9a-001a-0024-4291-a22c62000000\nTime:2020-10-15T01:22:26.9416263Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:07 GMT + date: Thu, 15 Oct 2020 01:22:26 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1801,7 +3910,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:07 GMT + - Thu, 15 Oct 2020 01:22:27 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1812,11 +3921,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd765-701a-003e-1536-9d4dbd000000\nTime:2020-10-08T05:50:07.8073485Z" + request.\nRequestId:d30fee9c-001a-0024-4491-a22c62000000\nTime:2020-10-15T01:22:27.0276867Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:07 GMT + date: Thu, 15 Oct 2020 01:22:26 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1831,7 +3940,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:07 GMT + - Thu, 15 Oct 2020 01:22:27 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1842,11 +3951,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd766-701a-003e-1636-9d4dbd000000\nTime:2020-10-08T05:50:07.8844034Z" + request.\nRequestId:d30fee9d-001a-0024-4591-a22c62000000\nTime:2020-10-15T01:22:27.1107457Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:07 GMT + date: Thu, 15 Oct 2020 01:22:26 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1861,7 +3970,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:07 GMT + - Thu, 15 Oct 2020 01:22:27 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1872,11 +3981,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd767-701a-003e-1736-9d4dbd000000\nTime:2020-10-08T05:50:07.9594569Z" + request.\nRequestId:d30fee9e-001a-0024-4691-a22c62000000\nTime:2020-10-15T01:22:27.2018099Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:07 GMT + date: Thu, 15 Oct 2020 01:22:26 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1891,7 +4000,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:07 GMT + - Thu, 15 Oct 2020 01:22:27 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1902,11 +4011,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd768-701a-003e-1836-9d4dbd000000\nTime:2020-10-08T05:50:08.0395145Z" + request.\nRequestId:d30fee9f-001a-0024-4791-a22c62000000\nTime:2020-10-15T01:22:27.2888713Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:07 GMT + date: Thu, 15 Oct 2020 01:22:26 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1921,7 +4030,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:07 GMT + - Thu, 15 Oct 2020 01:22:27 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1932,11 +4041,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd769-701a-003e-1936-9d4dbd000000\nTime:2020-10-08T05:50:08.1155696Z" + request.\nRequestId:d30feea0-001a-0024-4891-a22c62000000\nTime:2020-10-15T01:22:27.3919440Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:07 GMT + date: Thu, 15 Oct 2020 01:22:26 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1951,7 +4060,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 08 Oct 2020 05:50:07 GMT + - Thu, 15 Oct 2020 01:22:27 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1962,11 +4071,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:936bd76a-701a-003e-1a36-9d4dbd000000\nTime:2020-10-08T05:50:08.1936258Z" + request.\nRequestId:d30feea1-001a-0024-4991-a22c62000000\nTime:2020-10-15T01:22:27.4810064Z" headers: content-length: '273' content-type: application/xml - date: Thu, 08 Oct 2020 05:50:07 GMT + date: Thu, 15 Oct 2020 01:22:26 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1975,4 +4084,29 @@ interactions: message: There is currently a lease on the file share and no lease ID was specified in the request. url: https://seanmcccanary3.file.core.windows.net/testf69713fa?restype=share +- request: + body: null + headers: + User-Agent: + - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) + x-ms-date: + - Thu, 15 Oct 2020 01:22:27 GMT + x-ms-delete-snapshots: + - include + x-ms-version: + - '2020-02-10' + method: DELETE + uri: https://storagename.file.core.windows.net/utshare1d770f1d?restype=share + response: + body: + string: '' + headers: + content-length: '0' + date: Thu, 15 Oct 2020 01:22:26 GMT + server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-version: '2020-02-10' + status: + code: 202 + message: Accepted + url: https://seanmcccanary3.file.core.windows.net/utshare1d770f1d?restype=share version: 1 diff --git a/sdk/storage/azure-storage-file-share/tests/test_share.py b/sdk/storage/azure-storage-file-share/tests/test_share.py index edbd44cd50db..fc99335fae83 100644 --- a/sdk/storage/azure-storage-file-share/tests/test_share.py +++ b/sdk/storage/azure-storage-file-share/tests/test_share.py @@ -21,6 +21,7 @@ AccessPolicy, ShareSasPermissions, ShareAccessTier, + ShareSetPropertiesOptions, ShareServiceClient, ShareDirectoryClient, ShareFileClient, @@ -791,11 +792,10 @@ def test_set_share_properties(self, resource_group, location, storage_account, s share1 = self._create_share("share1") share2 = self._create_share("share2") - share1.set_share_quota(1) - share1.set_share_tier("Hot") + share1.set_share_quota(3) + share1.set_share_properties(ShareSetPropertiesOptions(access_tier="Hot")) - share2.set_share_tier(ShareAccessTier("Cool")) - share2.set_share_quota(2) + share2.set_share_properties(ShareSetPropertiesOptions(access_tier=ShareAccessTier("Cool"), quota=2)) # Act props1 = share1.get_share_properties() @@ -807,8 +807,8 @@ def test_set_share_properties(self, resource_group, location, storage_account, s share2_quota = props2.quota share2_tier = props2.access_tier - # Assert quotas and access tiers don't change by calling the other method. - self.assertEqual(share1_quota, 1) + # Assert + self.assertEqual(share1_quota, 3) self.assertEqual(share1_tier, "Hot") self.assertEqual(share2_quota, 2) self.assertEqual(share2_tier, "Cool") diff --git a/sdk/storage/azure-storage-file-share/tests/test_share_async.py b/sdk/storage/azure-storage-file-share/tests/test_share_async.py index 67180dbd8273..03fcb98f2b0e 100644 --- a/sdk/storage/azure-storage-file-share/tests/test_share_async.py +++ b/sdk/storage/azure-storage-file-share/tests/test_share_async.py @@ -23,6 +23,7 @@ AccessPolicy, ShareSasPermissions, ShareAccessTier, + ShareSetPropertiesOptions, generate_share_sas, ) from azure.storage.fileshare.aio import ( @@ -870,11 +871,10 @@ async def test_set_share_properties_async(self, resource_group, location, storag share1 = await self._create_share("share1") share2 = await self._create_share("share2") - await share1.set_share_quota(1) - await share1.set_share_tier("Hot") + await share1.set_share_quota(3) + await share1.set_share_properties(ShareSetPropertiesOptions(access_tier="Hot")) - await share2.set_share_tier(ShareAccessTier("Cool")) - await share2.set_share_quota(2) + await share2.set_share_properties(ShareSetPropertiesOptions(access_tier=ShareAccessTier("Cool"), quota=2)) # Act props1 = await share1.get_share_properties() @@ -886,8 +886,8 @@ async def test_set_share_properties_async(self, resource_group, location, storag share2_quota = props2.quota share2_tier = props2.access_tier - # Assert quotas and access tiers don't change by calling the other method. - self.assertEqual(share1_quota, 1) + # Assert + self.assertEqual(share1_quota, 3) self.assertEqual(share1_tier, "Hot") self.assertEqual(share2_quota, 2) self.assertEqual(share2_tier, "Cool") From 0ea92cffb670c14b89ec0bea0852844cd4b9ca7f Mon Sep 17 00:00:00 2001 From: Tamer Sherif Date: Wed, 14 Oct 2020 18:29:32 -0700 Subject: [PATCH 10/11] forgot to comment out --- .../samples/file_samples_share.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sdk/storage/azure-storage-file-share/samples/file_samples_share.py b/sdk/storage/azure-storage-file-share/samples/file_samples_share.py index a50b209dc5f2..3db3e1af9e77 100644 --- a/sdk/storage/azure-storage-file-share/samples/file_samples_share.py +++ b/sdk/storage/azure-storage-file-share/samples/file_samples_share.py @@ -161,9 +161,9 @@ def acquire_share_lease(self): if __name__ == '__main__': sample = ShareSamples() - # sample.create_share_snapshot() - # sample.set_share_quota_and_metadata() + sample.create_share_snapshot() + sample.set_share_quota_and_metadata() sample.set_share_properties() - # sample.list_directories_and_files() - # sample.get_directory_or_file_client() - # sample.acquire_share_lease() + sample.list_directories_and_files() + sample.get_directory_or_file_client() + sample.acquire_share_lease() From de78e826886ee06103fe2ec61bf31edc196be314 Mon Sep 17 00:00:00 2001 From: Tamer Sherif Date: Fri, 16 Oct 2020 18:19:55 -0700 Subject: [PATCH 11/11] removed ShareSetPropertiesOptions --- .../azure/storage/fileshare/__init__.py | 2 - .../azure/storage/fileshare/_models.py | 16 - .../azure/storage/fileshare/_share_client.py | 24 +- .../fileshare/aio/_share_client_async.py | 24 +- .../samples/file_samples_share.py | 8 +- .../samples/file_samples_share_async.py | 8 +- .../test_share.test_set_share_properties.yaml | 396 +-- ...async.test_set_share_properties_async.yaml | 2805 ++--------------- .../tests/test_share.py | 5 +- .../tests/test_share_async.py | 5 +- 10 files changed, 561 insertions(+), 2732 deletions(-) diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/__init__.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/__init__.py index 89951880ecb1..d5a1b769973a 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/__init__.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/__init__.py @@ -28,7 +28,6 @@ ShareSmbSettings, SmbMultichannel, ShareProtocolSettings, - ShareSetPropertiesOptions, AccessPolicy, FileSasPermissions, ShareSasPermissions, @@ -61,7 +60,6 @@ 'ShareAccessTier', 'SmbMultichannel', 'ShareProtocolSettings', - 'ShareSetPropertiesOptions', 'AccessPolicy', 'FileSasPermissions', 'ShareSasPermissions', diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py index 5f99b9affed3..160b856ea8f3 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_models.py @@ -171,22 +171,6 @@ def _from_generated(cls, generated): smb=generated.smb) -class ShareSetPropertiesOptions(object): - """Sets the properties for the share. - - :param access_tier: - Specifies the access tier of the share. - Possible values: 'TransactionOptimized', 'Hot', and 'Cool' - :type access_tier: str or ~azure.storage.fileshare.models.ShareAccessTier - :param int quota: - Specifies the maximum size of the share, in gigabytes. - Must be greater than 0, and less than or equal to 5TB. - """ - def __init__(self, quota=None, access_tier=None): - self.quota = quota - self.access_tier = access_tier - - class AccessPolicy(GenAccessPolicy): """Access Policy class used by the set and get acl methods in each service. diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py index 036e042d4955..77997e3dbfef 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/_share_client.py @@ -36,7 +36,7 @@ from ._lease import ShareLeaseClient if TYPE_CHECKING: - from ._models import ShareProperties, AccessPolicy, ShareSetPropertiesOptions + from ._models import ShareProperties, AccessPolicy class ShareClient(StorageAccountHostsMixin): @@ -521,15 +521,19 @@ def set_share_quota(self, quota, **kwargs): process_storage_error(error) @distributed_trace - def set_share_properties(self, options, **kwargs): - # type: (ShareSetPropertiesOptions, Any) -> Dict[str, Any] + def set_share_properties(self, **kwargs): + # type: (Any) -> Dict[str, Any] """Sets the share properties. .. versionadded:: 12.6.0 - :param options: - Specifies the properties to set on the share. - :type options: ~azure.storage.fileshare.models.ShareSetPropertiesOptions + :keyword access_tier: + Specifies the access tier of the share. + Possible values: 'TransactionOptimized', 'Hot', and 'Cool' + :paramtype access_tier: str or ~azure.storage.fileshare.models.ShareAccessTier + :keyword int quota: + Specifies the maximum size of the share, in gigabytes. + Must be greater than 0, and less than or equal to 5TB. :keyword int timeout: The timeout parameter is expressed in seconds. :keyword lease: @@ -549,11 +553,15 @@ def set_share_properties(self, options, **kwargs): """ access_conditions = get_access_conditions(kwargs.pop('lease', None)) timeout = kwargs.pop('timeout', None) + access_tier = kwargs.pop('access_tier', None) + quota = kwargs.pop('quota', None) + if all(parameter is None for parameter in [access_tier, quota]): + raise ValueError("set_share_properties should be called with at least one parameter.") try: return self._client.share.set_properties( # type: ignore timeout=timeout, - quota=options.quota, - access_tier=options.access_tier, + quota=quota, + access_tier=access_tier, lease_access_conditions=access_conditions, cls=return_response_headers, **kwargs) diff --git a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py index f5404472b28d..a803a35071bb 100644 --- a/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py +++ b/sdk/storage/azure-storage-file-share/azure/storage/fileshare/aio/_share_client_async.py @@ -33,7 +33,7 @@ if TYPE_CHECKING: - from .._models import ShareProperties, AccessPolicy, ShareSetPropertiesOptions + from .._models import ShareProperties, AccessPolicy class ShareClient(AsyncStorageAccountHostsMixin, ShareClientBase): @@ -390,15 +390,19 @@ async def set_share_quota(self, quota, **kwargs): except StorageErrorException as error: process_storage_error(error) - async def set_share_properties(self, options, **kwargs): - # type: (ShareSetPropertiesOptions, Any) -> Dict[str, Any] + async def set_share_properties(self, **kwargs): + # type: (Any) -> Dict[str, Any] """Sets the share properties. .. versionadded:: 12.6.0 - :param options: - Specifies the properties to set on the share. - :type options: ~azure.storage.fileshare.models.ShareSetPropertiesOptions + :keyword access_tier: + Specifies the access tier of the share. + Possible values: 'TransactionOptimized', 'Hot', and 'Cool' + :paramtype access_tier: str or ~azure.storage.fileshare.models.ShareAccessTier + :keyword int quota: + Specifies the maximum size of the share, in gigabytes. + Must be greater than 0, and less than or equal to 5TB. :keyword int timeout: The timeout parameter is expressed in seconds. :keyword lease: @@ -418,11 +422,15 @@ async def set_share_properties(self, options, **kwargs): """ access_conditions = get_access_conditions(kwargs.pop('lease', None)) timeout = kwargs.pop('timeout', None) + access_tier = kwargs.pop('access_tier', None) + quota = kwargs.pop('quota', None) + if all(parameter is None for parameter in [access_tier, quota]): + raise ValueError("set_share_properties should be called with at least one parameter.") try: return await self._client.share.set_properties( # type: ignore timeout=timeout, - quota=options.quota, - access_tier=options.access_tier, + quota=quota, + access_tier=access_tier, lease_access_conditions=access_conditions, cls=return_response_headers, **kwargs) diff --git a/sdk/storage/azure-storage-file-share/samples/file_samples_share.py b/sdk/storage/azure-storage-file-share/samples/file_samples_share.py index 3db3e1af9e77..866e70daa2a5 100644 --- a/sdk/storage/azure-storage-file-share/samples/file_samples_share.py +++ b/sdk/storage/azure-storage-file-share/samples/file_samples_share.py @@ -22,7 +22,7 @@ """ import os -from azure.storage.fileshare import ShareSetPropertiesOptions, ShareAccessTier +from azure.storage.fileshare import ShareAccessTier SOURCE_FILE = './SampleSource.txt' DEST_FILE = './SampleDestination.txt' @@ -89,11 +89,11 @@ def set_share_properties(self): try: # [START set_share_properties] # Set the tier for the first share to Hot - share1.set_share_properties(ShareSetPropertiesOptions(access_tier="Hot")) + share1.set_share_properties(access_tier="Hot") # Set the quota for the first share to 3 - share1.set_share_properties(ShareSetPropertiesOptions(quota=3)) + share1.set_share_properties(quota=3) # Set the tier for the second share to Cool and quota to 2 - share2.set_share_properties(ShareSetPropertiesOptions(access_tier=ShareAccessTier("Cool"), quota=2)) + share2.set_share_properties(access_tier=ShareAccessTier("Cool"), quota=2) # Get the shares' properties print(share1.get_share_properties().access_tier) diff --git a/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py b/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py index ef04ba3f6d77..1883eee864e1 100644 --- a/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py +++ b/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py @@ -23,7 +23,7 @@ import os import asyncio -from azure.storage.fileshare import ShareSetPropertiesOptions, ShareAccessTier +from azure.storage.fileshare import ShareAccessTier SOURCE_FILE = './SampleSource.txt' DEST_FILE = './SampleDestination.txt' @@ -93,11 +93,11 @@ async def set_share_properties(self): try: # [START set_share_properties] # Set the tier for the first share to Hot - await share1.set_share_properties(ShareSetPropertiesOptions(access_tier="Hot")) + await share1.set_share_properties(access_tier="Hot") # Set the quota for the first share to 3 - await share1.set_share_properties(ShareSetPropertiesOptions(quota=3)) + await share1.set_share_properties(quota=3) # Set the tier for the second share to Cool and quota to 2 - await share2.set_share_properties(ShareSetPropertiesOptions(access_tier=ShareAccessTier("Cool"), quota=2)) + await share2.set_share_properties(access_tier=ShareAccessTier("Cool"), quota=2) # Get the shares' properties props1 = await share1.get_share_properties() diff --git a/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_set_share_properties.yaml b/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_set_share_properties.yaml index d3278a305255..d955b31cbfe5 100644 --- a/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_set_share_properties.yaml +++ b/sdk/storage/azure-storage-file-share/tests/recordings/test_share.test_set_share_properties.yaml @@ -13,7 +13,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:12 GMT + - Sat, 17 Oct 2020 01:15:30 GMT x-ms-version: - '2020-02-10' method: PUT @@ -25,11 +25,11 @@ interactions: content-length: - '0' date: - - Thu, 15 Oct 2020 01:24:12 GMT + - Sat, 17 Oct 2020 01:15:47 GMT etag: - - '"0x8D870A90659B152"' + - '"0x8D8723A2E0DDF20"' last-modified: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:47 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -51,7 +51,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT x-ms-version: - '2020-02-10' method: PUT @@ -63,11 +63,11 @@ interactions: content-length: - '0' date: - - Thu, 15 Oct 2020 01:24:12 GMT + - Sat, 17 Oct 2020 01:15:47 GMT etag: - - '"0x8D870A9066D63F5"' + - '"0x8D8723A2E27864D"' last-modified: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -89,7 +89,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT x-ms-share-quota: - '3' x-ms-version: @@ -103,11 +103,11 @@ interactions: content-length: - '0' date: - - Thu, 15 Oct 2020 01:24:12 GMT + - Sat, 17 Oct 2020 01:15:47 GMT etag: - - '"0x8D870A906984394"' + - '"0x8D8723A2E67BBBA"' last-modified: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -131,7 +131,7 @@ interactions: x-ms-access-tier: - Hot x-ms-date: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:49 GMT x-ms-version: - '2020-02-10' method: PUT @@ -143,11 +143,11 @@ interactions: content-length: - '0' date: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:47 GMT etag: - - '"0x8D870A906B10049"' + - '"0x8D8723A2E7BBC9E"' last-modified: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -171,7 +171,7 @@ interactions: x-ms-access-tier: - Cool x-ms-date: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:49 GMT x-ms-share-quota: - '2' x-ms-version: @@ -185,11 +185,11 @@ interactions: content-length: - '0' date: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT etag: - - '"0x8D870A906C8AB64"' + - '"0x8D8723A2E8F2125"' last-modified: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -209,7 +209,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:14 GMT + - Sat, 17 Oct 2020 01:15:49 GMT x-ms-version: - '2020-02-10' method: GET @@ -221,11 +221,11 @@ interactions: content-length: - '0' date: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT etag: - - '"0x8D870A906B10049"' + - '"0x8D8723A2E7BBC9E"' last-modified: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 vary: @@ -233,7 +233,7 @@ interactions: x-ms-access-tier: - Hot x-ms-access-tier-change-time: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT x-ms-access-tier-transition-state: - pending-from-transactionOptimized x-ms-has-immutability-policy: @@ -259,7 +259,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:14 GMT + - Sat, 17 Oct 2020 01:15:49 GMT x-ms-version: - '2020-02-10' method: GET @@ -271,11 +271,11 @@ interactions: content-length: - '0' date: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT etag: - - '"0x8D870A906C8AB64"' + - '"0x8D8723A2E8F2125"' last-modified: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 vary: @@ -283,7 +283,7 @@ interactions: x-ms-access-tier: - Cool x-ms-access-tier-change-time: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT x-ms-access-tier-transition-state: - pending-from-transactionOptimized x-ms-has-immutability-policy: @@ -309,7 +309,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:14 GMT + - Sat, 17 Oct 2020 01:15:49 GMT x-ms-version: - '2020-02-10' method: GET @@ -317,15 +317,15 @@ interactions: response: body: string: "\uFEFFshare112220eeaThu, - 15 Oct 2020 01:24:13 GMT\"0x8D870A906B10049\"3HotThu, - 15 Oct 2020 01:24:13 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare1816f1171Fri, + ServiceEndpoint=\"https://storagename.file.core.windows.net/\">share112220eeaSat, + 17 Oct 2020 01:15:48 GMT\"0x8D8723A2E7BBC9E\"3HotSat, + 17 Oct 2020 01:15:48 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare1816f1171Fri, 11 Sep 2020 00:43:37 GMT\"0x8D855EBB87CFF33\"5120TransactionOptimizedFri, 11 Sep 2020 00:43:37 GMT$account-encryption-keyfalseshare182b3117dFri, 11 Sep 2020 00:44:44 GMT\"0x8D855EBE0710239\"5120TransactionOptimizedFri, - 11 Sep 2020 00:44:44 GMT$account-encryption-keyfalseshare212220eeaThu, - 15 Oct 2020 01:24:13 GMT\"0x8D870A906C8AB64\"2CoolThu, - 15 Oct 2020 01:24:13 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare336d1532Fri, + 11 Sep 2020 00:44:44 GMT$account-encryption-keyfalseshare212220eeaSat, + 17 Oct 2020 01:15:48 GMT\"0x8D8723A2E8F2125\"2CoolSat, + 17 Oct 2020 01:15:48 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare336d1532Fri, 11 Sep 2020 00:02:03 GMT\"0x8D855E5EA1BA89C\"5120TransactionOptimizedFri, 11 Sep 2020 00:02:03 GMT$account-encryption-keyfalseshare50ad1060Tue, 29 Sep 2020 22:27:37 GMT\"0x8D864C6DE6E6B78\"5120TransactionOptimizedTue, @@ -430,7 +430,7 @@ interactions: content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: @@ -456,7 +456,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:14 GMT + - Sat, 17 Oct 2020 01:15:50 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -470,7 +470,7 @@ interactions: content-length: - '0' date: - - Thu, 15 Oct 2020 01:24:13 GMT + - Sat, 17 Oct 2020 01:15:48 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -492,7 +492,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:14 GMT + - Sat, 17 Oct 2020 01:15:50 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -503,14 +503,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde18-d01a-0045-6091-a20f21000000\nTime:2020-10-15T01:24:15.2165342Z" + request.\nRequestId:55a7d1e0-801a-002a-4f23-a405d2000000\nTime:2020-10-17T01:15:49.5787610Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:14 GMT + - Sat, 17 Oct 2020 01:15:48 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -535,7 +535,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:15 GMT + - Sat, 17 Oct 2020 01:15:50 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -546,14 +546,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde1a-d01a-0045-6291-a20f21000000\nTime:2020-10-15T01:24:15.6328293Z" + request.\nRequestId:55a7d1e2-801a-002a-5123-a405d2000000\nTime:2020-10-17T01:15:49.7018486Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:14 GMT + - Sat, 17 Oct 2020 01:15:49 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -578,7 +578,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:15 GMT + - Sat, 17 Oct 2020 01:15:50 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -592,7 +592,7 @@ interactions: content-length: - '0' date: - - Thu, 15 Oct 2020 01:24:15 GMT + - Sat, 17 Oct 2020 01:15:49 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: @@ -614,7 +614,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:16 GMT + - Sat, 17 Oct 2020 01:15:50 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -625,14 +625,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde1f-d01a-0045-6491-a20f21000000\nTime:2020-10-15T01:24:16.0521266Z" + request.\nRequestId:55a7d1e5-801a-002a-5423-a405d2000000\nTime:2020-10-17T01:15:49.9420205Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:15 GMT + - Sat, 17 Oct 2020 01:15:49 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -657,7 +657,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:16 GMT + - Sat, 17 Oct 2020 01:15:50 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -668,14 +668,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde20-d01a-0045-6591-a20f21000000\nTime:2020-10-15T01:24:16.2222476Z" + request.\nRequestId:55a7d1e7-801a-002a-5623-a405d2000000\nTime:2020-10-17T01:15:50.0641070Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:15 GMT + - Sat, 17 Oct 2020 01:15:49 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -700,7 +700,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:16 GMT + - Sat, 17 Oct 2020 01:15:50 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -711,14 +711,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde21-d01a-0045-6691-a20f21000000\nTime:2020-10-15T01:24:16.3583437Z" + request.\nRequestId:55a7d1e9-801a-002a-5823-a405d2000000\nTime:2020-10-17T01:15:50.1771870Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:15 GMT + - Sat, 17 Oct 2020 01:15:49 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -743,7 +743,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:16 GMT + - Sat, 17 Oct 2020 01:15:50 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -754,14 +754,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde22-d01a-0045-6791-a20f21000000\nTime:2020-10-15T01:24:16.5414739Z" + request.\nRequestId:55a7d1ed-801a-002a-5a23-a405d2000000\nTime:2020-10-17T01:15:50.3012754Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:15 GMT + - Sat, 17 Oct 2020 01:15:49 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -786,7 +786,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:16 GMT + - Sat, 17 Oct 2020 01:15:51 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -797,14 +797,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde23-d01a-0045-6891-a20f21000000\nTime:2020-10-15T01:24:16.8056608Z" + request.\nRequestId:55a7d1ee-801a-002a-5b23-a405d2000000\nTime:2020-10-17T01:15:50.4243630Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:16 GMT + - Sat, 17 Oct 2020 01:15:49 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -829,7 +829,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:17 GMT + - Sat, 17 Oct 2020 01:15:51 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -840,14 +840,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde24-d01a-0045-6991-a20f21000000\nTime:2020-10-15T01:24:17.0218141Z" + request.\nRequestId:55a7d1ef-801a-002a-5c23-a405d2000000\nTime:2020-10-17T01:15:50.5484514Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:16 GMT + - Sat, 17 Oct 2020 01:15:49 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -872,7 +872,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:17 GMT + - Sat, 17 Oct 2020 01:15:51 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -883,14 +883,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde26-d01a-0045-6b91-a20f21000000\nTime:2020-10-15T01:24:17.3140217Z" + request.\nRequestId:55a7d1f1-801a-002a-5e23-a405d2000000\nTime:2020-10-17T01:15:50.6645340Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:16 GMT + - Sat, 17 Oct 2020 01:15:49 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -915,7 +915,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:17 GMT + - Sat, 17 Oct 2020 01:15:51 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -926,14 +926,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde27-d01a-0045-6c91-a20f21000000\nTime:2020-10-15T01:24:17.4281021Z" + request.\nRequestId:55a7d1f2-801a-002a-5f23-a405d2000000\nTime:2020-10-17T01:15:50.7876216Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:16 GMT + - Sat, 17 Oct 2020 01:15:50 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -958,7 +958,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:17 GMT + - Sat, 17 Oct 2020 01:15:51 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -969,14 +969,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde28-d01a-0045-6d91-a20f21000000\nTime:2020-10-15T01:24:17.5371795Z" + request.\nRequestId:55a7d1f3-801a-002a-6023-a405d2000000\nTime:2020-10-17T01:15:50.9107093Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:16 GMT + - Sat, 17 Oct 2020 01:15:50 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1001,7 +1001,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:17 GMT + - Sat, 17 Oct 2020 01:15:51 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1012,14 +1012,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde29-d01a-0045-6e91-a20f21000000\nTime:2020-10-15T01:24:17.6672717Z" + request.\nRequestId:55a7d1f5-801a-002a-6223-a405d2000000\nTime:2020-10-17T01:15:51.0327962Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:16 GMT + - Sat, 17 Oct 2020 01:15:50 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1044,7 +1044,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:17 GMT + - Sat, 17 Oct 2020 01:15:51 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1055,14 +1055,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde2a-d01a-0045-6f91-a20f21000000\nTime:2020-10-15T01:24:17.8083713Z" + request.\nRequestId:55a7d1f6-801a-002a-6323-a405d2000000\nTime:2020-10-17T01:15:51.1508803Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:17 GMT + - Sat, 17 Oct 2020 01:15:50 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1087,7 +1087,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:18 GMT + - Sat, 17 Oct 2020 01:15:51 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1098,14 +1098,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde2b-d01a-0045-7091-a20f21000000\nTime:2020-10-15T01:24:17.9324597Z" + request.\nRequestId:55a7d1f8-801a-002a-6523-a405d2000000\nTime:2020-10-17T01:15:51.2809733Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:17 GMT + - Sat, 17 Oct 2020 01:15:50 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1130,7 +1130,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:18 GMT + - Sat, 17 Oct 2020 01:15:52 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1141,14 +1141,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde2c-d01a-0045-7191-a20f21000000\nTime:2020-10-15T01:24:18.0895717Z" + request.\nRequestId:55a7d1fa-801a-002a-6623-a405d2000000\nTime:2020-10-17T01:15:51.4080634Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:17 GMT + - Sat, 17 Oct 2020 01:15:50 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1173,7 +1173,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:18 GMT + - Sat, 17 Oct 2020 01:15:52 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1184,14 +1184,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde2d-d01a-0045-7291-a20f21000000\nTime:2020-10-15T01:24:18.2176633Z" + request.\nRequestId:55a7d1fb-801a-002a-6723-a405d2000000\nTime:2020-10-17T01:15:51.5211443Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:17 GMT + - Sat, 17 Oct 2020 01:15:50 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1216,7 +1216,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:18 GMT + - Sat, 17 Oct 2020 01:15:52 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1227,14 +1227,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde2e-d01a-0045-7391-a20f21000000\nTime:2020-10-15T01:24:18.3537607Z" + request.\nRequestId:55a7d1fd-801a-002a-6923-a405d2000000\nTime:2020-10-17T01:15:51.6442319Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:17 GMT + - Sat, 17 Oct 2020 01:15:50 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1259,7 +1259,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:18 GMT + - Sat, 17 Oct 2020 01:15:52 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1270,14 +1270,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde30-d01a-0045-7491-a20f21000000\nTime:2020-10-15T01:24:18.4848545Z" + request.\nRequestId:55a7d1ff-801a-002a-6b23-a405d2000000\nTime:2020-10-17T01:15:51.7653182Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:17 GMT + - Sat, 17 Oct 2020 01:15:51 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1302,7 +1302,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:18 GMT + - Sat, 17 Oct 2020 01:15:52 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1313,14 +1313,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde31-d01a-0045-7591-a20f21000000\nTime:2020-10-15T01:24:18.6129461Z" + request.\nRequestId:55a7d200-801a-002a-6c23-a405d2000000\nTime:2020-10-17T01:15:51.8824011Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:17 GMT + - Sat, 17 Oct 2020 01:15:51 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1345,7 +1345,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:18 GMT + - Sat, 17 Oct 2020 01:15:52 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1356,14 +1356,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde32-d01a-0045-7691-a20f21000000\nTime:2020-10-15T01:24:18.7470420Z" + request.\nRequestId:55a7d202-801a-002a-6e23-a405d2000000\nTime:2020-10-17T01:15:52.0094920Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:18 GMT + - Sat, 17 Oct 2020 01:15:51 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1388,7 +1388,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:18 GMT + - Sat, 17 Oct 2020 01:15:52 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1399,14 +1399,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde34-d01a-0045-7791-a20f21000000\nTime:2020-10-15T01:24:18.8711312Z" + request.\nRequestId:55a7d204-801a-002a-7023-a405d2000000\nTime:2020-10-17T01:15:52.1375832Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:18 GMT + - Sat, 17 Oct 2020 01:15:51 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1431,7 +1431,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:19 GMT + - Sat, 17 Oct 2020 01:15:52 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1442,14 +1442,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde35-d01a-0045-7891-a20f21000000\nTime:2020-10-15T01:24:19.1963626Z" + request.\nRequestId:55a7d207-801a-002a-7323-a405d2000000\nTime:2020-10-17T01:15:52.2796844Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:18 GMT + - Sat, 17 Oct 2020 01:15:51 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1474,7 +1474,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:19 GMT + - Sat, 17 Oct 2020 01:15:53 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1485,14 +1485,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde37-d01a-0045-7a91-a20f21000000\nTime:2020-10-15T01:24:19.3094424Z" + request.\nRequestId:55a7d208-801a-002a-7423-a405d2000000\nTime:2020-10-17T01:15:52.4127791Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:18 GMT + - Sat, 17 Oct 2020 01:15:51 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1517,7 +1517,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:19 GMT + - Sat, 17 Oct 2020 01:15:53 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1528,14 +1528,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde38-d01a-0045-7b91-a20f21000000\nTime:2020-10-15T01:24:19.4605495Z" + request.\nRequestId:55a7d209-801a-002a-7523-a405d2000000\nTime:2020-10-17T01:15:52.5238578Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:18 GMT + - Sat, 17 Oct 2020 01:15:51 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1560,7 +1560,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:19 GMT + - Sat, 17 Oct 2020 01:15:53 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1571,14 +1571,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde39-d01a-0045-7c91-a20f21000000\nTime:2020-10-15T01:24:19.6676963Z" + request.\nRequestId:55a7d20c-801a-002a-7723-a405d2000000\nTime:2020-10-17T01:15:52.6649582Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:18 GMT + - Sat, 17 Oct 2020 01:15:51 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1603,7 +1603,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:19 GMT + - Sat, 17 Oct 2020 01:15:53 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1614,14 +1614,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde3a-d01a-0045-7d91-a20f21000000\nTime:2020-10-15T01:24:19.8398184Z" + request.\nRequestId:55a7d20e-801a-002a-7823-a405d2000000\nTime:2020-10-17T01:15:52.7790395Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:19 GMT + - Sat, 17 Oct 2020 01:15:52 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1646,7 +1646,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:53 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1657,14 +1657,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde3b-d01a-0045-7e91-a20f21000000\nTime:2020-10-15T01:24:20.0919976Z" + request.\nRequestId:55a7d212-801a-002a-7b23-a405d2000000\nTime:2020-10-17T01:15:52.9021275Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:19 GMT + - Sat, 17 Oct 2020 01:15:52 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1689,7 +1689,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:53 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1700,14 +1700,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde3c-d01a-0045-7f91-a20f21000000\nTime:2020-10-15T01:24:20.2180866Z" + request.\nRequestId:55a7d213-801a-002a-7c23-a405d2000000\nTime:2020-10-17T01:15:53.0272162Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:19 GMT + - Sat, 17 Oct 2020 01:15:52 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1732,7 +1732,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:53 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1743,14 +1743,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde3e-d01a-0045-0191-a20f21000000\nTime:2020-10-15T01:24:20.3792004Z" + request.\nRequestId:55a7d214-801a-002a-7d23-a405d2000000\nTime:2020-10-17T01:15:53.1573088Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:19 GMT + - Sat, 17 Oct 2020 01:15:52 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1775,7 +1775,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:53 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1786,14 +1786,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde3f-d01a-0045-0291-a20f21000000\nTime:2020-10-15T01:24:20.4972845Z" + request.\nRequestId:55a7d217-801a-002a-7f23-a405d2000000\nTime:2020-10-17T01:15:53.2974085Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:19 GMT + - Sat, 17 Oct 2020 01:15:52 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1818,7 +1818,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:54 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1829,14 +1829,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde40-d01a-0045-0391-a20f21000000\nTime:2020-10-15T01:24:20.6093640Z" + request.\nRequestId:55a7d218-801a-002a-8023-a405d2000000\nTime:2020-10-17T01:15:53.4275011Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:19 GMT + - Sat, 17 Oct 2020 01:15:52 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1861,7 +1861,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:54 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1872,14 +1872,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde42-d01a-0045-0491-a20f21000000\nTime:2020-10-15T01:24:20.7274477Z" + request.\nRequestId:55a7d219-801a-002a-0123-a405d2000000\nTime:2020-10-17T01:15:53.5555923Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:52 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1904,7 +1904,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:54 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1915,14 +1915,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde43-d01a-0045-0591-a20f21000000\nTime:2020-10-15T01:24:20.8555385Z" + request.\nRequestId:55a7d21c-801a-002a-0323-a405d2000000\nTime:2020-10-17T01:15:53.6836840Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:53 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1947,7 +1947,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:21 GMT + - Sat, 17 Oct 2020 01:15:54 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -1958,14 +1958,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde47-d01a-0045-0691-a20f21000000\nTime:2020-10-15T01:24:20.9936368Z" + request.\nRequestId:55a7d21e-801a-002a-0423-a405d2000000\nTime:2020-10-17T01:15:53.8087726Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:53 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -1990,7 +1990,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:21 GMT + - Sat, 17 Oct 2020 01:15:54 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2001,14 +2001,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde48-d01a-0045-0791-a20f21000000\nTime:2020-10-15T01:24:21.1377390Z" + request.\nRequestId:55a7d220-801a-002a-0623-a405d2000000\nTime:2020-10-17T01:15:53.9398659Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:53 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2033,7 +2033,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:21 GMT + - Sat, 17 Oct 2020 01:15:54 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2044,14 +2044,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde49-d01a-0045-0891-a20f21000000\nTime:2020-10-15T01:24:21.2728343Z" + request.\nRequestId:55a7d223-801a-002a-0823-a405d2000000\nTime:2020-10-17T01:15:54.0679576Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:53 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2076,7 +2076,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:21 GMT + - Sat, 17 Oct 2020 01:15:54 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2087,14 +2087,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde4a-d01a-0045-0991-a20f21000000\nTime:2020-10-15T01:24:21.4079297Z" + request.\nRequestId:55a7d224-801a-002a-0923-a405d2000000\nTime:2020-10-17T01:15:54.1960480Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:53 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2119,7 +2119,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:21 GMT + - Sat, 17 Oct 2020 01:15:55 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2130,14 +2130,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde4c-d01a-0045-0b91-a20f21000000\nTime:2020-10-15T01:24:21.5420252Z" + request.\nRequestId:55a7d225-801a-002a-0a23-a405d2000000\nTime:2020-10-17T01:15:54.3181346Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:53 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2162,7 +2162,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:21 GMT + - Sat, 17 Oct 2020 01:15:55 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2173,14 +2173,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde4e-d01a-0045-0d91-a20f21000000\nTime:2020-10-15T01:24:21.6681146Z" + request.\nRequestId:55a7d227-801a-002a-0c23-a405d2000000\nTime:2020-10-17T01:15:54.4442228Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:20 GMT + - Sat, 17 Oct 2020 01:15:53 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2205,7 +2205,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:21 GMT + - Sat, 17 Oct 2020 01:15:55 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2216,14 +2216,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde50-d01a-0045-0f91-a20f21000000\nTime:2020-10-15T01:24:21.8412373Z" + request.\nRequestId:55a7d228-801a-002a-0d23-a405d2000000\nTime:2020-10-17T01:15:54.5743146Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:21 GMT + - Sat, 17 Oct 2020 01:15:53 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2248,7 +2248,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:22 GMT + - Sat, 17 Oct 2020 01:15:55 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2259,14 +2259,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde51-d01a-0045-1091-a20f21000000\nTime:2020-10-15T01:24:21.9733310Z" + request.\nRequestId:55a7d229-801a-002a-0e23-a405d2000000\nTime:2020-10-17T01:15:54.6933991Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:21 GMT + - Sat, 17 Oct 2020 01:15:54 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2291,7 +2291,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:22 GMT + - Sat, 17 Oct 2020 01:15:55 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2302,14 +2302,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde52-d01a-0045-1191-a20f21000000\nTime:2020-10-15T01:24:22.1034232Z" + request.\nRequestId:55a7d22c-801a-002a-1123-a405d2000000\nTime:2020-10-17T01:15:54.8254924Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:21 GMT + - Sat, 17 Oct 2020 01:15:54 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2334,7 +2334,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:22 GMT + - Sat, 17 Oct 2020 01:15:55 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2345,14 +2345,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde53-d01a-0045-1291-a20f21000000\nTime:2020-10-15T01:24:22.2335154Z" + request.\nRequestId:55a7d22e-801a-002a-1223-a405d2000000\nTime:2020-10-17T01:15:54.9565845Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:21 GMT + - Sat, 17 Oct 2020 01:15:54 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2377,7 +2377,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:22 GMT + - Sat, 17 Oct 2020 01:15:55 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2388,14 +2388,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde54-d01a-0045-1391-a20f21000000\nTime:2020-10-15T01:24:22.3636073Z" + request.\nRequestId:55a7d22f-801a-002a-1323-a405d2000000\nTime:2020-10-17T01:15:55.0826736Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:21 GMT + - Sat, 17 Oct 2020 01:15:54 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2420,7 +2420,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:22 GMT + - Sat, 17 Oct 2020 01:15:55 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2431,14 +2431,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde55-d01a-0045-1491-a20f21000000\nTime:2020-10-15T01:24:22.5117127Z" + request.\nRequestId:55a7d230-801a-002a-1423-a405d2000000\nTime:2020-10-17T01:15:55.2027595Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:21 GMT + - Sat, 17 Oct 2020 01:15:54 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2463,7 +2463,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:22 GMT + - Sat, 17 Oct 2020 01:15:56 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2474,14 +2474,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde56-d01a-0045-1591-a20f21000000\nTime:2020-10-15T01:24:22.6327985Z" + request.\nRequestId:55a7d234-801a-002a-1623-a405d2000000\nTime:2020-10-17T01:15:55.3258471Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:21 GMT + - Sat, 17 Oct 2020 01:15:54 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2506,7 +2506,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:22 GMT + - Sat, 17 Oct 2020 01:15:56 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2517,14 +2517,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde57-d01a-0045-1691-a20f21000000\nTime:2020-10-15T01:24:22.7618901Z" + request.\nRequestId:55a7d235-801a-002a-1723-a405d2000000\nTime:2020-10-17T01:15:55.4559393Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:22 GMT + - Sat, 17 Oct 2020 01:15:54 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2549,7 +2549,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:22 GMT + - Sat, 17 Oct 2020 01:15:56 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2560,14 +2560,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde58-d01a-0045-1791-a20f21000000\nTime:2020-10-15T01:24:22.8859780Z" + request.\nRequestId:55a7d236-801a-002a-1823-a405d2000000\nTime:2020-10-17T01:15:55.5880330Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:22 GMT + - Sat, 17 Oct 2020 01:15:54 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2592,7 +2592,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:23 GMT + - Sat, 17 Oct 2020 01:15:56 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2603,14 +2603,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde59-d01a-0045-1891-a20f21000000\nTime:2020-10-15T01:24:23.0180721Z" + request.\nRequestId:55a7d239-801a-002a-1a23-a405d2000000\nTime:2020-10-17T01:15:55.7141232Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:22 GMT + - Sat, 17 Oct 2020 01:15:55 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2635,7 +2635,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:23 GMT + - Sat, 17 Oct 2020 01:15:56 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2646,14 +2646,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde5a-d01a-0045-1991-a20f21000000\nTime:2020-10-15T01:24:23.1661771Z" + request.\nRequestId:55a7d23a-801a-002a-1b23-a405d2000000\nTime:2020-10-17T01:15:55.8402138Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:22 GMT + - Sat, 17 Oct 2020 01:15:55 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2678,7 +2678,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:23 GMT + - Sat, 17 Oct 2020 01:15:56 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2689,14 +2689,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde5c-d01a-0045-1b91-a20f21000000\nTime:2020-10-15T01:24:23.2892639Z" + request.\nRequestId:55a7d23b-801a-002a-1c23-a405d2000000\nTime:2020-10-17T01:15:55.9893191Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:22 GMT + - Sat, 17 Oct 2020 01:15:55 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: @@ -2721,7 +2721,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:24:23 GMT + - Sat, 17 Oct 2020 01:15:56 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -2732,14 +2732,14 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:1bcbde5e-d01a-0045-1c91-a20f21000000\nTime:2020-10-15T01:24:23.4203569Z" + request.\nRequestId:55a7d23e-801a-002a-1f23-a405d2000000\nTime:2020-10-17T01:15:56.1194117Z" headers: content-length: - '273' content-type: - application/xml date: - - Thu, 15 Oct 2020 01:24:22 GMT + - Sat, 17 Oct 2020 01:15:55 GMT server: - Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: diff --git a/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_set_share_properties_async.yaml b/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_set_share_properties_async.yaml index 957593f8b6db..e9e38469a6a5 100644 --- a/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_set_share_properties_async.yaml +++ b/sdk/storage/azure-storage-file-share/tests/recordings/test_share_async.test_set_share_properties_async.yaml @@ -5,7 +5,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:21:58 GMT + - Sat, 17 Oct 2020 01:16:10 GMT x-ms-version: - '2020-02-10' method: PUT @@ -15,9 +15,9 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 15 Oct 2020 01:22:15 GMT - etag: '"0x8D870A8C08C18FE"' - last-modified: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:10 GMT + etag: '"0x8D8723A3B76FC8E"' + last-modified: Sat, 17 Oct 2020 01:16:10 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: '2020-02-10' status: @@ -30,7 +30,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:16 GMT + - Sat, 17 Oct 2020 01:16:11 GMT x-ms-version: - '2020-02-10' method: PUT @@ -40,9 +40,9 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 15 Oct 2020 01:22:15 GMT - etag: '"0x8D870A8C098291B"' - last-modified: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:10 GMT + etag: '"0x8D8723A3B81D3F7"' + last-modified: Sat, 17 Oct 2020 01:16:10 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: '2020-02-10' status: @@ -55,7 +55,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:16 GMT + - Sat, 17 Oct 2020 01:16:11 GMT x-ms-share-quota: - '3' x-ms-version: @@ -67,9 +67,9 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 15 Oct 2020 01:22:15 GMT - etag: '"0x8D870A8C0B52CF7"' - last-modified: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:10 GMT + etag: '"0x8D8723A3B9DB21F"' + last-modified: Sat, 17 Oct 2020 01:16:10 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: '2020-02-10' status: @@ -84,7 +84,7 @@ interactions: x-ms-access-tier: - Hot x-ms-date: - - Thu, 15 Oct 2020 01:22:16 GMT + - Sat, 17 Oct 2020 01:16:11 GMT x-ms-version: - '2020-02-10' method: PUT @@ -94,9 +94,9 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 15 Oct 2020 01:22:15 GMT - etag: '"0x8D870A8C0BF40F9"' - last-modified: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:10 GMT + etag: '"0x8D8723A3BA86275"' + last-modified: Sat, 17 Oct 2020 01:16:10 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: '2020-02-10' status: @@ -111,7 +111,7 @@ interactions: x-ms-access-tier: - Cool x-ms-date: - - Thu, 15 Oct 2020 01:22:16 GMT + - Sat, 17 Oct 2020 01:16:11 GMT x-ms-share-quota: - '2' x-ms-version: @@ -123,9 +123,9 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 15 Oct 2020 01:22:15 GMT - etag: '"0x8D870A8C0C8917F"' - last-modified: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:10 GMT + etag: '"0x8D8723A3BB55D2D"' + last-modified: Sat, 17 Oct 2020 01:16:10 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: '2020-02-10' status: @@ -138,7 +138,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:16 GMT + - Sat, 17 Oct 2020 01:16:11 GMT x-ms-version: - '2020-02-10' method: GET @@ -148,13 +148,13 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 15 Oct 2020 01:22:15 GMT - etag: '"0x8D870A8C0BF40F9"' - last-modified: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:10 GMT + etag: '"0x8D8723A3BA86275"' + last-modified: Sat, 17 Oct 2020 01:16:10 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 vary: Origin x-ms-access-tier: Hot - x-ms-access-tier-change-time: Thu, 15 Oct 2020 01:22:16 GMT + x-ms-access-tier-change-time: Sat, 17 Oct 2020 01:16:10 GMT x-ms-access-tier-transition-state: pending-from-transactionOptimized x-ms-has-immutability-policy: 'false' x-ms-has-legal-hold: 'false' @@ -170,7 +170,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:16 GMT + - Sat, 17 Oct 2020 01:16:11 GMT x-ms-version: - '2020-02-10' method: GET @@ -180,13 +180,13 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 15 Oct 2020 01:22:15 GMT - etag: '"0x8D870A8C0C8917F"' - last-modified: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:10 GMT + etag: '"0x8D8723A3BB55D2D"' + last-modified: Sat, 17 Oct 2020 01:16:10 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 vary: Origin x-ms-access-tier: Cool - x-ms-access-tier-change-time: Thu, 15 Oct 2020 01:22:16 GMT + x-ms-access-tier-change-time: Sat, 17 Oct 2020 01:16:10 GMT x-ms-access-tier-transition-state: pending-from-transactionOptimized x-ms-has-immutability-policy: 'false' x-ms-has-legal-hold: 'false' @@ -204,7 +204,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:16 GMT + - Sat, 17 Oct 2020 01:16:11 GMT x-ms-version: - '2020-02-10' method: GET @@ -216,11 +216,11 @@ interactions: 11 Sep 2020 00:43:37 GMT\"0x8D855EBB87CFF33\"5120TransactionOptimizedFri, 11 Sep 2020 00:43:37 GMT$account-encryption-keyfalseshare182b3117dFri, 11 Sep 2020 00:44:44 GMT\"0x8D855EBE0710239\"5120TransactionOptimizedFri, - 11 Sep 2020 00:44:44 GMT$account-encryption-keyfalseshare1e59a13e4Thu, - 15 Oct 2020 01:22:16 GMT\"0x8D870A8C0BF40F9\"3HotThu, - 15 Oct 2020 01:22:16 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare2e59a13e4Thu, - 15 Oct 2020 01:22:16 GMT\"0x8D870A8C0C8917F\"2CoolThu, - 15 Oct 2020 01:22:16 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare336d1532Fri, + 11 Sep 2020 00:44:44 GMT$account-encryption-keyfalseshare1e59a13e4Sat, + 17 Oct 2020 01:16:10 GMT\"0x8D8723A3BA86275\"3HotSat, + 17 Oct 2020 01:16:10 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare2e59a13e4Sat, + 17 Oct 2020 01:16:10 GMT\"0x8D8723A3BB55D2D\"2CoolSat, + 17 Oct 2020 01:16:10 GMTpending-from-transactionOptimized$account-encryption-keyfalseshare336d1532Fri, 11 Sep 2020 00:02:03 GMT\"0x8D855E5EA1BA89C\"5120TransactionOptimizedFri, 11 Sep 2020 00:02:03 GMT$account-encryption-keyfalseshare50ad1060Tue, 29 Sep 2020 22:27:37 GMT\"0x8D864C6DE6E6B78\"5120TransactionOptimizedTue, @@ -249,148 +249,33 @@ interactions: 15 Sep 2020 19:43:57 GMT\"0x8D859AFAFBA3E88\"5120TransactionOptimizedTue, 15 Sep 2020 19:43:57 GMT$account-encryption-keyfalsesharesamples7Tue, 15 Sep 2020 19:44:49 GMT\"0x8D859AFCEB7CC2D\"5120TransactionOptimizedTue, - 15 Sep 2020 19:44:49 GMT$account-encryption-keyfalsetest-share-0883f636-747e-4a87-8604-3d2bd0767c0a2020-10-12T21:41:40.0000000ZMon, - 12 Oct 2020 21:41:39 GMT\"0x8D86EF79A6E9D3F\"1$account-encryption-keyfalsetest-share-0883f636-747e-4a87-8604-3d2bd0767c0a2020-10-12T21:41:41.0000000ZMon, - 12 Oct 2020 21:41:39 GMT\"0x8D86EF79A6E9D3F\"1$account-encryption-keyfalsetest-share-0883f636-747e-4a87-8604-3d2bd0767c0aMon, - 12 Oct 2020 21:41:39 GMT\"0x8D86EF79A6E9D3F\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:39 GMT$account-encryption-keyfalsetest-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f2020-10-12T21:41:43.0000000ZMon, - 12 Oct 2020 21:41:43 GMT\"0x8D86EF79C4F37EB\"1$account-encryption-keyfalsetest-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f2020-10-12T21:41:44.0000000ZMon, - 12 Oct 2020 21:41:43 GMT\"0x8D86EF79C4F37EB\"1$account-encryption-keyfalsetest-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6fMon, - 12 Oct 2020 21:41:43 GMT\"0x8D86EF79C4F37EB\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:43 GMT$account-encryption-keyfalsetest-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7Wed, + 15 Sep 2020 19:44:49 GMT$account-encryption-keyfalsetest-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7Wed, 05 Aug 2020 19:06:51 GMT\"0x8D83972B5D1302D\"5120TransactionOptimizedWed, - 05 Aug 2020 19:06:51 GMT$account-encryption-keyfalsetest-share-19944beb-bae2-4a83-9649-e6aab41de17e2020-10-12T21:41:56.0000000ZMon, - 12 Oct 2020 21:41:56 GMT\"0x8D86EF7A41E4FCD\"1$account-encryption-keyfalsetest-share-19944beb-bae2-4a83-9649-e6aab41de17e2020-10-12T21:41:57.0000000ZMon, - 12 Oct 2020 21:41:56 GMT\"0x8D86EF7A41E4FCD\"1$account-encryption-keyfalsetest-share-19944beb-bae2-4a83-9649-e6aab41de17eMon, - 12 Oct 2020 21:41:56 GMT\"0x8D86EF7A41E4FCD\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:56 GMT$account-encryption-keyfalsetest-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31Wed, + 05 Aug 2020 19:06:51 GMT$account-encryption-keyfalsetest-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31Wed, 05 Aug 2020 19:06:49 GMT\"0x8D83972B5025718\"5120TransactionOptimizedWed, 05 Aug 2020 19:06:49 GMT$account-encryption-keyfalsetest-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3aWed, 05 Aug 2020 17:24:15 GMT\"0x8D8396460C3E165\"5120TransactionOptimizedWed, 05 Aug 2020 17:24:15 GMT$account-encryption-keyfalsetest-share-26ae488a-f23e-4b65-aa5b-f273d6179074Wed, 05 Aug 2020 19:06:50 GMT\"0x8D83972B592F011\"5120TransactionOptimizedWed, - 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-2c2c7f92-0d2e-4639-a44b-5aa1ec5e36402020-10-09T15:59:36.0000000ZFri, - 09 Oct 2020 15:59:36 GMT\"0x8D86C6C525FB911\"1$account-encryption-keyfalsetest-share-2c2c7f92-0d2e-4639-a44b-5aa1ec5e3640Fri, - 09 Oct 2020 15:59:36 GMT\"0x8D86C6C525FB911\"1TransactionOptimizedFri, - 09 Oct 2020 15:59:36 GMT$account-encryption-keyfalsetest-share-316ddb11-f173-44be-bf21-53fe312783642020-10-09T16:00:48.0000000ZFri, - 09 Oct 2020 16:00:48 GMT\"0x8D86C6C7CF78FAB\"1$account-encryption-keyfalsetest-share-316ddb11-f173-44be-bf21-53fe31278364Fri, - 09 Oct 2020 16:00:48 GMT\"0x8D86C6C7CF78FAB\"1TransactionOptimizedFri, - 09 Oct 2020 16:00:48 GMT$account-encryption-keyfalsetest-share-3ce34113-3aee-42c5-ad56-7cf7f519ef512020-10-09T16:00:49.0000000ZFri, - 09 Oct 2020 16:00:49 GMT\"0x8D86C6C7E0507AE\"1$account-encryption-keyfalsetest-share-3ce34113-3aee-42c5-ad56-7cf7f519ef51Fri, - 09 Oct 2020 16:00:49 GMT\"0x8D86C6C7E0507AE\"1TransactionOptimizedFri, - 09 Oct 2020 16:00:49 GMT$account-encryption-keyfalsetest-share-41184be7-7e6a-4444-8d5d-108389cffa322020-10-12T21:41:54.0000000ZMon, - 12 Oct 2020 21:41:54 GMT\"0x8D86EF7A3422588\"1$account-encryption-keyfalsetest-share-41184be7-7e6a-4444-8d5d-108389cffa322020-10-12T21:41:55.0000000ZMon, - 12 Oct 2020 21:41:54 GMT\"0x8D86EF7A3422588\"1$account-encryption-keyfalsetest-share-41184be7-7e6a-4444-8d5d-108389cffa32Mon, - 12 Oct 2020 21:41:54 GMT\"0x8D86EF7A3422588\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:54 GMT$account-encryption-keyfalsetest-share-433e59e4-fee3-903f-25ca-df14d66bce5aTue, - 13 Oct 2020 01:38:27 GMT\"0x8D86F18AEC2315D\"5120TransactionOptimizedTue, - 13 Oct 2020 01:38:24 GMT$account-encryption-keyfalsetest-share-49d22d21-4363-478e-8f26-1357ef6bd183Wed, + 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-49d22d21-4363-478e-8f26-1357ef6bd183Wed, 05 Aug 2020 17:24:21 GMT\"0x8D8396464063943\"5120TransactionOptimizedWed, - 05 Aug 2020 17:24:21 GMT$account-encryption-keyfalsetest-share-4bbe92b5-59ee-4308-99b8-4f074d25d8492020-10-12T21:41:57.0000000ZMon, - 12 Oct 2020 21:41:56 GMT\"0x8D86EF7A4847A00\"1$account-encryption-keyfalsetest-share-4bbe92b5-59ee-4308-99b8-4f074d25d8492020-10-12T21:41:58.0000000ZMon, - 12 Oct 2020 21:41:56 GMT\"0x8D86EF7A4847A00\"1$account-encryption-keyfalsetest-share-4bbe92b5-59ee-4308-99b8-4f074d25d849Mon, - 12 Oct 2020 21:41:56 GMT\"0x8D86EF7A4847A00\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:56 GMT$account-encryption-keyfalsetest-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a282020-10-12T21:41:50.0000000ZMon, - 12 Oct 2020 21:41:50 GMT\"0x8D86EF7A08A61DE\"1$account-encryption-keyfalsetest-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a282020-10-12T21:41:51.0000000ZMon, - 12 Oct 2020 21:41:50 GMT\"0x8D86EF7A08A61DE\"1$account-encryption-keyfalsetest-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a28Mon, - 12 Oct 2020 21:41:50 GMT\"0x8D86EF7A08A61DE\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:50 GMT$account-encryption-keyfalsetest-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680Wed, + 05 Aug 2020 17:24:21 GMT$account-encryption-keyfalsetest-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680Wed, 05 Aug 2020 17:24:17 GMT\"0x8D8396461D987E1\"5120TransactionOptimizedWed, - 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest-share-583835fc-cf3c-4125-bed0-c7484450889c2020-10-09T16:00:49.0000000ZFri, - 09 Oct 2020 16:00:49 GMT\"0x8D86C6C7D9BE783\"1$account-encryption-keyfalsetest-share-583835fc-cf3c-4125-bed0-c7484450889cFri, - 09 Oct 2020 16:00:49 GMT\"0x8D86C6C7D9BE783\"1TransactionOptimizedFri, - 09 Oct 2020 16:00:49 GMT$account-encryption-keyfalsetest-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604Wed, + 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604Wed, 05 Aug 2020 17:24:19 GMT\"0x8D83964633A2718\"5120TransactionOptimizedWed, - 05 Aug 2020 17:24:19 GMT$account-encryption-keyfalsetest-share-786c4245-f779-4819-9560-9ca6f310ee542020-10-09T16:00:51.0000000ZFri, - 09 Oct 2020 16:00:51 GMT\"0x8D86C6C7F0D694A\"1$account-encryption-keyfalsetest-share-786c4245-f779-4819-9560-9ca6f310ee54Fri, - 09 Oct 2020 16:00:51 GMT\"0x8D86C6C7F0D694A\"1TransactionOptimizedFri, - 09 Oct 2020 16:00:51 GMT$account-encryption-keyfalsetest-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52Wed, + 05 Aug 2020 17:24:19 GMT$account-encryption-keyfalsetest-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52Wed, 05 Aug 2020 19:06:50 GMT\"0x8D83972B538E3FD\"5120TransactionOptimizedWed, - 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-86909a2e-b781-44ee-8718-96f1784d7d982020-10-09T16:00:48.0000000ZFri, - 09 Oct 2020 16:00:48 GMT\"0x8D86C6C7D424CDB\"1$account-encryption-keyfalsetest-share-86909a2e-b781-44ee-8718-96f1784d7d98Fri, - 09 Oct 2020 16:00:48 GMT\"0x8D86C6C7D424CDB\"1TransactionOptimizedFri, - 09 Oct 2020 16:00:48 GMT$account-encryption-keyfalsetest-share-8903864e-96ec-44f5-8912-837a9f23cbb5Wed, + 05 Aug 2020 19:06:50 GMT$account-encryption-keyfalsetest-share-8903864e-96ec-44f5-8912-837a9f23cbb5Wed, 05 Aug 2020 00:04:00 GMT\"0x8D838D30E563856\"5120TransactionOptimizedWed, - 05 Aug 2020 00:04:00 GMT$account-encryption-keyfalsetest-share-8d686f58-2056-4433-b854-59c319e5dc3a2020-10-09T15:59:38.0000000ZFri, - 09 Oct 2020 15:59:37 GMT\"0x8D86C6C531DFC59\"1$account-encryption-keyfalsetest-share-8d686f58-2056-4433-b854-59c319e5dc3aFri, - 09 Oct 2020 15:59:37 GMT\"0x8D86C6C531DFC59\"1TransactionOptimizedFri, - 09 Oct 2020 15:59:37 GMT$account-encryption-keyfalsetest-share-9032063a-67fc-4ae4-8367-b3c707724f582020-10-12T21:41:51.0000000ZMon, - 12 Oct 2020 21:41:51 GMT\"0x8D86EF7A16FB5A8\"1$account-encryption-keyfalsetest-share-9032063a-67fc-4ae4-8367-b3c707724f582020-10-12T21:41:52.0000000ZMon, - 12 Oct 2020 21:41:51 GMT\"0x8D86EF7A16FB5A8\"1$account-encryption-keyfalsetest-share-9032063a-67fc-4ae4-8367-b3c707724f58Mon, - 12 Oct 2020 21:41:51 GMT\"0x8D86EF7A16FB5A8\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:51 GMT$account-encryption-keyfalsetest-share-91530c85-00f7-4298-b490-14719e46bc682020-10-12T21:41:40.0000000ZMon, - 12 Oct 2020 21:41:40 GMT\"0x8D86EF79AE7E49B\"1$account-encryption-keyfalsetest-share-91530c85-00f7-4298-b490-14719e46bc682020-10-12T21:41:41.0000000ZMon, - 12 Oct 2020 21:41:40 GMT\"0x8D86EF79AE7E49B\"1$account-encryption-keyfalsetest-share-91530c85-00f7-4298-b490-14719e46bc68Mon, - 12 Oct 2020 21:41:40 GMT\"0x8D86EF79AE7E49B\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:40 GMT$account-encryption-keyfalsetest-share-939d0375-070c-464d-9446-0e1d3783a5832020-10-09T15:59:40.0000000ZFri, - 09 Oct 2020 15:59:40 GMT\"0x8D86C6C5477092A\"1$account-encryption-keyfalsetest-share-939d0375-070c-464d-9446-0e1d3783a583Fri, - 09 Oct 2020 15:59:40 GMT\"0x8D86C6C5477092A\"1TransactionOptimizedFri, - 09 Oct 2020 15:59:40 GMT$account-encryption-keyfalsetest-share-9c85091c-816c-4284-a0a3-41614160f9a52020-10-09T15:59:40.0000000ZFri, - 09 Oct 2020 15:59:40 GMT\"0x8D86C6C54A64BB9\"1$account-encryption-keyfalsetest-share-9c85091c-816c-4284-a0a3-41614160f9a5Fri, - 09 Oct 2020 15:59:40 GMT\"0x8D86C6C54A64BB9\"1TransactionOptimizedFri, - 09 Oct 2020 15:59:40 GMT$account-encryption-keyfalsetest-share-aa7d75e0-afb6-4622-ac6c-63b08633fe26Wed, - 14 Oct 2020 21:28:30 GMT\"0x8D8708818B307AC\"5120TransactionOptimizedWed, - 14 Oct 2020 21:28:30 GMT$account-encryption-keyfalsetest-share-b57b3375-b6d5-4e82-ad5e-bbfad3988fb7Wed, - 14 Oct 2020 21:25:34 GMT\"0x8D87087AFAAA995\"5120TransactionOptimizedWed, - 14 Oct 2020 21:25:34 GMT$account-encryption-keyfalsetest-share-b77d6f52-7214-4fbc-82d9-b0e046245d8f2020-10-09T15:59:38.0000000ZFri, - 09 Oct 2020 15:59:38 GMT\"0x8D86C6C5363863B\"1$account-encryption-keyfalsetest-share-b77d6f52-7214-4fbc-82d9-b0e046245d8fFri, - 09 Oct 2020 15:59:38 GMT\"0x8D86C6C5363863B\"1TransactionOptimizedFri, - 09 Oct 2020 15:59:38 GMT$account-encryption-keyfalsetest-share-b9b66681-31a1-4a51-bf38-5b130a101a7c2020-10-09T15:59:37.0000000ZFri, - 09 Oct 2020 15:59:37 GMT\"0x8D86C6C52E22583\"1$account-encryption-keyfalsetest-share-b9b66681-31a1-4a51-bf38-5b130a101a7cFri, - 09 Oct 2020 15:59:37 GMT\"0x8D86C6C52E22583\"1TransactionOptimizedFri, - 09 Oct 2020 15:59:37 GMT$account-encryption-keyfalsetest-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67aWed, + 05 Aug 2020 00:04:00 GMT$account-encryption-keyfalsetest-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67aWed, 05 Aug 2020 17:24:18 GMT\"0x8D8396462815131\"5120TransactionOptimizedWed, - 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c22020-10-12T21:41:58.0000000ZMon, - 12 Oct 2020 21:41:58 GMT\"0x8D86EF7A59EDAE6\"1$account-encryption-keyfalsetest-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c22020-10-12T21:41:59.0000000ZMon, - 12 Oct 2020 21:41:58 GMT\"0x8D86EF7A59EDAE6\"1$account-encryption-keyfalsetest-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c2Mon, - 12 Oct 2020 21:41:58 GMT\"0x8D86EF7A59EDAE6\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:58 GMT$account-encryption-keyfalsetest-share-c8963579-8f4d-4729-b0c2-f9a62a2adc6b2020-10-09T16:00:50.0000000ZFri, - 09 Oct 2020 16:00:50 GMT\"0x8D86C6C7E9196C0\"1$account-encryption-keyfalsetest-share-c8963579-8f4d-4729-b0c2-f9a62a2adc6bFri, - 09 Oct 2020 16:00:50 GMT\"0x8D86C6C7E9196C0\"1TransactionOptimizedFri, - 09 Oct 2020 16:00:50 GMT$account-encryption-keyfalsetest-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc2020-10-12T21:41:47.0000000ZMon, - 12 Oct 2020 21:41:47 GMT\"0x8D86EF79EC05911\"1$account-encryption-keyfalsetest-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc2020-10-12T21:41:48.0000000ZMon, - 12 Oct 2020 21:41:47 GMT\"0x8D86EF79EC05911\"1$account-encryption-keyfalsetest-share-d12ca04d-51c8-4a02-b133-dcbec1b439fcMon, - 12 Oct 2020 21:41:47 GMT\"0x8D86EF79EC05911\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:47 GMT$account-encryption-keyfalsetest-share-d468d64f-34b2-43c2-b517-8b8756e3b58e2020-10-12T21:41:47.0000000ZMon, - 12 Oct 2020 21:41:47 GMT\"0x8D86EF79F05DB00\"1$account-encryption-keyfalsetest-share-d468d64f-34b2-43c2-b517-8b8756e3b58e2020-10-12T21:41:48.0000000ZMon, - 12 Oct 2020 21:41:47 GMT\"0x8D86EF79F05DB00\"1$account-encryption-keyfalsetest-share-d468d64f-34b2-43c2-b517-8b8756e3b58eMon, - 12 Oct 2020 21:41:47 GMT\"0x8D86EF79F05DB00\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:47 GMT$account-encryption-keyfalsetest-share-d5852df4-944a-48b9-8552-eea5bfd94b6bWed, + 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-d5852df4-944a-48b9-8552-eea5bfd94b6bWed, 05 Aug 2020 17:24:20 GMT\"0x8D8396463BD465A\"5120TransactionOptimizedWed, - 05 Aug 2020 17:24:20 GMT$account-encryption-keyfalsetest-share-d878ae6e-db35-418d-b454-033415d655592020-10-12T21:41:59.0000000ZMon, - 12 Oct 2020 21:41:59 GMT\"0x8D86EF7A64C4162\"1$account-encryption-keyfalsetest-share-d878ae6e-db35-418d-b454-033415d655592020-10-12T21:42:00.0000000ZMon, - 12 Oct 2020 21:41:59 GMT\"0x8D86EF7A64C4162\"1$account-encryption-keyfalsetest-share-d878ae6e-db35-418d-b454-033415d65559Mon, - 12 Oct 2020 21:41:59 GMT\"0x8D86EF7A64C4162\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:59 GMT$account-encryption-keyfalsetest-share-dfad7dbd-450e-4b7b-8659-0d78619eed162020-10-09T15:59:39.0000000ZFri, - 09 Oct 2020 15:59:39 GMT\"0x8D86C6C541FBFF7\"1$account-encryption-keyfalsetest-share-dfad7dbd-450e-4b7b-8659-0d78619eed16Fri, - 09 Oct 2020 15:59:39 GMT\"0x8D86C6C541FBFF7\"1TransactionOptimizedFri, - 09 Oct 2020 15:59:38 GMT$account-encryption-keyfalsetest-share-e125b24e-2090-43ad-85b4-834e93679ccf2020-10-12T21:41:42.0000000ZMon, - 12 Oct 2020 21:41:42 GMT\"0x8D86EF79BEDDB6A\"1$account-encryption-keyfalsetest-share-e125b24e-2090-43ad-85b4-834e93679ccf2020-10-12T21:41:43.0000000ZMon, - 12 Oct 2020 21:41:42 GMT\"0x8D86EF79BEDDB6A\"1$account-encryption-keyfalsetest-share-e125b24e-2090-43ad-85b4-834e93679ccfMon, - 12 Oct 2020 21:41:42 GMT\"0x8D86EF79BEDDB6A\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:42 GMT$account-encryption-keyfalsetest-share-e3ab5189-b505-4194-ad27-9468dd1975952020-10-09T16:00:52.0000000ZFri, - 09 Oct 2020 16:00:52 GMT\"0x8D86C6C7F461382\"1$account-encryption-keyfalsetest-share-e3ab5189-b505-4194-ad27-9468dd197595Fri, - 09 Oct 2020 16:00:52 GMT\"0x8D86C6C7F461382\"1TransactionOptimizedFri, - 09 Oct 2020 16:00:51 GMT$account-encryption-keyfalsetest-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f2020-10-12T21:41:52.0000000ZMon, - 12 Oct 2020 21:41:52 GMT\"0x8D86EF7A1BD13E2\"1$account-encryption-keyfalsetest-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f2020-10-12T21:41:53.0000000ZMon, - 12 Oct 2020 21:41:52 GMT\"0x8D86EF7A1BD13E2\"1$account-encryption-keyfalsetest-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889fMon, - 12 Oct 2020 21:41:52 GMT\"0x8D86EF7A1BD13E2\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:52 GMT$account-encryption-keyfalsetest-share-ecabdad0-45cc-4b68-8316-4a8c0f631da52020-10-12T21:41:49.0000000ZMon, - 12 Oct 2020 21:41:49 GMT\"0x8D86EF7A01C1593\"1$account-encryption-keyfalsetest-share-ecabdad0-45cc-4b68-8316-4a8c0f631da52020-10-12T21:41:50.0000000ZMon, - 12 Oct 2020 21:41:49 GMT\"0x8D86EF7A01C1593\"1$account-encryption-keyfalsetest-share-ecabdad0-45cc-4b68-8316-4a8c0f631da5Mon, - 12 Oct 2020 21:41:49 GMT\"0x8D86EF7A01C1593\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:49 GMT$account-encryption-keyfalsetest-share-eda1f524-4414-4ac1-82e7-b07a41a114502020-10-09T15:59:37.0000000ZFri, - 09 Oct 2020 15:59:37 GMT\"0x8D86C6C52AA5004\"1$account-encryption-keyfalsetest-share-eda1f524-4414-4ac1-82e7-b07a41a11450Fri, - 09 Oct 2020 15:59:37 GMT\"0x8D86C6C52AA5004\"1TransactionOptimizedFri, - 09 Oct 2020 15:59:37 GMT$account-encryption-keyfalsetest-share-fa7d1a1f-d065-4d58-bb12-a59f22106473Wed, + 05 Aug 2020 17:24:20 GMT$account-encryption-keyfalsetest-share-fa7d1a1f-d065-4d58-bb12-a59f22106473Wed, 05 Aug 2020 17:24:18 GMT\"0x8D839646251B45A\"5120TransactionOptimizedWed, 05 Aug 2020 17:24:18 GMT$account-encryption-keyfalsetest-share-fcc35a78-e231-4233-a311-d48ee9bb2df7Wed, 05 Aug 2020 17:24:16 GMT\"0x8D83964610EBC77\"5120TransactionOptimizedWed, - 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest-share-ff58f16b-05bc-418d-9982-4ba47e55637b2020-10-12T21:41:54.0000000ZMon, - 12 Oct 2020 21:41:54 GMT\"0x8D86EF7A2DFE946\"1$account-encryption-keyfalsetest-share-ff58f16b-05bc-418d-9982-4ba47e55637b2020-10-12T21:41:55.0000000ZMon, - 12 Oct 2020 21:41:54 GMT\"0x8D86EF7A2DFE946\"1$account-encryption-keyfalsetest-share-ff58f16b-05bc-418d-9982-4ba47e55637bMon, - 12 Oct 2020 21:41:54 GMT\"0x8D86EF7A2DFE946\"1TransactionOptimizedMon, - 12 Oct 2020 21:41:54 GMT$account-encryption-keyfalsetest16185160bFri, + 05 Aug 2020 17:24:16 GMT$account-encryption-keyfalsetest16185160bFri, 11 Sep 2020 13:51:30 GMT\"0x8D85659C98711F1\"5120TransactionOptimizedFri, 11 Sep 2020 13:51:30 GMT$account-encryption-keyfalsetest1bd1a12ddTue, 29 Sep 2020 22:34:36 GMT\"0x8D864C7D8628CD4\"5120TransactionOptimizedTue, @@ -434,13 +319,11 @@ interactions: 11 Sep 2020 13:53:58 GMT\"0x8D8565A21BA7745\"5120TransactionOptimizedFri, 11 Sep 2020 13:53:58 GMT$account-encryption-keyfalsetestf69713faFri, 11 Sep 2020 13:54:36 GMT\"0x8D8565A3813B91A\"5120TransactionOptimizedFri, - 11 Sep 2020 13:54:35 GMT$account-encryption-keyfalseutshare1d770f1dTue, - 13 Oct 2020 20:11:58 GMT\"0x8D86FB43D37AB6F\"5120TransactionOptimizedTue, - 13 Oct 2020 20:11:58 GMT$account-encryption-keyfalse$account-encryption-keyfalse" headers: content-type: application/xml - date: Thu, 15 Oct 2020 01:22:15 GMT + date: Sat, 17 Oct 2020 01:16:10 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 transfer-encoding: chunked vary: Origin @@ -455,7 +338,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:17 GMT + - Sat, 17 Oct 2020 01:16:11 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -466,11 +349,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fedfa-001a-0024-2c91-a22c62000000\nTime:2020-10-15T01:22:17.0045713Z" + request.\nRequestId:833b6843-001a-000b-5023-a421a9000000\nTime:2020-10-17T01:16:11.3815256Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:11 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -485,7 +368,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:17 GMT + - Sat, 17 Oct 2020 01:16:12 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -496,11 +379,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fedfb-001a-0024-2d91-a22c62000000\nTime:2020-10-15T01:22:17.1146493Z" + request.\nRequestId:833b6844-001a-000b-5123-a421a9000000\nTime:2020-10-17T01:16:11.4445704Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:11 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -515,7 +398,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:17 GMT + - Sat, 17 Oct 2020 01:16:12 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -527,7 +410,7 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:11 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: '2020-02-10' status: @@ -540,7 +423,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:17 GMT + - Sat, 17 Oct 2020 01:16:12 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -552,7 +435,7 @@ interactions: string: '' headers: content-length: '0' - date: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:11 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-version: '2020-02-10' status: @@ -565,7 +448,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:17 GMT + - Sat, 17 Oct 2020 01:16:12 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -576,11 +459,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee01-001a-0024-3391-a22c62000000\nTime:2020-10-15T01:22:17.3648253Z" + request.\nRequestId:833b6848-001a-000b-5523-a421a9000000\nTime:2020-10-17T01:16:11.6467145Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:11 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -595,7 +478,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:17 GMT + - Sat, 17 Oct 2020 01:16:12 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -606,11 +489,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee02-001a-0024-3491-a22c62000000\nTime:2020-10-15T01:22:17.4438810Z" + request.\nRequestId:833b6849-001a-000b-5623-a421a9000000\nTime:2020-10-17T01:16:11.7107600Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:11 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -625,7 +508,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:17 GMT + - Sat, 17 Oct 2020 01:16:12 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -636,11 +519,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee03-001a-0024-3591-a22c62000000\nTime:2020-10-15T01:22:17.5069259Z" + request.\nRequestId:833b684a-001a-000b-5723-a421a9000000\nTime:2020-10-17T01:16:11.7808094Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:11 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -655,7 +538,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:17 GMT + - Sat, 17 Oct 2020 01:16:12 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -666,11 +549,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee04-001a-0024-3691-a22c62000000\nTime:2020-10-15T01:22:17.5689697Z" + request.\nRequestId:833b684b-001a-000b-5823-a421a9000000\nTime:2020-10-17T01:16:11.8498585Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:11 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -685,7 +568,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:17 GMT + - Sat, 17 Oct 2020 01:16:12 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -696,11 +579,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee05-001a-0024-3791-a22c62000000\nTime:2020-10-15T01:22:17.6460236Z" + request.\nRequestId:833b684c-001a-000b-5923-a421a9000000\nTime:2020-10-17T01:16:11.9179073Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:11 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -715,7 +598,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:17 GMT + - Sat, 17 Oct 2020 01:16:12 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -726,11 +609,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee06-001a-0024-3891-a22c62000000\nTime:2020-10-15T01:22:17.7240786Z" + request.\nRequestId:833b684d-001a-000b-5a23-a421a9000000\nTime:2020-10-17T01:16:11.9849545Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:16 GMT + date: Sat, 17 Oct 2020 01:16:11 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -745,7 +628,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:17 GMT + - Sat, 17 Oct 2020 01:16:12 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -756,11 +639,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee07-001a-0024-3991-a22c62000000\nTime:2020-10-15T01:22:17.7851221Z" + request.\nRequestId:833b684e-001a-000b-5b23-a421a9000000\nTime:2020-10-17T01:16:12.0590079Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:17 GMT + date: Sat, 17 Oct 2020 01:16:11 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -775,7 +658,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:18 GMT + - Sat, 17 Oct 2020 01:16:12 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -786,11 +669,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee09-001a-0024-3a91-a22c62000000\nTime:2020-10-15T01:22:17.8901957Z" + request.\nRequestId:833b684f-001a-000b-5c23-a421a9000000\nTime:2020-10-17T01:16:12.1240541Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:17 GMT + date: Sat, 17 Oct 2020 01:16:12 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -805,7 +688,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:18 GMT + - Sat, 17 Oct 2020 01:16:12 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -816,11 +699,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee0c-001a-0024-3d91-a22c62000000\nTime:2020-10-15T01:22:17.9812600Z" + request.\nRequestId:833b6851-001a-000b-5d23-a421a9000000\nTime:2020-10-17T01:16:12.1961062Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:17 GMT + date: Sat, 17 Oct 2020 01:16:12 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -835,7 +718,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:18 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -846,11 +729,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee0d-001a-0024-3e91-a22c62000000\nTime:2020-10-15T01:22:18.0673216Z" + request.\nRequestId:833b6853-001a-000b-5f23-a421a9000000\nTime:2020-10-17T01:16:12.2651553Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:17 GMT + date: Sat, 17 Oct 2020 01:16:12 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -865,7 +748,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:18 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -876,11 +759,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee0e-001a-0024-3f91-a22c62000000\nTime:2020-10-15T01:22:18.1563850Z" + request.\nRequestId:833b6854-001a-000b-6023-a421a9000000\nTime:2020-10-17T01:16:12.3352060Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:17 GMT + date: Sat, 17 Oct 2020 01:16:12 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -895,7 +778,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:18 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -906,11 +789,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee0f-001a-0024-4091-a22c62000000\nTime:2020-10-15T01:22:18.2224324Z" + request.\nRequestId:833b6856-001a-000b-6123-a421a9000000\nTime:2020-10-17T01:16:12.4042555Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:17 GMT + date: Sat, 17 Oct 2020 01:16:12 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -925,7 +808,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:18 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -936,11 +819,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee11-001a-0024-4291-a22c62000000\nTime:2020-10-15T01:22:18.2864770Z" + request.\nRequestId:833b6857-001a-000b-6223-a421a9000000\nTime:2020-10-17T01:16:12.4783086Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:17 GMT + date: Sat, 17 Oct 2020 01:16:12 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -955,7 +838,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:18 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -966,11 +849,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee12-001a-0024-4391-a22c62000000\nTime:2020-10-15T01:22:18.3545254Z" + request.\nRequestId:833b6858-001a-000b-6323-a421a9000000\nTime:2020-10-17T01:16:12.5473577Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:17 GMT + date: Sat, 17 Oct 2020 01:16:12 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -985,7 +868,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:18 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -996,11 +879,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee13-001a-0024-4491-a22c62000000\nTime:2020-10-15T01:22:18.4175703Z" + request.\nRequestId:833b6859-001a-000b-6423-a421a9000000\nTime:2020-10-17T01:16:12.6204100Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:17 GMT + date: Sat, 17 Oct 2020 01:16:12 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -1015,2287 +898,337 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:18 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-0883f636-747e-4a87-8604-3d2bd0767c0a?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:17 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-0883f636-747e-4a87-8604-3d2bd0767c0a?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:18 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-0883f636-747e-4a87-8604-3d2bd0767c0a?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:17 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-0883f636-747e-4a87-8604-3d2bd0767c0a?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:18 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-0883f636-747e-4a87-8604-3d2bd0767c0a?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:17 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-0883f636-747e-4a87-8604-3d2bd0767c0a?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:18 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:18 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-0f004c57-cbdd-4820-8d02-72ed4d0fdc6f?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7?restype=share - response: - body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee1b-001a-0024-4c91-a22c62000000\nTime:2020-10-15T01:22:18.9959820Z" - headers: - content-length: '273' - content-type: application/xml - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing - x-ms-version: '2020-02-10' - status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-19944beb-bae2-4a83-9649-e6aab41de17e?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-19944beb-bae2-4a83-9649-e6aab41de17e?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-19944beb-bae2-4a83-9649-e6aab41de17e?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-19944beb-bae2-4a83-9649-e6aab41de17e?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-19944beb-bae2-4a83-9649-e6aab41de17e?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-19944beb-bae2-4a83-9649-e6aab41de17e?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31?restype=share - response: - body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee21-001a-0024-5291-a22c62000000\nTime:2020-10-15T01:22:19.2771815Z" - headers: - content-length: '273' - content-type: application/xml - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing - x-ms-version: '2020-02-10' - status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3a?restype=share - response: - body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee22-001a-0024-5391-a22c62000000\nTime:2020-10-15T01:22:19.3402264Z" - headers: - content-length: '273' - content-type: application/xml - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing - x-ms-version: '2020-02-10' - status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3a?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-26ae488a-f23e-4b65-aa5b-f273d6179074?restype=share - response: - body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee23-001a-0024-5491-a22c62000000\nTime:2020-10-15T01:22:19.4082752Z" - headers: - content-length: '273' - content-type: application/xml - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing - x-ms-version: '2020-02-10' - status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-26ae488a-f23e-4b65-aa5b-f273d6179074?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-2c2c7f92-0d2e-4639-a44b-5aa1ec5e3640?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-2c2c7f92-0d2e-4639-a44b-5aa1ec5e3640?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-2c2c7f92-0d2e-4639-a44b-5aa1ec5e3640?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-2c2c7f92-0d2e-4639-a44b-5aa1ec5e3640?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-316ddb11-f173-44be-bf21-53fe31278364?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-316ddb11-f173-44be-bf21-53fe31278364?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-316ddb11-f173-44be-bf21-53fe31278364?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-316ddb11-f173-44be-bf21-53fe31278364?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-3ce34113-3aee-42c5-ad56-7cf7f519ef51?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:18 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-3ce34113-3aee-42c5-ad56-7cf7f519ef51?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-3ce34113-3aee-42c5-ad56-7cf7f519ef51?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:19 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-3ce34113-3aee-42c5-ad56-7cf7f519ef51?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:19 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-41184be7-7e6a-4444-8d5d-108389cffa32?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:19 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-41184be7-7e6a-4444-8d5d-108389cffa32?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:20 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-41184be7-7e6a-4444-8d5d-108389cffa32?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:19 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-41184be7-7e6a-4444-8d5d-108389cffa32?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:20 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-41184be7-7e6a-4444-8d5d-108389cffa32?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:19 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-41184be7-7e6a-4444-8d5d-108389cffa32?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:20 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-433e59e4-fee3-903f-25ca-df14d66bce5a?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:19 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-433e59e4-fee3-903f-25ca-df14d66bce5a?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:20 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-49d22d21-4363-478e-8f26-1357ef6bd183?restype=share - response: - body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee32-001a-0024-6291-a22c62000000\nTime:2020-10-15T01:22:20.1558063Z" - headers: - content-length: '273' - content-type: application/xml - date: Thu, 15 Oct 2020 01:22:19 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing - x-ms-version: '2020-02-10' - status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-49d22d21-4363-478e-8f26-1357ef6bd183?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:20 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-4bbe92b5-59ee-4308-99b8-4f074d25d849?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:19 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-4bbe92b5-59ee-4308-99b8-4f074d25d849?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:20 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-4bbe92b5-59ee-4308-99b8-4f074d25d849?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:19 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-4bbe92b5-59ee-4308-99b8-4f074d25d849?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:20 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-4bbe92b5-59ee-4308-99b8-4f074d25d849?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:19 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-4bbe92b5-59ee-4308-99b8-4f074d25d849?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:20 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a28?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:19 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a28?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:20 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a28?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:19 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a28?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:20 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a28?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:19 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-4e2c9e95-332a-4fc4-adf7-f32439dd9a28?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:20 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680?restype=share - response: - body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee3b-001a-0024-6a91-a22c62000000\nTime:2020-10-15T01:22:20.6541612Z" - headers: - content-length: '273' - content-type: application/xml - date: Thu, 15 Oct 2020 01:22:19 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing - x-ms-version: '2020-02-10' - status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:20 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-583835fc-cf3c-4125-bed0-c7484450889c?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:19 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-583835fc-cf3c-4125-bed0-c7484450889c?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:20 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-583835fc-cf3c-4125-bed0-c7484450889c?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:20 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-583835fc-cf3c-4125-bed0-c7484450889c?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:21 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604?restype=share - response: - body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee3e-001a-0024-6d91-a22c62000000\nTime:2020-10-15T01:22:20.8833237Z" - headers: - content-length: '273' - content-type: application/xml - date: Thu, 15 Oct 2020 01:22:20 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing - x-ms-version: '2020-02-10' - status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:21 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-786c4245-f779-4819-9560-9ca6f310ee54?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:20 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-786c4245-f779-4819-9560-9ca6f310ee54?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:21 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-786c4245-f779-4819-9560-9ca6f310ee54?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:20 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-786c4245-f779-4819-9560-9ca6f310ee54?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:21 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52?restype=share - response: - body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee43-001a-0024-7191-a22c62000000\nTime:2020-10-15T01:22:21.1074835Z" - headers: - content-length: '273' - content-type: application/xml - date: Thu, 15 Oct 2020 01:22:20 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing - x-ms-version: '2020-02-10' - status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:21 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-86909a2e-b781-44ee-8718-96f1784d7d98?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:20 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-86909a2e-b781-44ee-8718-96f1784d7d98?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:21 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-86909a2e-b781-44ee-8718-96f1784d7d98?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:20 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-86909a2e-b781-44ee-8718-96f1784d7d98?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:21 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-8903864e-96ec-44f5-8912-837a9f23cbb5?restype=share - response: - body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee46-001a-0024-7491-a22c62000000\nTime:2020-10-15T01:22:21.3186332Z" - headers: - content-length: '273' - content-type: application/xml - date: Thu, 15 Oct 2020 01:22:20 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing - x-ms-version: '2020-02-10' - status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-8903864e-96ec-44f5-8912-837a9f23cbb5?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:21 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-8d686f58-2056-4433-b854-59c319e5dc3a?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:20 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-8d686f58-2056-4433-b854-59c319e5dc3a?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:21 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-8d686f58-2056-4433-b854-59c319e5dc3a?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:20 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-8d686f58-2056-4433-b854-59c319e5dc3a?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:21 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-9032063a-67fc-4ae4-8367-b3c707724f58?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:20 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-9032063a-67fc-4ae4-8367-b3c707724f58?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:21 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-9032063a-67fc-4ae4-8367-b3c707724f58?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:20 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-9032063a-67fc-4ae4-8367-b3c707724f58?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:21 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-9032063a-67fc-4ae4-8367-b3c707724f58?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:20 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-9032063a-67fc-4ae4-8367-b3c707724f58?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:21 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-91530c85-00f7-4298-b490-14719e46bc68?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:21 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-91530c85-00f7-4298-b490-14719e46bc68?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:21 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-91530c85-00f7-4298-b490-14719e46bc68?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:21 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-91530c85-00f7-4298-b490-14719e46bc68?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:22 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-91530c85-00f7-4298-b490-14719e46bc68?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:21 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-91530c85-00f7-4298-b490-14719e46bc68?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:22 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-939d0375-070c-464d-9446-0e1d3783a583?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:21 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-939d0375-070c-464d-9446-0e1d3783a583?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:22 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-939d0375-070c-464d-9446-0e1d3783a583?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:21 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-939d0375-070c-464d-9446-0e1d3783a583?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:22 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-9c85091c-816c-4284-a0a3-41614160f9a5?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:21 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-9c85091c-816c-4284-a0a3-41614160f9a5?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:22 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-9c85091c-816c-4284-a0a3-41614160f9a5?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:21 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-9c85091c-816c-4284-a0a3-41614160f9a5?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:22 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-aa7d75e0-afb6-4622-ac6c-63b08633fe26?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:21 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-aa7d75e0-afb6-4622-ac6c-63b08633fe26?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:22 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-b57b3375-b6d5-4e82-ad5e-bbfad3988fb7?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:21 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-b57b3375-b6d5-4e82-ad5e-bbfad3988fb7?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:22 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-b77d6f52-7214-4fbc-82d9-b0e046245d8f?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:21 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-b77d6f52-7214-4fbc-82d9-b0e046245d8f?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:22 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-b77d6f52-7214-4fbc-82d9-b0e046245d8f?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:21 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-b77d6f52-7214-4fbc-82d9-b0e046245d8f?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:22 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-b9b66681-31a1-4a51-bf38-5b130a101a7c?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:21 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-b9b66681-31a1-4a51-bf38-5b130a101a7c?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:22 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-b9b66681-31a1-4a51-bf38-5b130a101a7c?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:21 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-b9b66681-31a1-4a51-bf38-5b130a101a7c?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:22 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67a?restype=share - response: - body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee5a-001a-0024-0891-a22c62000000\nTime:2020-10-15T01:22:22.7546498Z" - headers: - content-length: '273' - content-type: application/xml - date: Thu, 15 Oct 2020 01:22:22 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing - x-ms-version: '2020-02-10' - status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67a?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:22 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c2?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:22 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c2?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:23 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c2?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:22 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c2?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:23 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c2?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:22 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-c3d5855b-02b1-4af2-b9cb-a3731ec401c2?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:23 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-c8963579-8f4d-4729-b0c2-f9a62a2adc6b?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:22 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-c8963579-8f4d-4729-b0c2-f9a62a2adc6b?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:23 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-c8963579-8f4d-4729-b0c2-f9a62a2adc6b?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:22 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-c8963579-8f4d-4729-b0c2-f9a62a2adc6b?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:23 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:22 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:23 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:22 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:23 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:22 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-d12ca04d-51c8-4a02-b133-dcbec1b439fc?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:23 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-d468d64f-34b2-43c2-b517-8b8756e3b58e?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:22 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-d468d64f-34b2-43c2-b517-8b8756e3b58e?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:23 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-d468d64f-34b2-43c2-b517-8b8756e3b58e?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:22 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-d468d64f-34b2-43c2-b517-8b8756e3b58e?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:23 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-d468d64f-34b2-43c2-b517-8b8756e3b58e?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:22 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-d468d64f-34b2-43c2-b517-8b8756e3b58e?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:23 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-d5852df4-944a-48b9-8552-eea5bfd94b6b?restype=share - response: - body: - string: "\uFEFFLeaseIdMissingThere - is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee6a-001a-0024-1791-a22c62000000\nTime:2020-10-15T01:22:23.6632950Z" - headers: - content-length: '273' - content-type: application/xml - date: Thu, 15 Oct 2020 01:22:22 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-error-code: LeaseIdMissing - x-ms-version: '2020-02-10' - status: - code: 412 - message: There is currently a lease on the file share and no lease ID was specified - in the request. - url: https://seanmcccanary3.file.core.windows.net/test-share-d5852df4-944a-48b9-8552-eea5bfd94b6b?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:23 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-d878ae6e-db35-418d-b454-033415d65559?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:22 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-d878ae6e-db35-418d-b454-033415d65559?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:23 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-d878ae6e-db35-418d-b454-033415d65559?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:23 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-d878ae6e-db35-418d-b454-033415d65559?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:24 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-d878ae6e-db35-418d-b454-033415d65559?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:23 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-d878ae6e-db35-418d-b454-033415d65559?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:24 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-dfad7dbd-450e-4b7b-8659-0d78619eed16?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:23 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-dfad7dbd-450e-4b7b-8659-0d78619eed16?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:24 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-dfad7dbd-450e-4b7b-8659-0d78619eed16?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:23 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-dfad7dbd-450e-4b7b-8659-0d78619eed16?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:24 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-e125b24e-2090-43ad-85b4-834e93679ccf?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:23 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-e125b24e-2090-43ad-85b4-834e93679ccf?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:24 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-e125b24e-2090-43ad-85b4-834e93679ccf?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:23 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-e125b24e-2090-43ad-85b4-834e93679ccf?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:24 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-e125b24e-2090-43ad-85b4-834e93679ccf?restype=share + uri: https://storagename.file.core.windows.net/test-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7?restype=share response: body: - string: '' + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:833b685a-001a-000b-6523-a421a9000000\nTime:2020-10-17T01:16:12.6924621Z" headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:23 GMT + content-length: '273' + content-type: application/xml + date: Sat, 17 Oct 2020 01:16:12 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-e125b24e-2090-43ad-85b4-834e93679ccf?restype=share + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-1200db32-dbe6-47c3-8fdc-badfe55a17f7?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:24 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-e3ab5189-b505-4194-ad27-9468dd197595?restype=share + uri: https://storagename.file.core.windows.net/test-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31?restype=share response: body: - string: '' + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:833b685b-001a-000b-6623-a421a9000000\nTime:2020-10-17T01:16:12.7565081Z" headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:23 GMT + content-length: '273' + content-type: application/xml + date: Sat, 17 Oct 2020 01:16:12 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-e3ab5189-b505-4194-ad27-9468dd197595?restype=share + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-1c02c6e2-910b-4118-9cc7-3e906d0f6a31?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:24 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-e3ab5189-b505-4194-ad27-9468dd197595?restype=share + uri: https://storagename.file.core.windows.net/test-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3a?restype=share response: body: - string: '' + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:833b685c-001a-000b-6723-a421a9000000\nTime:2020-10-17T01:16:12.8265587Z" headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:23 GMT + content-length: '273' + content-type: application/xml + date: Sat, 17 Oct 2020 01:16:12 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-e3ab5189-b505-4194-ad27-9468dd197595?restype=share + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-22baebbe-ef2b-4735-8a37-d5cfb01e5b3a?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:24 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f?restype=share + uri: https://storagename.file.core.windows.net/test-share-26ae488a-f23e-4b65-aa5b-f273d6179074?restype=share response: body: - string: '' + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:833b685d-001a-000b-6823-a421a9000000\nTime:2020-10-17T01:16:12.8986095Z" headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:23 GMT + content-length: '273' + content-type: application/xml + date: Sat, 17 Oct 2020 01:16:12 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f?restype=share + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-26ae488a-f23e-4b65-aa5b-f273d6179074?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:24 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f?restype=share + uri: https://storagename.file.core.windows.net/test-share-49d22d21-4363-478e-8f26-1357ef6bd183?restype=share response: body: - string: '' + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:833b685e-001a-000b-6923-a421a9000000\nTime:2020-10-17T01:16:12.9616552Z" headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:23 GMT + content-length: '273' + content-type: application/xml + date: Sat, 17 Oct 2020 01:16:12 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f?restype=share + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-49d22d21-4363-478e-8f26-1357ef6bd183?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:24 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f?restype=share + uri: https://storagename.file.core.windows.net/test-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680?restype=share response: body: - string: '' + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:833b6860-001a-000b-6a23-a421a9000000\nTime:2020-10-17T01:16:13.0367088Z" headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:23 GMT + content-length: '273' + content-type: application/xml + date: Sat, 17 Oct 2020 01:16:12 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-e7604b0e-bdb4-4e4d-a7e1-20aba1f4889f?restype=share + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-56abb3eb-0fe3-47ec-802c-288e9eb1c680?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:24 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-ecabdad0-45cc-4b68-8316-4a8c0f631da5?restype=share + uri: https://storagename.file.core.windows.net/test-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604?restype=share response: body: - string: '' + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:833b6861-001a-000b-6b23-a421a9000000\nTime:2020-10-17T01:16:13.1057579Z" headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:24 GMT + content-length: '273' + content-type: application/xml + date: Sat, 17 Oct 2020 01:16:13 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-ecabdad0-45cc-4b68-8316-4a8c0f631da5?restype=share + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-6ddb1225-7c7a-40c8-9c79-0ade2aedc604?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:25 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-ecabdad0-45cc-4b68-8316-4a8c0f631da5?restype=share + uri: https://storagename.file.core.windows.net/test-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52?restype=share response: body: - string: '' + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:833b6863-001a-000b-6d23-a421a9000000\nTime:2020-10-17T01:16:13.1798105Z" headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:24 GMT + content-length: '273' + content-type: application/xml + date: Sat, 17 Oct 2020 01:16:13 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-ecabdad0-45cc-4b68-8316-4a8c0f631da5?restype=share + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-82dc1679-40d4-49f1-adfa-bb6a853a0b52?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:25 GMT + - Sat, 17 Oct 2020 01:16:13 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-ecabdad0-45cc-4b68-8316-4a8c0f631da5?restype=share + uri: https://storagename.file.core.windows.net/test-share-8903864e-96ec-44f5-8912-837a9f23cbb5?restype=share response: body: - string: '' + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:833b6864-001a-000b-6e23-a421a9000000\nTime:2020-10-17T01:16:13.2458570Z" headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:24 GMT + content-length: '273' + content-type: application/xml + date: Sat, 17 Oct 2020 01:16:13 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-ecabdad0-45cc-4b68-8316-4a8c0f631da5?restype=share + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-8903864e-96ec-44f5-8912-837a9f23cbb5?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:25 GMT + - Sat, 17 Oct 2020 01:16:14 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-eda1f524-4414-4ac1-82e7-b07a41a11450?restype=share + uri: https://storagename.file.core.windows.net/test-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67a?restype=share response: body: - string: '' + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:833b6865-001a-000b-6f23-a421a9000000\nTime:2020-10-17T01:16:13.3199101Z" headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:24 GMT + content-length: '273' + content-type: application/xml + date: Sat, 17 Oct 2020 01:16:13 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-eda1f524-4414-4ac1-82e7-b07a41a11450?restype=share + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-bc25d6be-e54a-4d6f-9c39-9003c3c9e67a?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:25 GMT + - Sat, 17 Oct 2020 01:16:14 GMT x-ms-delete-snapshots: - include x-ms-version: - '2020-02-10' method: DELETE - uri: https://storagename.file.core.windows.net/test-share-eda1f524-4414-4ac1-82e7-b07a41a11450?restype=share + uri: https://storagename.file.core.windows.net/test-share-d5852df4-944a-48b9-8552-eea5bfd94b6b?restype=share response: body: - string: '' + string: "\uFEFFLeaseIdMissingThere + is currently a lease on the file share and no lease ID was specified in the + request.\nRequestId:833b6866-001a-000b-7023-a421a9000000\nTime:2020-10-17T01:16:13.3949634Z" headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:24 GMT + content-length: '273' + content-type: application/xml + date: Sat, 17 Oct 2020 01:16:13 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 + x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-eda1f524-4414-4ac1-82e7-b07a41a11450?restype=share + code: 412 + message: There is currently a lease on the file share and no lease ID was specified + in the request. + url: https://seanmcccanary3.file.core.windows.net/test-share-d5852df4-944a-48b9-8552-eea5bfd94b6b?restype=share - request: body: null headers: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:25 GMT + - Sat, 17 Oct 2020 01:16:14 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3306,11 +1239,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee81-001a-0024-2c91-a22c62000000\nTime:2020-10-15T01:22:25.2424179Z" + request.\nRequestId:833b6867-001a-000b-7123-a421a9000000\nTime:2020-10-17T01:16:13.4660139Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:24 GMT + date: Sat, 17 Oct 2020 01:16:13 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3325,7 +1258,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:25 GMT + - Sat, 17 Oct 2020 01:16:14 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3336,11 +1269,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee82-001a-0024-2d91-a22c62000000\nTime:2020-10-15T01:22:25.3264773Z" + request.\nRequestId:833b6868-001a-000b-7223-a421a9000000\nTime:2020-10-17T01:16:13.5390654Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:24 GMT + date: Sat, 17 Oct 2020 01:16:13 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3355,82 +1288,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:25 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-ff58f16b-05bc-418d-9982-4ba47e55637b?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:24 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-ff58f16b-05bc-418d-9982-4ba47e55637b?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:25 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-ff58f16b-05bc-418d-9982-4ba47e55637b?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:24 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-ff58f16b-05bc-418d-9982-4ba47e55637b?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:25 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/test-share-ff58f16b-05bc-418d-9982-4ba47e55637b?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:24 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/test-share-ff58f16b-05bc-418d-9982-4ba47e55637b?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:25 GMT + - Sat, 17 Oct 2020 01:16:14 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3441,11 +1299,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee89-001a-0024-3391-a22c62000000\nTime:2020-10-15T01:22:25.6617161Z" + request.\nRequestId:833b6869-001a-000b-7323-a421a9000000\nTime:2020-10-17T01:16:13.6121173Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:24 GMT + date: Sat, 17 Oct 2020 01:16:13 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3460,7 +1318,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:25 GMT + - Sat, 17 Oct 2020 01:16:14 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3471,11 +1329,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee8a-001a-0024-3491-a22c62000000\nTime:2020-10-15T01:22:25.7477769Z" + request.\nRequestId:833b686b-001a-000b-7523-a421a9000000\nTime:2020-10-17T01:16:13.6851696Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:24 GMT + date: Sat, 17 Oct 2020 01:16:13 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3490,7 +1348,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:25 GMT + - Sat, 17 Oct 2020 01:16:14 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3501,11 +1359,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee8b-001a-0024-3591-a22c62000000\nTime:2020-10-15T01:22:25.8348388Z" + request.\nRequestId:833b686d-001a-000b-7623-a421a9000000\nTime:2020-10-17T01:16:13.7582207Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:25 GMT + date: Sat, 17 Oct 2020 01:16:13 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3520,7 +1378,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:26 GMT + - Sat, 17 Oct 2020 01:16:14 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3531,11 +1389,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee8c-001a-0024-3691-a22c62000000\nTime:2020-10-15T01:22:25.9229014Z" + request.\nRequestId:833b686e-001a-000b-7723-a421a9000000\nTime:2020-10-17T01:16:13.8272706Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:25 GMT + date: Sat, 17 Oct 2020 01:16:13 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3550,7 +1408,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:26 GMT + - Sat, 17 Oct 2020 01:16:14 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3561,11 +1419,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee8e-001a-0024-3791-a22c62000000\nTime:2020-10-15T01:22:26.0109645Z" + request.\nRequestId:833b686f-001a-000b-7823-a421a9000000\nTime:2020-10-17T01:16:13.8963197Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:25 GMT + date: Sat, 17 Oct 2020 01:16:13 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3580,7 +1438,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:26 GMT + - Sat, 17 Oct 2020 01:16:14 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3591,11 +1449,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee8f-001a-0024-3891-a22c62000000\nTime:2020-10-15T01:22:26.0950238Z" + request.\nRequestId:833b6870-001a-000b-7923-a421a9000000\nTime:2020-10-17T01:16:13.9643676Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:25 GMT + date: Sat, 17 Oct 2020 01:16:13 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3610,7 +1468,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:26 GMT + - Sat, 17 Oct 2020 01:16:14 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3621,11 +1479,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee90-001a-0024-3991-a22c62000000\nTime:2020-10-15T01:22:26.1810854Z" + request.\nRequestId:833b6871-001a-000b-7a23-a421a9000000\nTime:2020-10-17T01:16:14.0434243Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:25 GMT + date: Sat, 17 Oct 2020 01:16:13 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3640,7 +1498,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:26 GMT + - Sat, 17 Oct 2020 01:16:14 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3651,11 +1509,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee91-001a-0024-3a91-a22c62000000\nTime:2020-10-15T01:22:26.2671466Z" + request.\nRequestId:833b6872-001a-000b-7b23-a421a9000000\nTime:2020-10-17T01:16:14.1344890Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:25 GMT + date: Sat, 17 Oct 2020 01:16:14 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3670,7 +1528,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:26 GMT + - Sat, 17 Oct 2020 01:16:14 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3681,11 +1539,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee92-001a-0024-3b91-a22c62000000\nTime:2020-10-15T01:22:26.3522071Z" + request.\nRequestId:833b6873-001a-000b-7c23-a421a9000000\nTime:2020-10-17T01:16:14.2045388Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:25 GMT + date: Sat, 17 Oct 2020 01:16:14 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3700,7 +1558,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:26 GMT + - Sat, 17 Oct 2020 01:16:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3711,11 +1569,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee94-001a-0024-3c91-a22c62000000\nTime:2020-10-15T01:22:26.4362669Z" + request.\nRequestId:833b6874-001a-000b-7d23-a421a9000000\nTime:2020-10-17T01:16:14.2775907Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:25 GMT + date: Sat, 17 Oct 2020 01:16:14 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3730,7 +1588,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:26 GMT + - Sat, 17 Oct 2020 01:16:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3741,11 +1599,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee95-001a-0024-3d91-a22c62000000\nTime:2020-10-15T01:22:26.5233284Z" + request.\nRequestId:833b6875-001a-000b-7e23-a421a9000000\nTime:2020-10-17T01:16:14.3526440Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:25 GMT + date: Sat, 17 Oct 2020 01:16:14 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3760,7 +1618,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:26 GMT + - Sat, 17 Oct 2020 01:16:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3771,11 +1629,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee96-001a-0024-3e91-a22c62000000\nTime:2020-10-15T01:22:26.6083893Z" + request.\nRequestId:833b6877-001a-000b-8023-a421a9000000\nTime:2020-10-17T01:16:14.4256959Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:25 GMT + date: Sat, 17 Oct 2020 01:16:14 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3790,7 +1648,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:26 GMT + - Sat, 17 Oct 2020 01:16:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3801,11 +1659,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee97-001a-0024-3f91-a22c62000000\nTime:2020-10-15T01:22:26.6844434Z" + request.\nRequestId:833b6879-001a-000b-0223-a421a9000000\nTime:2020-10-17T01:16:14.5007493Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:25 GMT + date: Sat, 17 Oct 2020 01:16:14 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3820,7 +1678,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:26 GMT + - Sat, 17 Oct 2020 01:16:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3831,11 +1689,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee98-001a-0024-4091-a22c62000000\nTime:2020-10-15T01:22:26.7735067Z" + request.\nRequestId:833b687a-001a-000b-0323-a421a9000000\nTime:2020-10-17T01:16:14.5738012Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:26 GMT + date: Sat, 17 Oct 2020 01:16:14 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3850,7 +1708,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:26 GMT + - Sat, 17 Oct 2020 01:16:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3861,11 +1719,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee99-001a-0024-4191-a22c62000000\nTime:2020-10-15T01:22:26.8535636Z" + request.\nRequestId:833b687b-001a-000b-0423-a421a9000000\nTime:2020-10-17T01:16:14.6488545Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:26 GMT + date: Sat, 17 Oct 2020 01:16:14 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3880,7 +1738,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:27 GMT + - Sat, 17 Oct 2020 01:16:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3891,11 +1749,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee9a-001a-0024-4291-a22c62000000\nTime:2020-10-15T01:22:26.9416263Z" + request.\nRequestId:833b687c-001a-000b-0523-a421a9000000\nTime:2020-10-17T01:16:14.7169025Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:26 GMT + date: Sat, 17 Oct 2020 01:16:14 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3910,7 +1768,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:27 GMT + - Sat, 17 Oct 2020 01:16:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3921,11 +1779,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee9c-001a-0024-4491-a22c62000000\nTime:2020-10-15T01:22:27.0276867Z" + request.\nRequestId:833b687d-001a-000b-0623-a421a9000000\nTime:2020-10-17T01:16:14.8009626Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:26 GMT + date: Sat, 17 Oct 2020 01:16:14 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3940,7 +1798,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:27 GMT + - Sat, 17 Oct 2020 01:16:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3951,11 +1809,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee9d-001a-0024-4591-a22c62000000\nTime:2020-10-15T01:22:27.1107457Z" + request.\nRequestId:833b687e-001a-000b-0723-a421a9000000\nTime:2020-10-17T01:16:14.8700117Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:26 GMT + date: Sat, 17 Oct 2020 01:16:14 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -3970,7 +1828,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:27 GMT + - Sat, 17 Oct 2020 01:16:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -3981,11 +1839,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee9e-001a-0024-4691-a22c62000000\nTime:2020-10-15T01:22:27.2018099Z" + request.\nRequestId:833b687f-001a-000b-0823-a421a9000000\nTime:2020-10-17T01:16:14.9350575Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:26 GMT + date: Sat, 17 Oct 2020 01:16:14 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -4000,7 +1858,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:27 GMT + - Sat, 17 Oct 2020 01:16:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -4011,11 +1869,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30fee9f-001a-0024-4791-a22c62000000\nTime:2020-10-15T01:22:27.2888713Z" + request.\nRequestId:833b6880-001a-000b-0923-a421a9000000\nTime:2020-10-17T01:16:15.0141142Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:26 GMT + date: Sat, 17 Oct 2020 01:16:14 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -4030,7 +1888,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:27 GMT + - Sat, 17 Oct 2020 01:16:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -4041,11 +1899,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30feea0-001a-0024-4891-a22c62000000\nTime:2020-10-15T01:22:27.3919440Z" + request.\nRequestId:833b6881-001a-000b-0a23-a421a9000000\nTime:2020-10-17T01:16:15.0831632Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:26 GMT + date: Sat, 17 Oct 2020 01:16:14 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -4060,7 +1918,7 @@ interactions: User-Agent: - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) x-ms-date: - - Thu, 15 Oct 2020 01:22:27 GMT + - Sat, 17 Oct 2020 01:16:15 GMT x-ms-delete-snapshots: - include x-ms-version: @@ -4071,11 +1929,11 @@ interactions: body: string: "\uFEFFLeaseIdMissingThere is currently a lease on the file share and no lease ID was specified in the - request.\nRequestId:d30feea1-001a-0024-4991-a22c62000000\nTime:2020-10-15T01:22:27.4810064Z" + request.\nRequestId:833b6883-001a-000b-0b23-a421a9000000\nTime:2020-10-17T01:16:15.1552153Z" headers: content-length: '273' content-type: application/xml - date: Thu, 15 Oct 2020 01:22:26 GMT + date: Sat, 17 Oct 2020 01:16:15 GMT server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 x-ms-error-code: LeaseIdMissing x-ms-version: '2020-02-10' @@ -4084,29 +1942,4 @@ interactions: message: There is currently a lease on the file share and no lease ID was specified in the request. url: https://seanmcccanary3.file.core.windows.net/testf69713fa?restype=share -- request: - body: null - headers: - User-Agent: - - azsdk-python-storage-file-share/12.3.0b2 Python/3.8.5 (Windows-10-10.0.19041-SP0) - x-ms-date: - - Thu, 15 Oct 2020 01:22:27 GMT - x-ms-delete-snapshots: - - include - x-ms-version: - - '2020-02-10' - method: DELETE - uri: https://storagename.file.core.windows.net/utshare1d770f1d?restype=share - response: - body: - string: '' - headers: - content-length: '0' - date: Thu, 15 Oct 2020 01:22:26 GMT - server: Windows-Azure-File/1.0 Microsoft-HTTPAPI/2.0 - x-ms-version: '2020-02-10' - status: - code: 202 - message: Accepted - url: https://seanmcccanary3.file.core.windows.net/utshare1d770f1d?restype=share version: 1 diff --git a/sdk/storage/azure-storage-file-share/tests/test_share.py b/sdk/storage/azure-storage-file-share/tests/test_share.py index fc99335fae83..114653502f4b 100644 --- a/sdk/storage/azure-storage-file-share/tests/test_share.py +++ b/sdk/storage/azure-storage-file-share/tests/test_share.py @@ -21,7 +21,6 @@ AccessPolicy, ShareSasPermissions, ShareAccessTier, - ShareSetPropertiesOptions, ShareServiceClient, ShareDirectoryClient, ShareFileClient, @@ -793,9 +792,9 @@ def test_set_share_properties(self, resource_group, location, storage_account, s share2 = self._create_share("share2") share1.set_share_quota(3) - share1.set_share_properties(ShareSetPropertiesOptions(access_tier="Hot")) + share1.set_share_properties(access_tier="Hot") - share2.set_share_properties(ShareSetPropertiesOptions(access_tier=ShareAccessTier("Cool"), quota=2)) + share2.set_share_properties(access_tier=ShareAccessTier("Cool"), quota=2) # Act props1 = share1.get_share_properties() diff --git a/sdk/storage/azure-storage-file-share/tests/test_share_async.py b/sdk/storage/azure-storage-file-share/tests/test_share_async.py index 03fcb98f2b0e..65d387f8c923 100644 --- a/sdk/storage/azure-storage-file-share/tests/test_share_async.py +++ b/sdk/storage/azure-storage-file-share/tests/test_share_async.py @@ -23,7 +23,6 @@ AccessPolicy, ShareSasPermissions, ShareAccessTier, - ShareSetPropertiesOptions, generate_share_sas, ) from azure.storage.fileshare.aio import ( @@ -872,9 +871,9 @@ async def test_set_share_properties_async(self, resource_group, location, storag share2 = await self._create_share("share2") await share1.set_share_quota(3) - await share1.set_share_properties(ShareSetPropertiesOptions(access_tier="Hot")) + await share1.set_share_properties(access_tier="Hot") - await share2.set_share_properties(ShareSetPropertiesOptions(access_tier=ShareAccessTier("Cool"), quota=2)) + await share2.set_share_properties(access_tier=ShareAccessTier("Cool"), quota=2) # Act props1 = await share1.get_share_properties()