diff --git a/sdk/storage/azure-storage-blobs/test/ut/block_blob_client_test.cpp b/sdk/storage/azure-storage-blobs/test/ut/block_blob_client_test.cpp index 290a947f25..61d24bcde0 100644 --- a/sdk/storage/azure-storage-blobs/test/ut/block_blob_client_test.cpp +++ b/sdk/storage/azure-storage-blobs/test/ut/block_blob_client_test.cpp @@ -9,7 +9,6 @@ #include #include -#include namespace Azure { namespace Storage { namespace Blobs { namespace Models { @@ -191,10 +190,7 @@ namespace Azure { namespace Storage { namespace Test { } { const std::string tempFilename = "file" + testName; - { - Azure::Storage::_internal::FileWriter fileWriter(tempFilename); - fileWriter.Write(blobContent.data(), blobContent.size(), 0); - } + WriteFile(tempFilename, blobContent); client.UploadFrom(tempFilename, options); EXPECT_EQ(client.GetTags().Value, tags); client.Delete(); @@ -1122,9 +1118,7 @@ namespace Azure { namespace Storage { namespace Test { EXPECT_NO_THROW(blockBlobClient.Delete()); std::string emptyFilename(testName); - { - _internal::FileWriter writer(emptyFilename); - } + WriteFile(emptyFilename, std::vector{}); blockBlobClient.UploadFrom(emptyFilename); EXPECT_NO_THROW(blockBlobClient.Delete()); @@ -1281,7 +1275,7 @@ namespace Azure { namespace Storage { namespace Test { SetOptions(); UploadBlockBlob::ParamType const& p(GetParam()); auto const blobSize = p.Size; - std::vector blobContent(static_cast(8_MB), 'x'); + std::vector blobContent(static_cast(p.Size), 'x'); Azure::Storage::Blobs::UploadBlockBlobFromOptions options; options.TransferOptions.ChunkSize = 1_MB; @@ -1292,10 +1286,7 @@ namespace Azure { namespace Storage { namespace Test { options.AccessTier = m_blobUploadOptions.AccessTier; std::string tempFilename(testName); - { - Azure::Storage::_internal::FileWriter fileWriter(tempFilename); - fileWriter.Write(blobContent.data(), static_cast(blobSize), 0); - } + WriteFile(tempFilename, blobContent); auto res = blockBlobClient.UploadFrom(tempFilename, options); EXPECT_TRUE(res.Value.ETag.HasValue()); EXPECT_TRUE(IsValidTime(res.Value.LastModified)); diff --git a/sdk/storage/azure-storage-common/test/ut/test_base.cpp b/sdk/storage/azure-storage-common/test/ut/test_base.cpp index 5b1532794f..2312e75679 100644 --- a/sdk/storage/azure-storage-common/test/ut/test_base.cpp +++ b/sdk/storage/azure-storage-common/test/ut/test_base.cpp @@ -9,6 +9,7 @@ #include #include #include +#include #include #include #include @@ -294,13 +295,22 @@ namespace Azure { namespace Storage { namespace Test { return fileContent; } + void StorageTest::WriteFile(const std::string& filename, const std::vector& content) + { + std::ofstream f(filename, std::ofstream::binary); + f.write(reinterpret_cast(content.data()), content.size()); + } + void StorageTest::DeleteFile(const std::string& filename) { std::remove(filename.data()); } std::vector StorageTest::RandomBuffer(size_t length) { std::vector result(length); - char* dataPtr = reinterpret_cast(&result[0]); - RandomBuffer(dataPtr, length); + if (length != 0) + { + char* dataPtr = reinterpret_cast(&result[0]); + RandomBuffer(dataPtr, length); + } return result; } diff --git a/sdk/storage/azure-storage-common/test/ut/test_base.hpp b/sdk/storage/azure-storage-common/test/ut/test_base.hpp index d75ba434af..6fc59a4e0e 100644 --- a/sdk/storage/azure-storage-common/test/ut/test_base.hpp +++ b/sdk/storage/azure-storage-common/test/ut/test_base.hpp @@ -72,13 +72,13 @@ namespace Azure { namespace Storage { return Azure::Core::_internal::StringExtensions::ToLower(name); } - std::string GetTestEncryptionScope() + static std::string GetTestEncryptionScope() { static const std::string TestEncryptionScope("EncryptionScopeForTest"); return TestEncryptionScope; } - std::string AppendQueryParameters( + static std::string AppendQueryParameters( const Azure::Core::Url& url, const std::string& queryParameters); @@ -87,50 +87,52 @@ namespace Azure { namespace Storage { /* cspell:disable-next-line */ constexpr static const char* DummyCrc64 = "+DNR5PON4EM="; - uint64_t RandomInt( + static uint64_t RandomInt( uint64_t minNumber = std::numeric_limits::min(), uint64_t maxNumber = std::numeric_limits::max()); - std::string RandomString(size_t size = 10); + static std::string RandomString(size_t size = 10); std::string GetStringOfSize(size_t size = 10, bool lowercase = false); - std::string LowercaseRandomString(size_t size = 10); + static std::string LowercaseRandomString(size_t size = 10); - Storage::Metadata GetMetadata(size_t size = 5); + static Storage::Metadata GetMetadata(size_t size = 5); - void RandomBuffer(char* buffer, size_t length); - inline void RandomBuffer(uint8_t* buffer, size_t length) + static void RandomBuffer(char* buffer, size_t length); + static void RandomBuffer(uint8_t* buffer, size_t length) { RandomBuffer(reinterpret_cast(buffer), length); } - std::vector RandomBuffer(size_t length); + static std::vector RandomBuffer(size_t length); - inline std::vector ReadBodyStream( + static std::vector ReadBodyStream( std::unique_ptr& stream) { Azure::Core::Context context; return stream->ReadToEnd(context); } - inline std::vector ReadBodyStream( + static std::vector ReadBodyStream( std::unique_ptr&& stream) { return ReadBodyStream(stream); } - std::vector ReadFile(const std::string& filename); + static std::vector ReadFile(const std::string& filename); - void DeleteFile(const std::string& filename); + static void WriteFile(const std::string& filename, const std::vector& content); - std::string InferSecondaryUrl(const std::string primaryUri); + static void DeleteFile(const std::string& filename); - inline std::string Base64EncodeText(const std::string& text) + static std::string InferSecondaryUrl(const std::string primaryUri); + + static std::string Base64EncodeText(const std::string& text) { return Azure::Core::Convert::Base64Encode(std::vector(text.begin(), text.end())); } - virtual void SetUp() override + void SetUp() override { Azure::Core::Test::TestBase::SetUpTestBase(AZURE_TEST_RECORDING_DIR); } @@ -176,7 +178,7 @@ namespace Azure { namespace Storage { return *m_client; } - virtual void SetUp() override + void SetUp() override { StorageTest::SetUp(); m_containerName = Azure::Core::_internal::StringExtensions::ToLower(GetTestName()); diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/datalake_file_client_test.cpp b/sdk/storage/azure-storage-files-datalake/test/ut/datalake_file_client_test.cpp index edf1723852..abceb5f32b 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/datalake_file_client_test.cpp +++ b/sdk/storage/azure-storage-files-datalake/test/ut/datalake_file_client_test.cpp @@ -11,7 +11,6 @@ #include #include -#include #include namespace Azure { namespace Storage { namespace Blobs { namespace Models { @@ -462,7 +461,7 @@ namespace Azure { namespace Storage { namespace Test { TEST_P(UploadFile, fromFile) { UploadFile::ParamType const& p(GetParam()); - std::vector fileContent(static_cast(8_MB), 'x'); + std::vector fileContent(static_cast(p.FileSize), 'x'); auto fileClient = m_fileSystemClient->GetFileClient(GetTestNameLowerCase()); Azure::Storage::Files::DataLake::UploadFileFromOptions options; @@ -472,10 +471,7 @@ namespace Azure { namespace Storage { namespace Test { options.Metadata = GetMetadata(); std::string tempFilename = GetTestNameLowerCase(); - { - Azure::Storage::_internal::FileWriter fileWriter(tempFilename); - fileWriter.Write(fileContent.data(), static_cast(p.FileSize), 0); - } + WriteFile(tempFilename, fileContent); auto res = fileClient.UploadFrom(tempFilename, options); auto lastModified = fileClient.GetProperties().Value.LastModified; EXPECT_TRUE(res.Value.ETag.HasValue()); @@ -495,9 +491,7 @@ namespace Azure { namespace Storage { namespace Test { fileContent.begin(), fileContent.begin() + static_cast(p.FileSize))); std::string tempFileDestinationName = RandomString(); fileClient.DownloadTo(tempFileDestinationName); - Azure::Storage::_internal::FileReader fileReader(tempFileDestinationName); - auto size = fileReader.GetFileSize(); - EXPECT_EQ(p.FileSize, size); + EXPECT_EQ(ReadFile(tempFileDestinationName), fileContent); DeleteFile(tempFileDestinationName); DeleteFile(tempFilename); fileClient.Delete(); diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s0.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s0.json index c01f0e47e4..8599777708 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s0.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s0.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8e586206-6e34-43dd-7370-b4e99c05c81f", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9049a71a-0180-4a13-4220-9027aac2cb6a", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:06 GMT", - "etag": "\"0x8D9CB638CBAA9E4\"", - "last-modified": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:18 GMT", + "etag": "\"0x8DA3C75A3D5307D\"", + "last-modified": "Mon, 23 May 2022 04:35:18 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "8e586206-6e34-43dd-7370-b4e99c05c81f", - "x-ms-request-id": "7dff9512-e01e-0012-634c-fdbe3f000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "9049a71a-0180-4a13-4220-9027aac2cb6a", + "x-ms-request-id": "5be33703-401e-0038-1d5e-6ee960000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s0?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "e351475d-668b-486e-7549-fc79e2e9adcf", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "70fae5e1-34dd-4633-4662-bbf3e072199f", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:06 GMT", - "etag": "\"0x8D9CB638CC8818A\"", - "last-modified": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:19 GMT", + "etag": "\"0x8DA3C75A4D38474\"", + "last-modified": "Mon, 23 May 2022 04:35:20 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "e351475d-668b-486e-7549-fc79e2e9adcf", - "x-ms-request-id": "3f3ac254-201f-0032-474c-fdc598000000", + "x-ms-client-request-id": "70fae5e1-34dd-4633-4662-bbf3e072199f", + "x-ms-request-id": "39313520-401f-004a-525e-6eee2f000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "c56adfa4-7204-4780-4b52-d3d5d3d0c593", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "759af1c9-a4ac-4e0c-5558-214470659f04", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638CCEA492\"", - "last-modified": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:20 GMT", + "etag": "\"0x8DA3C75A508E72C\"", + "last-modified": "Mon, 23 May 2022 04:35:20 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "c56adfa4-7204-4780-4b52-d3d5d3d0c593", + "x-ms-client-request-id": "759af1c9-a4ac-4e0c-5558-214470659f04", "x-ms-content-crc64": "AAAAAAAAAAA=", - "x-ms-request-id": "7dff9541-e01e-0012-0b4c-fdbe3f000000", + "x-ms-request-id": "5be3377d-401e-0038-7c5e-6ee960000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s0/fromfile-c1s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "2e042983-2186-4c4d-5aad-5f9bb941d49c", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d9b585b0-bbe6-4aa7-5a46-88623613b3f9", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638CCEA492\"", - "last-modified": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:20 GMT", + "etag": "\"0x8DA3C75A508E72C\"", + "last-modified": "Mon, 23 May 2022 04:35:20 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "2e042983-2186-4c4d-5aad-5f9bb941d49c", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:07 GMT", + "x-ms-client-request-id": "d9b585b0-bbe6-4aa7-5a46-88623613b3f9", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:20 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:20 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "7dff954a-e01e-0012-134c-fdbe3f000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "5be3379e-401e-0038-165e-6ee960000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s0/fromfile-c1s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "20173c16-f21e-450b-4bc5-b3525f404cfb", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "3b57eb81-29d8-4716-4ce9-05b77e24ba85", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638CCEA492\"", - "last-modified": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:20 GMT", + "etag": "\"0x8DA3C75A508E72C\"", + "last-modified": "Mon, 23 May 2022 04:35:20 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "20173c16-f21e-450b-4bc5-b3525f404cfb", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:07 GMT", + "x-ms-client-request-id": "3b57eb81-29d8-4716-4ce9-05b77e24ba85", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:20 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:20 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "7dff954c-e01e-0012-154c-fdbe3f000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "5be337dc-401e-0038-505e-6ee960000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s0/fromfile-c1s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "f35de50f-a0e7-485d-4475-384e49282176", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "899f4202-d2e1-45bb-72a5-5e933892e9cc", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638CCEA492\"", - "last-modified": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:21 GMT", + "etag": "\"0x8DA3C75A508E72C\"", + "last-modified": "Mon, 23 May 2022 04:35:20 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "f35de50f-a0e7-485d-4475-384e49282176", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:07 GMT", + "x-ms-client-request-id": "899f4202-d2e1-45bb-72a5-5e933892e9cc", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:20 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:20 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "7dff954e-e01e-0012-174c-fdbe3f000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "5be337ff-401e-0038-6e5e-6ee960000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s0/fromfile-c1s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "533999fc-3f07-4f19-4f3b-9fbab3296593", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0acc0ed4-b014-4547-6bd4-cbebde2a5071", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638CCEA492\"", - "last-modified": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:21 GMT", + "etag": "\"0x8DA3C75A508E72C\"", + "last-modified": "Mon, 23 May 2022 04:35:20 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "533999fc-3f07-4f19-4f3b-9fbab3296593", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:07 GMT", + "x-ms-client-request-id": "0acc0ed4-b014-4547-6bd4-cbebde2a5071", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:20 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:21 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "7dff9554-e01e-0012-1c4c-fdbe3f000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "5be33812-401e-0038-7d5e-6ee960000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s0/fromfile-c1s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "12c9a974-17b7-44a8-6acf-5c7a66e99fe6", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "1b23ac0e-4b19-4f1c-6a17-4e9b2373ef45", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:21 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "12c9a974-17b7-44a8-6acf-5c7a66e99fe6", - "x-ms-request-id": "3f3ac255-201f-0032-484c-fdc598000000", + "x-ms-client-request-id": "1b23ac0e-4b19-4f1c-6a17-4e9b2373ef45", + "x-ms-request-id": "39313521-401f-004a-535e-6eee2f000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s0/fromfile-c1s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "4d17e90b-ab82-4173-756f-bc8649b752e3", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "1b438eb5-b108-4fb1-7a80-a76aee8b519e", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:21 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "4d17e90b-ab82-4173-756f-bc8649b752e3", - "x-ms-request-id": "3f3ac256-201f-0032-494c-fdc598000000", + "x-ms-client-request-id": "1b438eb5-b108-4fb1-7a80-a76aee8b519e", + "x-ms-request-id": "39313523-401f-004a-555e-6eee2f000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s0/withparam-uploadfilefromfile-c1s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "6387b62a-d177-4cc4-73ad-4dc90eeda970", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2e200327-e6d7-490f-7d81-0f45d4a8df70", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:26 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "6387b62a-d177-4cc4-73ad-4dc90eeda970", - "x-ms-request-id": "7dff9587-e01e-0012-494c-fdbe3f000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "2e200327-e6d7-490f-7d81-0f45d4a8df70", + "x-ms-request-id": "5be33878-401e-0038-4c5e-6ee960000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s0?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s1.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s1.json index 15ca0882b4..e9cb46dc62 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s1.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s1.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "9694e0ae-8b2c-4528-5eb7-62563e9021d5", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "f707ce8a-fb0c-4934-467a-7d162a8a4e1f", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638CFE3403\"", - "last-modified": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:27 GMT", + "etag": "\"0x8DA3C75A995506A\"", + "last-modified": "Mon, 23 May 2022 04:35:28 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "9694e0ae-8b2c-4528-5eb7-62563e9021d5", - "x-ms-request-id": "055094b2-c01e-0077-734c-fd107b000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "f707ce8a-fb0c-4934-467a-7d162a8a4e1f", + "x-ms-request-id": "ee6646a3-b01e-002c-225e-6ea10f000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "34d3cc8e-51ce-464d-6871-61e25c6ec70d", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "da1ef669-f728-434e-4825-7391dd6f0dcc", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638D1DFDEB\"", - "last-modified": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:28 GMT", + "etag": "\"0x8DA3C75AA861420\"", + "last-modified": "Mon, 23 May 2022 04:35:29 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "34d3cc8e-51ce-464d-6871-61e25c6ec70d", - "x-ms-request-id": "64f106d6-f01f-0031-514c-fd24fc000000", + "x-ms-client-request-id": "da1ef669-f728-434e-4825-7391dd6f0dcc", + "x-ms-request-id": "c47d8588-301f-009b-1b5e-6e8ca5000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "5f659fea-10eb-4c84-6a92-720f2e497dd4", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "27b43236-fba0-49f4-772e-fd28de7e95d3", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638D234B24\"", - "last-modified": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:29 GMT", + "etag": "\"0x8DA3C75AABBB2A4\"", + "last-modified": "Mon, 23 May 2022 04:35:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "5f659fea-10eb-4c84-6a92-720f2e497dd4", + "x-ms-client-request-id": "27b43236-fba0-49f4-772e-fd28de7e95d3", "x-ms-content-crc64": "seRUZAJnvS0=", - "x-ms-request-id": "05509519-c01e-0077-544c-fd107b000000", + "x-ms-request-id": "ee6647bd-b01e-002c-6a5e-6ea10f000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1/fromfile-c1s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "9d0febfa-40cb-4b1f-6c10-1f84b9667e5b", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "5714c0e9-92b5-4991-7bc9-d393aaaa0d71", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "1", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638D234B24\"", - "last-modified": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:30 GMT", + "etag": "\"0x8DA3C75AABBB2A4\"", + "last-modified": "Mon, 23 May 2022 04:35:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "9d0febfa-40cb-4b1f-6c10-1f84b9667e5b", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:07 GMT", + "x-ms-client-request-id": "5714c0e9-92b5-4991-7bc9-d393aaaa0d71", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:29 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:29 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "05509523-c01e-0077-5c4c-fd107b000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ee664801-b01e-002c-1c5e-6ea10f000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1/fromfile-c1s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "157f5599-b77c-4c0d-5cc5-72f61b60eb2e", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "c8404462-73c1-49d6-7e08-281a1f5c64b3", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "1", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638D234B24\"", - "last-modified": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:30 GMT", + "etag": "\"0x8DA3C75AABBB2A4\"", + "last-modified": "Mon, 23 May 2022 04:35:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "157f5599-b77c-4c0d-5cc5-72f61b60eb2e", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:07 GMT", + "x-ms-client-request-id": "c8404462-73c1-49d6-7e08-281a1f5c64b3", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:29 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:29 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "0550952b-c01e-0077-614c-fd107b000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ee664839-b01e-002c-435e-6ea10f000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1/fromfile-c1s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "baea1a55-f57d-401e-4129-fca34994bc24", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "214ffa72-085e-4634-7cc2-264d6e28be81", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "1", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638D234B24\"", - "last-modified": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:30 GMT", + "etag": "\"0x8DA3C75AABBB2A4\"", + "last-modified": "Mon, 23 May 2022 04:35:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "baea1a55-f57d-401e-4129-fca34994bc24", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:07 GMT", + "x-ms-client-request-id": "214ffa72-085e-4634-7cc2-264d6e28be81", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:29 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:29 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "05509532-c01e-0077-664c-fd107b000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ee664861-b01e-002c-625e-6ea10f000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1/fromfile-c1s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "27063e66-dacb-4352-450c-9e7b507b5bde", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "4d8ef1b2-9b7a-4422-54a0-126a51496f6b", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "1", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638D234B24\"", - "last-modified": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:31 GMT", + "etag": "\"0x8DA3C75AABBB2A4\"", + "last-modified": "Mon, 23 May 2022 04:35:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "27063e66-dacb-4352-450c-9e7b507b5bde", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:07 GMT", + "x-ms-client-request-id": "4d8ef1b2-9b7a-4422-54a0-126a51496f6b", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:29 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:30 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "05509537-c01e-0077-6b4c-fd107b000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ee664893-b01e-002c-0f5e-6ea10f000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1/fromfile-c1s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "c974708e-f724-49d1-6a7f-98f64106dbcf", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "29e7e581-d5ba-4b7b-45a7-5295705fe630", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:30 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "c974708e-f724-49d1-6a7f-98f64106dbcf", - "x-ms-request-id": "64f106d7-f01f-0031-524c-fd24fc000000", + "x-ms-client-request-id": "29e7e581-d5ba-4b7b-45a7-5295705fe630", + "x-ms-request-id": "c47d8592-301f-009b-245e-6e8ca5000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s1/fromfile-c1s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "24489312-d781-4e43-6a78-370dc893e7b5", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "ef5a478d-af69-48b6-6a59-a6888ecb77cd", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:31 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "24489312-d781-4e43-6a78-370dc893e7b5", - "x-ms-request-id": "64f106da-f01f-0031-554c-fd24fc000000", + "x-ms-client-request-id": "ef5a478d-af69-48b6-6a59-a6888ecb77cd", + "x-ms-request-id": "c47d8597-301f-009b-295e-6e8ca5000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s1/withparam-uploadfilefromfile-c1s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "85bf1155-ea6c-4bff-43ed-cdf5dcd79e9f", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0df7eddb-6d32-45c2-6cec-9db7210dff3e", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:33 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "85bf1155-ea6c-4bff-43ed-cdf5dcd79e9f", - "x-ms-request-id": "05509577-c01e-0077-284c-fd107b000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "0df7eddb-6d32-45c2-6cec-9db7210dff3e", + "x-ms-request-id": "ee664966-b01e-002c-415e-6ea10f000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s1022976.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s1022976.json index 450dd88be4..7f443c8699 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s1022976.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s1022976.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "0a6492c7-f781-4c77-5eab-ea3f4f4c8df9", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "f429416a-cd30-4f8c-5bd2-5f43ad0367a7", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638DF9ACA6\"", - "last-modified": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:35:57 GMT", + "etag": "\"0x8DA3C75BAE9B38E\"", + "last-modified": "Mon, 23 May 2022 04:35:57 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "0a6492c7-f781-4c77-5eab-ea3f4f4c8df9", - "x-ms-request-id": "8529090b-e01e-0060-654c-fdb970000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "f429416a-cd30-4f8c-5bd2-5f43ad0367a7", + "x-ms-request-id": "2eabe62a-f01e-004f-065e-6e3cf4000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1022976?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "3a6794e3-3a69-4edc-439c-f1bd511e8438", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "31c58c43-cb4c-4d4c-79c6-69c399256669", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638E04AE64\"", - "last-modified": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:35:58 GMT", + "etag": "\"0x8DA3C75BBD1B676\"", + "last-modified": "Mon, 23 May 2022 04:35:58 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "3a6794e3-3a69-4edc-439c-f1bd511e8438", - "x-ms-request-id": "d4dbd11a-001f-0025-5d4c-fd6c93000000", + "x-ms-client-request-id": "31c58c43-cb4c-4d4c-79c6-69c399256669", + "x-ms-request-id": "8af763f2-301f-0050-1e5e-6e8ff0000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "500ac00a-45dc-4525-51d4-4b0ae06c93ec", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "fbc8ed84-e93e-4162-601f-c791377286cd", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638E105A6B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:36:00 GMT", + "etag": "\"0x8DA3C75BCBF9A20\"", + "last-modified": "Mon, 23 May 2022 04:36:00 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "500ac00a-45dc-4525-51d4-4b0ae06c93ec", + "x-ms-client-request-id": "fbc8ed84-e93e-4162-601f-c791377286cd", "x-ms-content-crc64": "VdHGJmaQf4M=", - "x-ms-request-id": "8529093f-e01e-0060-124c-fdb970000000", + "x-ms-request-id": "2eabe6ea-f01e-004f-2f5e-6e3cf4000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1022976/fromfile-c1s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "782dcf02-cf53-49df-479b-1baceb747f21", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d6673884-a21a-4c06-5457-55c3aa2b9a5d", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "1022976", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638E105A6B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:36:00 GMT", + "etag": "\"0x8DA3C75BCBF9A20\"", + "last-modified": "Mon, 23 May 2022 04:36:00 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "782dcf02-cf53-49df-479b-1baceb747f21", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:09 GMT", + "x-ms-client-request-id": "d6673884-a21a-4c06-5457-55c3aa2b9a5d", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:00 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:00 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "85290959-e01e-0060-2b4c-fdb970000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2eabe7fa-f01e-004f-2a5e-6e3cf4000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1022976/fromfile-c1s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "9e51c3ae-2abf-462d-577c-653b05ecb515", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "7583d839-8651-4bd3-6254-d6320c2bf67b", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "1022976", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638E105A6B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:36:00 GMT", + "etag": "\"0x8DA3C75BCBF9A20\"", + "last-modified": "Mon, 23 May 2022 04:36:00 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "9e51c3ae-2abf-462d-577c-653b05ecb515", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:09 GMT", + "x-ms-client-request-id": "7583d839-8651-4bd3-6254-d6320c2bf67b", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:00 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:00 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "85290966-e01e-0060-374c-fdb970000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2eabe823-f01e-004f-515e-6e3cf4000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1022976/fromfile-c1s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "21ac9363-b18c-4198-6f40-823151ab7eb3", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "c6f8d81a-627e-444b-7d4c-cfe5b8f41fbe", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "1022976", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638E105A6B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:36:01 GMT", + "etag": "\"0x8DA3C75BCBF9A20\"", + "last-modified": "Mon, 23 May 2022 04:36:00 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "21ac9363-b18c-4198-6f40-823151ab7eb3", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:09 GMT", + "x-ms-client-request-id": "c6f8d81a-627e-444b-7d4c-cfe5b8f41fbe", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:00 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:00 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "8529096e-e01e-0060-3f4c-fdb970000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2eabe876-f01e-004f-085e-6e3cf4000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1022976/fromfile-c1s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "afb0d7b7-4b96-4a4e-5020-995e4803683b", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9299d323-dccb-4f1b-4c5c-dac98b48343a", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "1022976", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", - "etag": "\"0x8D9CB638E105A6B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:36:03 GMT", + "etag": "\"0x8DA3C75BCBF9A20\"", + "last-modified": "Mon, 23 May 2022 04:36:00 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "afb0d7b7-4b96-4a4e-5020-995e4803683b", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:09 GMT", + "x-ms-client-request-id": "9299d323-dccb-4f1b-4c5c-dac98b48343a", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:00 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:01 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "852909cb-e01e-0060-154c-fdb970000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2eabe9ee-f01e-004f-3c5e-6e3cf4000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1022976/fromfile-c1s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "818edd2b-ae8e-4447-5ac4-69ede54b964a", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "8ff3f69c-2967-4642-6b49-2c38182ebce0", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:36:04 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "818edd2b-ae8e-4447-5ac4-69ede54b964a", - "x-ms-request-id": "d4dbd122-001f-0025-644c-fd6c93000000", + "x-ms-client-request-id": "8ff3f69c-2967-4642-6b49-2c38182ebce0", + "x-ms-request-id": "8af763fd-301f-0050-255e-6e8ff0000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s1022976/fromfile-c1s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "7dc28fdf-5311-4e57-7536-d61149f1d6ce", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "c5166825-e712-4f5e-47ad-fbd58d296380", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:36:04 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "7dc28fdf-5311-4e57-7536-d61149f1d6ce", - "x-ms-request-id": "d4dbd124-001f-0025-664c-fd6c93000000", + "x-ms-client-request-id": "c5166825-e712-4f5e-47ad-fbd58d296380", + "x-ms-request-id": "8af763fe-301f-0050-265e-6e8ff0000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s1022976/withparam-uploadfilefromfile-c1s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d4b91cdd-e935-4b50-6a26-423b987f25c0", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "fe7d78eb-d68a-473a-7c00-616f578171c0", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:36:04 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "d4b91cdd-e935-4b50-6a26-423b987f25c0", - "x-ms-request-id": "85290a5c-e01e-0060-1c4c-fdb970000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "fe7d78eb-d68a-473a-7c00-616f578171c0", + "x-ms-request-id": "2eabea83-f01e-004f-2d5e-6e3cf4000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1022976?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s1048576.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s1048576.json index a198d3f940..20e7558878 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s1048576.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s1048576.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "956d91c7-7a3d-470a-5fc7-435d38e8168e", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9a760770-63c3-4429-7855-d86d91641601", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", - "etag": "\"0x8D9CB638E6CEA99\"", - "last-modified": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:06 GMT", + "etag": "\"0x8DA3C75C081E7DD\"", + "last-modified": "Mon, 23 May 2022 04:36:06 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "956d91c7-7a3d-470a-5fc7-435d38e8168e", - "x-ms-request-id": "fd70d125-b01e-006d-364c-fd71a4000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "9a760770-63c3-4429-7855-d86d91641601", + "x-ms-request-id": "2f6e0fb9-d01e-003a-765e-6e57d8000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1048576?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "3bbbb620-d92d-4311-603f-851a3b428f64", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "4a9e1d69-ccf8-4f35-43fd-b17f85bafe07", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", - "etag": "\"0x8D9CB638E76999C\"", - "last-modified": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:07 GMT", + "etag": "\"0x8DA3C75C167522E\"", + "last-modified": "Mon, 23 May 2022 04:36:07 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "3bbbb620-d92d-4311-603f-851a3b428f64", - "x-ms-request-id": "45a6b35a-e01f-0060-084c-fdb970000000", + "x-ms-client-request-id": "4a9e1d69-ccf8-4f35-43fd-b17f85bafe07", + "x-ms-request-id": "5e9b28e6-801f-008e-235e-6e9b16000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "820dc233-19df-4126-4756-d59fdbfc3fbe", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "11a3ce1a-986b-4449-51b7-7227a447e214", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", - "etag": "\"0x8D9CB638E86AB1B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:09 GMT", + "etag": "\"0x8DA3C75C2564478\"", + "last-modified": "Mon, 23 May 2022 04:36:09 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "820dc233-19df-4126-4756-d59fdbfc3fbe", + "x-ms-client-request-id": "11a3ce1a-986b-4449-51b7-7227a447e214", "x-ms-content-crc64": "EC00phK3Kqg=", - "x-ms-request-id": "fd70d144-b01e-006d-504c-fd71a4000000", + "x-ms-request-id": "2f6e119d-d01e-003a-445e-6e57d8000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1048576/fromfile-c1s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "33bfd070-1fec-4079-6011-b2eaa383b5d4", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "13f45d9f-1599-4a15-432b-d07c9ac52475", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "1048576", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", - "etag": "\"0x8D9CB638E86AB1B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:09 GMT", + "etag": "\"0x8DA3C75C2564478\"", + "last-modified": "Mon, 23 May 2022 04:36:09 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "33bfd070-1fec-4079-6011-b2eaa383b5d4", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:10 GMT", + "x-ms-client-request-id": "13f45d9f-1599-4a15-432b-d07c9ac52475", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:09 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:09 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd70d15b-b01e-006d-654c-fd71a4000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2f6e134c-d01e-003a-645e-6e57d8000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1048576/fromfile-c1s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8fa4befc-dfff-4a74-71e3-9076d5a860da", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "c4a8b7b4-6418-4dbc-5365-53ac8a1e3432", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "1048576", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", - "etag": "\"0x8D9CB638E86AB1B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:09 GMT", + "etag": "\"0x8DA3C75C2564478\"", + "last-modified": "Mon, 23 May 2022 04:36:09 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "8fa4befc-dfff-4a74-71e3-9076d5a860da", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:10 GMT", + "x-ms-client-request-id": "c4a8b7b4-6418-4dbc-5365-53ac8a1e3432", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:09 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:09 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd70d161-b01e-006d-694c-fd71a4000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2f6e13a5-d01e-003a-265e-6e57d8000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1048576/fromfile-c1s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "fb595ffe-7e4c-4693-4474-52c7a4c7eb31", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "133f4014-7284-4960-5c82-33a2c4f66a1e", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "1048576", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", - "etag": "\"0x8D9CB638E86AB1B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:10 GMT", + "etag": "\"0x8DA3C75C2564478\"", + "last-modified": "Mon, 23 May 2022 04:36:09 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "fb595ffe-7e4c-4693-4474-52c7a4c7eb31", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:10 GMT", + "x-ms-client-request-id": "133f4014-7284-4960-5c82-33a2c4f66a1e", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:09 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:09 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd70d166-b01e-006d-6d4c-fd71a4000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2f6e140d-d01e-003a-075e-6e57d8000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1048576/fromfile-c1s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "84f66b6d-5c1d-42e9-45de-7fcfeae9152c", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "89279896-9030-4f37-41dd-1c318ca1f3a1", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "1048576", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", - "etag": "\"0x8D9CB638E86AB1B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:12 GMT", + "etag": "\"0x8DA3C75C2564478\"", + "last-modified": "Mon, 23 May 2022 04:36:09 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "84f66b6d-5c1d-42e9-45de-7fcfeae9152c", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:10 GMT", + "x-ms-client-request-id": "89279896-9030-4f37-41dd-1c318ca1f3a1", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:09 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:10 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd70d176-b01e-006d-7d4c-fd71a4000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2f6e1543-d01e-003a-0b5e-6e57d8000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1048576/fromfile-c1s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "12008ddb-c553-4ed7-69da-7a18b5a56984", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "c5854a5c-fbd7-4187-43c8-e00802e22a22", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:36:12 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "12008ddb-c553-4ed7-69da-7a18b5a56984", - "x-ms-request-id": "45a6b35b-e01f-0060-094c-fdb970000000", + "x-ms-client-request-id": "c5854a5c-fbd7-4187-43c8-e00802e22a22", + "x-ms-request-id": "5e9b28ee-801f-008e-2a5e-6e9b16000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s1048576/fromfile-c1s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "0cde956b-9a71-4609-41ab-b80ada123405", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "1818a1a0-1411-4f94-6adc-3a8eb1cf0900", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:36:13 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "0cde956b-9a71-4609-41ab-b80ada123405", - "x-ms-request-id": "45a6b35c-e01f-0060-0a4c-fdb970000000", + "x-ms-client-request-id": "1818a1a0-1411-4f94-6adc-3a8eb1cf0900", + "x-ms-request-id": "5e9b28f0-801f-008e-2c5e-6e9b16000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s1048576/withparam-uploadfilefromfile-c1s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "de171869-7f87-4630-6511-dc146edcecbd", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "cd344e4b-16a2-4419-5185-ab5a723061dc", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:17 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "de171869-7f87-4630-6511-dc146edcecbd", - "x-ms-request-id": "fd70d197-b01e-006d-1b4c-fd71a4000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "cd344e4b-16a2-4419-5185-ab5a723061dc", + "x-ms-request-id": "2f6e162e-d01e-003a-615e-6e57d8000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s1048576?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s2.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s2.json index 74ace16650..4b8e224e02 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s2.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s2.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d5c6db52-b5c3-4ec0-77f4-60254c04bfad", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "48152ad1-865d-437f-43f6-335d2c0c7876", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638D4A391D\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:34 GMT", + "etag": "\"0x8DA3C75AE0E293A\"", + "last-modified": "Mon, 23 May 2022 04:35:35 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "d5c6db52-b5c3-4ec0-77f4-60254c04bfad", - "x-ms-request-id": "bcf4f067-a01e-002c-0d4c-fd2940000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "48152ad1-865d-437f-43f6-335d2c0c7876", + "x-ms-request-id": "b3418bfa-e01e-0098-595e-6e6dc1000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "c55a4746-1ad2-4c8a-4d57-21bdf349f24f", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "5129dc60-5b5c-4c04-6470-257052f2c953", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638D542D7D\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:36 GMT", + "etag": "\"0x8DA3C75AEF3379A\"", + "last-modified": "Mon, 23 May 2022 04:35:37 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "c55a4746-1ad2-4c8a-4d57-21bdf349f24f", - "x-ms-request-id": "2778f41d-d01f-0044-684c-fd4fd0000000", + "x-ms-client-request-id": "5129dc60-5b5c-4c04-6470-257052f2c953", + "x-ms-request-id": "deefa706-001f-0074-1d5e-6e7950000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8fb5a5ed-3609-498f-7802-0b048e25bcac", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b28cacf4-fa22-4709-5355-3c297b414d30", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", - "etag": "\"0x8D9CB638D5B1FDB\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:36 GMT", + "etag": "\"0x8DA3C75AF2A77EB\"", + "last-modified": "Mon, 23 May 2022 04:35:37 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "8fb5a5ed-3609-498f-7802-0b048e25bcac", + "x-ms-client-request-id": "b28cacf4-fa22-4709-5355-3c297b414d30", "x-ms-content-crc64": "GkCMY8i4s0E=", - "x-ms-request-id": "bcf4f090-a01e-002c-2f4c-fd2940000000", + "x-ms-request-id": "b3418cf1-e01e-0098-1a5e-6e6dc1000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2/fromfile-c1s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "9c298aaf-13f2-4295-4796-51c07e5115cb", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "985e67ae-146c-4d76-4352-70b0af5ecd6f", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "2", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638D5B1FDB\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:36 GMT", + "etag": "\"0x8DA3C75AF2A77EB\"", + "last-modified": "Mon, 23 May 2022 04:35:37 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "9c298aaf-13f2-4295-4796-51c07e5115cb", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:08 GMT", + "x-ms-client-request-id": "985e67ae-146c-4d76-4352-70b0af5ecd6f", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:37 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "bcf4f097-a01e-002c-354c-fd2940000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "b3418d2c-e01e-0098-535e-6e6dc1000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2/fromfile-c1s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "62b8cd29-356e-4b65-6b76-646f8610bc55", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "fee0e181-2aaa-4fe8-6794-c9f414fe7953", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "2", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638D5B1FDB\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:37 GMT", + "etag": "\"0x8DA3C75AF2A77EB\"", + "last-modified": "Mon, 23 May 2022 04:35:37 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "62b8cd29-356e-4b65-6b76-646f8610bc55", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:08 GMT", + "x-ms-client-request-id": "fee0e181-2aaa-4fe8-6794-c9f414fe7953", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:37 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "bcf4f099-a01e-002c-374c-fd2940000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "b3418d50-e01e-0098-755e-6e6dc1000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2/fromfile-c1s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "69cacb6e-61e2-414b-43e1-af15f7fe13c1", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "a5170fd5-9d94-4b8e-6ed2-7295c879b068", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "2", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638D5B1FDB\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:37 GMT", + "etag": "\"0x8DA3C75AF2A77EB\"", + "last-modified": "Mon, 23 May 2022 04:35:37 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "69cacb6e-61e2-414b-43e1-af15f7fe13c1", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:08 GMT", + "x-ms-client-request-id": "a5170fd5-9d94-4b8e-6ed2-7295c879b068", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:37 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "bcf4f09b-a01e-002c-394c-fd2940000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "b3418d71-e01e-0098-135e-6e6dc1000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2/fromfile-c1s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8ec2646f-79f4-4f0e-74db-b74aae7f0a40", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "afbbd24c-75b8-490a-52cd-74baccfd96f6", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "2", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638D5B1FDB\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:37 GMT", + "etag": "\"0x8DA3C75AF2A77EB\"", + "last-modified": "Mon, 23 May 2022 04:35:37 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "8ec2646f-79f4-4f0e-74db-b74aae7f0a40", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:08 GMT", + "x-ms-client-request-id": "afbbd24c-75b8-490a-52cd-74baccfd96f6", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:37 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:38 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "bcf4f0a5-a01e-002c-424c-fd2940000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "b3418d9a-e01e-0098-395e-6e6dc1000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2/fromfile-c1s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "58b55044-2e6c-482a-6f92-78913c53b96d", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d3a4636a-1d84-4fef-7ca5-6601d6ce254d", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:38 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "58b55044-2e6c-482a-6f92-78913c53b96d", - "x-ms-request-id": "2778f41e-d01f-0044-694c-fd4fd0000000", + "x-ms-client-request-id": "d3a4636a-1d84-4fef-7ca5-6601d6ce254d", + "x-ms-request-id": "deefa70d-001f-0074-225e-6e7950000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s2/fromfile-c1s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "eae20463-63c8-4363-67c0-1034182f6798", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "47693e75-47f1-47ee-4b6b-ecc12850ac27", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:07 GMT", + "date": "Mon, 23 May 2022 04:35:39 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "eae20463-63c8-4363-67c0-1034182f6798", - "x-ms-request-id": "2778f41f-d01f-0044-6a4c-fd4fd0000000", + "x-ms-client-request-id": "47693e75-47f1-47ee-4b6b-ecc12850ac27", + "x-ms-request-id": "deefa70f-001f-0074-235e-6e7950000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s2/withparam-uploadfilefromfile-c1s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "5bf06273-70e5-4244-54e5-8d7c372c68d5", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "525dcba7-c850-4cb2-62ba-70ba91e42d0d", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:40 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "5bf06273-70e5-4244-54e5-8d7c372c68d5", - "x-ms-request-id": "bcf4f0c6-a01e-002c-604c-fd2940000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "525dcba7-c850-4cb2-62ba-70ba91e42d0d", + "x-ms-request-id": "b3418e14-e01e-0098-235e-6e6dc1000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s2048.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s2048.json index ec91ad3f28..02fc87dd3f 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s2048.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s2048.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "689332dc-aa30-426f-66fe-f91f58e1b5d2", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "4a98d874-0f10-4873-5eee-3f82cce69527", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638D80256F\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:41 GMT", + "etag": "\"0x8DA3C75B23919BF\"", + "last-modified": "Mon, 23 May 2022 04:35:42 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "689332dc-aa30-426f-66fe-f91f58e1b5d2", - "x-ms-request-id": "93103bec-901e-0045-684c-fd100c000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "4a98d874-0f10-4873-5eee-3f82cce69527", + "x-ms-request-id": "e1b5c042-c01e-0036-635e-6ec0d0000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2048?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "7fff1d26-dff4-4a74-52c7-187c8203508d", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "bb27f16a-7156-47b8-7cc0-0b96267cf0a5", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638D8D931A\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:43 GMT", + "etag": "\"0x8DA3C75B33686CC\"", + "last-modified": "Mon, 23 May 2022 04:35:44 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "7fff1d26-dff4-4a74-52c7-187c8203508d", - "x-ms-request-id": "b1f3eb47-f01f-0043-7a4c-fd23b3000000", + "x-ms-client-request-id": "bb27f16a-7156-47b8-7cc0-0b96267cf0a5", + "x-ms-request-id": "da920bad-b01f-0061-195e-6e6ee3000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "a69bd9ba-b230-449c-6357-b73308593554", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d57e51ba-edcd-4132-5a00-cf5da264f3fd", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638D93143D\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:43 GMT", + "etag": "\"0x8DA3C75B36E2C61\"", + "last-modified": "Mon, 23 May 2022 04:35:44 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "a69bd9ba-b230-449c-6357-b73308593554", + "x-ms-client-request-id": "d57e51ba-edcd-4132-5a00-cf5da264f3fd", "x-ms-content-crc64": "Evka7LWUXng=", - "x-ms-request-id": "93103c13-901e-0045-0a4c-fd100c000000", + "x-ms-request-id": "e1b5c0ef-c01e-0036-755e-6ec0d0000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2048/fromfile-c1s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "dcaabfb5-9d32-436f-4646-b66bc4a15c91", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "3ea61e45-b259-44ba-5616-9e37657f2fd0", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "2048", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638D93143D\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:44 GMT", + "etag": "\"0x8DA3C75B36E2C61\"", + "last-modified": "Mon, 23 May 2022 04:35:44 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "dcaabfb5-9d32-436f-4646-b66bc4a15c91", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:08 GMT", + "x-ms-client-request-id": "3ea61e45-b259-44ba-5616-9e37657f2fd0", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:44 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:44 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "93103c19-901e-0045-104c-fd100c000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "e1b5c106-c01e-0036-065e-6ec0d0000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2048/fromfile-c1s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "820b64c5-6fd7-45c9-7b25-9f9e9963ee76", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "48b5f55f-3aab-497e-79be-cb8ea8ac2205", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "2048", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638D93143D\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:44 GMT", + "etag": "\"0x8DA3C75B36E2C61\"", + "last-modified": "Mon, 23 May 2022 04:35:44 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "820b64c5-6fd7-45c9-7b25-9f9e9963ee76", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:08 GMT", + "x-ms-client-request-id": "48b5f55f-3aab-497e-79be-cb8ea8ac2205", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:44 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:44 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "93103c1e-901e-0045-154c-fd100c000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "e1b5c10e-c01e-0036-0d5e-6ec0d0000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2048/fromfile-c1s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "3a9152f8-2114-45ad-59c0-6b49d11a1304", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9c6f1ba6-0ab4-4dd5-5518-b14555ecaab1", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "2048", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638D93143D\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:45 GMT", + "etag": "\"0x8DA3C75B36E2C61\"", + "last-modified": "Mon, 23 May 2022 04:35:44 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "3a9152f8-2114-45ad-59c0-6b49d11a1304", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:08 GMT", + "x-ms-client-request-id": "9c6f1ba6-0ab4-4dd5-5518-b14555ecaab1", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:44 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:44 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "93103c22-901e-0045-194c-fd100c000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "e1b5c121-c01e-0036-1d5e-6ec0d0000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2048/fromfile-c1s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "cfe5bca3-8aba-4f71-79c6-3d6869061f27", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b43d2337-5c65-4ede-626d-b50075915121", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "2048", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638D93143D\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:45 GMT", + "etag": "\"0x8DA3C75B36E2C61\"", + "last-modified": "Mon, 23 May 2022 04:35:44 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "cfe5bca3-8aba-4f71-79c6-3d6869061f27", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:08 GMT", + "x-ms-client-request-id": "b43d2337-5c65-4ede-626d-b50075915121", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:44 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "93103c26-901e-0045-1c4c-fd100c000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "e1b5c12f-c01e-0036-245e-6ec0d0000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2048/fromfile-c1s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8c69ca76-ec53-41ce-649a-f9df864c6cb6", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "6fa550be-f7ff-4a83-7517-c0980240b2bb", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:45 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "8c69ca76-ec53-41ce-649a-f9df864c6cb6", - "x-ms-request-id": "b1f3eb48-f01f-0043-7b4c-fd23b3000000", + "x-ms-client-request-id": "6fa550be-f7ff-4a83-7517-c0980240b2bb", + "x-ms-request-id": "da920baf-b01f-0061-1a5e-6e6ee3000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s2048/fromfile-c1s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "6a833b78-b07d-4fb7-7984-aa8d268e8cb0", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "a26391ba-791d-4dd9-626e-62fd98981aff", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:46 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "6a833b78-b07d-4fb7-7984-aa8d268e8cb0", - "x-ms-request-id": "b1f3eb4b-f01f-0043-7e4c-fd23b3000000", + "x-ms-client-request-id": "a26391ba-791d-4dd9-626e-62fd98981aff", + "x-ms-request-id": "da920bb0-b01f-0061-1b5e-6e6ee3000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s2048/withparam-uploadfilefromfile-c1s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8858d331-1d37-4e77-709b-cc367a21c4ad", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9bcbd243-33b0-481f-64ee-d6b3a5efd339", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:47 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "8858d331-1d37-4e77-709b-cc367a21c4ad", - "x-ms-request-id": "93103c51-901e-0045-434c-fd100c000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "9bcbd243-33b0-481f-64ee-d6b3a5efd339", + "x-ms-request-id": "e1b5c169-c01e-0036-505e-6ec0d0000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2048?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s2097151.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s2097151.json index 178cb6dec0..7a7ae35e33 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s2097151.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s2097151.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "569a572f-263f-4d79-6a95-25e2a3b2033f", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "c0e9e223-283a-43c0-46c5-c4e882480f09", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", - "etag": "\"0x8D9CB638EB44ED6\"", - "last-modified": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:18 GMT", + "etag": "\"0x8DA3C75C7EEC66D\"", + "last-modified": "Mon, 23 May 2022 04:36:18 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "569a572f-263f-4d79-6a95-25e2a3b2033f", - "x-ms-request-id": "fd47872f-101e-0016-134c-fd3338000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "c0e9e223-283a-43c0-46c5-c4e882480f09", + "x-ms-request-id": "8a5637d1-401e-0065-6e5e-6ee3e4000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2097151?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "0301234b-d52d-47ed-627c-9deb8e69884a", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "bf962f7c-1531-4dab-4d7c-f48906e8ba9e", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:10 GMT", - "etag": "\"0x8D9CB638EC17AA9\"", - "last-modified": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:20 GMT", + "etag": "\"0x8DA3C75C8EAC0B5\"", + "last-modified": "Mon, 23 May 2022 04:36:20 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "0301234b-d52d-47ed-627c-9deb8e69884a", - "x-ms-request-id": "a66838dc-501f-004a-204c-fd6660000000", + "x-ms-client-request-id": "bf962f7c-1531-4dab-4d7c-f48906e8ba9e", + "x-ms-request-id": "133cd00a-a01f-0042-045e-6ef420000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "203cdea1-083a-4b06-7c3e-fd2eb0a0cc3c", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b78b7b55-2f5f-4b55-4728-cd54a9081d83", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", - "etag": "\"0x8D9CB638ED19D33\"", - "last-modified": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:25 GMT", + "etag": "\"0x8DA3C75CBEBCCCE\"", + "last-modified": "Mon, 23 May 2022 04:36:25 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "203cdea1-083a-4b06-7c3e-fd2eb0a0cc3c", + "x-ms-client-request-id": "b78b7b55-2f5f-4b55-4728-cd54a9081d83", "x-ms-content-crc64": "oK9HAae4vsU=", - "x-ms-request-id": "fd478760-101e-0016-404c-fd3338000000", + "x-ms-request-id": "8a5638c8-401e-0065-2d5e-6ee3e4000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2097151/fromfile-c1s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "55f0993e-8ccb-43bb-5418-cdcdc6cdd0a3", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "edb49e05-7820-4cf3-597e-1e78368a47de", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "2097151", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", - "etag": "\"0x8D9CB638ED19D33\"", - "last-modified": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:25 GMT", + "etag": "\"0x8DA3C75CBEBCCCE\"", + "last-modified": "Mon, 23 May 2022 04:36:25 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "55f0993e-8ccb-43bb-5418-cdcdc6cdd0a3", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:10 GMT", + "x-ms-client-request-id": "edb49e05-7820-4cf3-597e-1e78368a47de", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:25 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:25 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd478786-101e-0016-644c-fd3338000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "8a563ba5-401e-0065-195e-6ee3e4000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2097151/fromfile-c1s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "3877cafe-e20f-4a48-53b2-4e1cc2d17246", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "44673868-11cd-4431-534c-15c834f09959", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "2097151", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", - "etag": "\"0x8D9CB638ED19D33\"", - "last-modified": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:26 GMT", + "etag": "\"0x8DA3C75CBEBCCCE\"", + "last-modified": "Mon, 23 May 2022 04:36:25 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "3877cafe-e20f-4a48-53b2-4e1cc2d17246", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:10 GMT", + "x-ms-client-request-id": "44673868-11cd-4431-534c-15c834f09959", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:25 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:25 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd478791-101e-0016-6c4c-fd3338000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "8a563bd5-401e-0065-415e-6ee3e4000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2097151/fromfile-c1s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b1b4b7d4-bd62-47a7-5fe3-f5cbef87a86c", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "823d101e-d4c4-468b-5450-77b8efeeeba6", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "2097151", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", - "etag": "\"0x8D9CB638ED19D33\"", - "last-modified": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:26 GMT", + "etag": "\"0x8DA3C75CBEBCCCE\"", + "last-modified": "Mon, 23 May 2022 04:36:25 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "b1b4b7d4-bd62-47a7-5fe3-f5cbef87a86c", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:10 GMT", + "x-ms-client-request-id": "823d101e-d4c4-468b-5450-77b8efeeeba6", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:25 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:25 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd478799-101e-0016-734c-fd3338000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "8a563c17-401e-0065-755e-6ee3e4000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2097151/fromfile-c1s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8774c1d3-587c-4611-63f1-fd098aa3e19d", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "a9d9a523-b9c4-49a9-43d8-8ca3048ee6a0", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "2097151", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:10 GMT", - "etag": "\"0x8D9CB638ED19D33\"", - "last-modified": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:29 GMT", + "etag": "\"0x8DA3C75CBEBCCCE\"", + "last-modified": "Mon, 23 May 2022 04:36:25 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "8774c1d3-587c-4611-63f1-fd098aa3e19d", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:10 GMT", + "x-ms-client-request-id": "a9d9a523-b9c4-49a9-43d8-8ca3048ee6a0", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:25 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:26 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd4787aa-101e-0016-044c-fd3338000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "8a563da5-401e-0065-215e-6ee3e4000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2097151/fromfile-c1s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "025ee279-5a4e-4109-6ed1-d75ebf0c2f67", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "92f1899e-7a36-4ae5-47c9-6dee59836a7f", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:29 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "025ee279-5a4e-4109-6ed1-d75ebf0c2f67", - "x-ms-request-id": "a66838e2-501f-004a-264c-fd6660000000", + "x-ms-client-request-id": "92f1899e-7a36-4ae5-47c9-6dee59836a7f", + "x-ms-request-id": "133cd023-a01f-0042-085e-6ef420000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s2097151/fromfile-c1s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "6e42bc00-53e3-4c7c-7bfd-43a6f1a20337", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d61586f1-394b-41e3-6747-234c86528887", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:30 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "6e42bc00-53e3-4c7c-7bfd-43a6f1a20337", - "x-ms-request-id": "a66838e6-501f-004a-2a4c-fd6660000000", + "x-ms-client-request-id": "d61586f1-394b-41e3-6747-234c86528887", + "x-ms-request-id": "133cd024-a01f-0042-095e-6ef420000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s2097151/withparam-uploadfilefromfile-c1s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "78f8edbf-9947-4dad-4a11-eaf9918387dd", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "31e3f357-96c5-49a0-6f63-53f10e141106", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:31 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "78f8edbf-9947-4dad-4a11-eaf9918387dd", - "x-ms-request-id": "fd4787ec-101e-0016-434c-fd3338000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "31e3f357-96c5-49a0-6f63-53f10e141106", + "x-ms-request-id": "8a563e2c-401e-0065-085e-6ee3e4000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s2097151?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s3145728.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s3145728.json index ecf316c008..e08bb8b96c 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s3145728.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s3145728.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "e094ec83-de57-4de7-4ca5-0585cae97b97", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0d3d3df6-470b-4bec-7184-abcca73098d5", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", - "etag": "\"0x8D9CB638F07E625\"", - "last-modified": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:33 GMT", + "etag": "\"0x8DA3C75D0A45632\"", + "last-modified": "Mon, 23 May 2022 04:36:33 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "e094ec83-de57-4de7-4ca5-0585cae97b97", - "x-ms-request-id": "28725c3d-401e-001b-274c-fdfbec000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "0d3d3df6-470b-4bec-7184-abcca73098d5", + "x-ms-request-id": "70efc347-701e-009a-605e-6ed379000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s3145728?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "2137e93d-3b71-43c3-5af2-293c23f240eb", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "3f36df0c-3e36-42b3-6f40-2d10f15ee42a", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:10 GMT", - "etag": "\"0x8D9CB638F17BC45\"", - "last-modified": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:34 GMT", + "etag": "\"0x8DA3C75D19506F4\"", + "last-modified": "Mon, 23 May 2022 04:36:35 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "2137e93d-3b71-43c3-5af2-293c23f240eb", - "x-ms-request-id": "c793ca8c-801f-0049-2e4c-fd8704000000", + "x-ms-client-request-id": "3f36df0c-3e36-42b3-6f40-2d10f15ee42a", + "x-ms-request-id": "47b5677d-d01f-0058-375e-6e95ff000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8135e6af-e4d1-4e61-57d9-58ae4793de05", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b3c3c633-1384-4234-56b1-ef34e45d9f65", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", - "etag": "\"0x8D9CB638F287500\"", - "last-modified": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:36 GMT", + "etag": "\"0x8DA3C75D2C40639\"", + "last-modified": "Mon, 23 May 2022 04:36:37 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "8135e6af-e4d1-4e61-57d9-58ae4793de05", + "x-ms-client-request-id": "b3c3c633-1384-4234-56b1-ef34e45d9f65", "x-ms-content-crc64": "KDjN031jIaA=", - "x-ms-request-id": "28725c6e-401e-001b-514c-fdfbec000000", + "x-ms-request-id": "70efc4c6-701e-009a-365e-6ed379000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s3145728/fromfile-c1s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "2d62e793-3444-47f3-592f-96dcb16b9bfa", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "ced95e66-e92b-4f83-6973-b752d26d2e26", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "3145728", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", - "etag": "\"0x8D9CB638F287500\"", - "last-modified": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:37 GMT", + "etag": "\"0x8DA3C75D2C40639\"", + "last-modified": "Mon, 23 May 2022 04:36:37 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "2d62e793-3444-47f3-592f-96dcb16b9bfa", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:11 GMT", + "x-ms-client-request-id": "ced95e66-e92b-4f83-6973-b752d26d2e26", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:37 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "28725c99-401e-001b-784c-fdfbec000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "70efc648-701e-009a-0b5e-6ed379000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s3145728/fromfile-c1s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "14884a0a-655d-4203-7c03-073ae222ff93", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "f1f310e5-efee-46b0-700b-75baf6007922", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "3145728", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", - "etag": "\"0x8D9CB638F287500\"", - "last-modified": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:37 GMT", + "etag": "\"0x8DA3C75D2C40639\"", + "last-modified": "Mon, 23 May 2022 04:36:37 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "14884a0a-655d-4203-7c03-073ae222ff93", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:11 GMT", + "x-ms-client-request-id": "f1f310e5-efee-46b0-700b-75baf6007922", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:37 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "28725c9d-401e-001b-7c4c-fdfbec000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "70efc6a9-701e-009a-605e-6ed379000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s3145728/fromfile-c1s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b7db9e94-3775-4bf3-4dc1-e90c679f23ec", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "ecc0b2a8-3080-4b77-5be8-6ef0259d6542", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "3145728", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", - "etag": "\"0x8D9CB638F287500\"", - "last-modified": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:37 GMT", + "etag": "\"0x8DA3C75D2C40639\"", + "last-modified": "Mon, 23 May 2022 04:36:37 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "b7db9e94-3775-4bf3-4dc1-e90c679f23ec", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:11 GMT", + "x-ms-client-request-id": "ecc0b2a8-3080-4b77-5be8-6ef0259d6542", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:37 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "28725ca0-401e-001b-7f4c-fdfbec000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "70efc70c-701e-009a-365e-6ed379000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s3145728/fromfile-c1s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "bbe7501d-17b6-41a6-7792-9087e4cc726e", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "ab56eeb9-8659-4e99-6f98-299a2c7ab891", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "3145728", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", - "etag": "\"0x8D9CB638F287500\"", - "last-modified": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:40 GMT", + "etag": "\"0x8DA3C75D2C40639\"", + "last-modified": "Mon, 23 May 2022 04:36:37 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "bbe7501d-17b6-41a6-7792-9087e4cc726e", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:11 GMT", + "x-ms-client-request-id": "ab56eeb9-8659-4e99-6f98-299a2c7ab891", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:37 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:38 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "28725cc6-401e-001b-224c-fdfbec000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "70efc966-701e-009a-565e-6ed379000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s3145728/fromfile-c1s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "493f5de3-44b3-42bc-7178-5d98b5f9783b", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b0ec46db-fcb2-43fa-7eea-109234276c91", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:41 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "493f5de3-44b3-42bc-7178-5d98b5f9783b", - "x-ms-request-id": "c793ca8d-801f-0049-2f4c-fd8704000000", + "x-ms-client-request-id": "b0ec46db-fcb2-43fa-7eea-109234276c91", + "x-ms-request-id": "47b567a0-d01f-0058-4c5e-6e95ff000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s3145728/fromfile-c1s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "14c06a2a-09d5-46b6-5c91-de7e7425b7d5", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "99445676-b6ea-478d-65dd-0b51f55ef7f4", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:10 GMT", + "date": "Mon, 23 May 2022 04:36:41 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "14c06a2a-09d5-46b6-5c91-de7e7425b7d5", - "x-ms-request-id": "c793ca8e-801f-0049-304c-fd8704000000", + "x-ms-client-request-id": "99445676-b6ea-478d-65dd-0b51f55ef7f4", + "x-ms-request-id": "47b567a3-d01f-0058-4f5e-6e95ff000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s3145728/withparam-uploadfilefromfile-c1s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "62c4e4d1-5b57-4094-4b05-25aa33a2bdf3", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0561f1bd-e88e-43ee-519d-60cf02279f5d", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:46 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "62c4e4d1-5b57-4094-4b05-25aa33a2bdf3", - "x-ms-request-id": "28725d1f-401e-001b-754c-fdfbec000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "0561f1bd-e88e-43ee-519d-60cf02279f5d", + "x-ms-request-id": "70efcac1-701e-009a-0f5e-6ed379000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s3145728?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s4096.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s4096.json index 0baab332cb..c6cd7e8fcc 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s4096.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s4096.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "045207dc-34ee-4e2d-76ee-052132f42d77", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "daa1a232-b647-4741-559d-9ca5ab08ec9c", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638DB551DF\"", - "last-modified": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:49 GMT", + "etag": "\"0x8DA3C75B69E8201\"", + "last-modified": "Mon, 23 May 2022 04:35:49 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "045207dc-34ee-4e2d-76ee-052132f42d77", - "x-ms-request-id": "d3086b3f-401e-0046-184c-fdf168000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "daa1a232-b647-4741-559d-9ca5ab08ec9c", + "x-ms-request-id": "e4b00386-b01e-0003-435e-6eacc4000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s4096?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "aae1814e-d711-4250-537a-e36eca4d226f", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "4d6b48ee-979c-42d3-55ff-c892b2b561fa", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638DC27EC8\"", - "last-modified": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:35:51 GMT", + "etag": "\"0x8DA3C75B792EE06\"", + "last-modified": "Mon, 23 May 2022 04:35:51 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "aae1814e-d711-4250-537a-e36eca4d226f", - "x-ms-request-id": "3739f0d0-a01f-004e-574c-fdeb67000000", + "x-ms-client-request-id": "4d6b48ee-979c-42d3-55ff-c892b2b561fa", + "x-ms-request-id": "6d655aac-f01f-004f-075e-6e3cf4000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "55279498-73bc-4474-65f7-d8bf1fc26967", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "3eef053d-6279-43af-413f-761879596ef8", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638DD5FE1E\"", - "last-modified": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:35:51 GMT", + "etag": "\"0x8DA3C75B7CAAB14\"", + "last-modified": "Mon, 23 May 2022 04:35:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "55279498-73bc-4474-65f7-d8bf1fc26967", + "x-ms-client-request-id": "3eef053d-6279-43af-413f-761879596ef8", "x-ms-content-crc64": "hP538/oHol4=", - "x-ms-request-id": "d3086b74-401e-0046-404c-fdf168000000", + "x-ms-request-id": "e4b004f2-b01e-0003-565e-6eacc4000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s4096/fromfile-c1s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "f78e58f0-df34-4d8f-676d-219ee9ff3344", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "55aca370-8f4a-4092-470b-1d42a755e1ba", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "4096", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638DD5FE1E\"", - "last-modified": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:35:51 GMT", + "etag": "\"0x8DA3C75B7CAAB14\"", + "last-modified": "Mon, 23 May 2022 04:35:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "f78e58f0-df34-4d8f-676d-219ee9ff3344", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:09 GMT", + "x-ms-client-request-id": "55aca370-8f4a-4092-470b-1d42a755e1ba", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:51 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:51 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "d3086b7a-401e-0046-464c-fdf168000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "e4b0053d-b01e-0003-115e-6eacc4000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s4096/fromfile-c1s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "7f5e1ad1-808b-4465-68c7-343222fe254e", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "797cb716-797c-4709-564e-1a7a212f9b33", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "4096", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638DD5FE1E\"", - "last-modified": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:35:52 GMT", + "etag": "\"0x8DA3C75B7CAAB14\"", + "last-modified": "Mon, 23 May 2022 04:35:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "7f5e1ad1-808b-4465-68c7-343222fe254e", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:09 GMT", + "x-ms-client-request-id": "797cb716-797c-4709-564e-1a7a212f9b33", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:51 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:51 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "d3086b7d-401e-0046-484c-fdf168000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "e4b00583-b01e-0003-465e-6eacc4000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s4096/fromfile-c1s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "9f8bbbfb-08b9-4c2e-713f-84ad97360285", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0cbefe77-1e9c-4f6f-5370-d36f5b4933a3", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "4096", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638DD5FE1E\"", - "last-modified": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:35:52 GMT", + "etag": "\"0x8DA3C75B7CAAB14\"", + "last-modified": "Mon, 23 May 2022 04:35:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "9f8bbbfb-08b9-4c2e-713f-84ad97360285", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:09 GMT", + "x-ms-client-request-id": "0cbefe77-1e9c-4f6f-5370-d36f5b4933a3", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:51 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:51 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "d3086b7e-401e-0046-494c-fdf168000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "e4b005b3-b01e-0003-6d5e-6eacc4000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s4096/fromfile-c1s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "54b52b3f-27e1-411f-5493-8bb0040f1a3c", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2aeedf04-4e9a-4871-42d7-264fba759dfb", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "4096", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", - "etag": "\"0x8D9CB638DD5FE1E\"", - "last-modified": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:35:52 GMT", + "etag": "\"0x8DA3C75B7CAAB14\"", + "last-modified": "Mon, 23 May 2022 04:35:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "54b52b3f-27e1-411f-5493-8bb0040f1a3c", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:09 GMT", + "x-ms-client-request-id": "2aeedf04-4e9a-4871-42d7-264fba759dfb", + "x-ms-creation-time": "Mon, 23 May 2022 04:35:51 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:35:52 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "d3086b81-401e-0046-4c4c-fdf168000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "e4b005e9-b01e-0003-195e-6eacc4000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s4096/fromfile-c1s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "2b4f2a83-8f8f-43c3-7dc0-aaae91995c8f", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "540ee98d-d26c-43ba-7b5e-49b7fa52858b", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:53 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "2b4f2a83-8f8f-43c3-7dc0-aaae91995c8f", - "x-ms-request-id": "3739f0d6-a01f-004e-5d4c-fdeb67000000", + "x-ms-client-request-id": "540ee98d-d26c-43ba-7b5e-49b7fa52858b", + "x-ms-request-id": "6d655ad5-f01f-004f-305e-6e3cf4000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s4096/fromfile-c1s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "da934a90-28f8-42c6-6473-a4940b4bad6a", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0b94a6a5-27af-4767-60bf-1016af3a95e9", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:08 GMT", + "date": "Mon, 23 May 2022 04:35:53 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "da934a90-28f8-42c6-6473-a4940b4bad6a", - "x-ms-request-id": "3739f0d7-a01f-004e-5e4c-fdeb67000000", + "x-ms-client-request-id": "0b94a6a5-27af-4767-60bf-1016af3a95e9", + "x-ms-request-id": "6d655ada-f01f-004f-355e-6e3cf4000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s4096/withparam-uploadfilefromfile-c1s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "ff3b20a4-3eb2-4bf6-6290-adc96b671ac5", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "ba6f40bb-5959-4fb1-7d82-4f2d810f0bbd", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:09 GMT", + "date": "Mon, 23 May 2022 04:35:55 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "ff3b20a4-3eb2-4bf6-6290-adc96b671ac5", - "x-ms-request-id": "d3086ba3-401e-0046-6b4c-fdf168000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "ba6f40bb-5959-4fb1-7d82-4f2d810f0bbd", + "x-ms-request-id": "e4b006a7-b01e-0003-305e-6eacc4000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s4096?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s5242880.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s5242880.json index f9a015b740..32a8f8dac3 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s5242880.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s5242880.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d1899226-072b-49e8-63b8-9822f7eac87f", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9a732bde-ddde-4b42-6a9e-5653c21bae7d", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:10 GMT", - "etag": "\"0x8D9CB638F6009E4\"", - "last-modified": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:47 GMT", + "etag": "\"0x8DA3C75D94C14AD\"", + "last-modified": "Mon, 23 May 2022 04:36:48 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "d1899226-072b-49e8-63b8-9822f7eac87f", - "x-ms-request-id": "3752e00e-d01e-0026-154c-fd8df7000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "9a732bde-ddde-4b42-6a9e-5653c21bae7d", + "x-ms-request-id": "08602ba2-d01e-002a-165e-6e92b0000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s5242880?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "ea0f67cb-7edf-4f1c-5b28-fcf928e6f237", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9a42cdaa-d41e-43e9-6a9a-880f045b11bb", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:10 GMT", - "etag": "\"0x8D9CB638F6C029F\"", - "last-modified": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:49 GMT", + "etag": "\"0x8DA3C75DA3F5ECC\"", + "last-modified": "Mon, 23 May 2022 04:36:49 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "ea0f67cb-7edf-4f1c-5b28-fcf928e6f237", - "x-ms-request-id": "e98746c8-401f-0034-3d4c-fdf627000000", + "x-ms-client-request-id": "9a42cdaa-d41e-43e9-6a9a-880f045b11bb", + "x-ms-request-id": "ab334433-901f-0082-565e-6e0c1e000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "a1301838-1770-40bd-7a7d-8dcb37571e77", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "f1ec05a0-2ba4-44f2-6939-fcd4e16bd90d", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", - "etag": "\"0x8D9CB638F810AFA\"", - "last-modified": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:51 GMT", + "etag": "\"0x8DA3C75DB97C4DA\"", + "last-modified": "Mon, 23 May 2022 04:36:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "a1301838-1770-40bd-7a7d-8dcb37571e77", + "x-ms-client-request-id": "f1ec05a0-2ba4-44f2-6939-fcd4e16bd90d", "x-ms-content-crc64": "FOAqKZP9lVI=", - "x-ms-request-id": "3752e043-d01e-0026-464c-fd8df7000000", + "x-ms-request-id": "08602c2b-d01e-002a-025e-6e92b0000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s5242880/fromfile-c1s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "06ba087e-0ca3-4434-564b-8b7d9b459ab4", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "4aacffe8-c6ee-4da4-5cf2-e4f833cbcc04", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "5242880", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", - "etag": "\"0x8D9CB638F810AFA\"", - "last-modified": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:51 GMT", + "etag": "\"0x8DA3C75DB97C4DA\"", + "last-modified": "Mon, 23 May 2022 04:36:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "06ba087e-0ca3-4434-564b-8b7d9b459ab4", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:11 GMT", + "x-ms-client-request-id": "4aacffe8-c6ee-4da4-5cf2-e4f833cbcc04", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:51 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:51 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3752e07a-d01e-0026-764c-fd8df7000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "08602cc0-d01e-002a-7f5e-6e92b0000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s5242880/fromfile-c1s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "09371fb8-288f-46ed-7f42-46616741c5f6", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "3c570e02-eaeb-47b0-769f-b95838842052", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "5242880", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", - "etag": "\"0x8D9CB638F810AFA\"", - "last-modified": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:51 GMT", + "etag": "\"0x8DA3C75DB97C4DA\"", + "last-modified": "Mon, 23 May 2022 04:36:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "09371fb8-288f-46ed-7f42-46616741c5f6", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:11 GMT", + "x-ms-client-request-id": "3c570e02-eaeb-47b0-769f-b95838842052", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:51 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:51 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3752e080-d01e-0026-7c4c-fd8df7000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "08602cdf-d01e-002a-195e-6e92b0000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s5242880/fromfile-c1s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "adf90ca8-399b-4e4d-444a-adb6aeb5dcaf", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "aa5c284e-05a5-4215-5154-c17c60336a77", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "5242880", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", - "etag": "\"0x8D9CB638F810AFA\"", - "last-modified": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:52 GMT", + "etag": "\"0x8DA3C75DB97C4DA\"", + "last-modified": "Mon, 23 May 2022 04:36:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "adf90ca8-399b-4e4d-444a-adb6aeb5dcaf", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:11 GMT", + "x-ms-client-request-id": "aa5c284e-05a5-4215-5154-c17c60336a77", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:51 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:51 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3752e082-d01e-0026-7e4c-fd8df7000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "08602cf8-d01e-002a-2d5e-6e92b0000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s5242880/fromfile-c1s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "6366b9f9-11aa-4cfa-40b4-1d4cebc35057", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2389348a-f295-4d97-44c4-e7d79555e680", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "5242880", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", - "etag": "\"0x8D9CB638F810AFA\"", - "last-modified": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:55 GMT", + "etag": "\"0x8DA3C75DB97C4DA\"", + "last-modified": "Mon, 23 May 2022 04:36:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "6366b9f9-11aa-4cfa-40b4-1d4cebc35057", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:11 GMT", + "x-ms-client-request-id": "2389348a-f295-4d97-44c4-e7d79555e680", + "x-ms-creation-time": "Mon, 23 May 2022 04:36:51 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:36:52 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3752e0ab-d01e-0026-214c-fd8df7000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "08602e86-d01e-002a-735e-6e92b0000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s5242880/fromfile-c1s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d8704922-4ed2-41a7-4aa2-6cec20d83407", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "77a62864-273b-483f-52e3-898642f5ab1e", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:57 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "d8704922-4ed2-41a7-4aa2-6cec20d83407", - "x-ms-request-id": "e98746c9-401f-0034-3e4c-fdf627000000", + "x-ms-client-request-id": "77a62864-273b-483f-52e3-898642f5ab1e", + "x-ms-request-id": "ab33446b-901f-0082-085e-6e0c1e000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s5242880/fromfile-c1s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "551b3de4-bdbc-4d08-7b17-c45c472457cb", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b2e52bc6-3f0d-4068-5767-2190820a78df", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:36:57 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "551b3de4-bdbc-4d08-7b17-c45c472457cb", - "x-ms-request-id": "e98746ca-401f-0034-3f4c-fdf627000000", + "x-ms-client-request-id": "b2e52bc6-3f0d-4068-5767-2190820a78df", + "x-ms-request-id": "ab33446d-901f-0082-095e-6e0c1e000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s5242880/withparam-uploadfilefromfile-c1s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "32aafb98-8859-4e77-4090-cbf28dc4a0fa", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "e3a01983-7a4b-454c-400a-f84b639f6d71", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", + "date": "Mon, 23 May 2022 04:37:00 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "32aafb98-8859-4e77-4090-cbf28dc4a0fa", - "x-ms-request-id": "3752e0e8-d01e-0026-594c-fd8df7000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "e3a01983-7a4b-454c-400a-f84b639f6d71", + "x-ms-request-id": "08602f3d-d01e-002a-7f5e-6e92b0000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s5242880?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s8387374.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s8387374.json index 7391b3b09b..9652f060f2 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s8387374.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s8387374.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "fd329b7d-f4ba-4a50-4f06-b6d074face5d", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b7e7fb75-ca46-4251-444c-13ba32db3282", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:11 GMT", - "etag": "\"0x8D9CB638FB98563\"", - "last-modified": "Thu, 30 Dec 2021 07:11:12 GMT", + "date": "Mon, 23 May 2022 04:37:02 GMT", + "etag": "\"0x8DA3C75E217DAEE\"", + "last-modified": "Mon, 23 May 2022 04:37:02 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "fd329b7d-f4ba-4a50-4f06-b6d074face5d", - "x-ms-request-id": "e1005f5a-201e-0050-084c-fd07bf000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "b7e7fb75-ca46-4251-444c-13ba32db3282", + "x-ms-request-id": "dd03fbac-e01e-0043-435e-6eabfc000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s8387374?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "7b8f40ec-71bf-401b-51f3-c5f8df56c9c8", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "e9a26753-fe76-4a29-743c-b050c95665fb", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:12 GMT", - "etag": "\"0x8D9CB638FC683C3\"", - "last-modified": "Thu, 30 Dec 2021 07:11:12 GMT", + "date": "Mon, 23 May 2022 04:37:04 GMT", + "etag": "\"0x8DA3C75E309F0E3\"", + "last-modified": "Mon, 23 May 2022 04:37:04 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "7b8f40ec-71bf-401b-51f3-c5f8df56c9c8", - "x-ms-request-id": "ab9101e8-001f-0047-784c-fdaeb4000000", + "x-ms-client-request-id": "e9a26753-fe76-4a29-743c-b050c95665fb", + "x-ms-request-id": "1f3597c9-301f-0022-5d5e-6e88bf000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "3a961f82-706e-47b5-6349-85d50fbe1099", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d99d27d3-1d92-4c76-51ea-bcd4341aa73b", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", - "date": "Thu, 30 Dec 2021 07:11:12 GMT", - "etag": "\"0x8D9CB63903EE924\"", - "last-modified": "Thu, 30 Dec 2021 07:11:13 GMT", + "date": "Mon, 23 May 2022 04:37:20 GMT", + "etag": "\"0x8DA3C75ED32B6E0\"", + "last-modified": "Mon, 23 May 2022 04:37:21 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "3a961f82-706e-47b5-6349-85d50fbe1099", + "x-ms-client-request-id": "d99d27d3-1d92-4c76-51ea-bcd4341aa73b", "x-ms-content-crc64": "9ZS/HdelFfY=", - "x-ms-request-id": "e1005f90-201e-0050-394c-fd07bf000000", + "x-ms-request-id": "dd03fd76-e01e-0043-685e-6eabfc000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s8387374/fromfile-c1s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "bacdebbd-4140-4a8d-597a-adec6adb9dba", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "8afb9354-4db4-4fd2-42d5-464a432a4bf1", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "8387374", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:12 GMT", - "etag": "\"0x8D9CB63903EE924\"", - "last-modified": "Thu, 30 Dec 2021 07:11:13 GMT", + "date": "Mon, 23 May 2022 04:37:21 GMT", + "etag": "\"0x8DA3C75ED32B6E0\"", + "last-modified": "Mon, 23 May 2022 04:37:21 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "bacdebbd-4140-4a8d-597a-adec6adb9dba", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:13 GMT", + "x-ms-client-request-id": "8afb9354-4db4-4fd2-42d5-464a432a4bf1", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:21 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:21 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "e100610f-201e-0050-154c-fd07bf000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "dd040b38-e01e-0043-125e-6eabfc000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s8387374/fromfile-c1s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "66b28bb6-ee42-4b2f-5381-f9be1ccdf288", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "774b867d-8c27-44ad-53d2-cfa49890e4d8", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "8387374", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:12 GMT", - "etag": "\"0x8D9CB63903EE924\"", - "last-modified": "Thu, 30 Dec 2021 07:11:13 GMT", + "date": "Mon, 23 May 2022 04:37:21 GMT", + "etag": "\"0x8DA3C75ED32B6E0\"", + "last-modified": "Mon, 23 May 2022 04:37:21 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "66b28bb6-ee42-4b2f-5381-f9be1ccdf288", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:13 GMT", + "x-ms-client-request-id": "774b867d-8c27-44ad-53d2-cfa49890e4d8", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:21 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:21 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "e1006116-201e-0050-1b4c-fd07bf000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "dd040b6a-e01e-0043-365e-6eabfc000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s8387374/fromfile-c1s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "99164a00-9e62-4d44-5254-3ac496b721d3", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "6c77ef03-a0a5-49a6-541c-e9d2526b73bf", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "8387374", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:12 GMT", - "etag": "\"0x8D9CB63903EE924\"", - "last-modified": "Thu, 30 Dec 2021 07:11:13 GMT", + "date": "Mon, 23 May 2022 04:37:21 GMT", + "etag": "\"0x8DA3C75ED32B6E0\"", + "last-modified": "Mon, 23 May 2022 04:37:21 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "99164a00-9e62-4d44-5254-3ac496b721d3", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:13 GMT", + "x-ms-client-request-id": "6c77ef03-a0a5-49a6-541c-e9d2526b73bf", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:21 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:21 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "e1006121-201e-0050-254c-fd07bf000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "dd040bbc-e01e-0043-685e-6eabfc000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s8387374/fromfile-c1s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "c7caacb9-eb05-419b-5752-5f3e69a96989", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "383007c7-7667-4cfb-4072-eab4e0fa51ca", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "8387374", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:12 GMT", - "etag": "\"0x8D9CB63903EE924\"", - "last-modified": "Thu, 30 Dec 2021 07:11:13 GMT", + "date": "Mon, 23 May 2022 04:37:25 GMT", + "etag": "\"0x8DA3C75ED32B6E0\"", + "last-modified": "Mon, 23 May 2022 04:37:21 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "c7caacb9-eb05-419b-5752-5f3e69a96989", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:13 GMT", + "x-ms-client-request-id": "383007c7-7667-4cfb-4072-eab4e0fa51ca", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:21 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:22 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "e1006161-201e-0050-614c-fd07bf000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "dd0410c3-e01e-0043-4d5e-6eabfc000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s8387374/fromfile-c1s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "0b684ba3-ab42-41dd-4514-676330fcb80e", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9a936dff-2ec7-4651-5a06-21397365cf3e", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", + "date": "Mon, 23 May 2022 04:37:27 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "0b684ba3-ab42-41dd-4514-676330fcb80e", - "x-ms-request-id": "ab910220-001f-0047-304c-fdaeb4000000", + "x-ms-client-request-id": "9a936dff-2ec7-4651-5a06-21397365cf3e", + "x-ms-request-id": "1f35981b-301f-0022-155e-6e88bf000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s8387374/fromfile-c1s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "65e16e97-2ff8-4e20-708c-f788ab90de5d", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "e1de0787-a60c-47a2-7ff3-a955a342884b", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", + "date": "Mon, 23 May 2022 04:37:28 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "65e16e97-2ff8-4e20-708c-f788ab90de5d", - "x-ms-request-id": "ab910221-001f-0047-314c-fdaeb4000000", + "x-ms-client-request-id": "e1de0787-a60c-47a2-7ff3-a955a342884b", + "x-ms-request-id": "1f35981c-301f-0022-165e-6e88bf000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s8387374/withparam-uploadfilefromfile-c1s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "a58779d5-1b67-4c26-715d-3cf53f3e3702", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "21466ab8-c971-4ea8-4b9c-3717507d9727", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:12 GMT", + "date": "Mon, 23 May 2022 04:37:30 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "a58779d5-1b67-4c26-715d-3cf53f3e3702", - "x-ms-request-id": "e10061b1-201e-0050-2b4c-fd07bf000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "21466ab8-c971-4ea8-4b9c-3717507d9727", + "x-ms-request-id": "dd04142f-e01e-0043-285e-6eabfc000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s8387374?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s8388608.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s8388608.json index 5f5c3d235e..76188e7c67 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s8388608.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c1s8388608.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "59991bd7-132a-40a8-46fb-528c1b8dd879", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d38caaf0-217d-4ee3-6113-6725cd1ef30d", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", - "etag": "\"0x8D9CB639080EEDE\"", - "last-modified": "Thu, 30 Dec 2021 07:11:13 GMT", + "date": "Mon, 23 May 2022 04:37:31 GMT", + "etag": "\"0x8DA3C75F3A9BF57\"", + "last-modified": "Mon, 23 May 2022 04:37:32 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "59991bd7-132a-40a8-46fb-528c1b8dd879", - "x-ms-request-id": "0889554e-e01e-002d-764c-fd769c000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "d38caaf0-217d-4ee3-6113-6725cd1ef30d", + "x-ms-request-id": "b55b8bf4-a01e-0042-6a5e-6ef420000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s8388608?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "12692fe9-ec84-428c-79c2-9e15c52bc830", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0dc10293-5bd1-4683-5d07-469f7562a69e", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", - "etag": "\"0x8D9CB63908B06EE\"", - "last-modified": "Thu, 30 Dec 2021 07:11:13 GMT", + "date": "Mon, 23 May 2022 04:37:33 GMT", + "etag": "\"0x8DA3C75F4A0643B\"", + "last-modified": "Mon, 23 May 2022 04:37:33 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "12692fe9-ec84-428c-79c2-9e15c52bc830", - "x-ms-request-id": "55f29cb8-501f-005a-394c-fda308000000", + "x-ms-client-request-id": "0dc10293-5bd1-4683-5d07-469f7562a69e", + "x-ms-request-id": "365f0775-a01f-0089-705e-6ef775000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "35785009-0977-4a55-54fe-13cfc26bc902", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "80ea1523-f895-4d39-53a3-ea1163e9603b", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", - "etag": "\"0x8D9CB6390C483F4\"", - "last-modified": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:35 GMT", + "etag": "\"0x8DA3C75F612B40A\"", + "last-modified": "Mon, 23 May 2022 04:37:36 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "35785009-0977-4a55-54fe-13cfc26bc902", + "x-ms-client-request-id": "80ea1523-f895-4d39-53a3-ea1163e9603b", "x-ms-content-crc64": "DU01Kv81ewI=", - "x-ms-request-id": "08895572-e01e-002d-114c-fd769c000000", + "x-ms-request-id": "b55b8d90-a01e-0042-5b5e-6ef420000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s8388608/fromfile-c1s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "5b921d79-b503-43ff-596b-42b9b28893cb", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "03f03a9d-e150-47c9-44a4-ebd7d89e2b98", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "8388608", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", - "etag": "\"0x8D9CB6390C483F4\"", - "last-modified": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:36 GMT", + "etag": "\"0x8DA3C75F612B40A\"", + "last-modified": "Mon, 23 May 2022 04:37:36 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "5b921d79-b503-43ff-596b-42b9b28893cb", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:14 GMT", + "x-ms-client-request-id": "03f03a9d-e150-47c9-44a4-ebd7d89e2b98", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:36 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:36 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "08895624-e01e-002d-354c-fd769c000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "b55b8ed8-a01e-0042-785e-6ef420000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s8388608/fromfile-c1s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d1ae9e26-ff3e-4d7e-747d-a853d32e2b16", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "5986d87d-db5f-4eb3-6122-7af248b8356a", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "8388608", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", - "etag": "\"0x8D9CB6390C483F4\"", - "last-modified": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:36 GMT", + "etag": "\"0x8DA3C75F612B40A\"", + "last-modified": "Mon, 23 May 2022 04:37:36 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "d1ae9e26-ff3e-4d7e-747d-a853d32e2b16", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:14 GMT", + "x-ms-client-request-id": "5986d87d-db5f-4eb3-6122-7af248b8356a", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:36 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:36 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "0889562e-e01e-002d-3f4c-fd769c000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "b55b8f08-a01e-0042-255e-6ef420000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s8388608/fromfile-c1s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "3605bb62-a050-479b-5d08-7017c48a44ff", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "1911a065-2b7e-4bf1-744b-1fe94871e73c", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "8388608", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", - "etag": "\"0x8D9CB6390C483F4\"", - "last-modified": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:36 GMT", + "etag": "\"0x8DA3C75F612B40A\"", + "last-modified": "Mon, 23 May 2022 04:37:36 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "3605bb62-a050-479b-5d08-7017c48a44ff", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:14 GMT", + "x-ms-client-request-id": "1911a065-2b7e-4bf1-744b-1fe94871e73c", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:36 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:36 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "0889563b-e01e-002d-4c4c-fd769c000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "b55b8f3a-a01e-0042-4f5e-6ef420000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s8388608/fromfile-c1s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "ddddb22c-8556-430c-7a5a-89ce73795dd3", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "822cc4df-f881-4b64-55f1-72de9b073952", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "8388608", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", - "etag": "\"0x8D9CB6390C483F4\"", - "last-modified": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:41 GMT", + "etag": "\"0x8DA3C75F612B40A\"", + "last-modified": "Mon, 23 May 2022 04:37:36 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "ddddb22c-8556-430c-7a5a-89ce73795dd3", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:14 GMT", + "x-ms-client-request-id": "822cc4df-f881-4b64-55f1-72de9b073952", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:36 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "08895682-e01e-002d-104c-fd769c000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "b55b91d4-a01e-0042-175e-6ef420000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s8388608/fromfile-c1s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "aeca985e-660e-4116-61cc-4b6b4e80c13b", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "6f69f580-fe27-48e3-7813-49a789f51f95", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:42 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "aeca985e-660e-4116-61cc-4b6b4e80c13b", - "x-ms-request-id": "55f29cbe-501f-005a-3f4c-fda308000000", + "x-ms-client-request-id": "6f69f580-fe27-48e3-7813-49a789f51f95", + "x-ms-request-id": "365f078d-a01f-0089-735e-6ef775000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s8388608/fromfile-c1s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "853a46b4-cfe9-4212-57d5-84e0b45158b8", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2975f36b-3363-4d1c-5cd1-22169b2a20da", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:42 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "853a46b4-cfe9-4212-57d5-84e0b45158b8", - "x-ms-request-id": "55f29cc2-501f-005a-434c-fda308000000", + "x-ms-client-request-id": "2975f36b-3363-4d1c-5cd1-22169b2a20da", + "x-ms-request-id": "365f078e-a01f-0089-745e-6ef775000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c1s8388608/withparam-uploadfilefromfile-c1s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "2878c3ba-3af0-4aec-744b-aa540d5fa30a", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "89d5fb4b-b665-4971-5216-929706f35c81", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:44 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "2878c3ba-3af0-4aec-744b-aa540d5fa30a", - "x-ms-request-id": "088956c6-e01e-002d-4c4c-fd769c000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "89d5fb4b-b665-4971-5216-929706f35c81", + "x-ms-request-id": "b55b930a-a01e-0042-155e-6ef420000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c1s8388608?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s0.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s0.json index 008a761a64..4c7289b99a 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s0.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s0.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "77240569-9cb1-4e22-7b43-47d82c8a228f", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "3409f98b-60b0-4816-4baa-b2574ba48259", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", - "etag": "\"0x8D9CB639108CBFF\"", - "last-modified": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:46 GMT", + "etag": "\"0x8DA3C75FC51D64E\"", + "last-modified": "Mon, 23 May 2022 04:37:46 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "77240569-9cb1-4e22-7b43-47d82c8a228f", - "x-ms-request-id": "8c5ee43c-001e-000a-2d4c-fd6158000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "3409f98b-60b0-4816-4baa-b2574ba48259", + "x-ms-request-id": "4247e54d-401e-0007-0a5e-6e21c3000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s0?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "015fe594-5084-403c-6017-d0665b82daf7", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "5cc0a3e9-52cf-4eb6-747e-971607a9ccd9", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", - "etag": "\"0x8D9CB6391156034\"", - "last-modified": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:48 GMT", + "etag": "\"0x8DA3C75FD4827B9\"", + "last-modified": "Mon, 23 May 2022 04:37:48 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "015fe594-5084-403c-6017-d0665b82daf7", - "x-ms-request-id": "329c5551-901f-0008-544c-fddfe0000000", + "x-ms-client-request-id": "5cc0a3e9-52cf-4eb6-747e-971607a9ccd9", + "x-ms-request-id": "3f26fcf3-201f-0063-6b5e-6ed05b000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "25ec3f3e-ade3-42ff-698c-babf70b8d88d", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "90a221ae-da3d-40e5-6e50-24807539b16e", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", - "etag": "\"0x8D9CB63911B94ED\"", - "last-modified": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:47 GMT", + "etag": "\"0x8DA3C75FD7F48EA\"", + "last-modified": "Mon, 23 May 2022 04:37:48 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "25ec3f3e-ade3-42ff-698c-babf70b8d88d", + "x-ms-client-request-id": "90a221ae-da3d-40e5-6e50-24807539b16e", "x-ms-content-crc64": "AAAAAAAAAAA=", - "x-ms-request-id": "8c5ee454-001e-000a-3f4c-fd6158000000", + "x-ms-request-id": "4247e623-401e-0007-3d5e-6e21c3000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s0/fromfile-c2s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "faeda281-556c-4fbb-5e32-baae3fec9e3b", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "70ae7706-0877-4fc5-4ca3-7a7591b2d5e9", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", - "etag": "\"0x8D9CB63911B94ED\"", - "last-modified": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:48 GMT", + "etag": "\"0x8DA3C75FD7F48EA\"", + "last-modified": "Mon, 23 May 2022 04:37:48 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "faeda281-556c-4fbb-5e32-baae3fec9e3b", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:14 GMT", + "x-ms-client-request-id": "70ae7706-0877-4fc5-4ca3-7a7591b2d5e9", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:48 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:48 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "8c5ee45e-001e-000a-474c-fd6158000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "4247e64f-401e-0007-695e-6e21c3000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s0/fromfile-c2s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "97b0b685-817c-4e33-4f4d-e095a7f41b6d", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "7b2a0363-63e7-46da-499f-0af1ff58e36e", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", - "etag": "\"0x8D9CB63911B94ED\"", - "last-modified": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:48 GMT", + "etag": "\"0x8DA3C75FD7F48EA\"", + "last-modified": "Mon, 23 May 2022 04:37:48 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "97b0b685-817c-4e33-4f4d-e095a7f41b6d", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:14 GMT", + "x-ms-client-request-id": "7b2a0363-63e7-46da-499f-0af1ff58e36e", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:48 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:48 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "8c5ee460-001e-000a-494c-fd6158000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "4247e695-401e-0007-265e-6e21c3000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s0/fromfile-c2s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "7b2fddf2-927f-4652-77b2-c2a3955b2dcf", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "847b0aa6-d1a6-4c44-41ba-8b2368e2af39", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", - "etag": "\"0x8D9CB63911B94ED\"", - "last-modified": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:49 GMT", + "etag": "\"0x8DA3C75FD7F48EA\"", + "last-modified": "Mon, 23 May 2022 04:37:48 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "7b2fddf2-927f-4652-77b2-c2a3955b2dcf", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:14 GMT", + "x-ms-client-request-id": "847b0aa6-d1a6-4c44-41ba-8b2368e2af39", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:48 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:48 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "8c5ee462-001e-000a-4b4c-fd6158000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "4247e6c8-401e-0007-4a5e-6e21c3000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s0/fromfile-c2s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "11da31a8-df0f-4516-4077-46a37ebc5213", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d32428b7-f08f-48d8-5703-e9bccd378475", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:13 GMT", - "etag": "\"0x8D9CB63911B94ED\"", - "last-modified": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:49 GMT", + "etag": "\"0x8DA3C75FD7F48EA\"", + "last-modified": "Mon, 23 May 2022 04:37:48 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "11da31a8-df0f-4516-4077-46a37ebc5213", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:14 GMT", + "x-ms-client-request-id": "d32428b7-f08f-48d8-5703-e9bccd378475", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:48 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:49 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "8c5ee465-001e-000a-4d4c-fd6158000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "4247e744-401e-0007-2b5e-6e21c3000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s0/fromfile-c2s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "0f4ed285-1126-46f2-513b-94355076ced1", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "cdb1712f-ae4b-4bff-5a6b-3772fb8df0b0", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:50 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "0f4ed285-1126-46f2-513b-94355076ced1", - "x-ms-request-id": "329c5552-901f-0008-554c-fddfe0000000", + "x-ms-client-request-id": "cdb1712f-ae4b-4bff-5a6b-3772fb8df0b0", + "x-ms-request-id": "3f26fcf7-201f-0063-6d5e-6ed05b000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s0/fromfile-c2s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "bac26771-d66d-4fd3-587c-a3349328c121", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "6968bbc3-c7af-42a8-579d-0a5aadf49750", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:51 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "bac26771-d66d-4fd3-587c-a3349328c121", - "x-ms-request-id": "329c5554-901f-0008-574c-fddfe0000000", + "x-ms-client-request-id": "6968bbc3-c7af-42a8-579d-0a5aadf49750", + "x-ms-request-id": "3f26fcf9-201f-0063-6f5e-6ed05b000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s0/withparam-uploadfilefromfile-c2s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "f52e8776-e470-48b9-43ce-ddc93fd76996", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "74c1d380-20a0-4f29-56ef-646abe134c9a", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "f52e8776-e470-48b9-43ce-ddc93fd76996", - "x-ms-request-id": "8c5ee485-001e-000a-664c-fd6158000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "74c1d380-20a0-4f29-56ef-646abe134c9a", + "x-ms-request-id": "4247e7e0-401e-0007-375e-6e21c3000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s0?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s1.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s1.json index c884a34464..08ae813212 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s1.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s1.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "ece27b04-ba7a-437c-59aa-6ecee680ff12", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "86ffe046-4d04-4242-5e09-4099f25bfb84", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", - "etag": "\"0x8D9CB63914851BD\"", - "last-modified": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:54 GMT", + "etag": "\"0x8DA3C7600BA8094\"", + "last-modified": "Mon, 23 May 2022 04:37:54 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "ece27b04-ba7a-437c-59aa-6ecee680ff12", - "x-ms-request-id": "e9e0b93e-001e-0047-3e4c-fdaeb4000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "86ffe046-4d04-4242-5e09-4099f25bfb84", + "x-ms-request-id": "17d2c0b7-f01e-002d-775e-6efed3000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "94380274-23af-4bcd-53a5-68cb60b56a4b", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "97ae6a0d-336c-469f-511b-7fdaf7d5c8a3", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", - "etag": "\"0x8D9CB6391570112\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:37:55 GMT", + "etag": "\"0x8DA3C7601A7C149\"", + "last-modified": "Mon, 23 May 2022 04:37:55 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "94380274-23af-4bcd-53a5-68cb60b56a4b", - "x-ms-request-id": "c308ff46-501f-0028-0a4c-fda447000000", + "x-ms-client-request-id": "97ae6a0d-336c-469f-511b-7fdaf7d5c8a3", + "x-ms-request-id": "09f60eaa-901f-0066-6b5e-6e0280000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8719c71d-bc30-43d5-6111-16c436185ff9", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "54cae3df-d8a7-4955-5c66-7a105b799319", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB6391648B68\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:37:55 GMT", + "etag": "\"0x8DA3C7601E0BA55\"", + "last-modified": "Mon, 23 May 2022 04:37:56 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "8719c71d-bc30-43d5-6111-16c436185ff9", + "x-ms-client-request-id": "54cae3df-d8a7-4955-5c66-7a105b799319", "x-ms-content-crc64": "seRUZAJnvS0=", - "x-ms-request-id": "e9e0b974-001e-0047-6d4c-fdaeb4000000", + "x-ms-request-id": "17d2c25c-f01e-002d-7d5e-6efed3000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1/fromfile-c2s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "0878cdf5-7aa1-4924-4450-d6bb04c2cdcc", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d89f482e-3d54-4e71-47f4-d286f14c2b29", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "1", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB6391648B68\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:37:56 GMT", + "etag": "\"0x8DA3C7601E0BA55\"", + "last-modified": "Mon, 23 May 2022 04:37:56 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "0878cdf5-7aa1-4924-4450-d6bb04c2cdcc", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:15 GMT", + "x-ms-client-request-id": "d89f482e-3d54-4e71-47f4-d286f14c2b29", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:56 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:56 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "e9e0b990-001e-0047-054c-fdaeb4000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "17d2c2b5-f01e-002d-515e-6efed3000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1/fromfile-c2s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "412b8408-fb4c-433e-49f3-16ea46281ea4", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "3a7ea565-d653-4212-518b-46ffeb21ba1b", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "1", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB6391648B68\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:37:56 GMT", + "etag": "\"0x8DA3C7601E0BA55\"", + "last-modified": "Mon, 23 May 2022 04:37:56 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "412b8408-fb4c-433e-49f3-16ea46281ea4", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:15 GMT", + "x-ms-client-request-id": "3a7ea565-d653-4212-518b-46ffeb21ba1b", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:56 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:56 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "e9e0b992-001e-0047-074c-fdaeb4000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "17d2c2f1-f01e-002d-0b5e-6efed3000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1/fromfile-c2s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "1cc24296-2e9e-4398-7623-baa2a505ba08", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "62fb0958-f84c-4229-7de9-d91c05af8b27", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "1", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB6391648B68\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:37:57 GMT", + "etag": "\"0x8DA3C7601E0BA55\"", + "last-modified": "Mon, 23 May 2022 04:37:56 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "1cc24296-2e9e-4398-7623-baa2a505ba08", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:15 GMT", + "x-ms-client-request-id": "62fb0958-f84c-4229-7de9-d91c05af8b27", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:56 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:56 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "e9e0b994-001e-0047-094c-fdaeb4000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "17d2c32e-f01e-002d-415e-6efed3000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1/fromfile-c2s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "186aaa25-bdce-4904-7d97-b3dbb9b92e3a", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "6b7d16e6-41e6-4f4f-5ca8-41aa13d57ab7", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "1", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB6391648B68\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:37:57 GMT", + "etag": "\"0x8DA3C7601E0BA55\"", + "last-modified": "Mon, 23 May 2022 04:37:56 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "186aaa25-bdce-4904-7d97-b3dbb9b92e3a", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:15 GMT", + "x-ms-client-request-id": "6b7d16e6-41e6-4f4f-5ca8-41aa13d57ab7", + "x-ms-creation-time": "Mon, 23 May 2022 04:37:56 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:37:57 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "e9e0b99a-001e-0047-0f4c-fdaeb4000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "17d2c3af-f01e-002d-3d5e-6efed3000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1/fromfile-c2s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "f2a9e454-e30a-4094-4ab5-f931c812083b", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "c49b7cec-e0a0-486b-7e09-980ec3d08aa6", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:57 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "f2a9e454-e30a-4094-4ab5-f931c812083b", - "x-ms-request-id": "c308ff47-501f-0028-0b4c-fda447000000", + "x-ms-client-request-id": "c49b7cec-e0a0-486b-7e09-980ec3d08aa6", + "x-ms-request-id": "09f60eac-901f-0066-6d5e-6e0280000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s1/fromfile-c2s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "e78207a3-492f-4528-6087-082977f1a52e", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "1ab41182-cf52-42be-5175-d957f803c910", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:37:57 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "e78207a3-492f-4528-6087-082977f1a52e", - "x-ms-request-id": "c308ff48-501f-0028-0c4c-fda447000000", + "x-ms-client-request-id": "1ab41182-cf52-42be-5175-d957f803c910", + "x-ms-request-id": "09f60eae-901f-0066-6f5e-6e0280000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s1/withparam-uploadfilefromfile-c2s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "ceedc914-ebd3-4a3c-4a8d-deae2c023a38", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "8f8936f8-3cf2-4036-5efc-a8e59cc50d8b", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:37:59 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "ceedc914-ebd3-4a3c-4a8d-deae2c023a38", - "x-ms-request-id": "e9e0b9b8-001e-0047-2a4c-fdaeb4000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "8f8936f8-3cf2-4036-5efc-a8e59cc50d8b", + "x-ms-request-id": "17d2c4cb-f01e-002d-3b5e-6efed3000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s1022976.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s1022976.json index d5a040bf49..80257cf2a2 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s1022976.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s1022976.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8987399d-40ed-4df8-45f2-5abf17af4850", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "44cef8c9-f2dc-4bd3-7e77-399c1c8375dc", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB639246D7E6\"", - "last-modified": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:22 GMT", + "etag": "\"0x8DA3C761211F358\"", + "last-modified": "Mon, 23 May 2022 04:38:23 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "8987399d-40ed-4df8-45f2-5abf17af4850", - "x-ms-request-id": "74a0a943-201e-000d-124c-fd0d3b000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "44cef8c9-f2dc-4bd3-7e77-399c1c8375dc", + "x-ms-request-id": "9c96e11b-301e-008b-075e-6e49cd000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1022976?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "627ccffa-8fce-4edc-5cec-f19c5ed3c21a", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "61d88c6c-0f4a-41f6-576f-c79315d68505", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB639253CE05\"", - "last-modified": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:24 GMT", + "etag": "\"0x8DA3C7612FFFEC2\"", + "last-modified": "Mon, 23 May 2022 04:38:24 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "627ccffa-8fce-4edc-5cec-f19c5ed3c21a", - "x-ms-request-id": "0a4a5c5c-a01f-003c-204c-fdec28000000", + "x-ms-client-request-id": "61d88c6c-0f4a-41f6-576f-c79315d68505", + "x-ms-request-id": "fd6f4a2c-f01f-0094-4e5e-6efac9000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "49a5bdfe-54a3-4e00-67f9-269fca8becbb", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0ead4051-9b6c-4e4b-68e1-a584a10fd7c6", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB639260AEE2\"", - "last-modified": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:26 GMT", + "etag": "\"0x8DA3C7613ED0D5D\"", + "last-modified": "Mon, 23 May 2022 04:38:26 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "49a5bdfe-54a3-4e00-67f9-269fca8becbb", + "x-ms-client-request-id": "0ead4051-9b6c-4e4b-68e1-a584a10fd7c6", "x-ms-content-crc64": "VdHGJmaQf4M=", - "x-ms-request-id": "74a0a988-201e-000d-534c-fd0d3b000000", + "x-ms-request-id": "9c96e1f2-301e-008b-2c5e-6e49cd000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1022976/fromfile-c2s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "95d53c7e-5965-4b7d-776d-0cffda1edb5a", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "611fff0d-2f83-4b15-55ec-4b0313e4c403", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "1022976", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB639260AEE2\"", - "last-modified": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:26 GMT", + "etag": "\"0x8DA3C7613ED0D5D\"", + "last-modified": "Mon, 23 May 2022 04:38:26 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "95d53c7e-5965-4b7d-776d-0cffda1edb5a", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:16 GMT", + "x-ms-client-request-id": "611fff0d-2f83-4b15-55ec-4b0313e4c403", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:26 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:26 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "74a0a9b2-201e-000d-7c4c-fd0d3b000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "9c96e29d-301e-008b-465e-6e49cd000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1022976/fromfile-c2s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "1de95bfc-2849-4e77-7c9d-ba536b350f70", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9857b442-d8a5-47f3-7a4d-33f422c1d5fb", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "1022976", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB639260AEE2\"", - "last-modified": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:26 GMT", + "etag": "\"0x8DA3C7613ED0D5D\"", + "last-modified": "Mon, 23 May 2022 04:38:26 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "1de95bfc-2849-4e77-7c9d-ba536b350f70", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:16 GMT", + "x-ms-client-request-id": "9857b442-d8a5-47f3-7a4d-33f422c1d5fb", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:26 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:26 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "74a0a9b8-201e-000d-024c-fd0d3b000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "9c96e2d6-301e-008b-755e-6e49cd000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1022976/fromfile-c2s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b6f8dadb-b497-436a-7b05-fa87437ad5e4", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "f87bab5b-09cb-48f3-730d-0dac8d1853c7", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "1022976", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB639260AEE2\"", - "last-modified": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:27 GMT", + "etag": "\"0x8DA3C7613ED0D5D\"", + "last-modified": "Mon, 23 May 2022 04:38:26 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "b6f8dadb-b497-436a-7b05-fa87437ad5e4", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:16 GMT", + "x-ms-client-request-id": "f87bab5b-09cb-48f3-730d-0dac8d1853c7", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:26 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:26 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "74a0a9c0-201e-000d-0a4c-fd0d3b000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "9c96e2f9-301e-008b-135e-6e49cd000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1022976/fromfile-c2s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "c629517c-6695-4ebc-7d66-5c7cad18fcf3", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d420add5-5818-431b-7e17-08448f09de28", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "1022976", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB639260AEE2\"", - "last-modified": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:29 GMT", + "etag": "\"0x8DA3C7613ED0D5D\"", + "last-modified": "Mon, 23 May 2022 04:38:26 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "c629517c-6695-4ebc-7d66-5c7cad18fcf3", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:16 GMT", + "x-ms-client-request-id": "d420add5-5818-431b-7e17-08448f09de28", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:26 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:27 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "74a0a9fa-201e-000d-3f4c-fd0d3b000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "9c96e3fb-301e-008b-765e-6e49cd000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1022976/fromfile-c2s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "13cfa4a2-56b3-4525-680d-88031a76d1e6", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "6ac162ef-5fe0-44c4-4c9a-524a87d996d7", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:29 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "13cfa4a2-56b3-4525-680d-88031a76d1e6", - "x-ms-request-id": "0a4a5c5e-a01f-003c-224c-fdec28000000", + "x-ms-client-request-id": "6ac162ef-5fe0-44c4-4c9a-524a87d996d7", + "x-ms-request-id": "fd6f4a31-f01f-0094-525e-6efac9000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s1022976/fromfile-c2s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "dd029483-fa8b-41d6-4601-a6c01874f39f", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "29173ccf-703c-43ff-774e-7c697636ea8c", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:29 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "dd029483-fa8b-41d6-4601-a6c01874f39f", - "x-ms-request-id": "0a4a5c5f-a01f-003c-234c-fdec28000000", + "x-ms-client-request-id": "29173ccf-703c-43ff-774e-7c697636ea8c", + "x-ms-request-id": "fd6f4a32-f01f-0094-535e-6efac9000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s1022976/withparam-uploadfilefromfile-c2s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "4adc8be8-624c-48b0-40ed-390f9369997f", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "538d1959-3bc4-475b-6e69-1d958a6e3aec", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:30 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "4adc8be8-624c-48b0-40ed-390f9369997f", - "x-ms-request-id": "74a0aa62-201e-000d-1f4c-fd0d3b000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "538d1959-3bc4-475b-6e69-1d958a6e3aec", + "x-ms-request-id": "9c96e491-301e-008b-705e-6e49cd000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1022976?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s1048576.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s1048576.json index 00c717e14a..61b6e1313d 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s1048576.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s1048576.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "decf6273-cf65-48d0-4cd6-2a5d7ea68d65", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "dc63cfbc-f51e-4892-4b64-2704d3438dc6", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB63928E3EF3\"", - "last-modified": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:31 GMT", + "etag": "\"0x8DA3C76179B148B\"", + "last-modified": "Mon, 23 May 2022 04:38:32 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "decf6273-cf65-48d0-4cd6-2a5d7ea68d65", - "x-ms-request-id": "3752ea97-d01e-0026-604c-fd8df7000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "dc63cfbc-f51e-4892-4b64-2704d3438dc6", + "x-ms-request-id": "164f1775-401e-0091-685e-6e2812000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1048576?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "eb67926d-79e8-462e-5db0-a1360d6f4ab7", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "c191a31f-097f-4000-7354-b409a66070d7", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:17 GMT", - "etag": "\"0x8D9CB63929D51AB\"", - "last-modified": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:34 GMT", + "etag": "\"0x8DA3C76188F65E5\"", + "last-modified": "Mon, 23 May 2022 04:38:34 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "eb67926d-79e8-462e-5db0-a1360d6f4ab7", - "x-ms-request-id": "cfcd0230-801f-003b-264c-fd804b000000", + "x-ms-client-request-id": "c191a31f-097f-4000-7354-b409a66070d7", + "x-ms-request-id": "9f760483-701f-006e-475e-6e188f000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "04854bd1-6bc3-4ada-577d-ca69e139252a", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "ce6f1af7-a8c3-421d-4303-e75220f17966", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB6392ACED27\"", - "last-modified": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:35 GMT", + "etag": "\"0x8DA3C76197EC136\"", + "last-modified": "Mon, 23 May 2022 04:38:35 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "04854bd1-6bc3-4ada-577d-ca69e139252a", + "x-ms-client-request-id": "ce6f1af7-a8c3-421d-4303-e75220f17966", "x-ms-content-crc64": "EC00phK3Kqg=", - "x-ms-request-id": "3752eacd-d01e-0026-114c-fd8df7000000", + "x-ms-request-id": "164f1925-401e-0091-6e5e-6e2812000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1048576/fromfile-c2s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "54bfb52f-9127-4b01-6aee-fd349f9a7a6e", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b82f6196-4040-4a46-7aec-defa2add022f", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "1048576", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB6392ACED27\"", - "last-modified": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:35 GMT", + "etag": "\"0x8DA3C76197EC136\"", + "last-modified": "Mon, 23 May 2022 04:38:35 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "54bfb52f-9127-4b01-6aee-fd349f9a7a6e", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:17 GMT", + "x-ms-client-request-id": "b82f6196-4040-4a46-7aec-defa2add022f", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:35 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:35 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3752eae7-d01e-0026-2a4c-fd8df7000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "164f1ae1-401e-0091-0e5e-6e2812000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1048576/fromfile-c2s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "e4bb39d5-7f32-40e5-69c3-c9b7e74fe5ef", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "538b3d3f-11fa-4622-680e-93aff047dea6", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "1048576", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB6392ACED27\"", - "last-modified": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:35 GMT", + "etag": "\"0x8DA3C76197EC136\"", + "last-modified": "Mon, 23 May 2022 04:38:35 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "e4bb39d5-7f32-40e5-69c3-c9b7e74fe5ef", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:17 GMT", + "x-ms-client-request-id": "538b3d3f-11fa-4622-680e-93aff047dea6", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:35 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:35 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3752eae9-d01e-0026-2c4c-fd8df7000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "164f1b34-401e-0091-5b5e-6e2812000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1048576/fromfile-c2s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "bcb48872-aa73-4a41-41fe-98e8ecdce7c2", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "1b70384c-1ace-45f3-4947-aec030d143f6", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "1048576", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB6392ACED27\"", - "last-modified": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:36 GMT", + "etag": "\"0x8DA3C76197EC136\"", + "last-modified": "Mon, 23 May 2022 04:38:35 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "bcb48872-aa73-4a41-41fe-98e8ecdce7c2", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:17 GMT", + "x-ms-client-request-id": "1b70384c-1ace-45f3-4947-aec030d143f6", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:35 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:35 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3752eaed-d01e-0026-304c-fd8df7000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "164f1b79-401e-0091-1b5e-6e2812000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1048576/fromfile-c2s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "e7e2e87d-2060-411a-4461-30c4da121dd5", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "47785b38-8c1a-4fab-438e-4361941c04bc", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "1048576", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB6392ACED27\"", - "last-modified": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:38 GMT", + "etag": "\"0x8DA3C76197EC136\"", + "last-modified": "Mon, 23 May 2022 04:38:35 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "e7e2e87d-2060-411a-4461-30c4da121dd5", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:17 GMT", + "x-ms-client-request-id": "47785b38-8c1a-4fab-438e-4361941c04bc", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:35 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:36 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3752eb10-d01e-0026-514c-fd8df7000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "164f1c4a-401e-0091-595e-6e2812000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1048576/fromfile-c2s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "62dcbb75-cba5-452b-41a4-e994c0518416", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "93bced8a-f16f-4843-7728-a2a7acff11c6", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:39 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "62dcbb75-cba5-452b-41a4-e994c0518416", - "x-ms-request-id": "cfcd0231-801f-003b-274c-fd804b000000", + "x-ms-client-request-id": "93bced8a-f16f-4843-7728-a2a7acff11c6", + "x-ms-request-id": "9f76048d-701f-006e-4c5e-6e188f000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s1048576/fromfile-c2s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "a59859c3-b78b-4274-4170-ed08a8fcf782", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "057d61f8-ed63-44fb-6f1e-8afdd8e89534", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:39 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "a59859c3-b78b-4274-4170-ed08a8fcf782", - "x-ms-request-id": "cfcd0232-801f-003b-284c-fd804b000000", + "x-ms-client-request-id": "057d61f8-ed63-44fb-6f1e-8afdd8e89534", + "x-ms-request-id": "9f76048e-701f-006e-4d5e-6e188f000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s1048576/withparam-uploadfilefromfile-c2s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d5c7bcaf-111e-4cf1-4b4d-f66bd9abe693", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0857af96-c775-4f59-56c6-c0eefc8c74f9", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:43 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "d5c7bcaf-111e-4cf1-4b4d-f66bd9abe693", - "x-ms-request-id": "3752eb3e-d01e-0026-7e4c-fd8df7000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "0857af96-c775-4f59-56c6-c0eefc8c74f9", + "x-ms-request-id": "164f1ce3-401e-0091-465e-6e2812000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s1048576?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s2.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s2.json index 7d9789000d..e2fb6e9dfd 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s2.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s2.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "5a4e7c0c-c95b-44e0-5670-461ba088ade4", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "f8bb35e0-7812-4f28-65b2-49acbf22247e", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", - "etag": "\"0x8D9CB63918596B7\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:00 GMT", + "etag": "\"0x8DA3C760513B8FD\"", + "last-modified": "Mon, 23 May 2022 04:38:01 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "5a4e7c0c-c95b-44e0-5670-461ba088ade4", - "x-ms-request-id": "1b78b0c2-701e-0010-594c-fd0087000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "f8bb35e0-7812-4f28-65b2-49acbf22247e", + "x-ms-request-id": "f5660494-b01e-0095-7f5e-6ea515000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "4cc87f41-4954-44ee-4952-bc88f7491532", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "7b538d74-b069-497a-4a85-28db93177e50", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", - "etag": "\"0x8D9CB639196C3FF\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:02 GMT", + "etag": "\"0x8DA3C760600E7E2\"", + "last-modified": "Mon, 23 May 2022 04:38:03 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "4cc87f41-4954-44ee-4952-bc88f7491532", - "x-ms-request-id": "1e7de2b6-301f-0063-1a4c-fd5814000000", + "x-ms-client-request-id": "7b538d74-b069-497a-4a85-28db93177e50", + "x-ms-request-id": "4e706e26-b01f-0003-3a5e-6eacc4000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "9714dc74-3046-4c0c-524d-27f97fa3fd6c", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2b1b5632-d7a8-41cf-4da6-f5cf6127bd70", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB63919C0511\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:02 GMT", + "etag": "\"0x8DA3C760639174B\"", + "last-modified": "Mon, 23 May 2022 04:38:03 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "9714dc74-3046-4c0c-524d-27f97fa3fd6c", + "x-ms-client-request-id": "2b1b5632-d7a8-41cf-4da6-f5cf6127bd70", "x-ms-content-crc64": "GkCMY8i4s0E=", - "x-ms-request-id": "1b78b132-701e-0010-3f4c-fd0087000000", + "x-ms-request-id": "f5660562-b01e-0095-2f5e-6ea515000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2/fromfile-c2s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "42d42a96-fa43-4d06-7850-8b31770438dc", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b213e1a3-4657-467a-522d-3c59ade5e8eb", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "2", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB63919C0511\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:02 GMT", + "etag": "\"0x8DA3C760639174B\"", + "last-modified": "Mon, 23 May 2022 04:38:03 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "42d42a96-fa43-4d06-7850-8b31770438dc", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:15 GMT", + "x-ms-client-request-id": "b213e1a3-4657-467a-522d-3c59ade5e8eb", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:03 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:03 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "1b78b14c-701e-0010-584c-fd0087000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "f5660592-b01e-0095-555e-6ea515000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2/fromfile-c2s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "51b8e71d-b799-4909-72a0-13fd4780b7e8", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "4db0b609-43ce-4dd4-4bc7-9bdd1191a656", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "2", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB63919C0511\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:03 GMT", + "etag": "\"0x8DA3C760639174B\"", + "last-modified": "Mon, 23 May 2022 04:38:03 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "51b8e71d-b799-4909-72a0-13fd4780b7e8", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:15 GMT", + "x-ms-client-request-id": "4db0b609-43ce-4dd4-4bc7-9bdd1191a656", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:03 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:03 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "1b78b154-701e-0010-5f4c-fd0087000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "f56605b1-b01e-0095-725e-6ea515000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2/fromfile-c2s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "26982d6f-b740-456d-7fc8-c863d903fbbd", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "a2fc6d02-fd42-4515-5c51-af7f693e43b0", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "2", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB63919C0511\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:03 GMT", + "etag": "\"0x8DA3C760639174B\"", + "last-modified": "Mon, 23 May 2022 04:38:03 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "26982d6f-b740-456d-7fc8-c863d903fbbd", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:15 GMT", + "x-ms-client-request-id": "a2fc6d02-fd42-4515-5c51-af7f693e43b0", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:03 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:03 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "1b78b157-701e-0010-624c-fd0087000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "f56605d1-b01e-0095-0e5e-6ea515000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2/fromfile-c2s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "366b5fc3-8675-4ab2-4903-7dc878d55d31", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "46b0b9d2-6e71-40e2-4cba-a500248c01d2", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "2", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB63919C0511\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:03 GMT", + "etag": "\"0x8DA3C760639174B\"", + "last-modified": "Mon, 23 May 2022 04:38:03 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "366b5fc3-8675-4ab2-4903-7dc878d55d31", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:15 GMT", + "x-ms-client-request-id": "46b0b9d2-6e71-40e2-4cba-a500248c01d2", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:03 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:04 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "1b78b161-701e-0010-6c4c-fd0087000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "f56605f2-b01e-0095-295e-6ea515000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2/fromfile-c2s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d0ed8165-5779-4d01-6c65-d835fd97f9eb", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "87e07e27-dee1-43ba-623f-0c47a9aa80e9", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:38:04 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "d0ed8165-5779-4d01-6c65-d835fd97f9eb", - "x-ms-request-id": "1e7de2b7-301f-0063-1b4c-fd5814000000", + "x-ms-client-request-id": "87e07e27-dee1-43ba-623f-0c47a9aa80e9", + "x-ms-request-id": "4e706e2a-b01f-0003-3e5e-6eacc4000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s2/fromfile-c2s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "216d1144-30b5-4b10-6bab-0bfe03033dc8", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "3ce6c185-b9b0-4cfd-7324-9e58c999c751", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", + "date": "Mon, 23 May 2022 04:38:04 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "216d1144-30b5-4b10-6bab-0bfe03033dc8", - "x-ms-request-id": "1e7de2b8-301f-0063-1c4c-fd5814000000", + "x-ms-client-request-id": "3ce6c185-b9b0-4cfd-7324-9e58c999c751", + "x-ms-request-id": "4e706e2b-b01f-0003-3f5e-6eacc4000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s2/withparam-uploadfilefromfile-c2s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "7199bf42-0f69-4045-59e1-8311bc434002", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "980cfcff-ba1c-4703-6454-a5472626a415", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:06 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "7199bf42-0f69-4045-59e1-8311bc434002", - "x-ms-request-id": "1b78b1c5-701e-0010-4d4c-fd0087000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "980cfcff-ba1c-4703-6454-a5472626a415", + "x-ms-request-id": "f5660699-b01e-0095-365e-6ea515000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s2048.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s2048.json index 8263fb1435..f01ad88c51 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s2048.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s2048.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "eeeedf99-c01e-4eaa-6e65-deceb4bdf9eb", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "362902af-710a-4d17-61a3-0e7db48f9c19", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB6391BE5C84\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:08 GMT", + "etag": "\"0x8DA3C76095FAC62\"", + "last-modified": "Mon, 23 May 2022 04:38:08 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "eeeedf99-c01e-4eaa-6e65-deceb4bdf9eb", - "x-ms-request-id": "3738ec2d-e01e-0070-384c-fd7c18000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "362902af-710a-4d17-61a3-0e7db48f9c19", + "x-ms-request-id": "722c9924-a01e-006d-3b5e-6ef9eb000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2048?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b20b15b8-94a6-440f-78d5-425a68727347", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "e62f75f5-adfd-4c90-409f-824cf7339ea3", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:14 GMT", - "etag": "\"0x8D9CB6391CA592D\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:10 GMT", + "etag": "\"0x8DA3C760A42DF69\"", + "last-modified": "Mon, 23 May 2022 04:38:10 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "b20b15b8-94a6-440f-78d5-425a68727347", - "x-ms-request-id": "b0f9ccd9-701f-004d-6c4c-fd0a03000000", + "x-ms-client-request-id": "e62f75f5-adfd-4c90-409f-824cf7339ea3", + "x-ms-request-id": "62b216fa-d01f-0005-3a5e-6e9f7b000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "e815839f-d836-4d0a-7060-822cc4b6bbe5", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9d09b9de-af47-4937-7feb-cc1e9a3d4398", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB6391CFCF75\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:09 GMT", + "etag": "\"0x8DA3C760A791279\"", + "last-modified": "Mon, 23 May 2022 04:38:10 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "e815839f-d836-4d0a-7060-822cc4b6bbe5", + "x-ms-client-request-id": "9d09b9de-af47-4937-7feb-cc1e9a3d4398", "x-ms-content-crc64": "Evka7LWUXng=", - "x-ms-request-id": "3738ec6c-e01e-0070-6d4c-fd7c18000000", + "x-ms-request-id": "722c99da-a01e-006d-495e-6ef9eb000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2048/fromfile-c2s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8686a788-f474-41b4-664e-bd3e5701e9ad", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "5681de44-61f2-4375-4868-b3be615c6c11", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "2048", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB6391CFCF75\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:10 GMT", + "etag": "\"0x8DA3C760A791279\"", + "last-modified": "Mon, 23 May 2022 04:38:10 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "8686a788-f474-41b4-664e-bd3e5701e9ad", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:15 GMT", + "x-ms-client-request-id": "5681de44-61f2-4375-4868-b3be615c6c11", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:10 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:10 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3738ec79-e01e-0070-7a4c-fd7c18000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "722c99fb-a01e-006d-625e-6ef9eb000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2048/fromfile-c2s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "0bcf0b2a-84b7-4fd9-69ac-689b7588afe7", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "178743ff-dc2b-463b-53f7-97c2aa042f42", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "2048", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB6391CFCF75\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:10 GMT", + "etag": "\"0x8DA3C760A791279\"", + "last-modified": "Mon, 23 May 2022 04:38:10 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "0bcf0b2a-84b7-4fd9-69ac-689b7588afe7", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:15 GMT", + "x-ms-client-request-id": "178743ff-dc2b-463b-53f7-97c2aa042f42", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:10 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:10 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3738ec83-e01e-0070-034c-fd7c18000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "722c9a2a-a01e-006d-0b5e-6ef9eb000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2048/fromfile-c2s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "3cd3b171-a020-472d-5338-d188a302b4ba", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "cb8a081d-dd36-42b7-78f3-eb12431cfceb", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "2048", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB6391CFCF75\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:11 GMT", + "etag": "\"0x8DA3C760A791279\"", + "last-modified": "Mon, 23 May 2022 04:38:10 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "3cd3b171-a020-472d-5338-d188a302b4ba", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:15 GMT", + "x-ms-client-request-id": "cb8a081d-dd36-42b7-78f3-eb12431cfceb", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:10 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:10 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3738ec8d-e01e-0070-0c4c-fd7c18000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "722c9a3a-a01e-006d-195e-6ef9eb000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2048/fromfile-c2s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8d79f186-6ffd-402a-7a50-30d5308f1a0d", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9c0dbfa3-1a91-4946-747b-11171d5a2483", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "2048", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", - "etag": "\"0x8D9CB6391CFCF75\"", - "last-modified": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:11 GMT", + "etag": "\"0x8DA3C760A791279\"", + "last-modified": "Mon, 23 May 2022 04:38:10 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "8d79f186-6ffd-402a-7a50-30d5308f1a0d", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:15 GMT", + "x-ms-client-request-id": "9c0dbfa3-1a91-4946-747b-11171d5a2483", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:10 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:11 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3738ec95-e01e-0070-144c-fd7c18000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "722c9a61-a01e-006d-3c5e-6ef9eb000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2048/fromfile-c2s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "55a36372-0868-4323-6693-7b970b2626db", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "f63ba5f4-350e-49a4-7451-3b4e51d203cf", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:12 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "55a36372-0868-4323-6693-7b970b2626db", - "x-ms-request-id": "b0f9ccdd-701f-004d-704c-fd0a03000000", + "x-ms-client-request-id": "f63ba5f4-350e-49a4-7451-3b4e51d203cf", + "x-ms-request-id": "62b21701-d01f-0005-415e-6e9f7b000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s2048/fromfile-c2s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "bc58508c-e077-4bdb-45bd-e849a0df48dd", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "e9648d6e-05b7-44af-571f-1d1225e6bd4b", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:12 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "bc58508c-e077-4bdb-45bd-e849a0df48dd", - "x-ms-request-id": "b0f9ccdf-701f-004d-724c-fd0a03000000", + "x-ms-client-request-id": "e9648d6e-05b7-44af-571f-1d1225e6bd4b", + "x-ms-request-id": "62b21704-d01f-0005-445e-6e9f7b000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s2048/withparam-uploadfilefromfile-c2s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "3ea3369b-8162-49d2-4b28-def3212f8fd4", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "526ab439-4786-44a1-4b25-1131a5ebd20a", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:15 GMT", + "date": "Mon, 23 May 2022 04:38:13 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "3ea3369b-8162-49d2-4b28-def3212f8fd4", - "x-ms-request-id": "3738ed69-e01e-0070-514c-fd7c18000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "526ab439-4786-44a1-4b25-1131a5ebd20a", + "x-ms-request-id": "722c9b45-a01e-006d-105e-6ef9eb000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2048?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s2097151.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s2097151.json index c5347c91ea..1ca25813da 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s2097151.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s2097151.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "0a4dd2b8-4d80-4389-5fc3-1c6eda5a71df", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "6e8cacc1-89da-42f3-4073-213a8dfeda19", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:17 GMT", - "etag": "\"0x8D9CB6392F40410\"", - "last-modified": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:44 GMT", + "etag": "\"0x8DA3C761F3FD084\"", + "last-modified": "Mon, 23 May 2022 04:38:45 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "0a4dd2b8-4d80-4389-5fc3-1c6eda5a71df", - "x-ms-request-id": "8c8cce77-801e-0004-394c-fd48e8000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "6e8cacc1-89da-42f3-4073-213a8dfeda19", + "x-ms-request-id": "dd0449bf-e01e-0043-175e-6eabfc000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2097151?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "38cb161f-c9d6-4e53-5344-6a8a915c6a15", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0dec31a6-1da7-42b4-6318-701c762f4cc8", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:17 GMT", - "etag": "\"0x8D9CB6392FF0D95\"", - "last-modified": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:46 GMT", + "etag": "\"0x8DA3C762054BE23\"", + "last-modified": "Mon, 23 May 2022 04:38:47 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "38cb161f-c9d6-4e53-5344-6a8a915c6a15", - "x-ms-request-id": "ab91022b-001f-0047-3b4c-fdaeb4000000", + "x-ms-client-request-id": "0dec31a6-1da7-42b4-6318-701c762f4cc8", + "x-ms-request-id": "9867e922-401f-0065-6f5e-6ee3e4000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "bcb12b7d-ef41-471e-4312-9b20537a14e9", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9fe38aeb-9f0c-4518-7c80-c93c33f9dba4", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", - "date": "Thu, 30 Dec 2021 07:11:17 GMT", - "etag": "\"0x8D9CB639312C14D\"", - "last-modified": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:48 GMT", + "etag": "\"0x8DA3C762178F9C4\"", + "last-modified": "Mon, 23 May 2022 04:38:49 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "bcb12b7d-ef41-471e-4312-9b20537a14e9", + "x-ms-client-request-id": "9fe38aeb-9f0c-4518-7c80-c93c33f9dba4", "x-ms-content-crc64": "oK9HAae4vsU=", - "x-ms-request-id": "8c8cce95-801e-0004-514c-fd48e8000000", + "x-ms-request-id": "dd044b14-e01e-0043-435e-6eabfc000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2097151/fromfile-c2s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "a7766f05-c218-418e-5e06-1014fffc9952", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "458b1cb5-5372-468a-56a9-381f096960a8", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "2097151", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:17 GMT", - "etag": "\"0x8D9CB639312C14D\"", - "last-modified": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:48 GMT", + "etag": "\"0x8DA3C762178F9C4\"", + "last-modified": "Mon, 23 May 2022 04:38:49 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "a7766f05-c218-418e-5e06-1014fffc9952", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:17 GMT", + "x-ms-client-request-id": "458b1cb5-5372-468a-56a9-381f096960a8", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:49 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:49 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "8c8cceb3-801e-0004-6d4c-fd48e8000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "dd044c86-e01e-0043-245e-6eabfc000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2097151/fromfile-c2s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "4acd10cf-aa38-44a4-66ce-12a8279f4b8a", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "a5404fa9-84b9-426d-43ef-a7cd69ecd1d0", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "2097151", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:17 GMT", - "etag": "\"0x8D9CB639312C14D\"", - "last-modified": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:49 GMT", + "etag": "\"0x8DA3C762178F9C4\"", + "last-modified": "Mon, 23 May 2022 04:38:49 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "4acd10cf-aa38-44a4-66ce-12a8279f4b8a", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:17 GMT", + "x-ms-client-request-id": "a5404fa9-84b9-426d-43ef-a7cd69ecd1d0", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:49 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:49 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "8c8cceb4-801e-0004-6e4c-fd48e8000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "dd044cb6-e01e-0043-535e-6eabfc000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2097151/fromfile-c2s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "bac1c322-a661-4c8d-5f81-d55198d3a661", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "dd300f95-abe4-451f-5c8a-efe866c6b6f0", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "2097151", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:17 GMT", - "etag": "\"0x8D9CB639312C14D\"", - "last-modified": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:49 GMT", + "etag": "\"0x8DA3C762178F9C4\"", + "last-modified": "Mon, 23 May 2022 04:38:49 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "bac1c322-a661-4c8d-5f81-d55198d3a661", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:17 GMT", + "x-ms-client-request-id": "dd300f95-abe4-451f-5c8a-efe866c6b6f0", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:49 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:49 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "8c8cceba-801e-0004-734c-fd48e8000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "dd044cee-e01e-0043-065e-6eabfc000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2097151/fromfile-c2s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "eb88a034-9abe-4377-7e5e-e848e9bab050", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "11c2b64d-9019-41fc-4786-ec5f5e35c4e6", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "2097151", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:17 GMT", - "etag": "\"0x8D9CB639312C14D\"", - "last-modified": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:52 GMT", + "etag": "\"0x8DA3C762178F9C4\"", + "last-modified": "Mon, 23 May 2022 04:38:49 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "eb88a034-9abe-4377-7e5e-e848e9bab050", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:17 GMT", + "x-ms-client-request-id": "11c2b64d-9019-41fc-4786-ec5f5e35c4e6", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:49 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:50 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "8c8ccec8-801e-0004-014c-fd48e8000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "dd044e7e-e01e-0043-7a5f-6eabfc000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2097151/fromfile-c2s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d3d450bd-5b3b-46c4-76ab-8aee99d79b46", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "92ec1bc0-585c-400c-5902-81d93e4cf1be", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", + "date": "Mon, 23 May 2022 04:38:53 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "d3d450bd-5b3b-46c4-76ab-8aee99d79b46", - "x-ms-request-id": "ab91022c-001f-0047-3c4c-fdaeb4000000", + "x-ms-client-request-id": "92ec1bc0-585c-400c-5902-81d93e4cf1be", + "x-ms-request-id": "9867e92c-401f-0065-705f-6ee3e4000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s2097151/fromfile-c2s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "faf0d8dc-1e0b-4065-78c9-b6cfd39dbaf7", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "38a31461-f115-4cdc-4710-2b9ce2c9d0d1", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", + "date": "Mon, 23 May 2022 04:38:54 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "faf0d8dc-1e0b-4065-78c9-b6cfd39dbaf7", - "x-ms-request-id": "ab91022d-001f-0047-3d4c-fdaeb4000000", + "x-ms-client-request-id": "38a31461-f115-4cdc-4710-2b9ce2c9d0d1", + "x-ms-request-id": "9867e92d-401f-0065-715f-6ee3e4000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s2097151/withparam-uploadfilefromfile-c2s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8180f29f-cbf0-4e9f-6ff6-a826e6e99b60", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "4d77581f-495e-4967-4c41-f1a2f20eb625", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:17 GMT", + "date": "Mon, 23 May 2022 04:38:57 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "8180f29f-cbf0-4e9f-6ff6-a826e6e99b60", - "x-ms-request-id": "8c8ccf01-801e-0004-344c-fd48e8000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "4d77581f-495e-4967-4c41-f1a2f20eb625", + "x-ms-request-id": "dd044f89-e01e-0043-6f5f-6eabfc000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s2097151?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s3145728.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s3145728.json index 05b23abcb4..daaf533826 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s3145728.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s3145728.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "3b07ad59-7787-4f06-7e84-3394f7d626ff", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "68e27c02-353c-4bfd-64f2-f457b0f9aa66", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB63934ED030\"", - "last-modified": "Thu, 30 Dec 2021 07:11:18 GMT", + "date": "Mon, 23 May 2022 04:38:59 GMT", + "etag": "\"0x8DA3C7627F255EB\"", + "last-modified": "Mon, 23 May 2022 04:39:00 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "3b07ad59-7787-4f06-7e84-3394f7d626ff", - "x-ms-request-id": "f12388b6-501e-005a-4f4c-fda308000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "68e27c02-353c-4bfd-64f2-f457b0f9aa66", + "x-ms-request-id": "ce2ea0e0-601e-0086-475f-6e8119000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s3145728?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "47e7d884-b314-49dc-67fa-ce465fe5bb90", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "cd97b760-d470-4c25-655e-22bb672ef8e9", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB63936112B2\"", - "last-modified": "Thu, 30 Dec 2021 07:11:18 GMT", + "date": "Mon, 23 May 2022 04:39:01 GMT", + "etag": "\"0x8DA3C7628D8D044\"", + "last-modified": "Mon, 23 May 2022 04:39:01 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "47e7d884-b314-49dc-67fa-ce465fe5bb90", - "x-ms-request-id": "55f29cf2-501f-005a-734c-fda308000000", + "x-ms-client-request-id": "cd97b760-d470-4c25-655e-22bb672ef8e9", + "x-ms-request-id": "6a6c96b3-c01f-0019-595f-6ecd1b000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "ba3c3909-7927-4656-73e2-9200aae4ef71", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d4714419-a709-4499-6f19-d7cb5ecfec15", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB6393769790\"", - "last-modified": "Thu, 30 Dec 2021 07:11:18 GMT", + "date": "Mon, 23 May 2022 04:39:07 GMT", + "etag": "\"0x8DA3C762D044B4B\"", + "last-modified": "Mon, 23 May 2022 04:39:08 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "ba3c3909-7927-4656-73e2-9200aae4ef71", + "x-ms-client-request-id": "d4714419-a709-4499-6f19-d7cb5ecfec15", "x-ms-content-crc64": "KDjN031jIaA=", - "x-ms-request-id": "f12388e6-501e-005a-784c-fda308000000", + "x-ms-request-id": "ce2ea31f-601e-0086-165f-6e8119000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s3145728/fromfile-c2s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "ce04c8f4-c973-4827-48a1-fb97f22c6e31", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2aa6bb23-c4c6-455b-6c85-1dbb7922ddd9", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "3145728", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB6393769790\"", - "last-modified": "Thu, 30 Dec 2021 07:11:18 GMT", + "date": "Mon, 23 May 2022 04:39:07 GMT", + "etag": "\"0x8DA3C762D044B4B\"", + "last-modified": "Mon, 23 May 2022 04:39:08 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "ce04c8f4-c973-4827-48a1-fb97f22c6e31", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:18 GMT", + "x-ms-client-request-id": "2aa6bb23-c4c6-455b-6c85-1dbb7922ddd9", + "x-ms-creation-time": "Mon, 23 May 2022 04:39:08 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:39:08 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "f1238914-501e-005a-254c-fda308000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ce2eaa06-601e-0086-0a5f-6e8119000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s3145728/fromfile-c2s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "7f63c305-f6bc-4509-74f5-d690d2a53666", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "7448f3fe-c9c2-4d29-78c0-377ead5a539d", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "3145728", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB6393769790\"", - "last-modified": "Thu, 30 Dec 2021 07:11:18 GMT", + "date": "Mon, 23 May 2022 04:39:08 GMT", + "etag": "\"0x8DA3C762D044B4B\"", + "last-modified": "Mon, 23 May 2022 04:39:08 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "7f63c305-f6bc-4509-74f5-d690d2a53666", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:18 GMT", + "x-ms-client-request-id": "7448f3fe-c9c2-4d29-78c0-377ead5a539d", + "x-ms-creation-time": "Mon, 23 May 2022 04:39:08 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:39:08 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "f1238916-501e-005a-274c-fda308000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ce2eaa3d-601e-0086-3e5f-6e8119000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s3145728/fromfile-c2s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "f422a86e-7152-417d-6780-193140709e33", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "3b60aa27-458d-4289-4cad-2f33766683cb", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "3145728", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB6393769790\"", - "last-modified": "Thu, 30 Dec 2021 07:11:18 GMT", + "date": "Mon, 23 May 2022 04:39:08 GMT", + "etag": "\"0x8DA3C762D044B4B\"", + "last-modified": "Mon, 23 May 2022 04:39:08 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "f422a86e-7152-417d-6780-193140709e33", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:18 GMT", + "x-ms-client-request-id": "3b60aa27-458d-4289-4cad-2f33766683cb", + "x-ms-creation-time": "Mon, 23 May 2022 04:39:08 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:39:08 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "f123891b-501e-005a-2c4c-fda308000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ce2eaa7e-601e-0086-785f-6e8119000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s3145728/fromfile-c2s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "dd1ece29-ab58-4d9e-706a-78488d48df6d", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "df98be57-3765-40a8-4da8-82e99418ed69", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "3145728", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB6393769790\"", - "last-modified": "Thu, 30 Dec 2021 07:11:18 GMT", + "date": "Mon, 23 May 2022 04:39:11 GMT", + "etag": "\"0x8DA3C762D044B4B\"", + "last-modified": "Mon, 23 May 2022 04:39:08 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "dd1ece29-ab58-4d9e-706a-78488d48df6d", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:18 GMT", + "x-ms-client-request-id": "df98be57-3765-40a8-4da8-82e99418ed69", + "x-ms-creation-time": "Mon, 23 May 2022 04:39:08 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:39:09 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "f1238935-501e-005a-454c-fda308000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ce2eadb1-601e-0086-7d5f-6e8119000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s3145728/fromfile-c2s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "66bb567b-2337-406d-4db7-8c5ccd2dffdc", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "f2edb0ab-8740-4883-4ee8-c964e8c54b5c", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", + "date": "Mon, 23 May 2022 04:39:12 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "66bb567b-2337-406d-4db7-8c5ccd2dffdc", - "x-ms-request-id": "55f29cf5-501f-005a-764c-fda308000000", + "x-ms-client-request-id": "f2edb0ab-8740-4883-4ee8-c964e8c54b5c", + "x-ms-request-id": "6a6c96f2-c01f-0019-0e5f-6ecd1b000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s3145728/fromfile-c2s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "4cb3e40f-6803-411a-45ef-f26ad10b5d9d", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "15d93743-3ee2-4883-5294-c65417940f29", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", + "date": "Mon, 23 May 2022 04:39:13 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "4cb3e40f-6803-411a-45ef-f26ad10b5d9d", - "x-ms-request-id": "55f29cf6-501f-005a-774c-fda308000000", + "x-ms-client-request-id": "15d93743-3ee2-4883-5294-c65417940f29", + "x-ms-request-id": "6a6c96f3-c01f-0019-0f5f-6ecd1b000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s3145728/withparam-uploadfilefromfile-c2s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "6e662cf5-1f49-4bf2-743f-ec00a45a761a", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "3f3b871d-6e39-4ee1-617a-144077c9b864", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", + "date": "Mon, 23 May 2022 04:39:14 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "6e662cf5-1f49-4bf2-743f-ec00a45a761a", - "x-ms-request-id": "f123895d-501e-005a-6d4c-fda308000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "3f3b871d-6e39-4ee1-617a-144077c9b864", + "x-ms-request-id": "ce2eaf71-601e-0086-185f-6e8119000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s3145728?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s4096.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s4096.json index 796f699023..b5b0b92ce4 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s4096.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s4096.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b605ab66-a4e6-4b17-7bec-c9a4434c533d", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "c52bbbaa-aaff-4aa2-4671-bdfa45fca00e", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB63920F555E\"", - "last-modified": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:16 GMT", + "etag": "\"0x8DA3C760E545690\"", + "last-modified": "Mon, 23 May 2022 04:38:17 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "b605ab66-a4e6-4b17-7bec-c9a4434c533d", - "x-ms-request-id": "5dc7fbf0-c01e-0058-6f4c-fd1db0000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "c52bbbaa-aaff-4aa2-4671-bdfa45fca00e", + "x-ms-request-id": "39da1def-401e-004a-2d5e-6eee2f000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s4096?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b8797140-1cfb-4d50-4006-1cd8360b8c0c", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "fa59ca7f-f0d2-46f1-6b9a-329e32609823", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB63921DE4A8\"", - "last-modified": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:18 GMT", + "etag": "\"0x8DA3C760F48F505\"", + "last-modified": "Mon, 23 May 2022 04:38:18 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "b8797140-1cfb-4d50-4006-1cd8360b8c0c", - "x-ms-request-id": "76827c5c-301f-0001-204c-fd9a33000000", + "x-ms-client-request-id": "fa59ca7f-f0d2-46f1-6b9a-329e32609823", + "x-ms-request-id": "885d9f97-001f-0006-3e5e-6e7e1f000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "40a6b9a9-c90e-45a8-66f9-c570e9dbfb08", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "468f8f68-8bc3-4b7a-49c0-b49be0c44e82", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB6392235D45\"", - "last-modified": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:18 GMT", + "etag": "\"0x8DA3C760F82F10E\"", + "last-modified": "Mon, 23 May 2022 04:38:19 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "40a6b9a9-c90e-45a8-66f9-c570e9dbfb08", + "x-ms-client-request-id": "468f8f68-8bc3-4b7a-49c0-b49be0c44e82", "x-ms-content-crc64": "hP538/oHol4=", - "x-ms-request-id": "5dc7fc22-c01e-0058-1c4c-fd1db0000000", + "x-ms-request-id": "39da1ebb-401e-004a-475e-6eee2f000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s4096/fromfile-c2s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "6e434473-5de8-44c8-7b34-71326cc84f91", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9f9dc2d9-42f7-4e40-6315-c80d7519b664", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "4096", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB6392235D45\"", - "last-modified": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:19 GMT", + "etag": "\"0x8DA3C760F82F10E\"", + "last-modified": "Mon, 23 May 2022 04:38:19 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "6e434473-5de8-44c8-7b34-71326cc84f91", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:16 GMT", + "x-ms-client-request-id": "9f9dc2d9-42f7-4e40-6315-c80d7519b664", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:19 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:19 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "5dc7fc32-c01e-0058-2b4c-fd1db0000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "39da1ee0-401e-004a-5f5e-6eee2f000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s4096/fromfile-c2s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "22806c4d-6579-4799-784e-06d44d4cce7e", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "549d46c4-8f00-42c7-7342-a8c9cdc71f01", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "4096", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB6392235D45\"", - "last-modified": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:19 GMT", + "etag": "\"0x8DA3C760F82F10E\"", + "last-modified": "Mon, 23 May 2022 04:38:19 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "22806c4d-6579-4799-784e-06d44d4cce7e", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:16 GMT", + "x-ms-client-request-id": "549d46c4-8f00-42c7-7342-a8c9cdc71f01", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:19 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:19 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "5dc7fc38-c01e-0058-314c-fd1db0000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "39da1ef7-401e-004a-735e-6eee2f000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s4096/fromfile-c2s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "a79451ff-b760-442a-72bc-9da68ad7b896", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "6771746b-77b6-4d4b-7b07-3acea9e1e5e8", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "4096", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB6392235D45\"", - "last-modified": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:19 GMT", + "etag": "\"0x8DA3C760F82F10E\"", + "last-modified": "Mon, 23 May 2022 04:38:19 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "a79451ff-b760-442a-72bc-9da68ad7b896", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:16 GMT", + "x-ms-client-request-id": "6771746b-77b6-4d4b-7b07-3acea9e1e5e8", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:19 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:19 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "5dc7fc40-c01e-0058-374c-fd1db0000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "39da1f25-401e-004a-1c5e-6eee2f000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s4096/fromfile-c2s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d5ff3499-ee92-406e-65c8-db3aae6c7126", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0b0414cb-c91f-444d-6c5a-6b934b6c22a0", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "4096", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", - "etag": "\"0x8D9CB6392235D45\"", - "last-modified": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:20 GMT", + "etag": "\"0x8DA3C760F82F10E\"", + "last-modified": "Mon, 23 May 2022 04:38:19 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "d5ff3499-ee92-406e-65c8-db3aae6c7126", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:16 GMT", + "x-ms-client-request-id": "0b0414cb-c91f-444d-6c5a-6b934b6c22a0", + "x-ms-creation-time": "Mon, 23 May 2022 04:38:19 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:38:20 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "5dc7fc47-c01e-0058-3e4c-fd1db0000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "39da1f6a-401e-004a-5f5e-6eee2f000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s4096/fromfile-c2s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "30655dcf-aa93-4226-58f9-300d335ac398", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "62288c5a-70fa-4f3a-6679-38f00578247c", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:20 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "30655dcf-aa93-4226-58f9-300d335ac398", - "x-ms-request-id": "76827c62-301f-0001-264c-fd9a33000000", + "x-ms-client-request-id": "62288c5a-70fa-4f3a-6679-38f00578247c", + "x-ms-request-id": "885d9f9e-001f-0006-455e-6e7e1f000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s4096/fromfile-c2s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "4f7d532b-f01a-4c4c-61e2-7bb5b6c3ae8b", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "f042a880-be47-4efb-4d10-b5430bbe1716", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:20 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "4f7d532b-f01a-4c4c-61e2-7bb5b6c3ae8b", - "x-ms-request-id": "76827c66-301f-0001-2a4c-fd9a33000000", + "x-ms-client-request-id": "f042a880-be47-4efb-4d10-b5430bbe1716", + "x-ms-request-id": "885d9f9f-001f-0006-465e-6e7e1f000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s4096/withparam-uploadfilefromfile-c2s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b472ad97-9353-46a0-4ec1-181314a427d4", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "e45d6a39-51f3-470b-6b1c-71030e7bf433", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:16 GMT", + "date": "Mon, 23 May 2022 04:38:21 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "b472ad97-9353-46a0-4ec1-181314a427d4", - "x-ms-request-id": "5dc7fc76-c01e-0058-614c-fd1db0000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "e45d6a39-51f3-470b-6b1c-71030e7bf433", + "x-ms-request-id": "39da2014-401e-004a-735e-6eee2f000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s4096?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s5242880.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s5242880.json index 620aa2febb..80e87b501d 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s5242880.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s5242880.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "9585c91f-16bc-4a37-4921-59fdb1254ced", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "fdc6d15e-5121-415b-4fe2-09c7c509a1ba", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB6393B1469E\"", - "last-modified": "Thu, 30 Dec 2021 07:11:18 GMT", + "date": "Mon, 23 May 2022 04:39:15 GMT", + "etag": "\"0x8DA3C763145A544\"", + "last-modified": "Mon, 23 May 2022 04:39:15 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "9585c91f-16bc-4a37-4921-59fdb1254ced", - "x-ms-request-id": "4de6f0d5-901e-0037-6c4c-fd1743000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "fdc6d15e-5121-415b-4fe2-09c7c509a1ba", + "x-ms-request-id": "ab5ae7dd-b01e-0071-465f-6eab8b000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s5242880?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "03f7cd15-99aa-4919-7b8e-572969677c16", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "e1bdf04f-95ef-48d4-4be5-76700d9f070e", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB6393BB65BB\"", - "last-modified": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:39:16 GMT", + "etag": "\"0x8DA3C763232E5F8\"", + "last-modified": "Mon, 23 May 2022 04:39:17 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "03f7cd15-99aa-4919-7b8e-572969677c16", - "x-ms-request-id": "329c555e-901f-0008-614c-fddfe0000000", + "x-ms-client-request-id": "e1bdf04f-95ef-48d4-4be5-76700d9f070e", + "x-ms-request-id": "62690a64-101f-0057-325f-6ee393000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "bf541b56-7e05-4f02-4a09-c0bd29f20bed", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d0b08e8c-d2ae-49f6-72fb-9b4b3289f041", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB6393D48627\"", - "last-modified": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:39:31 GMT", + "etag": "\"0x8DA3C763AC014A9\"", + "last-modified": "Mon, 23 May 2022 04:39:31 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "bf541b56-7e05-4f02-4a09-c0bd29f20bed", + "x-ms-client-request-id": "d0b08e8c-d2ae-49f6-72fb-9b4b3289f041", "x-ms-content-crc64": "FOAqKZP9lVI=", - "x-ms-request-id": "4de6f0ff-901e-0037-0d4c-fd1743000000", + "x-ms-request-id": "ab5ae990-b01e-0071-555f-6eab8b000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s5242880/fromfile-c2s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d092339b-204e-4e97-5d11-bea5f4456ff4", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "ef5b327c-0f7d-4bf4-6fcc-d4ab3947778d", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "5242880", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB6393D48627\"", - "last-modified": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:39:31 GMT", + "etag": "\"0x8DA3C763AC014A9\"", + "last-modified": "Mon, 23 May 2022 04:39:31 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "d092339b-204e-4e97-5d11-bea5f4456ff4", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:19 GMT", + "x-ms-client-request-id": "ef5b327c-0f7d-4bf4-6fcc-d4ab3947778d", + "x-ms-creation-time": "Mon, 23 May 2022 04:39:31 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:39:31 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "4de6f155-901e-0037-5b4c-fd1743000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ab5af504-b01e-0071-155f-6eab8b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s5242880/fromfile-c2s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "610546b1-8654-4797-47d2-37b4b4e705e1", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "426f6c22-c886-490f-63cc-1e1e5ff6245e", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "5242880", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB6393D48627\"", - "last-modified": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:39:32 GMT", + "etag": "\"0x8DA3C763AC014A9\"", + "last-modified": "Mon, 23 May 2022 04:39:31 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "610546b1-8654-4797-47d2-37b4b4e705e1", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:19 GMT", + "x-ms-client-request-id": "426f6c22-c886-490f-63cc-1e1e5ff6245e", + "x-ms-creation-time": "Mon, 23 May 2022 04:39:31 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:39:31 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "4de6f15c-901e-0037-614c-fd1743000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ab5af55b-b01e-0071-615f-6eab8b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s5242880/fromfile-c2s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d3c6ecb7-c41b-40fa-789b-052b57bfac3a", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "80005c45-4af9-494a-7e95-1b2d3ca9b395", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "5242880", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB6393D48627\"", - "last-modified": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:39:32 GMT", + "etag": "\"0x8DA3C763AC014A9\"", + "last-modified": "Mon, 23 May 2022 04:39:31 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "d3c6ecb7-c41b-40fa-789b-052b57bfac3a", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:19 GMT", + "x-ms-client-request-id": "80005c45-4af9-494a-7e95-1b2d3ca9b395", + "x-ms-creation-time": "Mon, 23 May 2022 04:39:31 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:39:31 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "4de6f165-901e-0037-694c-fd1743000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ab5af5a1-b01e-0071-215f-6eab8b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s5242880/fromfile-c2s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "99768ecd-07db-4057-4562-4464da9f4e93", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "e95c85ad-849f-4712-733f-565cd58e6d88", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "5242880", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB6393D48627\"", - "last-modified": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:39:36 GMT", + "etag": "\"0x8DA3C763AC014A9\"", + "last-modified": "Mon, 23 May 2022 04:39:31 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "99768ecd-07db-4057-4562-4464da9f4e93", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:19 GMT", + "x-ms-client-request-id": "e95c85ad-849f-4712-733f-565cd58e6d88", + "x-ms-creation-time": "Mon, 23 May 2022 04:39:31 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:39:32 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "4de6f1a0-901e-0037-224c-fd1743000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ab5af7b6-b01e-0071-775f-6eab8b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s5242880/fromfile-c2s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "7738d38f-dc0a-4750-5415-195c833cf84f", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "cc4c6b43-c612-4e89-7091-05d3f6db175b", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:39:36 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "7738d38f-dc0a-4750-5415-195c833cf84f", - "x-ms-request-id": "329c5561-901f-0008-644c-fddfe0000000", + "x-ms-client-request-id": "cc4c6b43-c612-4e89-7091-05d3f6db175b", + "x-ms-request-id": "62690a90-101f-0057-565f-6ee393000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s5242880/fromfile-c2s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "19c796bf-6fa8-4a75-5371-7e7950b15c33", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "cb195baf-70cc-419d-7110-78eec582b490", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:39:37 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "19c796bf-6fa8-4a75-5371-7e7950b15c33", - "x-ms-request-id": "329c5562-901f-0008-654c-fddfe0000000", + "x-ms-client-request-id": "cb195baf-70cc-419d-7110-78eec582b490", + "x-ms-request-id": "62690a91-101f-0057-575f-6ee393000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s5242880/withparam-uploadfilefromfile-c2s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "66907e11-b724-419d-50c2-562817604caa", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b48c50b9-1a63-4b36-5d40-4fe7307ffd7d", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", + "date": "Mon, 23 May 2022 04:39:42 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "66907e11-b724-419d-50c2-562817604caa", - "x-ms-request-id": "4de6f1ec-901e-0037-6b4c-fd1743000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "b48c50b9-1a63-4b36-5d40-4fe7307ffd7d", + "x-ms-request-id": "ab5af976-b01e-0071-0e5f-6eab8b000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s5242880?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s8387374.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s8387374.json index 5e1b84c445..828afa5991 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s8387374.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s8387374.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "fadbafea-296a-4951-5afb-45a2f3de30b7", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "f060a8ff-fec7-4423-5f2f-dcdb1851293e", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", - "etag": "\"0x8D9CB63940C1F3E\"", - "last-modified": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:39:43 GMT", + "etag": "\"0x8DA3C76421FF2F0\"", + "last-modified": "Mon, 23 May 2022 04:39:43 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "fadbafea-296a-4951-5afb-45a2f3de30b7", - "x-ms-request-id": "6824e779-401e-0069-244c-fdfca3000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "f060a8ff-fec7-4423-5f2f-dcdb1851293e", + "x-ms-request-id": "1174778c-101e-0057-5a5f-6ee393000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s8387374?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "7f14ea81-f829-4f49-4873-1cde642d70c3", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "57c20c02-6b50-418d-6696-89c7e9c500ad", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:18 GMT", - "etag": "\"0x8D9CB639415BBEE\"", - "last-modified": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:39:45 GMT", + "etag": "\"0x8DA3C76430D52DA\"", + "last-modified": "Mon, 23 May 2022 04:39:45 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "7f14ea81-f829-4f49-4873-1cde642d70c3", - "x-ms-request-id": "bc276b87-501f-0007-6e4c-fda98c000000", + "x-ms-client-request-id": "57c20c02-6b50-418d-6696-89c7e9c500ad", + "x-ms-request-id": "9f760557-701f-006e-5f5f-6e188f000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "dc310631-8a39-4dc6-5f2d-1a2d3cda6298", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "34965905-f7e5-4d51-7c16-b82322225af5", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", - "etag": "\"0x8D9CB639436BED5\"", - "last-modified": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:39:59 GMT", + "etag": "\"0x8DA3C764BFF31E5\"", + "last-modified": "Mon, 23 May 2022 04:40:00 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "dc310631-8a39-4dc6-5f2d-1a2d3cda6298", + "x-ms-client-request-id": "34965905-f7e5-4d51-7c16-b82322225af5", "x-ms-content-crc64": "9ZS/HdelFfY=", - "x-ms-request-id": "6824e7a0-401e-0069-464c-fdfca3000000", + "x-ms-request-id": "117478cf-101e-0057-095f-6ee393000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s8387374/fromfile-c2s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "ebf7ba73-f5fb-4cd1-5c0a-06bf1f40f3d9", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2abd213d-7095-4eff-66b8-e32bdad7e7cf", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "8387374", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", - "etag": "\"0x8D9CB639436BED5\"", - "last-modified": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:40:00 GMT", + "etag": "\"0x8DA3C764BFF31E5\"", + "last-modified": "Mon, 23 May 2022 04:40:00 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "ebf7ba73-f5fb-4cd1-5c0a-06bf1f40f3d9", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:19 GMT", + "x-ms-client-request-id": "2abd213d-7095-4eff-66b8-e32bdad7e7cf", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:00 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:00 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "6824e7ca-401e-0069-6f4c-fdfca3000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "11748353-101e-0057-3d5f-6ee393000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s8387374/fromfile-c2s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "9af73a96-7e5c-4c78-561e-1de3745ce8df", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "97976da1-6df1-4628-73b8-a9a5cbb9d6f1", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "8387374", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", - "etag": "\"0x8D9CB639436BED5\"", - "last-modified": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:40:00 GMT", + "etag": "\"0x8DA3C764BFF31E5\"", + "last-modified": "Mon, 23 May 2022 04:40:00 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "9af73a96-7e5c-4c78-561e-1de3745ce8df", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:19 GMT", + "x-ms-client-request-id": "97976da1-6df1-4628-73b8-a9a5cbb9d6f1", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:00 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:00 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "6824e7cc-401e-0069-714c-fdfca3000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "11748385-101e-0057-6c5f-6ee393000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s8387374/fromfile-c2s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "555c1335-ec3e-4564-5e32-348dd46aba43", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "6b2b6a5c-c55f-414d-52e5-784c5e9068b5", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "8387374", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", - "etag": "\"0x8D9CB639436BED5\"", - "last-modified": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:40:00 GMT", + "etag": "\"0x8DA3C764BFF31E5\"", + "last-modified": "Mon, 23 May 2022 04:40:00 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "555c1335-ec3e-4564-5e32-348dd46aba43", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:19 GMT", + "x-ms-client-request-id": "6b2b6a5c-c55f-414d-52e5-784c5e9068b5", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:00 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:00 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "6824e7ce-401e-0069-734c-fdfca3000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "117483cf-101e-0057-315f-6ee393000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s8387374/fromfile-c2s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "0938a501-0eb4-49cb-5ff9-7ec40f4b8bfb", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "ffe4e8f0-f50a-40f2-6efb-deadae607bf8", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "8387374", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", - "etag": "\"0x8D9CB639436BED5\"", - "last-modified": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:40:05 GMT", + "etag": "\"0x8DA3C764BFF31E5\"", + "last-modified": "Mon, 23 May 2022 04:40:00 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "0938a501-0eb4-49cb-5ff9-7ec40f4b8bfb", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:19 GMT", + "x-ms-client-request-id": "ffe4e8f0-f50a-40f2-6efb-deadae607bf8", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:00 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:01 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "6824e7eb-401e-0069-0e4c-fdfca3000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "11748660-101e-0057-095f-6ee393000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s8387374/fromfile-c2s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "545dc0a0-00c1-4f5a-6c89-551ca3d343e5", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0b33871a-7e96-4099-513c-df966d75f454", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:40:06 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "545dc0a0-00c1-4f5a-6c89-551ca3d343e5", - "x-ms-request-id": "bc276b88-501f-0007-6f4c-fda98c000000", + "x-ms-client-request-id": "0b33871a-7e96-4099-513c-df966d75f454", + "x-ms-request-id": "9f76058e-701f-006e-015f-6e188f000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s8387374/fromfile-c2s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "7ff2b8b9-8bc9-44c7-5da6-022b3f92502b", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "a3ec7f21-2660-4d07-54ae-978897f41e5b", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:40:06 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "7ff2b8b9-8bc9-44c7-5da6-022b3f92502b", - "x-ms-request-id": "bc276b89-501f-0007-704c-fda98c000000", + "x-ms-client-request-id": "a3ec7f21-2660-4d07-54ae-978897f41e5b", + "x-ms-request-id": "9f76058f-701f-006e-025f-6e188f000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s8387374/withparam-uploadfilefromfile-c2s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "669aa76d-7221-4d42-797c-9ba019f83718", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "06effc8c-41d2-40c6-7a8d-eb7daeb2aa87", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", + "date": "Mon, 23 May 2022 04:40:10 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "669aa76d-7221-4d42-797c-9ba019f83718", - "x-ms-request-id": "6824e815-401e-0069-354c-fdfca3000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "06effc8c-41d2-40c6-7a8d-eb7daeb2aa87", + "x-ms-request-id": "11748783-101e-0057-1a5f-6ee393000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s8387374?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s8388608.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s8388608.json index 23664d54f5..c464b83261 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s8388608.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c2s8388608.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "7eef71a0-acbd-436c-7137-55ca8fc87d68", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2e4f19fe-a45b-4707-445d-c68921d9e719", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", - "etag": "\"0x8D9CB6394734617\"", - "last-modified": "Thu, 30 Dec 2021 07:11:20 GMT", + "date": "Mon, 23 May 2022 04:40:12 GMT", + "etag": "\"0x8DA3C76537D7069\"", + "last-modified": "Mon, 23 May 2022 04:40:13 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "7eef71a0-acbd-436c-7137-55ca8fc87d68", - "x-ms-request-id": "cf9ebe84-301e-003e-594c-fd5290000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "2e4f19fe-a45b-4707-445d-c68921d9e719", + "x-ms-request-id": "2f6edeb8-d01e-003a-415f-6e57d8000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s8388608?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "c879a454-33f3-40f0-600d-159b1f664971", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "62c80f9f-a170-46a7-6ebb-b73290f6df50", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", - "etag": "\"0x8D9CB63947DC6CA\"", - "last-modified": "Thu, 30 Dec 2021 07:11:20 GMT", + "date": "Mon, 23 May 2022 04:40:14 GMT", + "etag": "\"0x8DA3C76546D5B00\"", + "last-modified": "Mon, 23 May 2022 04:40:14 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "c879a454-33f3-40f0-600d-159b1f664971", - "x-ms-request-id": "0746a705-301f-002e-284c-fd97f8000000", + "x-ms-client-request-id": "62c80f9f-a170-46a7-6ebb-b73290f6df50", + "x-ms-request-id": "c47d8a3a-301f-009b-605f-6e8ca5000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "40eda319-168b-4fc4-7ff1-35bc70c306ed", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "88ee3fbf-dab3-42a9-536e-41f7be054491", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", - "etag": "\"0x8D9CB6394B87A21\"", - "last-modified": "Thu, 30 Dec 2021 07:11:20 GMT", + "date": "Mon, 23 May 2022 04:40:16 GMT", + "etag": "\"0x8DA3C765602B284\"", + "last-modified": "Mon, 23 May 2022 04:40:17 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "40eda319-168b-4fc4-7ff1-35bc70c306ed", + "x-ms-client-request-id": "88ee3fbf-dab3-42a9-536e-41f7be054491", "x-ms-content-crc64": "DU01Kv81ewI=", - "x-ms-request-id": "cf9ebea7-301e-003e-774c-fd5290000000", + "x-ms-request-id": "2f6ee084-d01e-003a-6d5f-6e57d8000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s8388608/fromfile-c2s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "87a46a97-75ad-409f-4705-2eb747461bb8", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b29411f0-c903-4c87-7bad-ae1b1aed0618", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "8388608", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", - "etag": "\"0x8D9CB6394B87A21\"", - "last-modified": "Thu, 30 Dec 2021 07:11:20 GMT", + "date": "Mon, 23 May 2022 04:40:16 GMT", + "etag": "\"0x8DA3C765602B284\"", + "last-modified": "Mon, 23 May 2022 04:40:17 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "87a46a97-75ad-409f-4705-2eb747461bb8", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:20 GMT", + "x-ms-client-request-id": "b29411f0-c903-4c87-7bad-ae1b1aed0618", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:17 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:17 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "cf9ebf47-301e-003e-034c-fd5290000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2f6ee23c-d01e-003a-045f-6e57d8000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s8388608/fromfile-c2s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "29430b6a-61f8-44a1-7ca3-77ff0e2666b5", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "5618cc4a-0591-4727-4c5d-60de83b91885", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "8388608", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", - "etag": "\"0x8D9CB6394B87A21\"", - "last-modified": "Thu, 30 Dec 2021 07:11:20 GMT", + "date": "Mon, 23 May 2022 04:40:17 GMT", + "etag": "\"0x8DA3C765602B284\"", + "last-modified": "Mon, 23 May 2022 04:40:17 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "29430b6a-61f8-44a1-7ca3-77ff0e2666b5", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:20 GMT", + "x-ms-client-request-id": "5618cc4a-0591-4727-4c5d-60de83b91885", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:17 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:17 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "cf9ebf4e-301e-003e-094c-fd5290000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2f6ee25e-d01e-003a-215f-6e57d8000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s8388608/fromfile-c2s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "464c9536-c006-473c-5338-a0ceb7567b38", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "54debc29-536f-4b0a-5646-a014ad07678f", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "8388608", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:19 GMT", - "etag": "\"0x8D9CB6394B87A21\"", - "last-modified": "Thu, 30 Dec 2021 07:11:20 GMT", + "date": "Mon, 23 May 2022 04:40:17 GMT", + "etag": "\"0x8DA3C765602B284\"", + "last-modified": "Mon, 23 May 2022 04:40:17 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "464c9536-c006-473c-5338-a0ceb7567b38", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:20 GMT", + "x-ms-client-request-id": "54debc29-536f-4b0a-5646-a014ad07678f", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:17 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:17 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "cf9ebf54-301e-003e-0e4c-fd5290000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2f6ee2a2-d01e-003a-5f5f-6e57d8000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s8388608/fromfile-c2s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "dcb1273b-d123-45db-76be-2ee434081fe3", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "15b4191c-8b5a-4a12-4c01-3b86f0061442", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "8388608", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:20 GMT", - "etag": "\"0x8D9CB6394B87A21\"", - "last-modified": "Thu, 30 Dec 2021 07:11:20 GMT", + "date": "Mon, 23 May 2022 04:40:21 GMT", + "etag": "\"0x8DA3C765602B284\"", + "last-modified": "Mon, 23 May 2022 04:40:17 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "dcb1273b-d123-45db-76be-2ee434081fe3", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:20 GMT", + "x-ms-client-request-id": "15b4191c-8b5a-4a12-4c01-3b86f0061442", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:17 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:18 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "cf9ebf84-301e-003e-3c4c-fd5290000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2f6ee616-d01e-003a-735f-6e57d8000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s8388608/fromfile-c2s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "5f4fa7c1-8411-4950-43aa-739da751468a", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2151cd11-8713-4f2e-59dd-b3d7dd134829", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:20 GMT", + "date": "Mon, 23 May 2022 04:40:23 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "5f4fa7c1-8411-4950-43aa-739da751468a", - "x-ms-request-id": "0746a707-301f-002e-2a4c-fd97f8000000", + "x-ms-client-request-id": "2151cd11-8713-4f2e-59dd-b3d7dd134829", + "x-ms-request-id": "c47d8a48-301f-009b-6a5f-6e8ca5000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s8388608/fromfile-c2s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "992c1415-fa5c-4567-4fca-a2cf60dae77f", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "c4dab64e-8fb9-4b60-6b7f-26b45fd263e6", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:20 GMT", + "date": "Mon, 23 May 2022 04:40:24 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "992c1415-fa5c-4567-4fca-a2cf60dae77f", - "x-ms-request-id": "0746a708-301f-002e-2b4c-fd97f8000000", + "x-ms-client-request-id": "c4dab64e-8fb9-4b60-6b7f-26b45fd263e6", + "x-ms-request-id": "c47d8a49-301f-009b-6b5f-6e8ca5000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c2s8388608/withparam-uploadfilefromfile-c2s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "c5836820-a1e9-4e66-53d4-56762fe9ac36", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "832d7dd9-92dc-4d55-7e1f-4f8f2f85e320", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:20 GMT", + "date": "Mon, 23 May 2022 04:40:25 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "c5836820-a1e9-4e66-53d4-56762fe9ac36", - "x-ms-request-id": "cf9ebff4-301e-003e-294c-fd5290000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "832d7dd9-92dc-4d55-7e1f-4f8f2f85e320", + "x-ms-request-id": "2f6ee79c-d01e-003a-675f-6e57d8000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c2s8388608?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s0.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s0.json index 8da843e68e..32b9e86844 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s0.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s0.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "0487b0c5-08e7-4427-77d8-b7d2e6565cde", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "aff7f394-63f4-4da7-55e9-61beb8b3915a", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:20 GMT", - "etag": "\"0x8D9CB6395057E00\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:27 GMT", + "etag": "\"0x8DA3C765C1B19A5\"", + "last-modified": "Mon, 23 May 2022 04:40:27 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "0487b0c5-08e7-4427-77d8-b7d2e6565cde", - "x-ms-request-id": "b92c6da0-e01e-0002-6a4c-fd7b57000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "aff7f394-63f4-4da7-55e9-61beb8b3915a", + "x-ms-request-id": "be96b12f-701e-0023-505f-6ed763000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s0?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "1c4f4af9-5b1c-46e9-4103-c94eb5f8834f", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "e5ead480-7687-4dce-74e5-b1c628da35bd", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:20 GMT", - "etag": "\"0x8D9CB63950FCAB2\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:28 GMT", + "etag": "\"0x8DA3C765D0C8392\"", + "last-modified": "Mon, 23 May 2022 04:40:29 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "1c4f4af9-5b1c-46e9-4103-c94eb5f8834f", - "x-ms-request-id": "b0f9cd4c-701f-004d-5e4c-fd0a03000000", + "x-ms-client-request-id": "e5ead480-7687-4dce-74e5-b1c628da35bd", + "x-ms-request-id": "952380d4-b01f-004e-295f-6e6328000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "61e6578d-a5b1-4cde-79ac-4bdaf827af26", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "65327779-1021-4c2d-46f3-3401fd42f57d", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB639518AF2E\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:28 GMT", + "etag": "\"0x8DA3C765D42FAA5\"", + "last-modified": "Mon, 23 May 2022 04:40:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "61e6578d-a5b1-4cde-79ac-4bdaf827af26", + "x-ms-client-request-id": "65327779-1021-4c2d-46f3-3401fd42f57d", "x-ms-content-crc64": "AAAAAAAAAAA=", - "x-ms-request-id": "b92c6db6-e01e-0002-7b4c-fd7b57000000", + "x-ms-request-id": "be96b244-701e-0023-465f-6ed763000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s0/fromfile-c5s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "5d544e7b-2b71-435c-5269-b72104cc79dd", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "ccd83885-91df-42ef-51f7-9f3a317ef093", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB639518AF2E\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:29 GMT", + "etag": "\"0x8DA3C765D42FAA5\"", + "last-modified": "Mon, 23 May 2022 04:40:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "5d544e7b-2b71-435c-5269-b72104cc79dd", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:21 GMT", + "x-ms-client-request-id": "ccd83885-91df-42ef-51f7-9f3a317ef093", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:29 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:29 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "b92c6dbc-e01e-0002-014c-fd7b57000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "be96b27d-701e-0023-7c5f-6ed763000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s0/fromfile-c5s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8caa3887-f19b-4c83-5753-7fe338976980", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "3fc44d05-83bd-4077-71e0-730128e51af6", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB639518AF2E\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:29 GMT", + "etag": "\"0x8DA3C765D42FAA5\"", + "last-modified": "Mon, 23 May 2022 04:40:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "8caa3887-f19b-4c83-5753-7fe338976980", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:21 GMT", + "x-ms-client-request-id": "3fc44d05-83bd-4077-71e0-730128e51af6", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:29 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:29 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "b92c6dc0-e01e-0002-054c-fd7b57000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "be96b2af-701e-0023-285f-6ed763000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s0/fromfile-c5s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "1f67670b-f2d1-4dd3-4389-f39d13484f65", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "21ffe97c-19c2-4a85-4316-9a105700aec7", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB639518AF2E\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:29 GMT", + "etag": "\"0x8DA3C765D42FAA5\"", + "last-modified": "Mon, 23 May 2022 04:40:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "1f67670b-f2d1-4dd3-4389-f39d13484f65", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:21 GMT", + "x-ms-client-request-id": "21ffe97c-19c2-4a85-4316-9a105700aec7", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:29 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:29 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "b92c6dc4-e01e-0002-094c-fd7b57000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "be96b2e0-701e-0023-525f-6ed763000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s0/fromfile-c5s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "f5401128-48e2-4cbb-5fa9-78f7513260dc", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "1798309b-e8f1-4f09-4219-daeca3a4c8c2", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "0", "content-md5": "1B2M2Y8AsgTpgAmY7PhCfg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB639518AF2E\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:30 GMT", + "etag": "\"0x8DA3C765D42FAA5\"", + "last-modified": "Mon, 23 May 2022 04:40:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "f5401128-48e2-4cbb-5fa9-78f7513260dc", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:21 GMT", + "x-ms-client-request-id": "1798309b-e8f1-4f09-4219-daeca3a4c8c2", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:29 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:30 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "b92c6dc8-e01e-0002-0d4c-fd7b57000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "be96b31b-701e-0023-085f-6ed763000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s0/fromfile-c5s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "e5b5e56f-5e37-450c-423f-cc295459d7a0", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "355b831d-332a-465f-58eb-0d0cadec967d", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:20 GMT", + "date": "Mon, 23 May 2022 04:40:30 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "e5b5e56f-5e37-450c-423f-cc295459d7a0", - "x-ms-request-id": "b0f9cd4e-701f-004d-604c-fd0a03000000", + "x-ms-client-request-id": "355b831d-332a-465f-58eb-0d0cadec967d", + "x-ms-request-id": "952380dc-b01f-004e-2e5f-6e6328000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s0/fromfile-c5s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "1e5eaa6b-2bb3-41aa-4432-677cb872f059", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "25cecc92-ae05-497d-7d29-1d74f592d5b8", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:20 GMT", + "date": "Mon, 23 May 2022 04:40:31 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "1e5eaa6b-2bb3-41aa-4432-677cb872f059", - "x-ms-request-id": "b0f9cd52-701f-004d-634c-fd0a03000000", + "x-ms-client-request-id": "25cecc92-ae05-497d-7d29-1d74f592d5b8", + "x-ms-request-id": "952380de-b01f-004e-2f5f-6e6328000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s0/withparam-uploadfilefromfile-c5s0" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "af6281f0-60bf-4562-778a-9a90b2dc546e", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "4313888f-a465-4b67-4c47-8e939841ac5a", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:32 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "af6281f0-60bf-4562-778a-9a90b2dc546e", - "x-ms-request-id": "b92c6e09-e01e-0002-4b4c-fd7b57000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "4313888f-a465-4b67-4c47-8e939841ac5a", + "x-ms-request-id": "be96b3c0-701e-0023-165f-6ed763000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s0?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s1.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s1.json index 6d6aaeb6e9..03a0f3c8a0 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s1.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s1.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "30077338-31f5-4c6b-4f76-ac79f0670df1", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "a0f39820-5e62-439c-7481-ecf26f812a9b", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB63953CEE3F\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:34 GMT", + "etag": "\"0x8DA3C766077D35D\"", + "last-modified": "Mon, 23 May 2022 04:40:34 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "30077338-31f5-4c6b-4f76-ac79f0670df1", - "x-ms-request-id": "5dc80238-c01e-0058-244c-fd1db0000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "a0f39820-5e62-439c-7481-ecf26f812a9b", + "x-ms-request-id": "ec8c0f68-d01e-0067-385f-6e5d5c000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "9f9237b0-a4c2-412b-74f3-ae3a35b95d26", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "4cb9d842-f01e-445e-505a-ae3bbd60d8ed", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB639547C6A3\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:35 GMT", + "etag": "\"0x8DA3C766160F854\"", + "last-modified": "Mon, 23 May 2022 04:40:36 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "9f9237b0-a4c2-412b-74f3-ae3a35b95d26", - "x-ms-request-id": "fea2142a-301f-004c-024c-fd55df000000", + "x-ms-client-request-id": "4cb9d842-f01e-445e-505a-ae3bbd60d8ed", + "x-ms-request-id": "5f3cd27e-b01f-003c-215f-6e6467000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "e0f72b16-d454-4904-72f7-5cdbc3354b53", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9ae4ade6-1ced-4a36-601c-dca89294abb9", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB63954D0B28\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:36 GMT", + "etag": "\"0x8DA3C766196CC94\"", + "last-modified": "Mon, 23 May 2022 04:40:36 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "e0f72b16-d454-4904-72f7-5cdbc3354b53", + "x-ms-client-request-id": "9ae4ade6-1ced-4a36-601c-dca89294abb9", "x-ms-content-crc64": "seRUZAJnvS0=", - "x-ms-request-id": "5dc80258-c01e-0058-404c-fd1db0000000", + "x-ms-request-id": "ec8c1116-d01e-0067-305f-6e5d5c000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1/fromfile-c5s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "628fa3bf-d00d-46b2-75b4-9e6505e64049", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "a5c71c35-8158-4a7a-5551-977c0b1e0b65", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "1", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB63954D0B28\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:36 GMT", + "etag": "\"0x8DA3C766196CC94\"", + "last-modified": "Mon, 23 May 2022 04:40:36 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "628fa3bf-d00d-46b2-75b4-9e6505e64049", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:21 GMT", + "x-ms-client-request-id": "a5c71c35-8158-4a7a-5551-977c0b1e0b65", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:36 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:36 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "5dc80262-c01e-0058-484c-fd1db0000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ec8c115a-d01e-0067-6d5f-6e5d5c000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1/fromfile-c5s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "ab24e094-c132-4658-5b56-a9754862cfa1", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "df98fb13-c428-4780-58bb-1e9f9d62e69e", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "1", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB63954D0B28\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:37 GMT", + "etag": "\"0x8DA3C766196CC94\"", + "last-modified": "Mon, 23 May 2022 04:40:36 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "ab24e094-c132-4658-5b56-a9754862cfa1", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:21 GMT", + "x-ms-client-request-id": "df98fb13-c428-4780-58bb-1e9f9d62e69e", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:36 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:36 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "5dc80264-c01e-0058-4a4c-fd1db0000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ec8c118f-d01e-0067-1f5f-6e5d5c000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1/fromfile-c5s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "a0567d08-3e58-4fb0-5ceb-7249c7215ee3", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "588816e0-fc4e-420d-4bd1-b2cb6e54238f", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "1", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB63954D0B28\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:37 GMT", + "etag": "\"0x8DA3C766196CC94\"", + "last-modified": "Mon, 23 May 2022 04:40:36 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "a0567d08-3e58-4fb0-5ceb-7249c7215ee3", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:21 GMT", + "x-ms-client-request-id": "588816e0-fc4e-420d-4bd1-b2cb6e54238f", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:36 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:36 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "5dc80266-c01e-0058-4c4c-fd1db0000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ec8c11cf-d01e-0067-555f-6e5d5c000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1/fromfile-c5s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b72b336f-77d2-473d-55c0-a1608c247287", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d4ec201d-9dcd-4848-70f3-c7c03f1ea0ac", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "1", "content-md5": "ndTkYSaMgDT1yFZOFVxnpg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB63954D0B28\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:37 GMT", + "etag": "\"0x8DA3C766196CC94\"", + "last-modified": "Mon, 23 May 2022 04:40:36 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "b72b336f-77d2-473d-55c0-a1608c247287", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:21 GMT", + "x-ms-client-request-id": "d4ec201d-9dcd-4848-70f3-c7c03f1ea0ac", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:36 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "5dc80269-c01e-0058-4f4c-fd1db0000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ec8c120c-d01e-0067-0d5f-6e5d5c000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1/fromfile-c5s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "87a1d111-237a-4e0b-544e-8986af2d9bd6", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "4ab0b647-deda-454b-4d53-3ea199d33060", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:37 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "87a1d111-237a-4e0b-544e-8986af2d9bd6", - "x-ms-request-id": "fea2142b-301f-004c-034c-fd55df000000", + "x-ms-client-request-id": "4ab0b647-deda-454b-4d53-3ea199d33060", + "x-ms-request-id": "5f3cd289-b01f-003c-2b5f-6e6467000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s1/fromfile-c5s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "9a995bbf-f7c2-496b-6a97-ccbd291cc8e3", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "c26538c9-c81e-4ccb-686d-2a1b13558a5a", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:38 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "9a995bbf-f7c2-496b-6a97-ccbd291cc8e3", - "x-ms-request-id": "fea2142c-301f-004c-044c-fd55df000000", + "x-ms-client-request-id": "c26538c9-c81e-4ccb-686d-2a1b13558a5a", + "x-ms-request-id": "5f3cd28e-b01f-003c-305f-6e6467000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s1/withparam-uploadfilefromfile-c5s1" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "f0bf3280-9d69-4d7a-7670-5df270ed1f50", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "39dfe017-c601-45d1-4a13-aa287a1c3ade", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:40 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "f0bf3280-9d69-4d7a-7670-5df270ed1f50", - "x-ms-request-id": "5dc80291-c01e-0058-6c4c-fd1db0000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "39dfe017-c601-45d1-4a13-aa287a1c3ade", + "x-ms-request-id": "ec8c12e0-d01e-0067-545f-6e5d5c000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s1022976.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s1022976.json index 4aea687770..0e9fcd0075 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s1022976.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s1022976.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b2f99cf1-ff13-4f73-6175-a726792140a2", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "64c373a2-87fa-4b04-7a3b-06886cf537f0", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", - "etag": "\"0x8D9CB63962A6591\"", - "last-modified": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:03 GMT", + "etag": "\"0x8DA3C7671CB7B71\"", + "last-modified": "Mon, 23 May 2022 04:41:03 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "b2f99cf1-ff13-4f73-6175-a726792140a2", - "x-ms-request-id": "d308780f-401e-0046-764c-fdf168000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "64c373a2-87fa-4b04-7a3b-06886cf537f0", + "x-ms-request-id": "e1b650a4-c01e-0036-335f-6ec0d0000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1022976?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "5037493b-b985-4cb3-77af-4c3cce9eee24", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "cad01417-f46d-40a8-7dfa-07237ea47b9e", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", - "etag": "\"0x8D9CB639634E65A\"", - "last-modified": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:05 GMT", + "etag": "\"0x8DA3C7672BB98AC\"", + "last-modified": "Mon, 23 May 2022 04:41:05 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "5037493b-b985-4cb3-77af-4c3cce9eee24", - "x-ms-request-id": "bbfff8ee-401f-000b-114c-fd3e84000000", + "x-ms-client-request-id": "cad01417-f46d-40a8-7dfa-07237ea47b9e", + "x-ms-request-id": "295e14d8-e01f-0031-725f-6eacb3000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "a564a439-de33-46dd-7127-ced011626afd", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "36fe6c29-0dc3-4ca6-6a97-6911438bfdc6", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", - "etag": "\"0x8D9CB6396428283\"", - "last-modified": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:06 GMT", + "etag": "\"0x8DA3C7673AA6AD7\"", + "last-modified": "Mon, 23 May 2022 04:41:07 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "a564a439-de33-46dd-7127-ced011626afd", + "x-ms-client-request-id": "36fe6c29-0dc3-4ca6-6a97-6911438bfdc6", "x-ms-content-crc64": "VdHGJmaQf4M=", - "x-ms-request-id": "d308782c-401e-0046-114c-fdf168000000", + "x-ms-request-id": "e1b65174-c01e-0036-5e5f-6ec0d0000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1022976/fromfile-c5s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "bfb0c882-e000-4fce-4a04-cd27b760ec25", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "f804fc4d-4473-4840-7a79-0ba29d4a893f", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "1022976", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", - "etag": "\"0x8D9CB6396428283\"", - "last-modified": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:07 GMT", + "etag": "\"0x8DA3C7673AA6AD7\"", + "last-modified": "Mon, 23 May 2022 04:41:07 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "bfb0c882-e000-4fce-4a04-cd27b760ec25", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:23 GMT", + "x-ms-client-request-id": "f804fc4d-4473-4840-7a79-0ba29d4a893f", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:07 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:07 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "d308784a-401e-0046-2e4c-fdf168000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "e1b6528d-c01e-0036-575f-6ec0d0000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1022976/fromfile-c5s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "fd546cb9-0c73-4e42-40f3-335dbeae5ae9", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "8416a5f4-063d-43c8-5512-61654bafd59c", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "1022976", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", - "etag": "\"0x8D9CB6396428283\"", - "last-modified": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:07 GMT", + "etag": "\"0x8DA3C7673AA6AD7\"", + "last-modified": "Mon, 23 May 2022 04:41:07 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "fd546cb9-0c73-4e42-40f3-335dbeae5ae9", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:23 GMT", + "x-ms-client-request-id": "8416a5f4-063d-43c8-5512-61654bafd59c", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:07 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:07 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "d308784f-401e-0046-334c-fdf168000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "e1b652e3-c01e-0036-285f-6ec0d0000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1022976/fromfile-c5s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "6bd458b5-fa2c-4c71-461b-e9e8bb180896", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "cfc057d3-621e-42c5-5d51-345555636885", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "1022976", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6396428283\"", - "last-modified": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:07 GMT", + "etag": "\"0x8DA3C7673AA6AD7\"", + "last-modified": "Mon, 23 May 2022 04:41:07 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "6bd458b5-fa2c-4c71-461b-e9e8bb180896", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:23 GMT", + "x-ms-client-request-id": "cfc057d3-621e-42c5-5d51-345555636885", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:07 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:07 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "d3087853-401e-0046-374c-fdf168000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "e1b65337-c01e-0036-7b5f-6ec0d0000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1022976/fromfile-c5s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "0bfb89c6-d5d5-4c4e-48ad-90bcb16e6eed", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2ec3b636-c6d1-41c5-7dcc-5305d02b2e5a", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "1022976", "content-md5": "W2/TAZqzIAmypRk3/fQ9Qg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6396428283\"", - "last-modified": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:10 GMT", + "etag": "\"0x8DA3C7673AA6AD7\"", + "last-modified": "Mon, 23 May 2022 04:41:07 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "0bfb89c6-d5d5-4c4e-48ad-90bcb16e6eed", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:23 GMT", + "x-ms-client-request-id": "2ec3b636-c6d1-41c5-7dcc-5305d02b2e5a", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:07 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:08 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "d3087868-401e-0046-4c4c-fdf168000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "e1b65440-c01e-0036-6e5f-6ec0d0000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1022976/fromfile-c5s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "aa78633a-ce07-4a1e-6b9b-a8351fde6afd", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "15e91723-97ba-40bb-5d2e-cb8ac012b793", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:10 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "aa78633a-ce07-4a1e-6b9b-a8351fde6afd", - "x-ms-request-id": "bbfff8f6-401f-000b-164c-fd3e84000000", + "x-ms-client-request-id": "15e91723-97ba-40bb-5d2e-cb8ac012b793", + "x-ms-request-id": "295e1595-e01f-0031-2d5f-6eacb3000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s1022976/fromfile-c5s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "a7596d95-468e-4fac-6ce3-2886926083d2", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "4a736afe-7fc5-44e7-7ba5-601e3dcdae87", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:11 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "a7596d95-468e-4fac-6ce3-2886926083d2", - "x-ms-request-id": "bbfff8f7-401f-000b-174c-fd3e84000000", + "x-ms-client-request-id": "4a736afe-7fc5-44e7-7ba5-601e3dcdae87", + "x-ms-request-id": "295e1596-e01f-0031-2e5f-6eacb3000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s1022976/withparam-uploadfilefromfile-c5s1022976" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "1cf3c223-1328-4982-7782-10150306cd3f", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b27c37f0-b98b-47a8-4320-46cf5ad2aa63", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:11 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "1cf3c223-1328-4982-7782-10150306cd3f", - "x-ms-request-id": "d30878b2-401e-0046-124c-fdf168000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "b27c37f0-b98b-47a8-4320-46cf5ad2aa63", + "x-ms-request-id": "e1b654db-c01e-0036-595f-6ec0d0000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1022976?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s1048576.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s1048576.json index 1edf0d7257..8c906eb3c4 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s1048576.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s1048576.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "ed58054e-c780-44a3-42d2-fb6ef9707d24", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0b3beb75-4260-4758-6b62-cba000674d3d", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", - "etag": "\"0x8D9CB63967C0242\"", - "last-modified": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:13 GMT", + "etag": "\"0x8DA3C7677983C1A\"", + "last-modified": "Mon, 23 May 2022 04:41:13 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "ed58054e-c780-44a3-42d2-fb6ef9707d24", - "x-ms-request-id": "852926f5-e01e-0060-704c-fdb970000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "0b3beb75-4260-4758-6b62-cba000674d3d", + "x-ms-request-id": "6e15f35b-301e-0022-375f-6e88bf000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1048576?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "fe9ab636-5074-4d9e-40d7-4b50bd1dd99c", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "cf077c8b-dd16-43e3-6b68-41fb94da357d", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", - "etag": "\"0x8D9CB63968A5667\"", - "last-modified": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:15 GMT", + "etag": "\"0x8DA3C7678823700\"", + "last-modified": "Mon, 23 May 2022 04:41:15 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "fe9ab636-5074-4d9e-40d7-4b50bd1dd99c", - "x-ms-request-id": "ccecf2eb-001f-000a-354c-fd6158000000", + "x-ms-client-request-id": "cf077c8b-dd16-43e3-6b68-41fb94da357d", + "x-ms-request-id": "dc4dc176-201f-005c-2c5f-6e18f8000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "4be03b6d-5619-4587-5740-01c432d9ef37", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "8b00fe66-d3a3-4476-66b4-fd54f66857bf", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6396960702\"", - "last-modified": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:16 GMT", + "etag": "\"0x8DA3C76797425E3\"", + "last-modified": "Mon, 23 May 2022 04:41:16 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "4be03b6d-5619-4587-5740-01c432d9ef37", + "x-ms-client-request-id": "8b00fe66-d3a3-4476-66b4-fd54f66857bf", "x-ms-content-crc64": "EC00phK3Kqg=", - "x-ms-request-id": "85292724-e01e-0060-1c4c-fdb970000000", + "x-ms-request-id": "6e15f450-301e-0022-7a5f-6e88bf000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1048576/fromfile-c5s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8e71e7e6-0dfa-4941-4d1f-fe3ec1ab3dd5", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "92a2d5ba-8fa9-44f1-4805-1ff08856486c", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "1048576", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6396960702\"", - "last-modified": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:16 GMT", + "etag": "\"0x8DA3C76797425E3\"", + "last-modified": "Mon, 23 May 2022 04:41:16 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "8e71e7e6-0dfa-4941-4d1f-fe3ec1ab3dd5", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:23 GMT", + "x-ms-client-request-id": "92a2d5ba-8fa9-44f1-4805-1ff08856486c", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:16 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "85292744-e01e-0060-3a4c-fdb970000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "6e15f4f5-301e-0022-025f-6e88bf000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1048576/fromfile-c5s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "96d8365e-02a2-400b-7d42-1f803a738918", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "4752c4b0-fdba-4d83-787d-a64aa542ac38", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "1048576", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6396960702\"", - "last-modified": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:17 GMT", + "etag": "\"0x8DA3C76797425E3\"", + "last-modified": "Mon, 23 May 2022 04:41:16 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "96d8365e-02a2-400b-7d42-1f803a738918", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:23 GMT", + "x-ms-client-request-id": "4752c4b0-fdba-4d83-787d-a64aa542ac38", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:16 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "8529274a-e01e-0060-3f4c-fdb970000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "6e15f525-301e-0022-2a5f-6e88bf000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1048576/fromfile-c5s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b5bcc216-790f-43ec-7ebf-0e37cd0655fd", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "cf71b127-4498-40e1-605f-b5fb8009f55a", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "1048576", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6396960702\"", - "last-modified": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:17 GMT", + "etag": "\"0x8DA3C76797425E3\"", + "last-modified": "Mon, 23 May 2022 04:41:16 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "b5bcc216-790f-43ec-7ebf-0e37cd0655fd", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:23 GMT", + "x-ms-client-request-id": "cf71b127-4498-40e1-605f-b5fb8009f55a", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:16 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "85292750-e01e-0060-454c-fdb970000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "6e15f553-301e-0022-535f-6e88bf000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1048576/fromfile-c5s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "91f140b5-02ca-4fda-4780-45ff8efc7624", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "90fedb80-8ce1-4a04-7057-d12685efaf81", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "1048576", "content-md5": "tWH4cgLQSVnjdYjuBc9bEA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6396960702\"", - "last-modified": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:19 GMT", + "etag": "\"0x8DA3C76797425E3\"", + "last-modified": "Mon, 23 May 2022 04:41:16 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "91f140b5-02ca-4fda-4780-45ff8efc7624", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:23 GMT", + "x-ms-client-request-id": "90fedb80-8ce1-4a04-7057-d12685efaf81", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:16 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:17 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "85292770-e01e-0060-634c-fdb970000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "6e15f62e-301e-0022-055f-6e88bf000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1048576/fromfile-c5s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "9e750260-94d8-42df-6a84-ac7eb786589a", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "aa526fb5-2a4e-4474-50d3-0f2eca89cd4a", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:20 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "9e750260-94d8-42df-6a84-ac7eb786589a", - "x-ms-request-id": "ccecf2ec-001f-000a-364c-fd6158000000", + "x-ms-client-request-id": "aa526fb5-2a4e-4474-50d3-0f2eca89cd4a", + "x-ms-request-id": "dc4dc18d-201f-005c-3f5f-6e18f8000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s1048576/fromfile-c5s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "0e2cd078-a605-4fe5-7f1d-ae87e8d706f1", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "a9f8c6c0-ea46-4ebf-7188-484ad1cfe0d6", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:21 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "0e2cd078-a605-4fe5-7f1d-ae87e8d706f1", - "x-ms-request-id": "ccecf2ed-001f-000a-374c-fd6158000000", + "x-ms-client-request-id": "a9f8c6c0-ea46-4ebf-7188-484ad1cfe0d6", + "x-ms-request-id": "dc4dc194-201f-005c-465f-6e18f8000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s1048576/withparam-uploadfilefromfile-c5s1048576" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "09ee48cd-58d0-4c14-481a-e503e2592f6e", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "3660a22c-1d8a-492e-78a2-8238deb2f9ea", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:23 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "09ee48cd-58d0-4c14-481a-e503e2592f6e", - "x-ms-request-id": "852927b2-e01e-0060-224c-fdb970000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "3660a22c-1d8a-492e-78a2-8238deb2f9ea", + "x-ms-request-id": "6e15f6a6-301e-0022-6b5f-6e88bf000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s1048576?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s2.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s2.json index 6fe9c32089..267b78da12 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s2.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s2.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "53add1ec-54c9-472e-407b-cc963868385b", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "39ac2608-d79e-4837-4501-e007827d5cd1", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB639570EE48\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:41 GMT", + "etag": "\"0x8DA3C7664D69336\"", + "last-modified": "Mon, 23 May 2022 04:40:42 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "53add1ec-54c9-472e-407b-cc963868385b", - "x-ms-request-id": "74a0b73d-201e-000d-624c-fd0d3b000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "39ac2608-d79e-4837-4501-e007827d5cd1", + "x-ms-request-id": "0fb9c73d-a01e-0052-495f-6e3148000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b81dc61e-29e3-46fa-6ace-a0577f53ffd3", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "25262351-3aca-4ab4-7782-f504a11a12e6", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB63957BFB13\"", - "last-modified": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:44 GMT", + "etag": "\"0x8DA3C76665F9563\"", + "last-modified": "Mon, 23 May 2022 04:40:44 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "b81dc61e-29e3-46fa-6ace-a0577f53ffd3", - "x-ms-request-id": "e438fdd9-b01f-000f-4f4c-fdb383000000", + "x-ms-client-request-id": "25262351-3aca-4ab4-7782-f504a11a12e6", + "x-ms-request-id": "5e9b2d16-801f-008e-745f-6e9b16000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8ad2d9cf-f793-4abb-4c1d-38ed893af9e2", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "6506d892-1b8c-450c-45d7-804631025d87", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB6395815767\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:44 GMT", + "etag": "\"0x8DA3C766697079C\"", + "last-modified": "Mon, 23 May 2022 04:40:45 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "8ad2d9cf-f793-4abb-4c1d-38ed893af9e2", + "x-ms-client-request-id": "6506d892-1b8c-450c-45d7-804631025d87", "x-ms-content-crc64": "GkCMY8i4s0E=", - "x-ms-request-id": "74a0b789-201e-000d-2b4c-fd0d3b000000", + "x-ms-request-id": "0fb9c846-a01e-0052-2e5f-6e3148000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2/fromfile-c5s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "e80d9d4d-89db-49d0-72d1-7bfa9dfd33d0", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "52bd1e72-029f-404d-4a2a-139ae05e9a0c", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "2", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB6395815767\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:45 GMT", + "etag": "\"0x8DA3C766697079C\"", + "last-modified": "Mon, 23 May 2022 04:40:45 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "e80d9d4d-89db-49d0-72d1-7bfa9dfd33d0", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:22 GMT", + "x-ms-client-request-id": "52bd1e72-029f-404d-4a2a-139ae05e9a0c", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:45 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "74a0b7a1-201e-000d-424c-fd0d3b000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "0fb9c85c-a01e-0052-3e5f-6e3148000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2/fromfile-c5s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "04a12622-efd4-4c55-467d-aaf8598f85b8", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "80135618-d863-415c-784e-96cc4a344850", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "2", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB6395815767\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:45 GMT", + "etag": "\"0x8DA3C766697079C\"", + "last-modified": "Mon, 23 May 2022 04:40:45 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "04a12622-efd4-4c55-467d-aaf8598f85b8", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:22 GMT", + "x-ms-client-request-id": "80135618-d863-415c-784e-96cc4a344850", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:45 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "74a0b7a8-201e-000d-494c-fd0d3b000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "0fb9c872-a01e-0052-505f-6e3148000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2/fromfile-c5s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8dcea3f5-4cee-49b4-7bc8-31def9996046", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "003641b3-5509-49c6-6669-cfe93540261d", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "2", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB6395815767\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:45 GMT", + "etag": "\"0x8DA3C766697079C\"", + "last-modified": "Mon, 23 May 2022 04:40:45 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "8dcea3f5-4cee-49b4-7bc8-31def9996046", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:22 GMT", + "x-ms-client-request-id": "003641b3-5509-49c6-6669-cfe93540261d", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:45 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "74a0b7ae-201e-000d-4f4c-fd0d3b000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "0fb9c88d-a01e-0052-615f-6e3148000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2/fromfile-c5s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "42381308-59e1-423d-4845-acdb02c02b26", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "89e375af-2a5a-4436-6d71-ceeffcac4d25", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "2", "content-md5": "kzbr8lCH2RyBjubp7Cn4wQ==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB6395815767\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:46 GMT", + "etag": "\"0x8DA3C766697079C\"", + "last-modified": "Mon, 23 May 2022 04:40:45 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "42381308-59e1-423d-4845-acdb02c02b26", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:22 GMT", + "x-ms-client-request-id": "89e375af-2a5a-4436-6d71-ceeffcac4d25", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:45 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:46 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "74a0b7ba-201e-000d-5b4c-fd0d3b000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "0fb9c8a2-a01e-0052-735f-6e3148000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2/fromfile-c5s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "1f95671a-0f03-4092-7d48-1f43177c9b90", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "48deb12a-3a69-4cc4-446f-cf39a1a5f649", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:46 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "1f95671a-0f03-4092-7d48-1f43177c9b90", - "x-ms-request-id": "e438fddb-b01f-000f-504c-fdb383000000", + "x-ms-client-request-id": "48deb12a-3a69-4cc4-446f-cf39a1a5f649", + "x-ms-request-id": "5e9b2d1e-801f-008e-7c5f-6e9b16000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s2/fromfile-c5s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8f82d5a0-e770-4500-4f94-81f5ab9f7902", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "7dc6ece0-cb7a-4c4e-595b-b599e93a83ad", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:46 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "8f82d5a0-e770-4500-4f94-81f5ab9f7902", - "x-ms-request-id": "e438fddc-b01f-000f-514c-fdb383000000", + "x-ms-client-request-id": "7dc6ece0-cb7a-4c4e-595b-b599e93a83ad", + "x-ms-request-id": "5e9b2d20-801f-008e-7d5f-6e9b16000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s2/withparam-uploadfilefromfile-c5s2" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d4b78f0e-cfaa-4015-6ad6-c0e0d597b859", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "bca0ad0d-709c-4041-4bd8-9f92949e6566", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:47 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "d4b78f0e-cfaa-4015-6ad6-c0e0d597b859", - "x-ms-request-id": "74a0b867-201e-000d-794c-fd0d3b000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "bca0ad0d-709c-4041-4bd8-9f92949e6566", + "x-ms-request-id": "0fb9c8f0-a01e-0052-325f-6e3148000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s2048.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s2048.json index cb22244158..5a572620c4 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s2048.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s2048.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "2bdb357a-0dd0-49fa-506b-bc35fd20ccc2", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2128a03c-c885-4f4a-7375-b977a7e8b679", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB6395B1EE28\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:49 GMT", + "etag": "\"0x8DA3C7669B4950D\"", + "last-modified": "Mon, 23 May 2022 04:40:50 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "2bdb357a-0dd0-49fa-506b-bc35fd20ccc2", - "x-ms-request-id": "3752f35e-d01e-0026-114c-fd8df7000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "2128a03c-c885-4f4a-7375-b977a7e8b679", + "x-ms-request-id": "ce836410-601e-0062-135f-6e8f87000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2048?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "50d86b13-5870-4c72-45db-accd676266dc", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "892d6883-94d9-45c5-55dd-6a5d837efc10", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB6395BEBFC3\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:51 GMT", + "etag": "\"0x8DA3C766A9A0589\"", + "last-modified": "Mon, 23 May 2022 04:40:51 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "50d86b13-5870-4c72-45db-accd676266dc", - "x-ms-request-id": "d13746b8-a01f-005e-7f4c-fd2e0f000000", + "x-ms-client-request-id": "892d6883-94d9-45c5-55dd-6a5d837efc10", + "x-ms-request-id": "f30fa8dc-801f-006a-095f-6e9588000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "839c0a43-48d8-4221-5387-9f83f883f892", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "63b56072-02e6-4fd4-71d8-1f352c4e2266", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB6395C413BE\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:51 GMT", + "etag": "\"0x8DA3C766AD0B889\"", + "last-modified": "Mon, 23 May 2022 04:40:52 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "839c0a43-48d8-4221-5387-9f83f883f892", + "x-ms-client-request-id": "63b56072-02e6-4fd4-71d8-1f352c4e2266", "x-ms-content-crc64": "Evka7LWUXng=", - "x-ms-request-id": "3752f38b-d01e-0026-3c4c-fd8df7000000", + "x-ms-request-id": "ce8364bd-601e-0062-245f-6e8f87000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2048/fromfile-c5s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "e8565ddf-927e-4370-5960-e66f7d828452", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "35e3e9b1-fdc6-45ab-4440-5997cbce25c0", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "2048", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB6395C413BE\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:51 GMT", + "etag": "\"0x8DA3C766AD0B889\"", + "last-modified": "Mon, 23 May 2022 04:40:52 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "e8565ddf-927e-4370-5960-e66f7d828452", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:22 GMT", + "x-ms-client-request-id": "35e3e9b1-fdc6-45ab-4440-5997cbce25c0", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:52 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:52 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3752f39e-d01e-0026-4d4c-fd8df7000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ce8364da-601e-0062-3c5f-6e8f87000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2048/fromfile-c5s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "adb225e6-8665-42e6-7c01-c889b03ba34d", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d4369dfb-6677-4272-76ab-6fbd7335dab4", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "2048", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB6395C413BE\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:51 GMT", + "etag": "\"0x8DA3C766AD0B889\"", + "last-modified": "Mon, 23 May 2022 04:40:52 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "adb225e6-8665-42e6-7c01-c889b03ba34d", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:22 GMT", + "x-ms-client-request-id": "d4369dfb-6677-4272-76ab-6fbd7335dab4", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:52 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:52 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3752f3a2-d01e-0026-514c-fd8df7000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ce836507-601e-0062-615f-6e8f87000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2048/fromfile-c5s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "91dae48c-c227-438d-4404-a2a9f480620c", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "cce98fe0-5804-487b-56be-619d543d63db", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "2048", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB6395C413BE\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:52 GMT", + "etag": "\"0x8DA3C766AD0B889\"", + "last-modified": "Mon, 23 May 2022 04:40:52 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "91dae48c-c227-438d-4404-a2a9f480620c", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:22 GMT", + "x-ms-client-request-id": "cce98fe0-5804-487b-56be-619d543d63db", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:52 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:52 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3752f3a8-d01e-0026-574c-fd8df7000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ce836526-601e-0062-7c5f-6e8f87000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2048/fromfile-c5s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "9956d913-3d5b-40e8-6a40-bca33e80dd17", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "38a47816-3499-4005-5343-ee2d04350a6f", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "2048", "content-md5": "z7dn8iXVhGnF3jYyqIA5WA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", - "etag": "\"0x8D9CB6395C413BE\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:52 GMT", + "etag": "\"0x8DA3C766AD0B889\"", + "last-modified": "Mon, 23 May 2022 04:40:52 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "9956d913-3d5b-40e8-6a40-bca33e80dd17", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:22 GMT", + "x-ms-client-request-id": "38a47816-3499-4005-5343-ee2d04350a6f", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:52 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "3752f3ac-d01e-0026-5b4c-fd8df7000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ce836557-601e-0062-265f-6e8f87000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2048/fromfile-c5s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "6ac265bd-1e28-40d0-70ff-1716fda5295f", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "447dc379-f0fa-4254-4eea-5cbb0da4dcce", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:53 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "6ac265bd-1e28-40d0-70ff-1716fda5295f", - "x-ms-request-id": "d13746bb-a01f-005e-024c-fd2e0f000000", + "x-ms-client-request-id": "447dc379-f0fa-4254-4eea-5cbb0da4dcce", + "x-ms-request-id": "f30fa8fb-801f-006a-275f-6e9588000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s2048/fromfile-c5s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8f73eb69-4c4c-475c-4c3f-332916ddd1f8", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "f2f60e0d-023d-498c-40f3-55734d6e61c8", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:54 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "8f73eb69-4c4c-475c-4c3f-332916ddd1f8", - "x-ms-request-id": "d13746be-a01f-005e-054c-fd2e0f000000", + "x-ms-client-request-id": "f2f60e0d-023d-498c-40f3-55734d6e61c8", + "x-ms-request-id": "f30fa900-801f-006a-2c5f-6e9588000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s2048/withparam-uploadfilefromfile-c5s2048" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "01fd9955-e5f9-45ac-79e0-0aefe22d1b1f", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0d3ace33-9e95-4a31-45ec-6f23022fc7a9", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:21 GMT", + "date": "Mon, 23 May 2022 04:40:54 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "01fd9955-e5f9-45ac-79e0-0aefe22d1b1f", - "x-ms-request-id": "3752f3fb-d01e-0026-264c-fd8df7000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "0d3ace33-9e95-4a31-45ec-6f23022fc7a9", + "x-ms-request-id": "ce836618-601e-0062-535f-6e8f87000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2048?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s2097151.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s2097151.json index c1980d4612..90cb02cfd8 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s2097151.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s2097151.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "5956aa12-35b2-488d-7d3e-4ee81dca93a4", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "4e29c8d7-e3db-46c0-6e93-b75ce12710b9", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6396C335FC\"", - "last-modified": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:25 GMT", + "etag": "\"0x8DA3C767ECB1611\"", + "last-modified": "Mon, 23 May 2022 04:41:25 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "5956aa12-35b2-488d-7d3e-4ee81dca93a4", - "x-ms-request-id": "fd70df41-b01e-006d-4d4c-fd71a4000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "4e29c8d7-e3db-46c0-6e93-b75ce12710b9", + "x-ms-request-id": "ff3666ae-c01e-0019-425f-6ecd1b000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2097151?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b0d192a9-9aad-450c-6e35-db903d382449", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "09495b75-b63e-458b-5b4d-388cce618a4f", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:24 GMT", - "etag": "\"0x8D9CB6396CCAB8B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:26 GMT", + "etag": "\"0x8DA3C767FBAFF7A\"", + "last-modified": "Mon, 23 May 2022 04:41:27 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "b0d192a9-9aad-450c-6e35-db903d382449", - "x-ms-request-id": "a44c9cf8-201f-001d-7a4c-fdc853000000", + "x-ms-client-request-id": "09495b75-b63e-458b-5b4d-388cce618a4f", + "x-ms-request-id": "077448a0-601f-0072-535f-6e4aef000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "1d2de7e3-1ec1-4c96-5d22-1ef77a2f56a6", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2c25415a-c431-4035-75e2-fe6afda57d01", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6396DF0D81\"", - "last-modified": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:28 GMT", + "etag": "\"0x8DA3C7680D88444\"", + "last-modified": "Mon, 23 May 2022 04:41:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "1d2de7e3-1ec1-4c96-5d22-1ef77a2f56a6", + "x-ms-client-request-id": "2c25415a-c431-4035-75e2-fe6afda57d01", "x-ms-content-crc64": "oK9HAae4vsU=", - "x-ms-request-id": "fd70df54-b01e-006d-5f4c-fd71a4000000", + "x-ms-request-id": "ff366959-c01e-0019-295f-6ecd1b000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2097151/fromfile-c5s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "e4ec1fb1-f8d6-4d61-677a-a001b30c610e", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "30d799b0-daab-49b1-7f51-773770596d62", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "2097151", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6396DF0D81\"", - "last-modified": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:28 GMT", + "etag": "\"0x8DA3C7680D88444\"", + "last-modified": "Mon, 23 May 2022 04:41:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "e4ec1fb1-f8d6-4d61-677a-a001b30c610e", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:24 GMT", + "x-ms-client-request-id": "30d799b0-daab-49b1-7f51-773770596d62", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:29 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:29 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd70df69-b01e-006d-724c-fd71a4000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ff366b46-c01e-0019-765f-6ecd1b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2097151/fromfile-c5s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "2fcec5df-6079-43c6-6341-d71d2429c192", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "ec33d6f5-6d40-4421-6c96-212726123dd0", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "2097151", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6396DF0D81\"", - "last-modified": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:29 GMT", + "etag": "\"0x8DA3C7680D88444\"", + "last-modified": "Mon, 23 May 2022 04:41:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "2fcec5df-6079-43c6-6341-d71d2429c192", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:24 GMT", + "x-ms-client-request-id": "ec33d6f5-6d40-4421-6c96-212726123dd0", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:29 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:29 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd70df70-b01e-006d-784c-fd71a4000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ff366b7c-c01e-0019-275f-6ecd1b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2097151/fromfile-c5s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "7529a55a-4bdf-4cc7-4e0e-3a29c6e3cd6d", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9c89a345-85d4-4671-6474-41776ce2706a", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "2097151", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6396DF0D81\"", - "last-modified": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:29 GMT", + "etag": "\"0x8DA3C7680D88444\"", + "last-modified": "Mon, 23 May 2022 04:41:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "7529a55a-4bdf-4cc7-4e0e-3a29c6e3cd6d", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:24 GMT", + "x-ms-client-request-id": "9c89a345-85d4-4671-6474-41776ce2706a", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:29 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:29 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd70df71-b01e-006d-794c-fd71a4000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ff366bd2-c01e-0019-705f-6ecd1b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2097151/fromfile-c5s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "cfe73fc2-dbfd-40ff-67e8-94019f50c0c1", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "a3a832f4-a54e-4eff-5778-4d393debdcac", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "2097151", "content-md5": "NJMsufdW8/CcJG8iUdOOhg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6396DF0D81\"", - "last-modified": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:32 GMT", + "etag": "\"0x8DA3C7680D88444\"", + "last-modified": "Mon, 23 May 2022 04:41:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "cfe73fc2-dbfd-40ff-67e8-94019f50c0c1", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:24 GMT", + "x-ms-client-request-id": "a3a832f4-a54e-4eff-5778-4d393debdcac", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:29 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:30 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd70df82-b01e-006d-084c-fd71a4000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ff366db2-c01e-0019-1e5f-6ecd1b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2097151/fromfile-c5s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "636fddf3-79bd-4cb6-43ef-86a6f6463a4b", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b7c3ea08-7960-44b6-6b32-453a7a25b371", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:33 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "636fddf3-79bd-4cb6-43ef-86a6f6463a4b", - "x-ms-request-id": "a44c9cfa-201f-001d-7c4c-fdc853000000", + "x-ms-client-request-id": "b7c3ea08-7960-44b6-6b32-453a7a25b371", + "x-ms-request-id": "077448c6-601f-0072-775f-6e4aef000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s2097151/fromfile-c5s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "2a66e4fd-7ba6-4185-7369-69eada3666cf", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "e6dfe8a5-c0b9-4574-6f7b-ead612cab50e", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:33 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "2a66e4fd-7ba6-4185-7369-69eada3666cf", - "x-ms-request-id": "a44c9cfb-201f-001d-7d4c-fdc853000000", + "x-ms-client-request-id": "e6dfe8a5-c0b9-4574-6f7b-ead612cab50e", + "x-ms-request-id": "077448c8-601f-0072-785f-6e4aef000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s2097151/withparam-uploadfilefromfile-c5s2097151" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "cf573a5b-3e29-45de-6177-47ef2dbafc23", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9c7b305a-d21d-4adb-468b-cf2f11a44869", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:33 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "cf573a5b-3e29-45de-6177-47ef2dbafc23", - "x-ms-request-id": "fd70dfab-b01e-006d-2f4c-fd71a4000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "9c7b305a-d21d-4adb-468b-cf2f11a44869", + "x-ms-request-id": "ff366ebe-c01e-0019-045f-6ecd1b000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s2097151?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s3145728.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s3145728.json index adb82ba796..3f3b92fb45 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s3145728.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s3145728.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "6f3be483-8af7-4c15-4347-1d759d90ecf4", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "37cf3a70-c5b8-4f54-63f8-857f9584c4e9", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB639710AA45\"", - "last-modified": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:35 GMT", + "etag": "\"0x8DA3C7684DA7C78\"", + "last-modified": "Mon, 23 May 2022 04:41:35 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "6f3be483-8af7-4c15-4347-1d759d90ecf4", - "x-ms-request-id": "fd479eeb-101e-0016-584c-fd3338000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "37cf3a70-c5b8-4f54-63f8-857f9584c4e9", + "x-ms-request-id": "2b71f99c-901e-0082-3b5f-6e0c1e000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s3145728?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "799e6a82-5a9f-484d-7ee7-aed12600ab47", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b65cb36c-6482-4c7d-491b-92196db2d92d", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:24 GMT", - "etag": "\"0x8D9CB63971BF6E3\"", - "last-modified": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:37 GMT", + "etag": "\"0x8DA3C7685CE8D05\"", + "last-modified": "Mon, 23 May 2022 04:41:37 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "799e6a82-5a9f-484d-7ee7-aed12600ab47", - "x-ms-request-id": "dcdd56af-c01f-0058-3e4c-fd1db0000000", + "x-ms-client-request-id": "b65cb36c-6482-4c7d-491b-92196db2d92d", + "x-ms-request-id": "4750e859-801f-0037-285f-6e9f0c000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "def6f6d6-41b8-460a-7ff3-fa4adbb38d3a", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "e8f9328f-eaa0-4518-40cc-a29e8805eabd", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6397319A0B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:38 GMT", + "etag": "\"0x8DA3C7687015814\"", + "last-modified": "Mon, 23 May 2022 04:41:39 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "def6f6d6-41b8-460a-7ff3-fa4adbb38d3a", + "x-ms-client-request-id": "e8f9328f-eaa0-4518-40cc-a29e8805eabd", "x-ms-content-crc64": "KDjN031jIaA=", - "x-ms-request-id": "fd479f1e-101e-0016-084c-fd3338000000", + "x-ms-request-id": "2b71fb2e-901e-0082-2b5f-6e0c1e000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s3145728/fromfile-c5s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "ea22950d-6bba-4404-7d67-f93669df3759", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "ceb56a38-8532-4f42-5456-7b502dd50228", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "3145728", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6397319A0B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:38 GMT", + "etag": "\"0x8DA3C7687015814\"", + "last-modified": "Mon, 23 May 2022 04:41:39 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "ea22950d-6bba-4404-7d67-f93669df3759", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:24 GMT", + "x-ms-client-request-id": "ceb56a38-8532-4f42-5456-7b502dd50228", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:39 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:39 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd479f4d-101e-0016-354c-fd3338000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2b71fd4d-901e-0082-095f-6e0c1e000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s3145728/fromfile-c5s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "1d854996-c5de-4a88-69d6-041f56b52ee1", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2a34e81a-a39e-4e6a-51a4-639152a691d5", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "3145728", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", - "etag": "\"0x8D9CB6397319A0B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:39 GMT", + "etag": "\"0x8DA3C7687015814\"", + "last-modified": "Mon, 23 May 2022 04:41:39 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "1d854996-c5de-4a88-69d6-041f56b52ee1", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:24 GMT", + "x-ms-client-request-id": "2a34e81a-a39e-4e6a-51a4-639152a691d5", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:39 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:39 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd479f54-101e-0016-3c4c-fd3338000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2b71fdb1-901e-0082-675f-6e0c1e000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s3145728/fromfile-c5s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "e472a994-838f-4f7f-7337-f95a8b876395", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d5fba2e3-dda9-4e26-7773-f5820c82777e", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "3145728", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:24 GMT", - "etag": "\"0x8D9CB6397319A0B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:39 GMT", + "etag": "\"0x8DA3C7687015814\"", + "last-modified": "Mon, 23 May 2022 04:41:39 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "e472a994-838f-4f7f-7337-f95a8b876395", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:24 GMT", + "x-ms-client-request-id": "d5fba2e3-dda9-4e26-7773-f5820c82777e", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:39 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:39 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd479f5a-101e-0016-424c-fd3338000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2b71fe2f-901e-0082-595f-6e0c1e000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s3145728/fromfile-c5s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "a8e7ae68-d2d7-4c8e-6b21-cc566fc39098", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "b078e678-4473-4011-7ae2-16d03e9fe4d1", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "3145728", "content-md5": "wYh/DJcK+kgZSt9/XFBGlg==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:24 GMT", - "etag": "\"0x8D9CB6397319A0B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:42 GMT", + "etag": "\"0x8DA3C7687015814\"", + "last-modified": "Mon, 23 May 2022 04:41:39 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "a8e7ae68-d2d7-4c8e-6b21-cc566fc39098", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:24 GMT", + "x-ms-client-request-id": "b078e678-4473-4011-7ae2-16d03e9fe4d1", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:39 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:40 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "fd479f7e-101e-0016-634c-fd3338000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "2b7201b7-901e-0082-5c5f-6e0c1e000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s3145728/fromfile-c5s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "e306ff6b-4849-4f91-6d98-aece2e668431", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9386913b-ea4c-43e7-6846-d4e4571637a1", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:44 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "e306ff6b-4849-4f91-6d98-aece2e668431", - "x-ms-request-id": "dcdd56b1-c01f-0058-404c-fd1db0000000", + "x-ms-client-request-id": "9386913b-ea4c-43e7-6846-d4e4571637a1", + "x-ms-request-id": "4750e860-801f-0037-2d5f-6e9f0c000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s3145728/fromfile-c5s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "99742e3a-e548-409d-6514-46e3a74bed45", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "20b9ebc1-a0bb-4160-448a-e30838666214", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", + "date": "Mon, 23 May 2022 04:41:44 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "99742e3a-e548-409d-6514-46e3a74bed45", - "x-ms-request-id": "dcdd56b3-c01f-0058-424c-fd1db0000000", + "x-ms-client-request-id": "20b9ebc1-a0bb-4160-448a-e30838666214", + "x-ms-request-id": "4750e862-801f-0037-2e5f-6e9f0c000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s3145728/withparam-uploadfilefromfile-c5s3145728" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "2bc00ce3-63af-4b92-694b-083f30c07998", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "795e58e9-f1a1-4371-4c6b-3afca058375d", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:45 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "2bc00ce3-63af-4b92-694b-083f30c07998", - "x-ms-request-id": "fd479fbd-101e-0016-1c4c-fd3338000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "795e58e9-f1a1-4371-4c6b-3afca058375d", + "x-ms-request-id": "2b720393-901e-0082-045f-6e0c1e000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s3145728?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s4096.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s4096.json index 94eb43e541..43be3325c1 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s4096.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s4096.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b8942d1d-bf4e-4443-7a1f-10c2021ecc4f", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "43cf9936-1655-40f7-6e1b-f02de91a6a07", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", - "etag": "\"0x8D9CB6395ED5F5B\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:55 GMT", + "etag": "\"0x8DA3C766D7B2933\"", + "last-modified": "Mon, 23 May 2022 04:40:56 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "b8942d1d-bf4e-4443-7a1f-10c2021ecc4f", - "x-ms-request-id": "e1006ffa-201e-0050-2c4c-fd07bf000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "43cf9936-1655-40f7-6e1b-f02de91a6a07", + "x-ms-request-id": "adc94b0e-601e-002f-405f-6e406b000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s4096?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "7c1b9690-b3c6-49b5-7f84-49693455b002", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9fd967a0-491b-46f0-5b15-44847b53c040", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", - "etag": "\"0x8D9CB6395F8236F\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:58 GMT", + "etag": "\"0x8DA3C766E6D280C\"", + "last-modified": "Mon, 23 May 2022 04:40:58 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "7c1b9690-b3c6-49b5-7f84-49693455b002", - "x-ms-request-id": "686ea716-601f-000c-274c-fd52e7000000", + "x-ms-client-request-id": "9fd967a0-491b-46f0-5b15-44847b53c040", + "x-ms-request-id": "e3e0a2dd-801f-0008-525f-6e57af000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "ff0c58a2-a4d8-42bd-7593-518fee088346", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "3354c3c3-3701-4374-5551-f05c02620408", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", - "etag": "\"0x8D9CB6395FDA605\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:57 GMT", + "etag": "\"0x8DA3C766EA57014\"", + "last-modified": "Mon, 23 May 2022 04:40:58 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "ff0c58a2-a4d8-42bd-7593-518fee088346", + "x-ms-client-request-id": "3354c3c3-3701-4374-5551-f05c02620408", "x-ms-content-crc64": "hP538/oHol4=", - "x-ms-request-id": "e100701f-201e-0050-494c-fd07bf000000", + "x-ms-request-id": "adc94cac-601e-002f-375f-6e406b000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s4096/fromfile-c5s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "134e399b-20c0-49af-5849-c1e33edad081", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "7e0a5832-0eda-4d53-59e3-a27ace2bc4b9", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "4096", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", - "etag": "\"0x8D9CB6395FDA605\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:58 GMT", + "etag": "\"0x8DA3C766EA57014\"", + "last-modified": "Mon, 23 May 2022 04:40:58 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "134e399b-20c0-49af-5849-c1e33edad081", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:22 GMT", + "x-ms-client-request-id": "7e0a5832-0eda-4d53-59e3-a27ace2bc4b9", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:58 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:58 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "e100702b-201e-0050-544c-fd07bf000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "adc94cf4-601e-002f-6c5f-6e406b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s4096/fromfile-c5s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "4b20b84f-0bc5-4e9b-4d28-70b96bdd7288", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "c3822238-5918-464a-5ad5-71dc0e632e47", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "4096", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", - "etag": "\"0x8D9CB6395FDA605\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:58 GMT", + "etag": "\"0x8DA3C766EA57014\"", + "last-modified": "Mon, 23 May 2022 04:40:58 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "4b20b84f-0bc5-4e9b-4d28-70b96bdd7288", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:22 GMT", + "x-ms-client-request-id": "c3822238-5918-464a-5ad5-71dc0e632e47", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:58 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:58 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "e100702f-201e-0050-584c-fd07bf000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "adc94d27-601e-002f-175f-6e406b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s4096/fromfile-c5s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "015a6d4d-c948-408e-5022-f41d0df1be1d", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "a3d813fe-9870-4984-57ba-c00e19e98a63", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "4096", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", - "etag": "\"0x8D9CB6395FDA605\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:58 GMT", + "etag": "\"0x8DA3C766EA57014\"", + "last-modified": "Mon, 23 May 2022 04:40:58 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "015a6d4d-c948-408e-5022-f41d0df1be1d", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:22 GMT", + "x-ms-client-request-id": "a3d813fe-9870-4984-57ba-c00e19e98a63", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:58 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:58 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "e1007030-201e-0050-594c-fd07bf000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "adc94d58-601e-002f-435f-6e406b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s4096/fromfile-c5s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b6e7e67b-fa47-472e-789f-aceb77586b60", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "6afa3af8-ca1f-4eb3-74dd-ecdacae2cd10", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "4096", "content-md5": "IEOfeeTp3JW+NLIQKSIfgA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", - "etag": "\"0x8D9CB6395FDA605\"", - "last-modified": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:40:59 GMT", + "etag": "\"0x8DA3C766EA57014\"", + "last-modified": "Mon, 23 May 2022 04:40:58 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "b6e7e67b-fa47-472e-789f-aceb77586b60", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:22 GMT", + "x-ms-client-request-id": "6afa3af8-ca1f-4eb3-74dd-ecdacae2cd10", + "x-ms-creation-time": "Mon, 23 May 2022 04:40:58 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:40:59 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "e1007034-201e-0050-5d4c-fd07bf000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "adc94d95-601e-002f-795f-6e406b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s4096/fromfile-c5s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "eb8b077d-f552-4212-63bb-71e86858dfc8", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "eee67896-daa4-433d-74f2-dfaeeb7c11c4", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:41:00 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "eb8b077d-f552-4212-63bb-71e86858dfc8", - "x-ms-request-id": "686ea717-601f-000c-284c-fd52e7000000", + "x-ms-client-request-id": "eee67896-daa4-433d-74f2-dfaeeb7c11c4", + "x-ms-request-id": "e3e0a2e0-801f-0008-545f-6e57af000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s4096/fromfile-c5s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "a1bca292-d4f9-4ce2-41ea-1393ee6d916b", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "14348144-dbcb-4147-6880-c38063d8557f", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:23 GMT", + "date": "Mon, 23 May 2022 04:41:00 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "a1bca292-d4f9-4ce2-41ea-1393ee6d916b", - "x-ms-request-id": "686ea718-601f-000c-294c-fd52e7000000", + "x-ms-client-request-id": "14348144-dbcb-4147-6880-c38063d8557f", + "x-ms-request-id": "e3e0a2e2-801f-0008-555f-6e57af000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s4096/withparam-uploadfilefromfile-c5s4096" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "6cfc4c54-f162-45c7-502c-bd6a8b50c5fd", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "86511be9-2c40-4f01-6df5-3a69dfb0791c", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:22 GMT", + "date": "Mon, 23 May 2022 04:41:01 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "6cfc4c54-f162-45c7-502c-bd6a8b50c5fd", - "x-ms-request-id": "e1007070-201e-0050-124c-fd07bf000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "86511be9-2c40-4f01-6df5-3a69dfb0791c", + "x-ms-request-id": "adc94e76-601e-002f-445f-6e406b000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s4096?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s5242880.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s5242880.json index a67037d313..f8e03b631a 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s5242880.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s5242880.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "af4b805b-b6da-4c4e-7881-29365a95da9a", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "46f1fdf2-cb1a-4ceb-6631-5d033de4677e", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", - "etag": "\"0x8D9CB6397677414\"", - "last-modified": "Thu, 30 Dec 2021 07:11:25 GMT", + "date": "Mon, 23 May 2022 04:41:47 GMT", + "etag": "\"0x8DA3C768BE8AA50\"", + "last-modified": "Mon, 23 May 2022 04:41:47 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "af4b805b-b6da-4c4e-7881-29365a95da9a", - "x-ms-request-id": "2872764f-401e-001b-614c-fdfbec000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "46f1fdf2-cb1a-4ceb-6631-5d033de4677e", + "x-ms-request-id": "ec622476-301e-007f-085f-6e823b000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s5242880?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "8757d30b-45c0-4fae-7e47-35db84a4d410", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9515ca95-7378-4e29-4a97-8eaf13e991c3", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:24 GMT", - "etag": "\"0x8D9CB6397733381\"", - "last-modified": "Thu, 30 Dec 2021 07:11:25 GMT", + "date": "Mon, 23 May 2022 04:41:48 GMT", + "etag": "\"0x8DA3C768CDAE312\"", + "last-modified": "Mon, 23 May 2022 04:41:49 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "8757d30b-45c0-4fae-7e47-35db84a4d410", - "x-ms-request-id": "f7a28500-001f-001a-4f4c-fda430000000", + "x-ms-client-request-id": "9515ca95-7378-4e29-4a97-8eaf13e991c3", + "x-ms-request-id": "baf32967-f01f-002d-725f-6efed3000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "61cd5243-bf60-4d5a-5f61-b76213aa22d4", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "97ba953b-8867-4e47-74a6-2011fc4034bb", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", - "etag": "\"0x8D9CB63978CF673\"", - "last-modified": "Thu, 30 Dec 2021 07:11:25 GMT", + "date": "Mon, 23 May 2022 04:41:50 GMT", + "etag": "\"0x8DA3C768E2A5625\"", + "last-modified": "Mon, 23 May 2022 04:41:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "61cd5243-bf60-4d5a-5f61-b76213aa22d4", + "x-ms-client-request-id": "97ba953b-8867-4e47-74a6-2011fc4034bb", "x-ms-content-crc64": "FOAqKZP9lVI=", - "x-ms-request-id": "2872767b-401e-001b-0a4c-fdfbec000000", + "x-ms-request-id": "ec622657-301e-007f-435f-6e823b000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s5242880/fromfile-c5s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d5ea35ca-7798-45f9-51b0-8c95a0b6a20a", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "81554ebe-56c9-428b-4424-ab4630e799de", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "5242880", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", - "etag": "\"0x8D9CB63978CF673\"", - "last-modified": "Thu, 30 Dec 2021 07:11:25 GMT", + "date": "Mon, 23 May 2022 04:41:51 GMT", + "etag": "\"0x8DA3C768E2A5625\"", + "last-modified": "Mon, 23 May 2022 04:41:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "d5ea35ca-7798-45f9-51b0-8c95a0b6a20a", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:25 GMT", + "x-ms-client-request-id": "81554ebe-56c9-428b-4424-ab4630e799de", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:51 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:51 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "287276c2-401e-001b-4f4c-fdfbec000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ec6229de-301e-007f-145f-6e823b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s5242880/fromfile-c5s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b9f475f7-436d-4384-6567-178186987b8b", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "019b9cb2-3a00-4f0f-7408-5ddc97f1c787", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "5242880", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", - "etag": "\"0x8D9CB63978CF673\"", - "last-modified": "Thu, 30 Dec 2021 07:11:25 GMT", + "date": "Mon, 23 May 2022 04:41:51 GMT", + "etag": "\"0x8DA3C768E2A5625\"", + "last-modified": "Mon, 23 May 2022 04:41:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "b9f475f7-436d-4384-6567-178186987b8b", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:25 GMT", + "x-ms-client-request-id": "019b9cb2-3a00-4f0f-7408-5ddc97f1c787", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:51 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:51 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "287276c7-401e-001b-544c-fdfbec000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ec622a59-301e-007f-055f-6e823b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s5242880/fromfile-c5s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "65fd6f46-68da-4b38-6846-05160db1ca90", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "7d8593ce-be74-4941-71cd-82f8ea3d93f1", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "5242880", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", - "etag": "\"0x8D9CB63978CF673\"", - "last-modified": "Thu, 30 Dec 2021 07:11:25 GMT", + "date": "Mon, 23 May 2022 04:41:52 GMT", + "etag": "\"0x8DA3C768E2A5625\"", + "last-modified": "Mon, 23 May 2022 04:41:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "65fd6f46-68da-4b38-6846-05160db1ca90", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:25 GMT", + "x-ms-client-request-id": "7d8593ce-be74-4941-71cd-82f8ea3d93f1", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:51 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:51 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "287276cd-401e-001b-594c-fdfbec000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ec622ad4-301e-007f-7a5f-6e823b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s5242880/fromfile-c5s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "20d40d70-58e7-482b-4976-9ebd7777270c", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "c26ce960-b9b0-47c4-59be-e7090eff5810", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "5242880", "content-md5": "Twju9AlnJr/xEl4bG3NGRA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", - "etag": "\"0x8D9CB63978CF673\"", - "last-modified": "Thu, 30 Dec 2021 07:11:25 GMT", + "date": "Mon, 23 May 2022 04:41:55 GMT", + "etag": "\"0x8DA3C768E2A5625\"", + "last-modified": "Mon, 23 May 2022 04:41:51 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "20d40d70-58e7-482b-4976-9ebd7777270c", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:25 GMT", + "x-ms-client-request-id": "c26ce960-b9b0-47c4-59be-e7090eff5810", + "x-ms-creation-time": "Mon, 23 May 2022 04:41:51 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:41:52 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "287276f8-401e-001b-014c-fdfbec000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "ec622e96-301e-007f-0c5f-6e823b000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s5242880/fromfile-c5s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b25617c9-9b56-4d3e-51fe-9cc50107a797", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "0b3f5a77-beee-4e36-449d-565eaa058085", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:56 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "b25617c9-9b56-4d3e-51fe-9cc50107a797", - "x-ms-request-id": "f7a28506-001f-001a-554c-fda430000000", + "x-ms-client-request-id": "0b3f5a77-beee-4e36-449d-565eaa058085", + "x-ms-request-id": "baf32989-f01f-002d-0e5f-6efed3000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s5242880/fromfile-c5s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "32fd6a1e-d41a-4860-6bf8-d09b58d111d8", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "5ceb7c56-d28d-472e-731f-d1bd732b1355", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:24 GMT", + "date": "Mon, 23 May 2022 04:41:57 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "32fd6a1e-d41a-4860-6bf8-d09b58d111d8", - "x-ms-request-id": "f7a28508-001f-001a-574c-fda430000000", + "x-ms-client-request-id": "5ceb7c56-d28d-472e-731f-d1bd732b1355", + "x-ms-request-id": "baf3298c-f01f-002d-115f-6efed3000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s5242880/withparam-uploadfilefromfile-c5s5242880" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "6e04beef-f67f-40fa-433d-ea0afae73419", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "ca3ab23d-f1a5-434f-670f-b7b0e7a74a38", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", + "date": "Mon, 23 May 2022 04:42:00 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "6e04beef-f67f-40fa-433d-ea0afae73419", - "x-ms-request-id": "2872773a-401e-001b-3f4c-fdfbec000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "ca3ab23d-f1a5-434f-670f-b7b0e7a74a38", + "x-ms-request-id": "ec6230e1-301e-007f-3a5f-6e823b000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s5242880?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s8387374.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s8387374.json index 41b327a7d8..03358996b6 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s8387374.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s8387374.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "71c69287-9ba7-4209-7055-ce8b14f4f825", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "4cb0572d-4a27-423f-6f07-9ba87e200ca7", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", - "etag": "\"0x8D9CB6397C5A84D\"", - "last-modified": "Thu, 30 Dec 2021 07:11:25 GMT", + "date": "Mon, 23 May 2022 04:42:01 GMT", + "etag": "\"0x8DA3C7694978A40\"", + "last-modified": "Mon, 23 May 2022 04:42:02 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "71c69287-9ba7-4209-7055-ce8b14f4f825", - "x-ms-request-id": "50fd7a64-001e-0035-6a4c-fda9fb000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "4cb0572d-4a27-423f-6f07-9ba87e200ca7", + "x-ms-request-id": "be96e7aa-701e-0023-305f-6ed763000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s8387374?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "6a4bf947-0b28-4bbe-4cac-a5bbdce6304c", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "d72037d2-35f7-4c98-7dba-ed9c4cd2cf33", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", - "etag": "\"0x8D9CB6397D21198\"", - "last-modified": "Thu, 30 Dec 2021 07:11:25 GMT", + "date": "Mon, 23 May 2022 04:42:03 GMT", + "etag": "\"0x8DA3C7695802256\"", + "last-modified": "Mon, 23 May 2022 04:42:03 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "6a4bf947-0b28-4bbe-4cac-a5bbdce6304c", - "x-ms-request-id": "99e1e43b-601f-0041-1c4c-fd9d0b000000", + "x-ms-client-request-id": "d72037d2-35f7-4c98-7dba-ed9c4cd2cf33", + "x-ms-request-id": "f30fac1f-801f-006a-125f-6e9588000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d4909147-ef77-4369-5e02-b1e372f463d4", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "a7b1cc66-6cbf-4b0e-63fb-fd4f50a3b9ea", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", - "etag": "\"0x8D9CB6397FF4394\"", - "last-modified": "Thu, 30 Dec 2021 07:11:26 GMT", + "date": "Mon, 23 May 2022 04:42:05 GMT", + "etag": "\"0x8DA3C7696E959AA\"", + "last-modified": "Mon, 23 May 2022 04:42:06 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "d4909147-ef77-4369-5e02-b1e372f463d4", + "x-ms-client-request-id": "a7b1cc66-6cbf-4b0e-63fb-fd4f50a3b9ea", "x-ms-content-crc64": "9ZS/HdelFfY=", - "x-ms-request-id": "50fd7aa3-001e-0035-204c-fda9fb000000", + "x-ms-request-id": "be96e8e8-701e-0023-4b5f-6ed763000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s8387374/fromfile-c5s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "c430aefe-b11a-4af7-7bf7-66f1597d20cf", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2b3faa7b-25c4-4e5a-5849-b6cf1ab13c2d", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "8387374", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", - "etag": "\"0x8D9CB6397FF4394\"", - "last-modified": "Thu, 30 Dec 2021 07:11:26 GMT", + "date": "Mon, 23 May 2022 04:42:05 GMT", + "etag": "\"0x8DA3C7696E959AA\"", + "last-modified": "Mon, 23 May 2022 04:42:06 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "c430aefe-b11a-4af7-7bf7-66f1597d20cf", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:26 GMT", + "x-ms-client-request-id": "2b3faa7b-25c4-4e5a-5849-b6cf1ab13c2d", + "x-ms-creation-time": "Mon, 23 May 2022 04:42:06 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:42:06 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "50fd7b5a-001e-0035-474c-fda9fb000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "be96ea26-701e-0023-6d5f-6ed763000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s8387374/fromfile-c5s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d4ca55f5-4ece-48d3-7aad-dd2fb26a6293", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "513d4a6b-3e9f-4710-634f-764be80b8525", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "8387374", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", - "etag": "\"0x8D9CB6397FF4394\"", - "last-modified": "Thu, 30 Dec 2021 07:11:26 GMT", + "date": "Mon, 23 May 2022 04:42:06 GMT", + "etag": "\"0x8DA3C7696E959AA\"", + "last-modified": "Mon, 23 May 2022 04:42:06 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "d4ca55f5-4ece-48d3-7aad-dd2fb26a6293", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:26 GMT", + "x-ms-client-request-id": "513d4a6b-3e9f-4710-634f-764be80b8525", + "x-ms-creation-time": "Mon, 23 May 2022 04:42:06 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:42:06 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "50fd7b5c-001e-0035-494c-fda9fb000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "be96ea4f-701e-0023-055f-6ed763000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s8387374/fromfile-c5s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "fce09479-7c11-49cb-6ef0-ffba36916bfd", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "ecdcd08f-d11a-43c1-555a-1158fb0246eb", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "8387374", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", - "etag": "\"0x8D9CB6397FF4394\"", - "last-modified": "Thu, 30 Dec 2021 07:11:26 GMT", + "date": "Mon, 23 May 2022 04:42:06 GMT", + "etag": "\"0x8DA3C7696E959AA\"", + "last-modified": "Mon, 23 May 2022 04:42:06 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "fce09479-7c11-49cb-6ef0-ffba36916bfd", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:26 GMT", + "x-ms-client-request-id": "ecdcd08f-d11a-43c1-555a-1158fb0246eb", + "x-ms-creation-time": "Mon, 23 May 2022 04:42:06 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:42:06 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "50fd7b5d-001e-0035-4a4c-fda9fb000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "be96ea76-701e-0023-275f-6ed763000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s8387374/fromfile-c5s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "9d1aec46-afe7-4e8d-6327-b3242843c90c", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "695b4fd6-b38b-497e-7fa5-1f92964427e3", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "8387374", "content-md5": "gjwUs273If2Wl/xNk6NqIA==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:26 GMT", - "etag": "\"0x8D9CB6397FF4394\"", - "last-modified": "Thu, 30 Dec 2021 07:11:26 GMT", + "date": "Mon, 23 May 2022 04:42:10 GMT", + "etag": "\"0x8DA3C7696E959AA\"", + "last-modified": "Mon, 23 May 2022 04:42:06 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "9d1aec46-afe7-4e8d-6327-b3242843c90c", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:26 GMT", + "x-ms-client-request-id": "695b4fd6-b38b-497e-7fa5-1f92964427e3", + "x-ms-creation-time": "Mon, 23 May 2022 04:42:06 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:42:07 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "50fd7bad-001e-0035-134c-fda9fb000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "be96ec8e-701e-0023-795f-6ed763000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s8387374/fromfile-c5s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "7e8d723c-f075-4c65-59ef-aa963ebbde52", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "9bafb21e-2ac7-473d-4ffd-cfb506598682", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:25 GMT", + "date": "Mon, 23 May 2022 04:42:12 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "7e8d723c-f075-4c65-59ef-aa963ebbde52", - "x-ms-request-id": "99e1e440-601f-0041-204c-fd9d0b000000", + "x-ms-client-request-id": "9bafb21e-2ac7-473d-4ffd-cfb506598682", + "x-ms-request-id": "f30fac67-801f-006a-545f-6e9588000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s8387374/fromfile-c5s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "c79c23bd-9caf-4c19-4add-7988b61e9efe", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "54f76a61-cc10-46ea-734c-52d8315d0055", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:26 GMT", + "date": "Mon, 23 May 2022 04:42:12 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "c79c23bd-9caf-4c19-4add-7988b61e9efe", - "x-ms-request-id": "99e1e442-601f-0041-224c-fd9d0b000000", + "x-ms-client-request-id": "54f76a61-cc10-46ea-734c-52d8315d0055", + "x-ms-request-id": "f30fac68-801f-006a-555f-6e9588000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s8387374/withparam-uploadfilefromfile-c5s8387374" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "24791592-ed41-45bf-562b-9843a12f3314", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "13638efd-06f8-4020-4353-323a81321aaa", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:26 GMT", + "date": "Mon, 23 May 2022 04:42:14 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "24791592-ed41-45bf-562b-9843a12f3314", - "x-ms-request-id": "50fd7c05-001e-0035-644c-fda9fb000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "13638efd-06f8-4020-4353-323a81321aaa", + "x-ms-request-id": "be96eda7-701e-0023-765f-6ed763000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s8387374?restype=container" } diff --git a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s8388608.json b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s8388608.json index 008732fb4d..c05a5a2dad 100644 --- a/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s8388608.json +++ b/sdk/storage/azure-storage-files-datalake/test/ut/recordings/withParam-UploadFile.fromFile-c5s8388608.json @@ -2,9 +2,9 @@ "networkCallRecords": [ { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "a0a016fd-30d5-46ed-7d9d-4c50fd98ba76", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "96780cd7-e11b-413b-4dfc-7164406d6e4f", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -12,20 +12,20 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:26 GMT", - "etag": "\"0x8D9CB639845AADF\"", - "last-modified": "Thu, 30 Dec 2021 07:11:26 GMT", + "date": "Mon, 23 May 2022 04:42:16 GMT", + "etag": "\"0x8DA3C769D57E8EC\"", + "last-modified": "Mon, 23 May 2022 04:42:16 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "a0a016fd-30d5-46ed-7d9d-4c50fd98ba76", - "x-ms-request-id": "5a310683-a01e-004e-2c4c-fdeb67000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "96780cd7-e11b-413b-4dfc-7164406d6e4f", + "x-ms-request-id": "9a89a07b-e01e-006c-245f-6ea637000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s8388608?restype=container" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "ed7dd3bf-9f98-4977-4dff-9363892d1be2", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "48b8af08-a348-4869-5f49-3e9cacddbcab", "x-ms-version": "2020-02-10" }, "Method": "PUT", @@ -34,12 +34,12 @@ "REASON_PHRASE": "Created", "STATUS_CODE": "201", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:26 GMT", - "etag": "\"0x8D9CB6398549AE9\"", - "last-modified": "Thu, 30 Dec 2021 07:11:26 GMT", + "date": "Mon, 23 May 2022 04:42:17 GMT", + "etag": "\"0x8DA3C769E4FBB40\"", + "last-modified": "Mon, 23 May 2022 04:42:18 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "ed7dd3bf-9f98-4977-4dff-9363892d1be2", - "x-ms-request-id": "ec45f71d-901f-0018-564c-fd1a88000000", + "x-ms-client-request-id": "48b8af08-a348-4869-5f49-3e9cacddbcab", + "x-ms-request-id": "f670f8b7-301f-001d-155f-6e401c000000", "x-ms-request-server-encrypted": "true", "x-ms-version": "2020-02-10" }, @@ -47,9 +47,9 @@ }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "146f919e-a880-4396-50aa-7a827a501fff", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "fb51f47e-f917-4448-536c-4ae966d21d40", + "x-ms-version": "2020-08-04" }, "Method": "PUT", "Response": { @@ -58,23 +58,23 @@ "STATUS_CODE": "201", "content-length": "0", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", - "date": "Thu, 30 Dec 2021 07:11:26 GMT", - "etag": "\"0x8D9CB63988215AC\"", - "last-modified": "Thu, 30 Dec 2021 07:11:27 GMT", + "date": "Mon, 23 May 2022 04:42:20 GMT", + "etag": "\"0x8DA3C769FC39E5D\"", + "last-modified": "Mon, 23 May 2022 04:42:21 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "146f919e-a880-4396-50aa-7a827a501fff", + "x-ms-client-request-id": "fb51f47e-f917-4448-536c-4ae966d21d40", "x-ms-content-crc64": "DU01Kv81ewI=", - "x-ms-request-id": "5a3106a8-a01e-004e-4c4c-fdeb67000000", + "x-ms-request-id": "9a89a188-e01e-006c-765f-6ea637000000", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s8388608/fromfile-c5s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "82ef2aed-2b57-4bb6-7543-b40d745e9fce", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "76c73fc1-ab8c-4109-44c2-bd5a64e72469", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -89,15 +89,17 @@ "content-length": "8388608", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:26 GMT", - "etag": "\"0x8D9CB63988215AC\"", - "last-modified": "Thu, 30 Dec 2021 07:11:27 GMT", + "date": "Mon, 23 May 2022 04:42:20 GMT", + "etag": "\"0x8DA3C769FC39E5D\"", + "last-modified": "Mon, 23 May 2022 04:42:21 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "82ef2aed-2b57-4bb6-7543-b40d745e9fce", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:27 GMT", + "x-ms-client-request-id": "76c73fc1-ab8c-4109-44c2-bd5a64e72469", + "x-ms-creation-time": "Mon, 23 May 2022 04:42:21 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:42:21 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -105,17 +107,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "5a3106f5-a01e-004e-114c-fdeb67000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "9a89a350-e01e-006c-0f5f-6ea637000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s8388608/fromfile-c5s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "692fea60-f7af-484a-6b68-cacb1dbc01fc", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "2dfd7395-9cae-4b2a-6f23-30cf56a044c4", + "x-ms-version": "2020-08-04" }, "Method": "HEAD", "Response": { @@ -130,15 +134,17 @@ "content-length": "8388608", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:26 GMT", - "etag": "\"0x8D9CB63988215AC\"", - "last-modified": "Thu, 30 Dec 2021 07:11:27 GMT", + "date": "Mon, 23 May 2022 04:42:21 GMT", + "etag": "\"0x8DA3C769FC39E5D\"", + "last-modified": "Mon, 23 May 2022 04:42:21 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "692fea60-f7af-484a-6b68-cacb1dbc01fc", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:27 GMT", + "x-ms-client-request-id": "2dfd7395-9cae-4b2a-6f23-30cf56a044c4", + "x-ms-creation-time": "Mon, 23 May 2022 04:42:21 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:42:21 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -146,17 +152,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "5a310703-a01e-004e-1e4c-fdeb67000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "9a89a393-e01e-006c-3b5f-6ea637000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s8388608/fromfile-c5s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "f0f5b348-8e9e-4ccd-4948-ecb2b3e33327", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "03195cd8-6af5-4716-603f-4d294fb70c0f", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -171,13 +179,15 @@ "content-length": "8388608", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:26 GMT", - "etag": "\"0x8D9CB63988215AC\"", - "last-modified": "Thu, 30 Dec 2021 07:11:27 GMT", + "date": "Mon, 23 May 2022 04:42:21 GMT", + "etag": "\"0x8DA3C769FC39E5D\"", + "last-modified": "Mon, 23 May 2022 04:42:21 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "f0f5b348-8e9e-4ccd-4948-ecb2b3e33327", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:27 GMT", + "x-ms-client-request-id": "03195cd8-6af5-4716-603f-4d294fb70c0f", + "x-ms-creation-time": "Mon, 23 May 2022 04:42:21 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:42:21 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -185,17 +195,19 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "5a310708-a01e-004e-234c-fdeb67000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "9a89a3e8-e01e-006c-705f-6ea637000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s8388608/fromfile-c5s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "772a415a-ac9c-4001-421a-e5ff8942f7e9", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "1f4b62ff-251e-4ff8-5220-0907e3535523", + "x-ms-version": "2020-08-04" }, "Method": "GET", "Response": { @@ -210,13 +222,15 @@ "content-length": "8388608", "content-md5": "IFj7U/ZD/NWKjYOgVUI5Kw==", "content-type": "application/octet-stream", - "date": "Thu, 30 Dec 2021 07:11:26 GMT", - "etag": "\"0x8D9CB63988215AC\"", - "last-modified": "Thu, 30 Dec 2021 07:11:27 GMT", + "date": "Mon, 23 May 2022 04:42:25 GMT", + "etag": "\"0x8DA3C769FC39E5D\"", + "last-modified": "Mon, 23 May 2022 04:42:21 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", "x-ms-blob-type": "BlockBlob", - "x-ms-client-request-id": "772a415a-ac9c-4001-421a-e5ff8942f7e9", - "x-ms-creation-time": "Thu, 30 Dec 2021 07:11:27 GMT", + "x-ms-client-request-id": "1f4b62ff-251e-4ff8-5220-0907e3535523", + "x-ms-creation-time": "Mon, 23 May 2022 04:42:21 GMT", + "x-ms-group": "$superuser", + "x-ms-last-access-time": "Mon, 23 May 2022 04:42:22 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-meta0": "value", @@ -224,16 +238,18 @@ "x-ms-meta-meta2": "value", "x-ms-meta-meta3": "value", "x-ms-meta-meta4": "value", - "x-ms-request-id": "5a310733-a01e-004e-4a4c-fdeb67000000", + "x-ms-owner": "$superuser", + "x-ms-permissions": "rw-r-----", + "x-ms-request-id": "9a89a78c-e01e-006c-4b5f-6ea637000000", "x-ms-server-encrypted": "true", - "x-ms-version": "2020-02-10" + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s8388608/fromfile-c5s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "d2d17910-2144-4d47-43c1-c36227954573", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "34357720-5480-468e-57f2-301da7f37338", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -242,18 +258,18 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:26 GMT", + "date": "Mon, 23 May 2022 04:42:26 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "d2d17910-2144-4d47-43c1-c36227954573", - "x-ms-request-id": "ec45f71e-901f-0018-574c-fd1a88000000", + "x-ms-client-request-id": "34357720-5480-468e-57f2-301da7f37338", + "x-ms-request-id": "f670f8d4-301f-001d-2f5f-6e401c000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s8388608/fromfile-c5s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-files-datalake/12.3.0-beta.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "14122b26-d370-4fa9-7aac-ee1646ea6f06", + "user-agent": "azsdk-cpp-storage-files-datalake/12.4.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "e6e586bd-4dca-47e5-4499-07e0ddb217ff", "x-ms-version": "2020-02-10" }, "Method": "DELETE", @@ -262,19 +278,19 @@ "REASON_PHRASE": "OK", "STATUS_CODE": "200", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:26 GMT", + "date": "Mon, 23 May 2022 04:42:26 GMT", "server": "Windows-Azure-HDFS/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "14122b26-d370-4fa9-7aac-ee1646ea6f06", - "x-ms-request-id": "ec45f720-901f-0018-594c-fd1a88000000", + "x-ms-client-request-id": "e6e586bd-4dca-47e5-4499-07e0ddb217ff", + "x-ms-request-id": "f670f8d5-301f-001d-305f-6e401c000000", "x-ms-version": "2020-02-10" }, "Url": "https://REDACTED.dfs.core.windows.net/withparam-uploadfilefromfile-c5s8388608/withparam-uploadfilefromfile-c5s8388608" }, { "Headers": { - "user-agent": "azsdk-cpp-storage-blobs/12.2.1 (Linux 5.4.0-1063-azure x86_64 #66~18.04.1-Ubuntu SMP Thu Oct 21 09:59:28 UTC 2021)", - "x-ms-client-request-id": "b5b56e9f-665f-4e5e-4e7e-25ea5959529a", - "x-ms-version": "2020-02-10" + "user-agent": "azsdk-cpp-storage-blobs/12.5.0-beta.1 (Windows 10 Pro 6.3 19044 19041.1.amd64fre.vb_release.191206-1406)", + "x-ms-client-request-id": "8ca0bf49-7b98-4776-43cf-163b89ad5dd5", + "x-ms-version": "2020-08-04" }, "Method": "DELETE", "Response": { @@ -282,11 +298,11 @@ "REASON_PHRASE": "Accepted", "STATUS_CODE": "202", "content-length": "0", - "date": "Thu, 30 Dec 2021 07:11:27 GMT", + "date": "Mon, 23 May 2022 04:42:29 GMT", "server": "Windows-Azure-Blob/1.0 Microsoft-HTTPAPI/2.0", - "x-ms-client-request-id": "b5b56e9f-665f-4e5e-4e7e-25ea5959529a", - "x-ms-request-id": "5a310774-a01e-004e-044c-fdeb67000000", - "x-ms-version": "2020-02-10" + "x-ms-client-request-id": "8ca0bf49-7b98-4776-43cf-163b89ad5dd5", + "x-ms-request-id": "9a89aa32-e01e-006c-6d5f-6ea637000000", + "x-ms-version": "2020-08-04" }, "Url": "https://REDACTED.blob.core.windows.net/withparam-uploadfilefromfile-c5s8388608?restype=container" } diff --git a/sdk/storage/azure-storage-files-shares/test/ut/share_file_client_test.cpp b/sdk/storage/azure-storage-files-shares/test/ut/share_file_client_test.cpp index 11d45b2214..0701c450c9 100644 --- a/sdk/storage/azure-storage-files-shares/test/ut/share_file_client_test.cpp +++ b/sdk/storage/azure-storage-files-shares/test/ut/share_file_client_test.cpp @@ -429,10 +429,7 @@ namespace Azure { namespace Storage { namespace Test { options.Metadata = GetMetadata(); std::string tempFilename(m_testName); - { - Azure::Storage::_internal::FileWriter fileWriter(tempFilename); - fileWriter.Write(fileContent.data(), static_cast(p.FileSize), 0); - } + WriteFile(tempFilename, fileContent); auto res = fileClient.UploadFrom(tempFilename, options);