From df5845bc869e2b6192852e27a24c68c0b3853b71 Mon Sep 17 00:00:00 2001 From: Sean McCullough Date: Wed, 14 Oct 2020 18:22:35 -0500 Subject: [PATCH] Restored preview default Share Delete behavior --- .../Azure.Storage.Files.Shares/CHANGELOG.md | 1 + ...ure.Storage.Files.Shares.netstandard2.0.cs | 16 +- .../src/Models/ShareDeleteOptions.cs | 8 - .../src/ShareClient.cs | 20 +-- .../CreateIfNotExistsAsync_Exists.json | 47 ++--- .../CreateIfNotExistsAsync_ExistsAsync.json | 47 ++--- .../CreateIfNotExistsAsync_NotExists.json | 31 ++-- ...CreateIfNotExistsAsync_NotExistsAsync.json | 31 ++-- .../Ctor_ConnectionString_Sas.json | 170 +++++++++--------- .../Ctor_ConnectionString_SasAsync.json | 170 +++++++++--------- .../DeleteIfExistsAsync_Error.json | 17 +- .../DeleteIfExistsAsync_ErrorAsync.json | 17 +- .../DeleteIfExistsAsync_Exists.json | 31 ++-- .../DeleteIfExistsAsync_ExistsAsync.json | 31 ++-- .../DeleteIfExistsAsync_Lease.json | 47 +++-- .../DeleteIfExistsAsync_LeaseAsync.json | 47 +++-- .../DeleteIfExistsAsync_LeaseFailed.json | 47 +++-- .../DeleteIfExistsAsync_LeaseFailedAsync.json | 47 +++-- .../DeleteIfExistsAsync_NotExists.json | 19 +- .../DeleteIfExistsAsync_NotExistsAsync.json | 19 +- .../ShareClientTests/ExistsAsync_Exists.json | 50 +++--- .../ExistsAsync_ExistsAsync.json | 50 +++--- 22 files changed, 483 insertions(+), 480 deletions(-) diff --git a/sdk/storage/Azure.Storage.Files.Shares/CHANGELOG.md b/sdk/storage/Azure.Storage.Files.Shares/CHANGELOG.md index 73774724e3e98..f1ebcc069fc57 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/CHANGELOG.md +++ b/sdk/storage/Azure.Storage.Files.Shares/CHANGELOG.md @@ -4,6 +4,7 @@ - Fixed bug where ShareDirectoryClient.Exists() and ShareFileClient.Exists() would thrown an exception when the directory or file's parent directory didn't exist. - Added seekability to ShareFileClient.OpenRead(). - Renamed ShareClient.SetTier() -> ShareClient.SetProperties(). SetProperties() can be used to set both Share Tier and Share Quota. +- Changed ShareDeleteOptions.IncludeSnapshots -> .ShareSnapshotsDeleteOption, and added option to also delete Share Snapshots that have been leased. ## 12.5.0-preview.1 (2020-09-30) - Added support for service version 2020-02-10. diff --git a/sdk/storage/Azure.Storage.Files.Shares/api/Azure.Storage.Files.Shares.netstandard2.0.cs b/sdk/storage/Azure.Storage.Files.Shares/api/Azure.Storage.Files.Shares.netstandard2.0.cs index 96662c8d1580f..aa9761b623c05 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/api/Azure.Storage.Files.Shares.netstandard2.0.cs +++ b/sdk/storage/Azure.Storage.Files.Shares/api/Azure.Storage.Files.Shares.netstandard2.0.cs @@ -27,20 +27,20 @@ public ShareClient(System.Uri shareUri, Azure.Storage.StorageSharedKeyCredential public virtual System.Threading.Tasks.Task> CreatePermissionAsync(string permission, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response CreateSnapshot(System.Collections.Generic.IDictionary metadata = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> CreateSnapshotAsync(System.Collections.Generic.IDictionary metadata = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response Delete(Azure.Storage.Files.Shares.Models.ShareDeleteOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Delete(Azure.Storage.Files.Shares.Models.ShareDeleteOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public virtual Azure.Response Delete(bool includeSnapshots, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task DeleteAsync(Azure.Storage.Files.Shares.Models.ShareDeleteOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response Delete(bool includeSnapshots = true, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task DeleteAsync(Azure.Storage.Files.Shares.Models.ShareDeleteOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public virtual System.Threading.Tasks.Task DeleteAsync(bool includeSnapshots, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task DeleteAsync(bool includeSnapshots = true, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response DeleteDirectory(string directoryName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task DeleteDirectoryAsync(string directoryName, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.Response DeleteIfExists(Azure.Storage.Files.Shares.Models.ShareDeleteOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response DeleteIfExists(Azure.Storage.Files.Shares.Models.ShareDeleteOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public virtual Azure.Response DeleteIfExists(bool includeSnapshots, System.Threading.CancellationToken cancellationToken) { throw null; } - public virtual System.Threading.Tasks.Task> DeleteIfExistsAsync(Azure.Storage.Files.Shares.Models.ShareDeleteOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.Response DeleteIfExists(bool includeSnapshots = true, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task> DeleteIfExistsAsync(Azure.Storage.Files.Shares.Models.ShareDeleteOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public virtual System.Threading.Tasks.Task> DeleteIfExistsAsync(bool includeSnapshots, System.Threading.CancellationToken cancellationToken) { throw null; } + public virtual System.Threading.Tasks.Task> DeleteIfExistsAsync(bool includeSnapshots = true, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response Exists(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> ExistsAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response> GetAccessPolicy(Azure.Storage.Files.Shares.Models.ShareFileRequestConditions conditions = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } diff --git a/sdk/storage/Azure.Storage.Files.Shares/src/Models/ShareDeleteOptions.cs b/sdk/storage/Azure.Storage.Files.Shares/src/Models/ShareDeleteOptions.cs index 77d64fbeb27a7..226240fac8e1a 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/src/Models/ShareDeleteOptions.cs +++ b/sdk/storage/Azure.Storage.Files.Shares/src/Models/ShareDeleteOptions.cs @@ -23,13 +23,5 @@ public class ShareDeleteOptions /// on deleting the share. /// public ShareFileRequestConditions Conditions { get; set; } - - /// - /// Constructor. - /// - public ShareDeleteOptions() - { - ShareSnapshotsDeleteOption = Models.ShareSnapshotsDeleteOption.Include; - } } } diff --git a/sdk/storage/Azure.Storage.Files.Shares/src/ShareClient.cs b/sdk/storage/Azure.Storage.Files.Shares/src/ShareClient.cs index bf294a6565d8b..350cc7f0df394 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/src/ShareClient.cs +++ b/sdk/storage/Azure.Storage.Files.Shares/src/ShareClient.cs @@ -905,7 +905,7 @@ private async Task> ExistsInternal( /// a failure occurs. /// public virtual Response DeleteIfExists( - ShareDeleteOptions options = default, + ShareDeleteOptions options, CancellationToken cancellationToken = default) => DeleteIfExistsInternal( includeSnapshots: default, @@ -936,7 +936,7 @@ public virtual Response DeleteIfExists( /// a failure occurs. /// public virtual async Task> DeleteIfExistsAsync( - ShareDeleteOptions options = default, + ShareDeleteOptions options, CancellationToken cancellationToken = default) => await DeleteIfExistsInternal( includeSnapshots: default, @@ -971,8 +971,8 @@ await DeleteIfExistsInternal( #pragma warning disable AZC0002 // DO ensure all service methods, both asynchronous and synchronous, take an optional CancellationToken parameter called cancellationToken. public virtual Response DeleteIfExists( #pragma warning restore AZC0002 // DO ensure all service methods, both asynchronous and synchronous, take an optional CancellationToken parameter called cancellationToken. - bool includeSnapshots, - CancellationToken cancellationToken) => + bool includeSnapshots = true, + CancellationToken cancellationToken = default) => DeleteIfExistsInternal( includeSnapshots, shareSnapshotsDeleteOption: default, @@ -1006,8 +1006,8 @@ public virtual Response DeleteIfExists( #pragma warning disable AZC0002 // DO ensure all service methods, both asynchronous and synchronous, take an optional CancellationToken parameter called cancellationToken. public virtual async Task> DeleteIfExistsAsync( #pragma warning restore AZC0002 // DO ensure all service methods, both asynchronous and synchronous, take an optional CancellationToken parameter called cancellationToken. - bool includeSnapshots, - CancellationToken cancellationToken) => + bool includeSnapshots = true, + CancellationToken cancellationToken = default) => await DeleteIfExistsInternal( includeSnapshots, shareSnapshotsDeleteOption: default, @@ -1238,7 +1238,7 @@ private async Task> CreateSnapshotInternal( /// a failure occurs. /// public virtual Response Delete( - ShareDeleteOptions options = default, + ShareDeleteOptions options, CancellationToken cancellationToken = default) => DeleteInternal( includeSnapshots: default, @@ -1271,7 +1271,7 @@ public virtual Response Delete( /// a failure occurs. /// public virtual async Task DeleteAsync( - ShareDeleteOptions options = default, + ShareDeleteOptions options, CancellationToken cancellationToken = default) => await DeleteInternal( includeSnapshots: default, @@ -1306,7 +1306,7 @@ await DeleteInternal( /// [EditorBrowsable(EditorBrowsableState.Never)] public virtual Response Delete( - bool includeSnapshots, + bool includeSnapshots = true, CancellationToken cancellationToken = default) => DeleteInternal( includeSnapshots, @@ -1341,7 +1341,7 @@ public virtual Response Delete( /// [EditorBrowsable(EditorBrowsableState.Never)] public virtual async Task DeleteAsync( - bool includeSnapshots, + bool includeSnapshots = true, CancellationToken cancellationToken = default) => await DeleteInternal( includeSnapshots, diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_Exists.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_Exists.json index e8ea1f3117ef2..3935583b0f1b0 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_Exists.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_Exists.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-6b697143-8e95-6547-0c07-c898c835ccac?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-6b697143-8e95-6547-0c07-c898c835ccac?restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-6b318f8e8efff740b2a75c10ba2efdc8-01d24c6c6093834a-00", + "traceparent": "00-7e9e601e468c4944bfcf347185476023-0c508e37187b6741-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fc99c4fd-4b09-e1d7-884a-dcf782691731", - "x-ms-date": "Tue, 13 Oct 2020 01:41:46 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:40 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -19,31 +19,31 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:46 GMT", - "ETag": "\u00220x8D86F19254FE82F\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:41:46 GMT", + "Date": "Wed, 14 Oct 2020 23:18:41 GMT", + "ETag": "\u00220x8D870977D51217E\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:41 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "fc99c4fd-4b09-e1d7-884a-dcf782691731", - "x-ms-request-id": "375c3f3c-101a-0028-0302-a1bb6a000000", + "x-ms-request-id": "820d1e90-101a-009b-0c80-a25087000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-6b697143-8e95-6547-0c07-c898c835ccac?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-6b697143-8e95-6547-0c07-c898c835ccac?restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-188f53395efeba4eba872250c4d8bce2-ec7d1c6423c1f74c-00", + "traceparent": "00-af0f4ae1e92538488e4a3024b003917e-2db5401723130245-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "049abc80-d09c-1ca2-dd67-3455a3006a92", - "x-ms-date": "Tue, 13 Oct 2020 01:41:47 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:40 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -52,34 +52,35 @@ "ResponseHeaders": { "Content-Length": "222", "Content-Type": "application/xml", - "Date": "Tue, 13 Oct 2020 01:41:46 GMT", + "Date": "Wed, 14 Oct 2020 23:18:41 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "049abc80-d09c-1ca2-dd67-3455a3006a92", "x-ms-error-code": "ShareAlreadyExists", - "x-ms-request-id": "375c3f3f-101a-0028-0402-a1bb6a000000", + "x-ms-request-id": "820d1e93-101a-009b-0d80-a25087000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [ "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CError\u003E\u003CCode\u003EShareAlreadyExists\u003C/Code\u003E\u003CMessage\u003EThe specified share already exists.\n", - "RequestId:375c3f3f-101a-0028-0402-a1bb6a000000\n", - "Time:2020-10-13T01:41:46.5595783Z\u003C/Message\u003E\u003C/Error\u003E" + "RequestId:820d1e93-101a-009b-0d80-a25087000000\n", + "Time:2020-10-14T23:18:41.8657396Z\u003C/Message\u003E\u003C/Error\u003E" ] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-6b697143-8e95-6547-0c07-c898c835ccac?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-6b697143-8e95-6547-0c07-c898c835ccac?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d1adaebe32b4234f96601590aa96368f-8e7b292efadb7e4c-00", + "traceparent": "00-f71439d18e67eb4e92cda704d24f6e11-d46ef1a40ccbc146-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c6770084-13ce-4c95-b893-069efd411f78", - "x-ms-date": "Tue, 13 Oct 2020 01:41:47 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:40 GMT", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -87,13 +88,13 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:46 GMT", + "Date": "Wed, 14 Oct 2020 23:18:41 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "c6770084-13ce-4c95-b893-069efd411f78", - "x-ms-request-id": "375c3f40-101a-0028-0502-a1bb6a000000", + "x-ms-request-id": "820d1e94-101a-009b-0e80-a25087000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] @@ -101,6 +102,6 @@ ], "Variables": { "RandomSeed": "1448772398", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_ExistsAsync.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_ExistsAsync.json index 10b0acdfd521d..30770fef2531a 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_ExistsAsync.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_ExistsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-ef0b5308-4cde-1dd1-0823-6a958530078c?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-ef0b5308-4cde-1dd1-0823-6a958530078c?restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-988dd4935a8ab249bfd760aaf3aa597e-4f82d1a5b969654d-00", + "traceparent": "00-9a1e20213f0c9146a734b6e16f82cfba-d0198f59a05ec74a-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d8ef369-ea4b-bf0f-f549-a9034f18090c", - "x-ms-date": "Tue, 13 Oct 2020 01:42:09 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:45 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -19,31 +19,31 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:08 GMT", - "ETag": "\u00220x8D86F1932D4C6A5\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:42:09 GMT", + "Date": "Wed, 14 Oct 2020 23:18:46 GMT", + "ETag": "\u00220x8D8709780500D60\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:46 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "9d8ef369-ea4b-bf0f-f549-a9034f18090c", - "x-ms-request-id": "ab2f97a3-c01a-0049-7902-a19829000000", + "x-ms-request-id": "6e013f23-301a-000a-4080-a23535000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-ef0b5308-4cde-1dd1-0823-6a958530078c?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-ef0b5308-4cde-1dd1-0823-6a958530078c?restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-58fdf13d683ac34ab744fc9e0e42309b-fa699e14455c324e-00", + "traceparent": "00-8688ff7a1863404c9d878e748a31e288-59ac7eead9e83c4e-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "922bf762-6aa1-b240-eda4-d847526f4322", - "x-ms-date": "Tue, 13 Oct 2020 01:42:09 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:45 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -52,34 +52,35 @@ "ResponseHeaders": { "Content-Length": "222", "Content-Type": "application/xml", - "Date": "Tue, 13 Oct 2020 01:42:08 GMT", + "Date": "Wed, 14 Oct 2020 23:18:46 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "922bf762-6aa1-b240-eda4-d847526f4322", "x-ms-error-code": "ShareAlreadyExists", - "x-ms-request-id": "ab2f97aa-c01a-0049-7d02-a19829000000", + "x-ms-request-id": "6e013f26-301a-000a-4180-a23535000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [ "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CError\u003E\u003CCode\u003EShareAlreadyExists\u003C/Code\u003E\u003CMessage\u003EThe specified share already exists.\n", - "RequestId:ab2f97aa-c01a-0049-7d02-a19829000000\n", - "Time:2020-10-13T01:42:09.3137835Z\u003C/Message\u003E\u003C/Error\u003E" + "RequestId:6e013f26-301a-000a-4180-a23535000000\n", + "Time:2020-10-14T23:18:46.9148534Z\u003C/Message\u003E\u003C/Error\u003E" ] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-ef0b5308-4cde-1dd1-0823-6a958530078c?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-ef0b5308-4cde-1dd1-0823-6a958530078c?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-2ffc7dba95bdf844ad22f5f4843ed390-7c9409dd736ac049-00", + "traceparent": "00-52aff18b3bed7c4ab472cd189d038f72-a2d69503d3354e43-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "57a098a3-77ec-006b-5238-b2840260b971", - "x-ms-date": "Tue, 13 Oct 2020 01:42:10 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:45 GMT", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -87,13 +88,13 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:08 GMT", + "Date": "Wed, 14 Oct 2020 23:18:46 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "57a098a3-77ec-006b-5238-b2840260b971", - "x-ms-request-id": "ab2f97ab-c01a-0049-7e02-a19829000000", + "x-ms-request-id": "6e013f27-301a-000a-4280-a23535000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] @@ -101,6 +102,6 @@ ], "Variables": { "RandomSeed": "730782574", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_NotExists.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_NotExists.json index 9974ff7601071..a2a3dd7fc283e 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_NotExists.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_NotExists.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-cbe71c6a-9d63-05db-7aad-288ec50d39b0?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-cbe71c6a-9d63-05db-7aad-288ec50d39b0?restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-121c872b26cb184f8a2d46367c428cb6-691b33a6e8bb1c43-00", + "traceparent": "00-2f7c39ac66c74045861e9a30d7ac68d6-a50f01d37226594c-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6539aab4-7fa5-3539-70ff-986580463b81", - "x-ms-date": "Tue, 13 Oct 2020 01:41:47 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:40 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -19,31 +19,32 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:46 GMT", - "ETag": "\u00220x8D86F1925B03BCA\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:41:47 GMT", + "Date": "Wed, 14 Oct 2020 23:18:41 GMT", + "ETag": "\u00220x8D870977D9E28E0\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:42 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "6539aab4-7fa5-3539-70ff-986580463b81", - "x-ms-request-id": "2e1f56ba-e01a-003c-2002-a1f305000000", + "x-ms-request-id": "6bc5d45e-101a-006f-5780-a29b71000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-cbe71c6a-9d63-05db-7aad-288ec50d39b0?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-cbe71c6a-9d63-05db-7aad-288ec50d39b0?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a7c294e9a442b24095037081672122fe-7142684906a76f43-00", + "traceparent": "00-fe34961f2dae1e48810b55569c65a2bd-2e3e0548d37c6340-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1adacb2f-d4d4-680b-24ef-5e41f335f1f9", - "x-ms-date": "Tue, 13 Oct 2020 01:41:47 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:41 GMT", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -51,13 +52,13 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:46 GMT", + "Date": "Wed, 14 Oct 2020 23:18:41 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "1adacb2f-d4d4-680b-24ef-5e41f335f1f9", - "x-ms-request-id": "2e1f56be-e01a-003c-2202-a1f305000000", + "x-ms-request-id": "6bc5d462-101a-006f-5880-a29b71000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] @@ -65,6 +66,6 @@ ], "Variables": { "RandomSeed": "836533477", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_NotExistsAsync.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_NotExistsAsync.json index 5859f4149e0e7..ed3cf7edebf48 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_NotExistsAsync.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/CreateIfNotExistsAsync_NotExistsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-0c2a6f63-22a8-4225-b28c-cbae8e360dc2?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-0c2a6f63-22a8-4225-b28c-cbae8e360dc2?restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f37daec9f7341a4eaef6f795ca4b1d8d-9b67191169d4ba45-00", + "traceparent": "00-8f8819d7d5a3844b9a993029533d3954-0ae27b1da520f54c-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "84f04a4f-83b3-b125-80fe-f3f69048b474", - "x-ms-date": "Tue, 13 Oct 2020 01:42:10 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:45 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -19,31 +19,32 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:09 GMT", - "ETag": "\u00220x8D86F193343B2BA\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:42:09 GMT", + "Date": "Wed, 14 Oct 2020 23:18:46 GMT", + "ETag": "\u00220x8D870978095F8D0\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:47 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "84f04a4f-83b3-b125-80fe-f3f69048b474", - "x-ms-request-id": "8fac6a54-e01a-0085-3302-a1f71f000000", + "x-ms-request-id": "50ae7753-601a-0091-7780-a2f430000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-0c2a6f63-22a8-4225-b28c-cbae8e360dc2?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-0c2a6f63-22a8-4225-b28c-cbae8e360dc2?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d62b0d586424194b9173c90bc01fe6ea-c75d380980280945-00", + "traceparent": "00-13eb23243890f340bbc6ae9a9454372e-51513f91c8c28649-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "435f6a27-8845-870e-ce2d-829b391c4b4d", - "x-ms-date": "Tue, 13 Oct 2020 01:42:10 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:46 GMT", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -51,13 +52,13 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:09 GMT", + "Date": "Wed, 14 Oct 2020 23:18:46 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "435f6a27-8845-870e-ce2d-829b391c4b4d", - "x-ms-request-id": "8fac6a59-e01a-0085-3602-a1f71f000000", + "x-ms-request-id": "50ae7756-601a-0091-7880-a2f430000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] @@ -65,6 +66,6 @@ ], "Variables": { "RandomSeed": "1741679993", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/Ctor_ConnectionString_Sas.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/Ctor_ConnectionString_Sas.json index ab45a2b5c98fa..855162db9135c 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/Ctor_ConnectionString_Sas.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/Ctor_ConnectionString_Sas.json @@ -1,12 +1,12 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-2bcb781c-e8f8-d582-ea45-ceb420705bf8?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A41%3A48Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-2bcb781c-e8f8-d582-ea45-ceb420705bf8?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A41Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", "RequestMethod": "PUT", "RequestHeaders": { - "traceparent": "00-b873b696c87c0a47b552b7cc4b81afd8-4c2a0a855aa66f40-00", + "traceparent": "00-344e23367d581e4f8f552a671e125fcb-9a7935644c153741-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fc7722df-8740-4ec4-ce18-220ba5ed8510", @@ -17,26 +17,26 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:47 GMT", - "ETag": "\u00220x8D86F1925FF6872\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:41:47 GMT", + "Date": "Wed, 14 Oct 2020 23:18:42 GMT", + "ETag": "\u00220x8D870977DE988D4\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:42 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "fc7722df-8740-4ec4-ce18-220ba5ed8510", - "x-ms-request-id": "9c90d0cf-a01a-003d-7f02-a1acd9000000", + "x-ms-request-id": "07d8e6a0-801a-0042-4a80-a22802000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-2bcb781c-e8f8-d582-ea45-ceb420705bf8/test-directory-c4d75df7-7eff-4a4a-5cc8-4154749e64f6?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A41%3A48Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=directory", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-2bcb781c-e8f8-d582-ea45-ceb420705bf8/test-directory-c4d75df7-7eff-4a4a-5cc8-4154749e64f6?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A41Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=directory", "RequestMethod": "PUT", "RequestHeaders": { - "traceparent": "00-b66e31761b685e41842251634546d96c-9c880df08ba8f64c-00", + "traceparent": "00-f3656ec629f0fd48ab4101c4e691ff18-2b9816dd4fc7e54b-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f0144977-783b-603d-d72d-9f77456fd930", @@ -51,34 +51,34 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:47 GMT", - "ETag": "\u00220x8D86F1926074720\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:41:47 GMT", + "Date": "Wed, 14 Oct 2020 23:18:42 GMT", + "ETag": "\u00220x8D870977DF5D674\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:42 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "f0144977-783b-603d-d72d-9f77456fd930", "x-ms-file-attributes": "Directory", - "x-ms-file-change-time": "2020-10-13T01:41:47.5801888Z", - "x-ms-file-creation-time": "2020-10-13T01:41:47.5801888Z", + "x-ms-file-change-time": "2020-10-14T23:18:42.8561012Z", + "x-ms-file-creation-time": "2020-10-14T23:18:42.8561012Z", "x-ms-file-id": "13835128424026341376", - "x-ms-file-last-write-time": "2020-10-13T01:41:47.5801888Z", + "x-ms-file-last-write-time": "2020-10-14T23:18:42.8561012Z", "x-ms-file-parent-id": "0", - "x-ms-file-permission-key": "17860367565182308406*11459378189709739967", - "x-ms-request-id": "9c90d0d2-a01a-003d-8002-a1acd9000000", + "x-ms-file-permission-key": "9736643157039165508*17277118026500876237", + "x-ms-request-id": "07d8e6a5-801a-0042-4b80-a22802000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-8c445b5e-ce51-b2a9-09ed-43944fda4d71?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A41%3A48Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-8c445b5e-ce51-b2a9-09ed-43944fda4d71?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A41Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", "RequestMethod": "PUT", "RequestHeaders": { - "traceparent": "00-003194e0e712bd408e09b2f18bdb5dfc-f94ff34650369b46-00", + "traceparent": "00-2acfce10fab37c4fad6d355b365bf4f2-29b9287d1d73c146-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c6e1de48-3798-1f25-9c6e-c3b94b61f122", @@ -89,26 +89,26 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:47 GMT", - "ETag": "\u00220x8D86F1926344C83\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:41:47 GMT", + "Date": "Wed, 14 Oct 2020 23:18:42 GMT", + "ETag": "\u00220x8D870977E2F89B0\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:43 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "c6e1de48-3798-1f25-9c6e-c3b94b61f122", - "x-ms-request-id": "e637f470-701a-0001-3602-a1851e000000", + "x-ms-request-id": "85fdda21-001a-0001-1d80-a2ce5e000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-8c445b5e-ce51-b2a9-09ed-43944fda4d71/test-directory-618536d5-af92-3fa6-7024-d7e30277f473?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A41%3A48Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=directory", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-8c445b5e-ce51-b2a9-09ed-43944fda4d71/test-directory-618536d5-af92-3fa6-7024-d7e30277f473?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A41Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=directory", "RequestMethod": "PUT", "RequestHeaders": { - "traceparent": "00-609f346288d7f244ad3acae1c1bb1620-a3ebec8f4343d041-00", + "traceparent": "00-967616e5d3d8be4fa9c8984bb91b009c-0ba1a8b1f6a02548-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7b603363-ae33-9995-37a2-557360421c25", @@ -123,34 +123,34 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:47 GMT", - "ETag": "\u00220x8D86F19263BCE40\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:41:47 GMT", + "Date": "Wed, 14 Oct 2020 23:18:42 GMT", + "ETag": "\u00220x8D870977E3ED38D\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:43 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "7b603363-ae33-9995-37a2-557360421c25", "x-ms-file-attributes": "Directory", - "x-ms-file-change-time": "2020-10-13T01:41:47.9244352Z", - "x-ms-file-creation-time": "2020-10-13T01:41:47.9244352Z", + "x-ms-file-change-time": "2020-10-14T23:18:43.3344397Z", + "x-ms-file-creation-time": "2020-10-14T23:18:43.3344397Z", "x-ms-file-id": "13835128424026341376", - "x-ms-file-last-write-time": "2020-10-13T01:41:47.9244352Z", + "x-ms-file-last-write-time": "2020-10-14T23:18:43.3344397Z", "x-ms-file-parent-id": "0", - "x-ms-file-permission-key": "17860367565182308406*11459378189709739967", - "x-ms-request-id": "e637f480-701a-0001-4402-a1851e000000", + "x-ms-file-permission-key": "9736643157039165508*17277118026500876237", + "x-ms-request-id": "85fdda2f-001a-0001-2980-a2ce5e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-2bcb781c-e8f8-d582-ea45-ceb420705bf8/test-directory-c4d75df7-7eff-4a4a-5cc8-4154749e64f6/test-file-9f5b2bb3-5838-a6ad-2c81-2ddc6fb55768?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A41%3A48Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-2bcb781c-e8f8-d582-ea45-ceb420705bf8/test-directory-c4d75df7-7eff-4a4a-5cc8-4154749e64f6/test-file-9f5b2bb3-5838-a6ad-2c81-2ddc6fb55768?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A41Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized", "RequestMethod": "PUT", "RequestHeaders": { - "traceparent": "00-76e6bf0c0d0ec9448fcfc5c9d77948a7-2dfa67fd643efc40-00", + "traceparent": "00-8ffef90e47d0ab4dac2431784783fb9d-c277860eea2c5e49-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a4211129-b5cc-7264-822a-f299b57e543d", @@ -167,34 +167,34 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:47 GMT", - "ETag": "\u00220x8D86F192643BEF5\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:41:47 GMT", + "Date": "Wed, 14 Oct 2020 23:18:42 GMT", + "ETag": "\u00220x8D870977E4B800F\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:43 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "a4211129-b5cc-7264-822a-f299b57e543d", "x-ms-file-attributes": "Archive", - "x-ms-file-change-time": "2020-10-13T01:41:47.9764725Z", - "x-ms-file-creation-time": "2020-10-13T01:41:47.9764725Z", + "x-ms-file-change-time": "2020-10-14T23:18:43.4174991Z", + "x-ms-file-creation-time": "2020-10-14T23:18:43.4174991Z", "x-ms-file-id": "11529285414812647424", - "x-ms-file-last-write-time": "2020-10-13T01:41:47.9764725Z", + "x-ms-file-last-write-time": "2020-10-14T23:18:43.4174991Z", "x-ms-file-parent-id": "13835128424026341376", - "x-ms-file-permission-key": "4010187179898695473*11459378189709739967", - "x-ms-request-id": "9c90d0d5-a01a-003d-0202-a1acd9000000", + "x-ms-file-permission-key": "5144323600546320195*17277118026500876237", + "x-ms-request-id": "07d8e6a7-801a-0042-4d80-a22802000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-8c445b5e-ce51-b2a9-09ed-43944fda4d71/test-directory-618536d5-af92-3fa6-7024-d7e30277f473/test-file-46484f7a-5fcd-444d-66cb-a3d4218a8d6f?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A41%3A48Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-8c445b5e-ce51-b2a9-09ed-43944fda4d71/test-directory-618536d5-af92-3fa6-7024-d7e30277f473/test-file-46484f7a-5fcd-444d-66cb-a3d4218a8d6f?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A41Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized", "RequestMethod": "PUT", "RequestHeaders": { - "traceparent": "00-e9599e36510689449f02951627e5a257-8605ac749cb4d442-00", + "traceparent": "00-3941269c4eed704cb9af6e05c8204a90-b289b45dd41fc546-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ead9abaf-6c5f-15bb-1fd0-5169162bcac3", @@ -211,35 +211,35 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:47 GMT", - "ETag": "\u00220x8D86F19264A9E08\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:41:48 GMT", + "Date": "Wed, 14 Oct 2020 23:18:42 GMT", + "ETag": "\u00220x8D870977E571AE8\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:43 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "ead9abaf-6c5f-15bb-1fd0-5169162bcac3", "x-ms-file-attributes": "Archive", - "x-ms-file-change-time": "2020-10-13T01:41:48.0215048Z", - "x-ms-file-creation-time": "2020-10-13T01:41:48.0215048Z", + "x-ms-file-change-time": "2020-10-14T23:18:43.4935528Z", + "x-ms-file-creation-time": "2020-10-14T23:18:43.4935528Z", "x-ms-file-id": "11529285414812647424", - "x-ms-file-last-write-time": "2020-10-13T01:41:48.0215048Z", + "x-ms-file-last-write-time": "2020-10-14T23:18:43.4935528Z", "x-ms-file-parent-id": "13835128424026341376", - "x-ms-file-permission-key": "4010187179898695473*11459378189709739967", - "x-ms-request-id": "e637f48f-701a-0001-5102-a1851e000000", + "x-ms-file-permission-key": "5144323600546320195*17277118026500876237", + "x-ms-request-id": "85fdda3b-001a-0001-3280-a2ce5e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-2bcb781c-e8f8-d582-ea45-ceb420705bf8/test-directory-c4d75df7-7eff-4a4a-5cc8-4154749e64f6/test-file-9f5b2bb3-5838-a6ad-2c81-2ddc6fb55768?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A41%3A48Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026comp=range", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-2bcb781c-e8f8-d582-ea45-ceb420705bf8/test-directory-c4d75df7-7eff-4a4a-5cc8-4154749e64f6/test-file-9f5b2bb3-5838-a6ad-2c81-2ddc6fb55768?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A41Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026comp=range", "RequestMethod": "PUT", "RequestHeaders": { "Content-Length": "1024", - "traceparent": "00-178354dc68240a478556b0e6d8252bbb-095c723c34ca714a-00", + "traceparent": "00-ad30cff01aa32240a9de8d5c9f1aedf0-1286879e271a9647-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "09ea296b-6aa5-12de-9ee4-85aea58f2593", @@ -253,28 +253,28 @@ "ResponseHeaders": { "Content-Length": "0", "Content-MD5": "WMJY7c4v/Vbien5q5nnFyQ==", - "Date": "Tue, 13 Oct 2020 01:41:47 GMT", - "ETag": "\u00220x8D86F19265463D4\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:41:48 GMT", + "Date": "Wed, 14 Oct 2020 23:18:42 GMT", + "ETag": "\u00220x8D870977E63EE7B\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:43 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "09ea296b-6aa5-12de-9ee4-85aea58f2593", - "x-ms-request-id": "9c90d0d6-a01a-003d-0302-a1acd9000000", + "x-ms-request-id": "07d8e6a9-801a-0042-4f80-a22802000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-8c445b5e-ce51-b2a9-09ed-43944fda4d71/test-directory-618536d5-af92-3fa6-7024-d7e30277f473/test-file-46484f7a-5fcd-444d-66cb-a3d4218a8d6f?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A41%3A48Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026comp=range", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-8c445b5e-ce51-b2a9-09ed-43944fda4d71/test-directory-618536d5-af92-3fa6-7024-d7e30277f473/test-file-46484f7a-5fcd-444d-66cb-a3d4218a8d6f?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A41Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026comp=range", "RequestMethod": "PUT", "RequestHeaders": { "Content-Length": "1024", - "traceparent": "00-817b0e692fc0f04dbb301177fff6c7c1-b844e177c465bb4d-00", + "traceparent": "00-71190864db7aaa41aa0a57e13861b7e0-97e31550f1cd4d43-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "edfeca95-c041-d21e-e844-a74db21b8c88", @@ -288,30 +288,31 @@ "ResponseHeaders": { "Content-Length": "0", "Content-MD5": "WMJY7c4v/Vbien5q5nnFyQ==", - "Date": "Tue, 13 Oct 2020 01:41:47 GMT", - "ETag": "\u00220x8D86F192663F714\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:41:48 GMT", + "Date": "Wed, 14 Oct 2020 23:18:43 GMT", + "ETag": "\u00220x8D870977E704CC1\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:43 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "edfeca95-c041-d21e-e844-a74db21b8c88", - "x-ms-request-id": "e637f4a6-701a-0001-6802-a1851e000000", + "x-ms-request-id": "85fdda3f-001a-0001-3680-a2ce5e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-2bcb781c-e8f8-d582-ea45-ceb420705bf8?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A41%3A48Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-2bcb781c-e8f8-d582-ea45-ceb420705bf8?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A41Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", "RequestMethod": "DELETE", "RequestHeaders": { - "traceparent": "00-47c99e7c3e2b824c946579de8ed7118d-471859c848a9424d-00", + "traceparent": "00-222e9757040c5f4492ef5951b38e04de-efc838567d697043-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "db196b0b-3790-e252-974e-8860d149c4c5", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -319,27 +320,28 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:47 GMT", + "Date": "Wed, 14 Oct 2020 23:18:43 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "db196b0b-3790-e252-974e-8860d149c4c5", - "x-ms-request-id": "9c90d0d8-a01a-003d-0402-a1acd9000000", + "x-ms-request-id": "07d8e6ac-801a-0042-5280-a22802000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-8c445b5e-ce51-b2a9-09ed-43944fda4d71?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A41%3A48Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-8c445b5e-ce51-b2a9-09ed-43944fda4d71?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A41Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", "RequestMethod": "DELETE", "RequestHeaders": { - "traceparent": "00-2b1661318c6e5f469b0b75cd0b8f9dd0-780c5147fa45f740-00", + "traceparent": "00-287d2178f7feea459e00d78c284b9087-d227f45017650e43-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "464165b9-b102-88f8-ffd7-ef9441812047", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -347,21 +349,21 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:47 GMT", + "Date": "Wed, 14 Oct 2020 23:18:43 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "464165b9-b102-88f8-ffd7-ef9441812047", - "x-ms-request-id": "e637f4c1-701a-0001-0302-a1851e000000", + "x-ms-request-id": "85fdda48-001a-0001-3f80-a2ce5e000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2020-10-12T20:41:48.0527235-05:00", + "DateTimeOffsetNow": "2020-10-14T18:18:41.1597460-05:00", "RandomSeed": "942098104", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/Ctor_ConnectionString_SasAsync.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/Ctor_ConnectionString_SasAsync.json index d54e4d2f99fd3..9b5792154c78c 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/Ctor_ConnectionString_SasAsync.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/Ctor_ConnectionString_SasAsync.json @@ -1,12 +1,12 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-57432a83-9509-6349-c1c5-cdac69650817?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A42%3A10Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-57432a83-9509-6349-c1c5-cdac69650817?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A46Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", "RequestMethod": "PUT", "RequestHeaders": { - "traceparent": "00-a2cc364aa88aaa42b7e9c1c4ba85c431-40db8995bd371e48-00", + "traceparent": "00-0f7a40e0293e01488414454015454aee-0c400ca8e205aa41-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dc1b0a22-6caf-0d59-68fb-e9086933953a", @@ -17,26 +17,26 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:10 GMT", - "ETag": "\u00220x8D86F193366CDC6\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:42:10 GMT", + "Date": "Wed, 14 Oct 2020 23:18:47 GMT", + "ETag": "\u00220x8D8709780CE3B1E\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:47 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "dc1b0a22-6caf-0d59-68fb-e9086933953a", - "x-ms-request-id": "74d18ea4-601a-000d-2202-a11216000000", + "x-ms-request-id": "a49d4f8b-601a-0028-5a80-a2f02a000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-57432a83-9509-6349-c1c5-cdac69650817/test-directory-367660f3-660e-ed85-e0ec-bdd8a3c783ad?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A42%3A10Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=directory", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-57432a83-9509-6349-c1c5-cdac69650817/test-directory-367660f3-660e-ed85-e0ec-bdd8a3c783ad?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A46Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=directory", "RequestMethod": "PUT", "RequestHeaders": { - "traceparent": "00-dc1529fb7f39ce4f8a4aadd6e36ad409-be67e5d226a7e440-00", + "traceparent": "00-b430a40836c8ed4e93651dde7cb6643f-0e7796ac46cb5846-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6507988d-644a-bcd9-842e-fcc2af8169a1", @@ -51,34 +51,34 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:10 GMT", - "ETag": "\u00220x8D86F19336D9AC9\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:42:10 GMT", + "Date": "Wed, 14 Oct 2020 23:18:47 GMT", + "ETag": "\u00220x8D8709780DC3EB2\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:47 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "6507988d-644a-bcd9-842e-fcc2af8169a1", "x-ms-file-attributes": "Directory", - "x-ms-file-change-time": "2020-10-13T01:42:10.0611785Z", - "x-ms-file-creation-time": "2020-10-13T01:42:10.0611785Z", + "x-ms-file-change-time": "2020-10-14T23:18:47.7215410Z", + "x-ms-file-creation-time": "2020-10-14T23:18:47.7215410Z", "x-ms-file-id": "13835128424026341376", - "x-ms-file-last-write-time": "2020-10-13T01:42:10.0611785Z", + "x-ms-file-last-write-time": "2020-10-14T23:18:47.7215410Z", "x-ms-file-parent-id": "0", - "x-ms-file-permission-key": "17860367565182308406*11459378189709739967", - "x-ms-request-id": "74d18ea7-601a-000d-2302-a11216000000", + "x-ms-file-permission-key": "9736643157039165508*17277118026500876237", + "x-ms-request-id": "a49d4f8e-601a-0028-5b80-a2f02a000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-f7ffaa57-76fb-48c1-6e00-2c16ce86d26d?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A42%3A10Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-f7ffaa57-76fb-48c1-6e00-2c16ce86d26d?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A46Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", "RequestMethod": "PUT", "RequestHeaders": { - "traceparent": "00-f17bb1665664bc4ca92c5dc144d5a4c1-ed8e76eee8f1074b-00", + "traceparent": "00-121ebc071cb3124480a9e81842652dcf-ef66960c1c0ea247-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "451e97e0-841e-bbc7-c808-c29d06158f95", @@ -89,26 +89,26 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:10 GMT", - "ETag": "\u00220x8D86F1933AD202E\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:42:10 GMT", + "Date": "Wed, 14 Oct 2020 23:18:48 GMT", + "ETag": "\u00220x8D870978123C4DD\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:48 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "451e97e0-841e-bbc7-c808-c29d06158f95", - "x-ms-request-id": "7b6ac4d9-401a-0035-5302-a1b6d6000000", + "x-ms-request-id": "a39b8516-401a-0010-7580-a254ea000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-f7ffaa57-76fb-48c1-6e00-2c16ce86d26d/test-directory-f87fddc1-5e36-59e1-d9a2-ba07929205a8?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A42%3A10Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=directory", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-f7ffaa57-76fb-48c1-6e00-2c16ce86d26d/test-directory-f87fddc1-5e36-59e1-d9a2-ba07929205a8?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A46Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=directory", "RequestMethod": "PUT", "RequestHeaders": { - "traceparent": "00-ba93b50577427a4997810f32292fdc8a-207be75717490445-00", + "traceparent": "00-e5196c1d2e014644806ebc2014f6df73-38e64aba9836ea4d-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1b7baaa8-217a-8220-b6c4-6b7bcabf2935", @@ -123,34 +123,34 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:10 GMT", - "ETag": "\u00220x8D86F19342796E7\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:42:11 GMT", + "Date": "Wed, 14 Oct 2020 23:18:48 GMT", + "ETag": "\u00220x8D870978137194B\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:48 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "1b7baaa8-217a-8220-b6c4-6b7bcabf2935", "x-ms-file-attributes": "Directory", - "x-ms-file-change-time": "2020-10-13T01:42:11.2800487Z", - "x-ms-file-creation-time": "2020-10-13T01:42:11.2800487Z", + "x-ms-file-change-time": "2020-10-14T23:18:48.3169611Z", + "x-ms-file-creation-time": "2020-10-14T23:18:48.3169611Z", "x-ms-file-id": "13835128424026341376", - "x-ms-file-last-write-time": "2020-10-13T01:42:11.2800487Z", + "x-ms-file-last-write-time": "2020-10-14T23:18:48.3169611Z", "x-ms-file-parent-id": "0", - "x-ms-file-permission-key": "17860367565182308406*11459378189709739967", - "x-ms-request-id": "7b6ac4e3-401a-0035-5702-a1b6d6000000", + "x-ms-file-permission-key": "9736643157039165508*17277118026500876237", + "x-ms-request-id": "a39b851d-401a-0010-7980-a254ea000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-57432a83-9509-6349-c1c5-cdac69650817/test-directory-367660f3-660e-ed85-e0ec-bdd8a3c783ad/test-file-24a33b77-d13f-fecf-a2ad-5dc32cef6c1e?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A42%3A10Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-57432a83-9509-6349-c1c5-cdac69650817/test-directory-367660f3-660e-ed85-e0ec-bdd8a3c783ad/test-file-24a33b77-d13f-fecf-a2ad-5dc32cef6c1e?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A46Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized", "RequestMethod": "PUT", "RequestHeaders": { - "traceparent": "00-a7668af35256bf4ca670a30092178987-e5b8f47be5f62e48-00", + "traceparent": "00-04a046884f23b747929201e91f5fce43-767606782353434f-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f566c45e-6771-33a7-8d1c-52080e712d2e", @@ -167,34 +167,34 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:11 GMT", - "ETag": "\u00220x8D86F19342E00B8\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:42:11 GMT", + "Date": "Wed, 14 Oct 2020 23:18:48 GMT", + "ETag": "\u00220x8D87097814573CD\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:48 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "f566c45e-6771-33a7-8d1c-52080e712d2e", "x-ms-file-attributes": "Archive", - "x-ms-file-change-time": "2020-10-13T01:42:11.3220792Z", - "x-ms-file-creation-time": "2020-10-13T01:42:11.3220792Z", + "x-ms-file-change-time": "2020-10-14T23:18:48.4110285Z", + "x-ms-file-creation-time": "2020-10-14T23:18:48.4110285Z", "x-ms-file-id": "11529285414812647424", - "x-ms-file-last-write-time": "2020-10-13T01:42:11.3220792Z", + "x-ms-file-last-write-time": "2020-10-14T23:18:48.4110285Z", "x-ms-file-parent-id": "13835128424026341376", - "x-ms-file-permission-key": "4010187179898695473*11459378189709739967", - "x-ms-request-id": "74d18eb0-601a-000d-2902-a11216000000", + "x-ms-file-permission-key": "5144323600546320195*17277118026500876237", + "x-ms-request-id": "a49d4f90-601a-0028-5c80-a2f02a000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-f7ffaa57-76fb-48c1-6e00-2c16ce86d26d/test-directory-f87fddc1-5e36-59e1-d9a2-ba07929205a8/test-file-00091a03-fa32-9ac4-dcc1-09a71b2afe14?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A42%3A10Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-f7ffaa57-76fb-48c1-6e00-2c16ce86d26d/test-directory-f87fddc1-5e36-59e1-d9a2-ba07929205a8/test-file-00091a03-fa32-9ac4-dcc1-09a71b2afe14?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A46Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized", "RequestMethod": "PUT", "RequestHeaders": { - "traceparent": "00-9f4adc297ced414d974b1425b5b5bb83-11ed7bee1ba6cc4b-00", + "traceparent": "00-aaffaaec2145ef45b46c9c9f5906f7bd-65ccb11dee662f4e-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f2f2be7f-6790-ca24-0197-6f51b5167340", @@ -211,35 +211,35 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:11 GMT", - "ETag": "\u00220x8D86F19343506DA\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:42:11 GMT", + "Date": "Wed, 14 Oct 2020 23:18:48 GMT", + "ETag": "\u00220x8D87097815183EE\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:48 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "f2f2be7f-6790-ca24-0197-6f51b5167340", "x-ms-file-attributes": "Archive", - "x-ms-file-change-time": "2020-10-13T01:42:11.3681114Z", - "x-ms-file-creation-time": "2020-10-13T01:42:11.3681114Z", + "x-ms-file-change-time": "2020-10-14T23:18:48.4900846Z", + "x-ms-file-creation-time": "2020-10-14T23:18:48.4900846Z", "x-ms-file-id": "11529285414812647424", - "x-ms-file-last-write-time": "2020-10-13T01:42:11.3681114Z", + "x-ms-file-last-write-time": "2020-10-14T23:18:48.4900846Z", "x-ms-file-parent-id": "13835128424026341376", - "x-ms-file-permission-key": "4010187179898695473*11459378189709739967", - "x-ms-request-id": "7b6ac4e5-401a-0035-5902-a1b6d6000000", + "x-ms-file-permission-key": "5144323600546320195*17277118026500876237", + "x-ms-request-id": "a39b851e-401a-0010-7a80-a254ea000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-57432a83-9509-6349-c1c5-cdac69650817/test-directory-367660f3-660e-ed85-e0ec-bdd8a3c783ad/test-file-24a33b77-d13f-fecf-a2ad-5dc32cef6c1e?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A42%3A10Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026comp=range", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-57432a83-9509-6349-c1c5-cdac69650817/test-directory-367660f3-660e-ed85-e0ec-bdd8a3c783ad/test-file-24a33b77-d13f-fecf-a2ad-5dc32cef6c1e?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A46Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026comp=range", "RequestMethod": "PUT", "RequestHeaders": { "Content-Length": "1024", - "traceparent": "00-1581c7182481ef448e76b39532b182ac-55488bfca0d03147-00", + "traceparent": "00-4f5987b0c40eeb46902ef5f83cd9f0ee-9d1dcffa07f99a4c-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "50894102-3b7f-a39d-b2ee-02e4e3f65954", @@ -253,28 +253,28 @@ "ResponseHeaders": { "Content-Length": "0", "Content-MD5": "RiN\u002B80WrGfymIBM7AVHBeA==", - "Date": "Tue, 13 Oct 2020 01:42:11 GMT", - "ETag": "\u00220x8D86F19343C3420\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:42:11 GMT", + "Date": "Wed, 14 Oct 2020 23:18:48 GMT", + "ETag": "\u00220x8D8709781602C91\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:48 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "50894102-3b7f-a39d-b2ee-02e4e3f65954", - "x-ms-request-id": "74d18eb1-601a-000d-2a02-a11216000000", + "x-ms-request-id": "a49d4f92-601a-0028-5d80-a2f02a000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-f7ffaa57-76fb-48c1-6e00-2c16ce86d26d/test-directory-f87fddc1-5e36-59e1-d9a2-ba07929205a8/test-file-00091a03-fa32-9ac4-dcc1-09a71b2afe14?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A42%3A10Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026comp=range", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-f7ffaa57-76fb-48c1-6e00-2c16ce86d26d/test-directory-f87fddc1-5e36-59e1-d9a2-ba07929205a8/test-file-00091a03-fa32-9ac4-dcc1-09a71b2afe14?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A46Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026comp=range", "RequestMethod": "PUT", "RequestHeaders": { "Content-Length": "1024", - "traceparent": "00-0abb6c4a0ff8d1409856112d981ce680-e0c43d2862d24e43-00", + "traceparent": "00-a3432f4fa87b62478555746a501ba706-74d52c66917d8c46-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "734fb0f0-238c-6ec1-b4a4-a90045e92886", @@ -288,30 +288,31 @@ "ResponseHeaders": { "Content-Length": "0", "Content-MD5": "RiN\u002B80WrGfymIBM7AVHBeA==", - "Date": "Tue, 13 Oct 2020 01:42:11 GMT", - "ETag": "\u00220x8D86F193442C504\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:42:11 GMT", + "Date": "Wed, 14 Oct 2020 23:18:48 GMT", + "ETag": "\u00220x8D87097817A21DA\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:48 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "734fb0f0-238c-6ec1-b4a4-a90045e92886", - "x-ms-request-id": "7b6ac4e6-401a-0035-5a02-a1b6d6000000", + "x-ms-request-id": "a39b851f-401a-0010-7b80-a254ea000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-57432a83-9509-6349-c1c5-cdac69650817?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A42%3A10Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-57432a83-9509-6349-c1c5-cdac69650817?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A46Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", "RequestMethod": "DELETE", "RequestHeaders": { - "traceparent": "00-6ba0ea20d9cc2245b938c4ebb4fe3c44-aaebd674f8c2f542-00", + "traceparent": "00-e84176ec62ffc549ba45df9b3fd22dc8-1c2fb3f536971b48-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "33f3b15c-e5a6-b8c7-2cde-84e11422f107", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -319,27 +320,28 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:11 GMT", + "Date": "Wed, 14 Oct 2020 23:18:48 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "33f3b15c-e5a6-b8c7-2cde-84e11422f107", - "x-ms-request-id": "74d18eb2-601a-000d-2b02-a11216000000", + "x-ms-request-id": "a49d4f95-601a-0028-5e80-a2f02a000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-f7ffaa57-76fb-48c1-6e00-2c16ce86d26d?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-13T02%3A42%3A10Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-f7ffaa57-76fb-48c1-6e00-2c16ce86d26d?sv=2020-02-10\u0026ss=bfqt\u0026srt=sco\u0026spr=https\u0026se=2020-10-15T00%3A18%3A46Z\u0026sp=rwdxlacuptf\u0026sig=Sanitized\u0026restype=share", "RequestMethod": "DELETE", "RequestHeaders": { - "traceparent": "00-c75b0623323e89429c2de27fa4ed69a0-30fb76efe3adf547-00", + "traceparent": "00-48de046ece92874cb0b87c931e93516e-3c2c2dce0e8d6f4a-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "94a4f9de-f5f5-18df-6e8e-1e86e8552efb", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -347,21 +349,21 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:11 GMT", + "Date": "Wed, 14 Oct 2020 23:18:49 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "94a4f9de-f5f5-18df-6e8e-1e86e8552efb", - "x-ms-request-id": "7b6ac4e7-401a-0035-5b02-a1b6d6000000", + "x-ms-request-id": "a39b8520-401a-0010-7c80-a254ea000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] } ], "Variables": { - "DateTimeOffsetNow": "2020-10-12T20:42:10.5367074-05:00", + "DateTimeOffsetNow": "2020-10-14T18:18:46.1310682-05:00", "RandomSeed": "194910505", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_Error.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_Error.json index c404d0082aaa3..67136755dacd6 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_Error.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_Error.json @@ -1,15 +1,16 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-f74aa3a0-40b4-78e1-6013-f540a37e3c9c?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-f74aa3a0-40b4-78e1-6013-f540a37e3c9c?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { - "traceparent": "00-2dc10fa595499c4fbdd22ca09e8e87ea-ea2275a750e51f4f-00", + "traceparent": "00-6879c978bfedb442899d1445d563dc26-279e28234c69264c-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3fba11b6-389e-9419-af5c-aa24c93841b5", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -18,25 +19,25 @@ "ResponseHeaders": { "Content-Length": "223", "Content-Type": "application/xml", - "Date": "Tue, 13 Oct 2020 01:41:56 GMT", + "Date": "Wed, 14 Oct 2020 23:18:43 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "3fba11b6-389e-9419-af5c-aa24c93841b5", "x-ms-error-code": "ResourceNotFound", - "x-ms-request-id": "a30e3a84-401a-0047-4e02-a1b199000000", + "x-ms-request-id": "356613e1-001a-004c-0580-a201b2000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [ "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CError\u003E\u003CCode\u003EResourceNotFound\u003C/Code\u003E\u003CMessage\u003EThe specified resource does not exist.\n", - "RequestId:a30e3a84-401a-0047-4e02-a1b199000000\n", - "Time:2020-10-13T01:41:56.9764143Z\u003C/Message\u003E\u003C/Error\u003E" + "RequestId:356613e1-001a-004c-0580-a201b2000000\n", + "Time:2020-10-14T23:18:44.2933058Z\u003C/Message\u003E\u003C/Error\u003E" ] } ], "Variables": { "RandomSeed": "1255966692", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_ErrorAsync.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_ErrorAsync.json index 27de2ca72c63e..a69cdad95c855 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_ErrorAsync.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_ErrorAsync.json @@ -1,15 +1,16 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-c7f33262-2adf-a9c4-6832-e5f941706d23?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-c7f33262-2adf-a9c4-6832-e5f941706d23?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { - "traceparent": "00-c99150e583eeda43867220e3559ed9b3-86b5afb4746f8149-00", + "traceparent": "00-2982ac59df97b14190147d7c2c536a0e-cb71e3ab73791b4b-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "933e61f3-80b7-1526-8fef-ced9a87b9dce", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -18,25 +19,25 @@ "ResponseHeaders": { "Content-Length": "223", "Content-Type": "application/xml", - "Date": "Tue, 13 Oct 2020 01:42:17 GMT", + "Date": "Wed, 14 Oct 2020 23:18:49 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "933e61f3-80b7-1526-8fef-ced9a87b9dce", "x-ms-error-code": "ResourceNotFound", - "x-ms-request-id": "c9892346-e01a-005e-1302-a13122000000", + "x-ms-request-id": "781cb691-701a-0034-1480-a2a24a000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [ "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CError\u003E\u003CCode\u003EResourceNotFound\u003C/Code\u003E\u003CMessage\u003EThe specified resource does not exist.\n", - "RequestId:c9892346-e01a-005e-1302-a13122000000\n", - "Time:2020-10-13T01:42:17.8745942Z\u003C/Message\u003E\u003C/Error\u003E" + "RequestId:781cb691-701a-0034-1480-a2a24a000000\n", + "Time:2020-10-14T23:18:49.3455572Z\u003C/Message\u003E\u003C/Error\u003E" ] } ], "Variables": { "RandomSeed": "1000392204", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_Exists.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_Exists.json index 66e4870a7c728..6939d083374dd 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_Exists.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_Exists.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-d43706fb-f36d-deef-8a7a-a00beaf43269?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-d43706fb-f36d-deef-8a7a-a00beaf43269?restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-41ddf56d42d2304baa1427e990a1e9cf-ecdc8d35b29aa246-00", + "traceparent": "00-ec6b762fc32e95459bf127c608727ba5-01531e9ae9a6654b-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d9c8db5d-0a8c-3f94-f9ef-063b5c4472ae", - "x-ms-date": "Tue, 13 Oct 2020 01:41:57 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:43 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -19,31 +19,32 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:56 GMT", - "ETag": "\u00220x8D86F192BB6554D\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:41:57 GMT", + "Date": "Wed, 14 Oct 2020 23:18:43 GMT", + "ETag": "\u00220x8D870977EFB0FDF\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:44 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "d9c8db5d-0a8c-3f94-f9ef-063b5c4472ae", - "x-ms-request-id": "cf6a4ac6-601a-006f-2602-a1d031000000", + "x-ms-request-id": "f6f27220-b01a-0049-5b80-a2d369000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-d43706fb-f36d-deef-8a7a-a00beaf43269?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-d43706fb-f36d-deef-8a7a-a00beaf43269?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-fc6129eac43ffa4a9bc1d8438c6f18e6-5d7cd59c565d804a-00", + "traceparent": "00-77cff40431122d479fdfd34af3dc01d5-d35d6d59d2779e4b-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0faec56b-592b-8ddc-61ba-3ae9f1a16519", - "x-ms-date": "Tue, 13 Oct 2020 01:41:57 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:43 GMT", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -51,13 +52,13 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:56 GMT", + "Date": "Wed, 14 Oct 2020 23:18:44 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "0faec56b-592b-8ddc-61ba-3ae9f1a16519", - "x-ms-request-id": "cf6a4ac9-601a-006f-2702-a1d031000000", + "x-ms-request-id": "f6f27223-b01a-0049-5c80-a2d369000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] @@ -65,6 +66,6 @@ ], "Variables": { "RandomSeed": "1627714530", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_ExistsAsync.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_ExistsAsync.json index f8c2ba045b6b3..c8564f122c3ee 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_ExistsAsync.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_ExistsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-3e98f0fc-e03c-b419-826a-0cfa297e92e1?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-3e98f0fc-e03c-b419-826a-0cfa297e92e1?restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-45db0a9824b7d444b70948868e5fa67c-84b43ac52badac4f-00", + "traceparent": "00-8e32824d0d4b0a43b26f049663b6a399-b581c8282f44124f-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "450a174b-5794-8380-0746-3ac94a434b90", - "x-ms-date": "Tue, 13 Oct 2020 01:42:18 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:48 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -19,31 +19,32 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:18 GMT", - "ETag": "\u00220x8D86F19385AF768\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:42:18 GMT", + "Date": "Wed, 14 Oct 2020 23:18:49 GMT", + "ETag": "\u00220x8D87097820FCF01\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:49 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "450a174b-5794-8380-0746-3ac94a434b90", - "x-ms-request-id": "f45a92a6-a01a-005f-2602-a16efe000000", + "x-ms-request-id": "da805d9d-f01a-0058-7c80-a249dd000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-3e98f0fc-e03c-b419-826a-0cfa297e92e1?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-3e98f0fc-e03c-b419-826a-0cfa297e92e1?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c04d37d19761b9438e6422136c18c8e5-7bd4bccb0b377545-00", + "traceparent": "00-116212b80762724d8fab6aca231d086e-72fdf31cbcc68c4c-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "12af8a46-4d73-3e4c-654f-3500d3599b23", - "x-ms-date": "Tue, 13 Oct 2020 01:42:19 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:48 GMT", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -51,13 +52,13 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:18 GMT", + "Date": "Wed, 14 Oct 2020 23:18:49 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "12af8a46-4d73-3e4c-654f-3500d3599b23", - "x-ms-request-id": "f45a92ae-a01a-005f-2b02-a16efe000000", + "x-ms-request-id": "da805da1-f01a-0058-7d80-a249dd000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] @@ -65,6 +66,6 @@ ], "Variables": { "RandomSeed": "692279243", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_Lease.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_Lease.json index 06aca87aad8e2..db9307d201350 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_Lease.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_Lease.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-93d5895e-3855-5bf0-f330-ba5a529b93bb?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-93d5895e-3855-5bf0-f330-ba5a529b93bb?restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-559e59c41ac1154bb18a1adfa77a15eb-75315cb01095d146-00", + "traceparent": "00-d9ced6e087e77140b6710e8402f2f2ad-be415f4f19ccef41-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201013.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cf9013b5-25fe-76c3-7175-5a3647d5980d", - "x-ms-date": "Tue, 13 Oct 2020 15:22:36 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:43 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -19,31 +19,31 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 15:22:37 GMT", - "ETag": "\u00220x8D86F8BD1668CCE\u0022", - "Last-Modified": "Tue, 13 Oct 2020 15:22:37 GMT", + "Date": "Wed, 14 Oct 2020 23:18:44 GMT", + "ETag": "\u00220x8D870977F34C2AD\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:44 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "cf9013b5-25fe-76c3-7175-5a3647d5980d", - "x-ms-request-id": "7a6f14dd-f01a-0030-5474-a1640d000000", + "x-ms-request-id": "456ea900-501a-001c-1180-a2c3e2000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-93d5895e-3855-5bf0-f330-ba5a529b93bb?comp=lease\u0026restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-93d5895e-3855-5bf0-f330-ba5a529b93bb?comp=lease\u0026restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-61570ea66feb5a4abf4db4be6087133e-40c38f286e2d4849-00", + "traceparent": "00-b0833020401a1b49b5a09dcea1239d12-9b0067151cb0734e-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201013.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "96a7d2b7-2641-bc6f-e8a0-4555debd1ed0", - "x-ms-date": "Tue, 13 Oct 2020 15:22:37 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:43 GMT", "x-ms-lease-action": "acquire", "x-ms-lease-duration": "-1", "x-ms-proposed-lease-id": "cc9cf9a8-f8e1-f02a-8aa9-460558a1cc15", @@ -54,33 +54,32 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 15:22:38 GMT", - "ETag": "\u00220x8D86F8BD1668CCE\u0022", - "Last-Modified": "Tue, 13 Oct 2020 15:22:37 GMT", + "Date": "Wed, 14 Oct 2020 23:18:44 GMT", + "ETag": "\u00220x8D870977F34C2AD\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:44 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "96a7d2b7-2641-bc6f-e8a0-4555debd1ed0", "x-ms-lease-id": "cc9cf9a8-f8e1-f02a-8aa9-460558a1cc15", - "x-ms-request-id": "7a6f14e0-f01a-0030-5574-a1640d000000", + "x-ms-request-id": "456ea904-501a-001c-1380-a2c3e2000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-93d5895e-3855-5bf0-f330-ba5a529b93bb?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-93d5895e-3855-5bf0-f330-ba5a529b93bb?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-db67e31a14662c4194922dae09d37373-59092d1982a6c547-00", + "traceparent": "00-0b3ccabfcd6fd0409e96781e4eecce60-3f9e3d6865ea4541-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201013.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "864ecec4-36f9-16d4-fae7-566b7e675f1c", - "x-ms-date": "Tue, 13 Oct 2020 15:22:37 GMT", - "x-ms-delete-snapshots": "include", + "x-ms-date": "Wed, 14 Oct 2020 23:18:43 GMT", "x-ms-lease-id": "cc9cf9a8-f8e1-f02a-8aa9-460558a1cc15", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" @@ -89,13 +88,13 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 15:22:38 GMT", + "Date": "Wed, 14 Oct 2020 23:18:44 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "864ecec4-36f9-16d4-fae7-566b7e675f1c", - "x-ms-request-id": "7a6f14e5-f01a-0030-5a74-a1640d000000", + "x-ms-request-id": "456ea906-501a-001c-1480-a2c3e2000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] @@ -103,6 +102,6 @@ ], "Variables": { "RandomSeed": "667931308", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_LeaseAsync.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_LeaseAsync.json index 607598677679f..4f342e8d6d339 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_LeaseAsync.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_LeaseAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-19ade85a-75d1-ae56-c205-1657cb97bf49?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-19ade85a-75d1-ae56-c205-1657cb97bf49?restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-aefbb9312252ea4499b3d160ecf57a29-ce7fe372c6c7c245-00", + "traceparent": "00-6376b72207b7f64488255abd59ba574b-cc50671dc5b06043-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201013.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b0cdb300-5d10-54b4-3144-2a726f863a52", - "x-ms-date": "Tue, 13 Oct 2020 15:22:52 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:48 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -19,31 +19,31 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 15:22:52 GMT", - "ETag": "\u00220x8D86F8BDA89383D\u0022", - "Last-Modified": "Tue, 13 Oct 2020 15:22:53 GMT", + "Date": "Wed, 14 Oct 2020 23:18:49 GMT", + "ETag": "\u00220x8D87097824AF058\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:50 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "b0cdb300-5d10-54b4-3144-2a726f863a52", - "x-ms-request-id": "3d4a3d9f-101a-004a-6374-a1794d000000", + "x-ms-request-id": "97f93a10-201a-0016-5680-a26755000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-19ade85a-75d1-ae56-c205-1657cb97bf49?comp=lease\u0026restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-19ade85a-75d1-ae56-c205-1657cb97bf49?comp=lease\u0026restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-4b3a2c9139f6e24b9fd3c60c0aad8dc3-ff0e16c074dbb249-00", + "traceparent": "00-115586961acd1b4fb77b08c4a215dfb3-1ff0321c37afaa45-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201013.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5badc31e-ac76-a37d-5c1d-3420423bf411", - "x-ms-date": "Tue, 13 Oct 2020 15:22:52 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:48 GMT", "x-ms-lease-action": "acquire", "x-ms-lease-duration": "-1", "x-ms-proposed-lease-id": "b2ec8c88-5d19-b056-7bf0-1b785f1fc760", @@ -54,33 +54,32 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 15:22:52 GMT", - "ETag": "\u00220x8D86F8BDA89383D\u0022", - "Last-Modified": "Tue, 13 Oct 2020 15:22:53 GMT", + "Date": "Wed, 14 Oct 2020 23:18:49 GMT", + "ETag": "\u00220x8D87097824AF058\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:50 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "5badc31e-ac76-a37d-5c1d-3420423bf411", "x-ms-lease-id": "b2ec8c88-5d19-b056-7bf0-1b785f1fc760", - "x-ms-request-id": "3d4a3da3-101a-004a-6474-a1794d000000", + "x-ms-request-id": "97f93a14-201a-0016-5780-a26755000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-19ade85a-75d1-ae56-c205-1657cb97bf49?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-19ade85a-75d1-ae56-c205-1657cb97bf49?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-573b6805d298b44cad754ac214fb70d6-b272a585400bf64e-00", + "traceparent": "00-0aa6285b314f404097bbfd3bdffbf027-067bb7861178ce4f-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201013.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9c5aa3a3-6b71-fae9-01b3-bbacda189da4", - "x-ms-date": "Tue, 13 Oct 2020 15:22:52 GMT", - "x-ms-delete-snapshots": "include", + "x-ms-date": "Wed, 14 Oct 2020 23:18:49 GMT", "x-ms-lease-id": "b2ec8c88-5d19-b056-7bf0-1b785f1fc760", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" @@ -89,13 +88,13 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 15:22:52 GMT", + "Date": "Wed, 14 Oct 2020 23:18:49 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "9c5aa3a3-6b71-fae9-01b3-bbacda189da4", - "x-ms-request-id": "3d4a3da7-101a-004a-6874-a1794d000000", + "x-ms-request-id": "97f93a15-201a-0016-5880-a26755000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] @@ -103,6 +102,6 @@ ], "Variables": { "RandomSeed": "1798559023", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_LeaseFailed.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_LeaseFailed.json index d2f2f29610ee4..62a5e455b049f 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_LeaseFailed.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_LeaseFailed.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-a558a486-0fdc-8a58-03ac-cf74686c6c88?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-a558a486-0fdc-8a58-03ac-cf74686c6c88?restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f95b5b0140816d4e9ca712f794a0a224-6b475cd044bf7045-00", + "traceparent": "00-096bf40271e52c4aa06fef4739518ea4-0688efb79a3fda49-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201013.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ce97d88c-1895-699c-63e2-8fa209c0db71", - "x-ms-date": "Tue, 13 Oct 2020 15:22:37 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:43 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -19,32 +19,31 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 15:22:39 GMT", - "ETag": "\u00220x8D86F8BD22BF233\u0022", - "Last-Modified": "Tue, 13 Oct 2020 15:22:39 GMT", + "Date": "Wed, 14 Oct 2020 23:18:44 GMT", + "ETag": "\u00220x8D870977F7D9E1E\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:45 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "ce97d88c-1895-699c-63e2-8fa209c0db71", - "x-ms-request-id": "0d91c104-701a-003e-2574-a14dbd000000", + "x-ms-request-id": "d4ada8fd-f01a-0067-0380-a2817e000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-a558a486-0fdc-8a58-03ac-cf74686c6c88?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-a558a486-0fdc-8a58-03ac-cf74686c6c88?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-887647366d7ec6468923e8fcbd0e5407-43fcfe8b28368243-00", + "traceparent": "00-9dfb1ec4c9e98247bd537dce8225eb61-10289d4dad507d4b-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201013.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0c5dba3d-bbf2-e5e1-399c-5ae318d98585", - "x-ms-date": "Tue, 13 Oct 2020 15:22:38 GMT", - "x-ms-delete-snapshots": "include", + "x-ms-date": "Wed, 14 Oct 2020 23:18:44 GMT", "x-ms-lease-id": "6998a51c-a6c7-fb9f-73b2-00c2e3ded877", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" @@ -54,34 +53,34 @@ "ResponseHeaders": { "Content-Length": "252", "Content-Type": "application/xml", - "Date": "Tue, 13 Oct 2020 15:22:40 GMT", + "Date": "Wed, 14 Oct 2020 23:18:44 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "0c5dba3d-bbf2-e5e1-399c-5ae318d98585", "x-ms-error-code": "LeaseNotPresentWithContainerOperation", - "x-ms-request-id": "0d91c108-701a-003e-2774-a14dbd000000", + "x-ms-request-id": "d4ada901-f01a-0067-0480-a2817e000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [ "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CError\u003E\u003CCode\u003ELeaseNotPresentWithContainerOperation\u003C/Code\u003E\u003CMessage\u003EThere is currently no lease on the file share.\n", - "RequestId:0d91c108-701a-003e-2774-a14dbd000000\n", - "Time:2020-10-13T15:22:40.7230154Z\u003C/Message\u003E\u003C/Error\u003E" + "RequestId:d4ada901-f01a-0067-0480-a2817e000000\n", + "Time:2020-10-14T23:18:45.5047272Z\u003C/Message\u003E\u003C/Error\u003E" ] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-a558a486-0fdc-8a58-03ac-cf74686c6c88?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-a558a486-0fdc-8a58-03ac-cf74686c6c88?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-f3ae2c8a84e970428d160d601de2814d-e62622a91abab74a-00", + "traceparent": "00-50c5b891fb17b4448a7e06fd7aee7805-95001b35190c224b-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201013.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "29841b16-cc81-cb84-4502-5639430f8240", - "x-ms-date": "Tue, 13 Oct 2020 15:22:40 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:44 GMT", "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" @@ -90,13 +89,13 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 15:22:40 GMT", + "Date": "Wed, 14 Oct 2020 23:18:44 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "29841b16-cc81-cb84-4502-5639430f8240", - "x-ms-request-id": "0d91c113-701a-003e-2d74-a14dbd000000", + "x-ms-request-id": "d4ada902-f01a-0067-0580-a2817e000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] @@ -104,6 +103,6 @@ ], "Variables": { "RandomSeed": "313280432", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_LeaseFailedAsync.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_LeaseFailedAsync.json index 7cb4b857496e9..129a878f9efe8 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_LeaseFailedAsync.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_LeaseFailedAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-85829b35-ef27-7dc5-282e-29842c595eb1?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-85829b35-ef27-7dc5-282e-29842c595eb1?restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-85417cb18641fc40bc064d4aac0cb48c-62cdb6b071b63b49-00", + "traceparent": "00-cc13e50380087c4bae7e580f4b010b1e-b072e9676c4ecc4c-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201013.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "66984c07-2bb1-96c1-b3ec-c80702616116", - "x-ms-date": "Tue, 13 Oct 2020 15:22:52 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:49 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -19,32 +19,31 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 15:22:52 GMT", - "ETag": "\u00220x8D86F8BDAD349D7\u0022", - "Last-Modified": "Tue, 13 Oct 2020 15:22:53 GMT", + "Date": "Wed, 14 Oct 2020 23:18:50 GMT", + "ETag": "\u00220x8D87097829E876C\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:50 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "66984c07-2bb1-96c1-b3ec-c80702616116", - "x-ms-request-id": "ee8539f9-b01a-0031-2374-a13bd1000000", + "x-ms-request-id": "c8b25eff-d01a-0012-5380-a2ea52000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-85829b35-ef27-7dc5-282e-29842c595eb1?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-85829b35-ef27-7dc5-282e-29842c595eb1?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-057191e8aa41cc46a98bc4c3c009b978-b8ef844e270d5c42-00", + "traceparent": "00-5d27d3e4e95b5a4f9c6bfd1f1556ef90-8e355ac8a61d6149-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201013.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "39257799-d442-b75d-9809-4926b0953458", - "x-ms-date": "Tue, 13 Oct 2020 15:22:52 GMT", - "x-ms-delete-snapshots": "include", + "x-ms-date": "Wed, 14 Oct 2020 23:18:49 GMT", "x-ms-lease-id": "13ddad45-4f07-8fb3-1c8b-7a2c625b9608", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" @@ -54,34 +53,34 @@ "ResponseHeaders": { "Content-Length": "252", "Content-Type": "application/xml", - "Date": "Tue, 13 Oct 2020 15:22:53 GMT", + "Date": "Wed, 14 Oct 2020 23:18:50 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "39257799-d442-b75d-9809-4926b0953458", "x-ms-error-code": "LeaseNotPresentWithContainerOperation", - "x-ms-request-id": "ee8539fc-b01a-0031-2474-a13bd1000000", + "x-ms-request-id": "c8b25f02-d01a-0012-5480-a2ea52000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [ "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CError\u003E\u003CCode\u003ELeaseNotPresentWithContainerOperation\u003C/Code\u003E\u003CMessage\u003EThere is currently no lease on the file share.\n", - "RequestId:ee8539fc-b01a-0031-2474-a13bd1000000\n", - "Time:2020-10-13T15:22:53.6733531Z\u003C/Message\u003E\u003C/Error\u003E" + "RequestId:c8b25f02-d01a-0012-5480-a2ea52000000\n", + "Time:2020-10-14T23:18:50.7555821Z\u003C/Message\u003E\u003C/Error\u003E" ] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-85829b35-ef27-7dc5-282e-29842c595eb1?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-85829b35-ef27-7dc5-282e-29842c595eb1?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-17623d0e44a9064c9ffe2ee29796f12f-0a6ba93c8316de49-00", + "traceparent": "00-3a8bc12bd695b447b5cd5b7f8b605b3f-41803bb966a6a94e-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201013.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eb92d196-5c35-72c5-67c5-47b8aedad415", - "x-ms-date": "Tue, 13 Oct 2020 15:22:52 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:49 GMT", "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" @@ -90,13 +89,13 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 15:22:53 GMT", + "Date": "Wed, 14 Oct 2020 23:18:50 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "eb92d196-5c35-72c5-67c5-47b8aedad415", - "x-ms-request-id": "ee8539fd-b01a-0031-2574-a13bd1000000", + "x-ms-request-id": "c8b25f03-d01a-0012-5580-a2ea52000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] @@ -104,6 +103,6 @@ ], "Variables": { "RandomSeed": "1006262717", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_NotExists.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_NotExists.json index c558f84a5e4fa..aab32b9107e53 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_NotExists.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_NotExists.json @@ -1,17 +1,18 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-06fd4600-6680-af6b-ece6-c663b34372db?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-06fd4600-6680-af6b-ece6-c663b34372db?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-a6ced558d71a3d4bb49350ccf14060b3-e20a3d06de213740-00", + "traceparent": "00-4ec41d3aa7f9f74da7816c44bcfa6328-e778d8071c8d3e44-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2a1bbcba-bd7b-678e-7304-01431e510e80", - "x-ms-date": "Tue, 13 Oct 2020 01:41:59 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:44 GMT", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -20,25 +21,25 @@ "ResponseHeaders": { "Content-Length": "217", "Content-Type": "application/xml", - "Date": "Tue, 13 Oct 2020 01:41:58 GMT", + "Date": "Wed, 14 Oct 2020 23:18:45 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "2a1bbcba-bd7b-678e-7304-01431e510e80", "x-ms-error-code": "ShareNotFound", - "x-ms-request-id": "652b079e-201a-0033-0902-a18569000000", + "x-ms-request-id": "89648b4e-501a-008a-6380-a2ca33000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [ "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CError\u003E\u003CCode\u003EShareNotFound\u003C/Code\u003E\u003CMessage\u003EThe specified share does not exist.\n", - "RequestId:652b079e-201a-0033-0902-a18569000000\n", - "Time:2020-10-13T01:41:59.0232336Z\u003C/Message\u003E\u003C/Error\u003E" + "RequestId:89648b4e-501a-008a-6380-a2ca33000000\n", + "Time:2020-10-14T23:18:45.8537042Z\u003C/Message\u003E\u003C/Error\u003E" ] } ], "Variables": { "RandomSeed": "582356616", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_NotExistsAsync.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_NotExistsAsync.json index 91576f94881fe..a982985f05d3a 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_NotExistsAsync.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/DeleteIfExistsAsync_NotExistsAsync.json @@ -1,17 +1,18 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-b4f5939f-9a32-66e4-d2ae-3b01fa066dff?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-b4f5939f-9a32-66e4-d2ae-3b01fa066dff?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-d3bc7ddf7ab3884084f2a4449d3c5e8c-f3d8531297993e4b-00", + "traceparent": "00-9d4ea10097d8ef4eb603e8154f9383d0-95f3dd747731b841-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "071757b8-4d34-aeea-d324-5920fd3a67b0", - "x-ms-date": "Tue, 13 Oct 2020 01:42:21 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:49 GMT", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -20,25 +21,25 @@ "ResponseHeaders": { "Content-Length": "217", "Content-Type": "application/xml", - "Date": "Tue, 13 Oct 2020 01:42:21 GMT", + "Date": "Wed, 14 Oct 2020 23:18:50 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "071757b8-4d34-aeea-d324-5920fd3a67b0", "x-ms-error-code": "ShareNotFound", - "x-ms-request-id": "3e9f874a-f01a-000f-4e02-a1acae000000", + "x-ms-request-id": "a1e9fdc6-401a-0072-3880-a296cd000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [ "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CError\u003E\u003CCode\u003EShareNotFound\u003C/Code\u003E\u003CMessage\u003EThe specified share does not exist.\n", - "RequestId:3e9f874a-f01a-000f-4e02-a1acae000000\n", - "Time:2020-10-13T01:42:21.5456785Z\u003C/Message\u003E\u003C/Error\u003E" + "RequestId:a1e9fdc6-401a-0072-3880-a296cd000000\n", + "Time:2020-10-14T23:18:51.1745887Z\u003C/Message\u003E\u003C/Error\u003E" ] } ], "Variables": { "RandomSeed": "1993953212", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/ExistsAsync_Exists.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/ExistsAsync_Exists.json index 485d01864b31a..b71ba2f6fa77d 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/ExistsAsync_Exists.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/ExistsAsync_Exists.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-49e5a070-afd5-c7dd-0fc7-90dd7761fce7?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-49e5a070-afd5-c7dd-0fc7-90dd7761fce7?restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-aaaa9274f90ae845b102bddee21c0f45-9e12ab85f11a9e4f-00", + "traceparent": "00-1a2a36fa0d7d9e49a0df53dcf30e88fd-67b528417ad8e34f-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b0aed7dd-9cf6-5534-c133-c92cc8b7c3fb", - "x-ms-date": "Tue, 13 Oct 2020 01:41:59 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:44 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -19,31 +19,31 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:58 GMT", - "ETag": "\u00220x8D86F192CFAC52D\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:41:59 GMT", + "Date": "Wed, 14 Oct 2020 23:18:45 GMT", + "ETag": "\u00220x8D870977FEFF18A\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:46 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "b0aed7dd-9cf6-5534-c133-c92cc8b7c3fb", - "x-ms-request-id": "6c6c41df-b01a-0098-6002-a1faa3000000", + "x-ms-request-id": "edd25eab-001a-0087-1e80-a202e7000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-49e5a070-afd5-c7dd-0fc7-90dd7761fce7?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-49e5a070-afd5-c7dd-0fc7-90dd7761fce7?restype=share", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-8e97d702df9a6544a71ea89ed444d82d-56340fe653613a45-00", + "traceparent": "00-29c1d6d8ba5dca4bab2126811077c9f2-c3217bf26bf27348-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a0fffba9-4cb3-a6f1-1618-41d57d37bc3f", - "x-ms-date": "Tue, 13 Oct 2020 01:41:59 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:45 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -51,39 +51,39 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:59 GMT", - "ETag": "\u00220x8D86F192CFAC52D\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:41:59 GMT", + "Date": "Wed, 14 Oct 2020 23:18:46 GMT", + "ETag": "\u00220x8D870977FEFF18A\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:46 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], - "Vary": "Origin", "x-ms-access-tier": "TransactionOptimized", - "x-ms-access-tier-change-time": "Tue, 13 Oct 2020 01:41:59 GMT", + "x-ms-access-tier-change-time": "Wed, 14 Oct 2020 23:18:46 GMT", "x-ms-client-request-id": "a0fffba9-4cb3-a6f1-1618-41d57d37bc3f", "x-ms-has-immutability-policy": "false", "x-ms-has-legal-hold": "false", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-request-id": "6c6c41e3-b01a-0098-6202-a1faa3000000", + "x-ms-request-id": "edd25eae-001a-0087-1f80-a202e7000000", "x-ms-share-quota": "5120", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-49e5a070-afd5-c7dd-0fc7-90dd7761fce7?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-49e5a070-afd5-c7dd-0fc7-90dd7761fce7?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-bab73f1a361c8c429a0993e73460ed71-3ad462d21a386a45-00", + "traceparent": "00-d50789a79c54f44db5d2b2c51a0be5be-f0cc0af32d22084c-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cc825c42-23b7-e748-619f-ddd1f9c5ad03", - "x-ms-date": "Tue, 13 Oct 2020 01:41:59 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:45 GMT", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -91,13 +91,13 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:41:59 GMT", + "Date": "Wed, 14 Oct 2020 23:18:46 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "cc825c42-23b7-e748-619f-ddd1f9c5ad03", - "x-ms-request-id": "6c6c41e4-b01a-0098-6302-a1faa3000000", + "x-ms-request-id": "edd25eaf-001a-0087-2080-a202e7000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] @@ -105,6 +105,6 @@ ], "Variables": { "RandomSeed": "1483732239", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file diff --git a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/ExistsAsync_ExistsAsync.json b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/ExistsAsync_ExistsAsync.json index 614b27486c4b0..7ab9ce8e32cde 100644 --- a/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/ExistsAsync_ExistsAsync.json +++ b/sdk/storage/Azure.Storage.Files.Shares/tests/SessionRecords/ShareClientTests/ExistsAsync_ExistsAsync.json @@ -1,17 +1,17 @@ { "Entries": [ { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-57bf0970-beb2-c8e2-f924-17a647fe2c3d?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-57bf0970-beb2-c8e2-f924-17a647fe2c3d?restype=share", "RequestMethod": "PUT", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-c66a8c74d3141f42835b0082b8ce7601-1036ed5aa42d5347-00", + "traceparent": "00-e979330ab71f604da136bc2f4d20a808-47609c04964eb54c-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6199cf74-b48a-53ca-9ca9-39380736a108", - "x-ms-date": "Tue, 13 Oct 2020 01:42:22 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:49 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -19,31 +19,31 @@ "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:20 GMT", - "ETag": "\u00220x8D86F193A6A7029\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:42:21 GMT", + "Date": "Wed, 14 Oct 2020 23:18:50 GMT", + "ETag": "\u00220x8D870978317AE91\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:51 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "6199cf74-b48a-53ca-9ca9-39380736a108", - "x-ms-request-id": "6d46adf4-501a-004b-1c02-a12691000000", + "x-ms-request-id": "0ef7d912-601a-005a-4380-a2f765000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-57bf0970-beb2-c8e2-f924-17a647fe2c3d?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-57bf0970-beb2-c8e2-f924-17a647fe2c3d?restype=share", "RequestMethod": "GET", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-add4c779a39c60479e9dfafaf87928ab-5a3a09f6c5cc474e-00", + "traceparent": "00-c460fa5dcfa61445b3cdc25a21a92762-00969f8d8edb9e42-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7831de1e-cb65-02b2-f2a1-19b91e9d1575", - "x-ms-date": "Tue, 13 Oct 2020 01:42:22 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:50 GMT", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -51,39 +51,39 @@ "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:20 GMT", - "ETag": "\u00220x8D86F193A6A7029\u0022", - "Last-Modified": "Tue, 13 Oct 2020 01:42:21 GMT", + "Date": "Wed, 14 Oct 2020 23:18:50 GMT", + "ETag": "\u00220x8D870978317AE91\u0022", + "Last-Modified": "Wed, 14 Oct 2020 23:18:51 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], - "Vary": "Origin", "x-ms-access-tier": "TransactionOptimized", - "x-ms-access-tier-change-time": "Tue, 13 Oct 2020 01:42:21 GMT", + "x-ms-access-tier-change-time": "Wed, 14 Oct 2020 23:18:51 GMT", "x-ms-client-request-id": "7831de1e-cb65-02b2-f2a1-19b91e9d1575", "x-ms-has-immutability-policy": "false", "x-ms-has-legal-hold": "false", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-request-id": "6d46adf7-501a-004b-1d02-a12691000000", + "x-ms-request-id": "0ef7d915-601a-005a-4480-a2f765000000", "x-ms-share-quota": "5120", "x-ms-version": "2020-02-10" }, "ResponseBody": [] }, { - "RequestUri": "https://seanmcccanary3.file.core.windows.net/test-share-57bf0970-beb2-c8e2-f924-17a647fe2c3d?restype=share", + "RequestUri": "https://seanmcccanada.file.core.windows.net/test-share-57bf0970-beb2-c8e2-f924-17a647fe2c3d?restype=share", "RequestMethod": "DELETE", "RequestHeaders": { "Authorization": "Sanitized", - "traceparent": "00-536b33f3d982434bbe8d13b85186019d-3f7099fe48422e41-00", + "traceparent": "00-c0b70228816fe64488f7b8c78796bb30-1b0ca387a6ebc14f-00", "User-Agent": [ - "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201012.1", + "azsdk-net-Storage.Files.Shares/12.5.0-alpha.20201014.1", "(.NET Core 4.6.29220.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2919b0e3-2904-39a3-c4de-c8cc3251fa96", - "x-ms-date": "Tue, 13 Oct 2020 01:42:22 GMT", + "x-ms-date": "Wed, 14 Oct 2020 23:18:50 GMT", + "x-ms-delete-snapshots": "include", "x-ms-return-client-request-id": "true", "x-ms-version": "2020-02-10" }, @@ -91,13 +91,13 @@ "StatusCode": 202, "ResponseHeaders": { "Content-Length": "0", - "Date": "Tue, 13 Oct 2020 01:42:21 GMT", + "Date": "Wed, 14 Oct 2020 23:18:50 GMT", "Server": [ "Windows-Azure-File/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-client-request-id": "2919b0e3-2904-39a3-c4de-c8cc3251fa96", - "x-ms-request-id": "6d46adfa-501a-004b-2002-a12691000000", + "x-ms-request-id": "0ef7d916-601a-005a-4580-a2f765000000", "x-ms-version": "2020-02-10" }, "ResponseBody": [] @@ -105,6 +105,6 @@ ], "Variables": { "RandomSeed": "1476567203", - "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanary3\nU2FuaXRpemVk\nhttps://seanmcccanary3.blob.core.windows.net\nhttps://seanmcccanary3.file.core.windows.net\nhttps://seanmcccanary3.queue.core.windows.net\nhttps://seanmcccanary3.table.core.windows.net\n\n\n\n\nhttps://seanmcccanary3-secondary.blob.core.windows.net\nhttps://seanmcccanary3-secondary.file.core.windows.net\nhttps://seanmcccanary3-secondary.queue.core.windows.net\nhttps://seanmcccanary3-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanary3.blob.core.windows.net/;QueueEndpoint=https://seanmcccanary3.queue.core.windows.net/;FileEndpoint=https://seanmcccanary3.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanary3-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanary3-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanary3-secondary.file.core.windows.net/;AccountName=seanmcccanary3;AccountKey=Kg==;\nseanscope1" + "Storage_TestConfigDefault": "ProductionTenant\nseanmcccanada\nU2FuaXRpemVk\nhttps://seanmcccanada.blob.core.windows.net\nhttps://seanmcccanada.file.core.windows.net\nhttps://seanmcccanada.queue.core.windows.net\nhttps://seanmcccanada.table.core.windows.net\n\n\n\n\nhttps://seanmcccanada-secondary.blob.core.windows.net\nhttps://seanmcccanada-secondary.file.core.windows.net\nhttps://seanmcccanada-secondary.queue.core.windows.net\nhttps://seanmcccanada-secondary.table.core.windows.net\n\nSanitized\n\n\nCloud\nBlobEndpoint=https://seanmcccanada.blob.core.windows.net/;QueueEndpoint=https://seanmcccanada.queue.core.windows.net/;FileEndpoint=https://seanmcccanada.file.core.windows.net/;BlobSecondaryEndpoint=https://seanmcccanada-secondary.blob.core.windows.net/;QueueSecondaryEndpoint=https://seanmcccanada-secondary.queue.core.windows.net/;FileSecondaryEndpoint=https://seanmcccanada-secondary.file.core.windows.net/;AccountName=seanmcccanada;AccountKey=Kg==;\nseanscope1" } } \ No newline at end of file